:root {
  --primary: #0ea5e9; /* Light Blue (Błękit) */
  --primary-rgb: 14, 165, 233;
  --primary-dark: #0284c7;
  --accent: #38bdf8;
  --accent-hover: #0ea5e9;
  --dark-bg: #0a0a0b;
  --dark-card: #161618;
  --dark-border: #27272a;
  --text-light: #f4f4f5;
  --text-muted: #475569;
  --white: #ffffff;
  --black: #0f172a;
  --gradient-stripe: linear-gradient(90deg, #0ea5e9 0%, #38bdf8 100%);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --radius: 12px;
  --radius-lg: 24px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--black);
  background-color: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  aspect-ratio: attr(width) / attr(height);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header & Nav */
header, header#header-placeholder {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid rgba(14, 165, 233, 0.1);
  transition: all 0.3s ease;
  padding: 15px 0;
  height: 90px;
  display: block;
}

/* Reserve Footer Space */
footer#footer-placeholder {
  display: block;
  min-height: 450px;
  background: #0f172a;
}

.page-header {
  padding: 160px 0 60px;
  background: #f8fafc;
  text-align: center;
}

@media (max-width: 768px) {
  header, header#header-placeholder {
    height: 70px;
  }
  footer#footer-placeholder {
    min-height: 800px;
  }
  .page-header {
    padding: 120px 0 40px;
  }
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: 4px;
  color: var(--primary);
}

.logo-opti {
  margin-right: 10px;
}

.logo-office-box {
  border: 2px solid var(--primary);
  padding: 2px 10px;
  display: inline-block;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.has-dropdown {
  position: relative;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  padding: 12px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.has-dropdown.active .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
  border-radius: 8px;
  white-space: nowrap;
}

.nav-dropdown a:hover {
  background: #f0f9ff;
  color: var(--primary);
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  opacity: 0.9;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--primary);
  opacity: 1;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-right: 10px;
}

.btn-nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 13px !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: none;
  display: inline-block;
  line-height: 1.4;
  text-decoration: none;
  opacity: 1 !important;
  white-space: nowrap;
}

.btn-nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.2);
}

.nav-phone-link {
  font-size: 11px !important;
  font-weight: 700 !important;
  color: #64748b !important;
  margin-top: 2px;
  transition: color 0.3s ease;
  text-decoration: none;
  opacity: 1 !important;
  display: block;
  white-space: nowrap;
}

.nav-phone-link:hover {
  color: var(--primary) !important;
}

.nav-cta-mobile-li {
  display: none;
}

.btn-signin {
  background: var(--white);
  color: var(--primary);
  padding: 8px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-signin:hover {
  background: #fff;
  transform: scale(1.05);
}

.lang-menu {
  position: relative;
}

.lang-menu-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-menu-btn:hover {
  background: #e2e8f0;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  padding: 8px;
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
  z-index: 100;
}

.lang-menu.active .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
  border: none;
  background: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-btn:hover {
  background: #f1f5f9;
  color: var(--primary);
}

.lang-btn.active {
  color: var(--primary);
  background: #f0f9ff;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 120px 0 60px;
  background: var(--white);
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Hero Slider */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--bg-url);
  background-size: cover;
  background-position: center;
}

@media (min-width: 769px) {
  .hero-slide-bg {
    background-image: var(--bg-url);
  }
}

.hero-slide-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
}

.hero-content-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-text-block {
  padding: 60px;
  border: 1px solid var(--primary);
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  max-width: 600px;
}

.hero-text-block::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  width: 40px;
  height: 40px;
  border-top: 4px solid var(--primary);
  border-left: 4px solid var(--primary);
}

.hero-text-block::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 40px;
  height: 40px;
  border-bottom: 4px solid var(--primary);
  border-right: 4px solid var(--primary);
}

.hero-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 700;
  margin-bottom: 20px;
  display: block;
}

#hero-title, #hero-subtitle {
  transition: opacity 0.5s ease;
}

.hero h1 {
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 30px;
  color: var(--black);
  font-weight: 800;
}

.hero p {
  font-size: 16px;
  color: #333;
  max-width: 400px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-image-block {
  position: relative;
}

.hero-main-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  box-shadow: 30px 30px 0px rgba(0,0,0,0.05);
}

.hero-abstract-1 {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: url('/assets/images/brush1.svg') center/cover;
  opacity: 0.1;
  z-index: -1;
}

.hero-abstract-2 {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 150px;
  height: 150px;
  background: var(--primary);
  opacity: 0.2;
  clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 75% 75%, 75% 100%, 0% 100%);
  z-index: -1;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(14, 165, 233, 0.2);
}

.btn-secondary {
  background: var(--bg-alt);
  color: var(--text);
}

.btn-secondary:hover {
  background: #e0e0e5;
}

.hero-figure {
  margin-top: 60px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 8px solid var(--white);
}

/* Sections */
section {
  padding: 100px 0;
}

.bg-alt {
  background-color: #f8f9fa;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 40px;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 18px;
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 32px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Cards */
.card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: #f0f0f0;
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.card p {
  color: var(--text-muted);
  font-size: 15px;
}

/* Services Section */
#services {
  background: var(--white);
  color: var(--black);
  padding: 100px 0;
}

.service-row {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 120px;
  position: relative;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

.service-row[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
}

.service-row[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

.service-row:hover .service-image img {
  transform: scale(1.05);
  box-shadow: 0 40px 80px rgba(14, 165, 233, 0.2);
}

.service-row:nth-child(even) {
  flex-direction: row-reverse;
}

.service-text {
  flex: 1;
}

.service-text h3 {
  font-size: 42px;
  margin-bottom: 24px;
  color: var(--black);
  position: relative;
  display: inline-block;
}

.service-text h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--primary);
}

.service-text p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.6;
}

.service-image {
  flex: 1.2;
  position: relative;
}

.service-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(14, 165, 233, 0.15);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-row:hover .service-image img {
  transform: scale(1.02);
}

/* Pricing Section */
#offer {
  background: #f0f9ff;
  color: var(--black);
  padding: 100px 0;
}

.pricing-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.slider-arrow {
  background: var(--white);
  border: 1px solid #e2e8f0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--primary);
  z-index: 10;
  flex-shrink: 0;
}

.slider-arrow:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  flex: 1;
}

.pricing-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid #e0f2fe;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.pricing-card:hover {
  border-color: var(--primary);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(14, 165, 233, 0.1);
}

.pricing-card.featured {
  border-color: var(--primary);
  background: var(--white);
  position: relative;
}

.pricing-card.featured::before {
  content: 'POPULARNY';
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
}

.pricing-card h4 {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-card .price {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 30px;
  color: var(--primary);
}

.pricing-card .price span {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 400;
}

.btn-select {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 30px;
  cursor: pointer;
  transition: background 0.2s ease;
  display: inline-block;
  text-align: center;
}

.pricing-card.featured .btn-select {
  background: var(--primary);
  color: var(--white);
  border: none;
}

.btn-select:hover {
  background: var(--primary-dark);
  color: var(--white);
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: #4b5563;
}

.feature-list li svg {
  color: #22c55e;
  flex-shrink: 0;
}

.badge-popular {
  background: #27272a;
  color: #fff;
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 100px;
  margin-left: auto;
}

/* Testimonials Slider */
.testimonials-slider-container {
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.testimonials-track {
  display: flex;
  gap: 30px;
  animation: scrollLeft 40s linear infinite;
  width: max-content;
}

.testimonials-track:hover {
  animation-play-state: paused;
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonial-card {
  width: 400px;
  padding: 40px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  flex-shrink: 0;
}

/* Multi-colored cards */
.testimonial-card:nth-child(5n+1) { background-color: #f0f9ff; border: 1px solid #bae6fd; }
.testimonial-card:nth-child(5n+2) { background-color: #f0fdf4; border: 1px solid #bbf7d0; }
.testimonial-card:nth-child(5n+3) { background-color: #fdf2f8; border: 1px solid #fbcfe8; }
.testimonial-card:nth-child(5n+4) { background-color: #fefce8; border: 1px solid #fef08a; }
.testimonial-card:nth-child(5n+5) { background-color: #faf5ff; border: 1px solid #e9d5ff; }

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.slider-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 24px;
  font-size: 18px !important;
  color: #1e293b !important;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.testimonial-author strong {
  font-size: 16px;
  color: var(--text);
}

.testimonial-author span {
  font-size: 14px;
  color: var(--text-muted);
}

/* Process Section */
.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--bg-alt);
  z-index: 0;
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-weight: 700;
  border: 4px solid var(--white);
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 16px;
  border-bottom: 1px solid var(--bg-alt);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--text-muted);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 24px;
}

.faq-question .chevron-icon {
  transition: transform 0.3s ease;
}

.faq-item.active .chevron-icon {
  transform: rotate(180deg);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info h3 {
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-item i {
  color: var(--primary);
}

/* Footer */
footer {
  background: #0f172a;
  color: #ffffff;
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h4 {
  margin-bottom: 30px;
  font-size: 18px;
  position: relative;
  padding-bottom: 10px;
  color: #ffffff;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}

.footer-col ul li {
  margin-bottom: 15px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: var(--primary);
}

.footer-contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
}

.footer-contact-item i, .footer-contact-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

.btn-book {
  background: var(--primary);
  color: #fff;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  margin-top: 20px;
}

.open-hours-list {
  list-style: none;
  padding: 0;
}

.open-hours-list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.open-hours-list li span:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.social-link:hover {
  transform: translateY(-3px);
}

.footer-logos {
  display: flex;
  gap: 10px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.footer-logo-item {
  background: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-item img {
  height: 20px;
  filter: grayscale(1);
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
  color: inherit;
}

.footer-bottom-links a {
  margin-right: 20px;
}

.footer-bottom-links a:last-child {
  margin-right: 0;
}

.text-danger { color: #ef4444; }

.page-header p { color: #64748b; font-size: 18px; max-width: 800px; margin: 0 auto; }
.section-placeholder { padding: 100px 0; min-height: 400px; }
.container-center { text-align: center; }
.placeholder-box { padding: 40px; border: 1px dashed #cbd5e1; border-radius: 12px; color: #94a3b8; }

.hero-bg-default { --bg-url: url('../images/hero-bg.svg'); }
.btn-service-cta { margin-top: 20px; }
.pricing-card-header { display: flex; align-items: center; margin-bottom: 20px; }
.pricing-card-header h4 { margin-bottom: 0; }
.text-center { text-align: center; }
.form-group { margin-bottom: 30px; }
.form-control { 
  width: 100%; 
  padding: 20px 28px; 
  border-radius: 16px; 
  border: 1px solid #e2e8f0; 
  font-size: 1.2rem;
  transition: all 0.3s ease;
  background: #fcfcfc;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1);
}
.btn-full { width: 100%; }

.error-container {
  padding: 20px;
  color: #ef4444;
  text-align: center;
  border: 1px solid #ef4444;
  border-radius: 8px;
  margin: 20px auto;
}

/* Custom styles for Sprzedaż Spółek */
.list-check {
  margin: 20px 0;
}
.list-check li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
}
.list-check li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}
.mt-4 {
  margin-top: 32px;
}
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }

.lead {
  font-size: 20px;
  line-height: 1.6;
  color: var(--text-muted);
}

.address-box {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #f0f9ff;
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
  margin-top: 20px;
}

.address-box svg {
  color: var(--primary);
  flex-shrink: 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-check {
  color: #22c55e;
  font-weight: bold;
}

.bg-primary {
  background-color: var(--primary);
}

.bg-primary, 
.bg-primary p, 
.bg-primary li, 
.bg-primary strong,
.bg-primary h1, 
.bg-primary h2, 
.bg-primary h3, 
.bg-primary h4 {
  color: var(--white) !important;
}

.contact-card-simple {
  background-color: #f8f9fa;
  padding: 30px;
  text-align: center;
  border-radius: 4px;
}

.contact-card-simple h4 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: #444;
}

.contact-card-simple p {
  margin-bottom: 5px;
  color: #666;
}

.address-card-simple {
  background-color: #f8f9fa;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 4px;
}

.address-card-simple p {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #444;
}

.map-container-simple {
  border-radius: 4px;
  overflow: hidden;
}

.virtual-tour-container {
  position: relative;
  cursor: pointer;
}

.tour-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.virtual-tour-container:hover .tour-overlay {
  background: rgba(0,0,0,0.3);
}

.contact-form-wrapper {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-form-wrapper .card {
  padding: 80px;
  border-radius: 40px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.contact-form-wrapper .btn {
  padding: 24px;
  font-size: 1.3rem;
  border-radius: 20px;
  margin-top: 15px;
}

.contact-form-wrapper textarea.form-control {
  min-height: 180px;
}

.contact-form-simple .form-group {
  margin-bottom: 20px;
}

.contact-form-simple input,
.contact-form-simple textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  background-color: #eee;
  border-radius: 4px;
  font-family: inherit;
}

.contact-form-simple input:focus,
.contact-form-simple textarea:focus {
  outline: none;
  border-color: var(--primary);
  background-color: #fff;
}

.contact-form-simple .form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  color: #666;
  font-size: 0.9rem;
}

.btn-submit-simple {
  width: 100%;
  padding: 15px;
  background-color: #00aeef;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-submit-simple:hover {
  background-color: #0095cc;
}

.mb-20 {
  margin-bottom: 20px;
}

.pt-60 {
  padding-top: 60px;
}

.gap-20 {
  gap: 20px;
}

.text-white {
  color: var(--white) !important;
}

.btn-white {
  background: var(--white);
  color: var(--primary);
}

.btn-white:hover {
  background: #f0f9ff;
  transform: translateY(-2px);
}

.contact-card {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.contact-details {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 18px;
}
.contact-details a {
  color: var(--primary);
  font-weight: 600;
}
.align-center {
  align-items: center;
}

/* Square Offer Cards for Sprzedaż Spółek */
.square-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.square-offer-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  aspect-ratio: 1 / 1;
  transition: all 0.3s ease;
  text-align: center;
}

.square-offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(14, 165, 233, 0.1);
  border-color: var(--primary);
}

.square-offer-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--black);
}

.square-offer-card .price {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 15px;
}

.square-offer-card .price span {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 400;
}

.square-offer-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.square-offer-card .btn-order {
  background: var(--primary);
  color: var(--white);
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.2s ease;
}

.square-offer-card .btn-order:hover {
  background: var(--primary-dark);
}

@media (max-width: 768px) {
  .square-offer-card {
    aspect-ratio: auto;
    min-height: 350px;
  }
}

/* Free Slider / Marquee */
.slider-wrapper {
  overflow: hidden;
  padding: 20px 0;
  position: relative;
}

.free-slider {
  display: flex;
  gap: 30px;
  animation: scroll 40s linear infinite;
  width: max-content;
}

.free-slider:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 15px)); }
}

.slider-card {
  width: 300px;
  flex-shrink: 0;
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

/* Colored Cards */
.card-blue { border-top: 4px solid #3b82f6; }
.card-green { border-top: 4px solid #10b981; }
.card-purple { border-top: 4px solid #8b5cf6; }
.card-orange { border-top: 4px solid #f59e0b; }

.card-cta {
  margin-top: 20px;
  display: inline-block;
  font-weight: 600;
  color: var(--primary);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-cta:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Guarantee Box */
.guarantee-box {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 2px dashed var(--primary);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.guarantee-box svg {
  color: var(--primary);
  margin-bottom: 20px;
}

.guarantee-box p {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.3;
}

/* Improved Contact Section */
.contact-card-modern {
  background: var(--white);
  padding: 60px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
  text-align: center;
}

.contact-methods {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.contact-method-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.contact-method-item .icon-circle {
  width: 60px;
  height: 60px;
  background: #f0f9ff;
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.contact-method-item strong {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-method-item span {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
}

.btn-write-us {
  background: var(--primary);
  color: var(--white);
  padding: 16px 40px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(14, 165, 233, 0.2);
}

.btn-write-us:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(14, 165, 233, 0.3);
  background: var(--primary-dark);
}

/* Offer Overview Card */
.offer-overview-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  padding: 60px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.offer-overview-text p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #334155;
}

.offer-overview-list h3 {
  margin-bottom: 24px;
  font-size: 24px;
}

@media (max-width: 992px) {
  .offer-overview-card {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
  }
}

/* Compact sections for specific pages */
.page-spolki section {
  padding: 50px 0;
}
.page-spolki .page-header {
  padding: 100px 0 40px;
}

/* Responsive */
@media (min-width: 1025px) and (max-width: 1280px) {
  .nav-links {
    gap: 16px;
  }
  .nav-links a {
    font-size: 14px;
  }
  .logo-wrapper {
    font-size: 22px;
    letter-spacing: 2px;
  }
  .logo-office-box {
    padding: 1px 6px;
    border-width: 1.5px;
  }
  .nav-actions {
    gap: 12px;
  }
  .nav-cta-container {
    margin-right: 5px;
  }
}

@media (max-width: 1024px) {
  .hero h1 { font-size: 48px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }

  .logo-wrapper {
    font-size: 22px;
    letter-spacing: 2px;
    order: 1;
  }
  .logo-office-box {
    padding: 1px 8px;
    border-width: 1.5px;
  }
  .logo-opti {
    margin-right: 6px;
  }

  /* Pricing Slider Tablet */
  .pricing-slider-wrapper {
    padding: 0 10px;
  }
  .pricing-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0;
    width: 100%;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
    -webkit-overflow-scrolling: touch;
  }
  .pricing-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }
  .pricing-card {
    min-width: 100%;
    scroll-snap-align: center;
    transform: none !important;
  }
  .slider-arrow {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .slider-arrow.prev { left: -10px; }
  .slider-arrow.next { right: -10px; }
  
  /* Tablet Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-col:nth-child(1),
  .footer-col:nth-child(2) {
    display: none;
  }

  /* Mobile/Tablet Navigation Rules (Up to 1024px) */
  .hide-mobile {
    display: none;
  }

  .nav-cta-mobile-li {
    display: block !important;
    width: 100%;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px dashed #e2e8f0;
    text-align: center;
  }
  
  .nav-cta-mobile-li .nav-cta-container {
    margin-right: 0;
  }

  .nav-links { 
    display: none; 
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  }
  .nav-links.active {
    display: flex;
  }

  .has-dropdown .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 20px;
    margin-top: 10px;
    min-width: 0;
  }

  .has-dropdown.active .nav-dropdown {
    display: flex;
  }

  .lang-dropdown {
    right: auto;
    left: 0;
  }

  .lang-menu.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .mobile-menu-btn { 
    display: block; 
    order: 2;
    margin-left: auto;
    margin-right: 15px;
  }
  
  .nav-actions {
    order: 3;
  }
  .mobile-menu-btn.active svg {
    color: var(--primary);
  }
}

@media (max-width: 640px) {
  .logo-wrapper {
    font-size: 20px;
  }

  /* Services Mobile */
  .service-row {
    flex-direction: column !important;
    gap: 20px;
    margin-bottom: 40px;
  }
  .service-image {
    display: none;
  }
  .service-text h3 {
    font-size: 28px;
  }

  /* Footer Mobile */
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-col {
    text-align: center;
  }
  .footer-contact-item {
    justify-content: center;
  }
  .open-hours-list li {
    justify-content: center;
    gap: 20px;
  }

  .hero-text-block {
    max-width: 100%;
    padding: 40px 20px;
    border: none;
    background: var(--white);
  }
  .hero-slide-bg {
    display: none;
  }
  .hero {
    background: var(--white);
    padding: 80px 0 40px;
    min-height: auto;
  }
  .hero h1 {
    font-size: 32px;
    margin-bottom: 15px;
  }
  
  .hero h1 { font-size: 36px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .mobile-reverse { display: flex; flex-direction: column-reverse; }
  .contact-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; gap: 40px; }
  .process-steps::before { display: none; }
}

.pricing-slider-wrapper {
  position: relative;
  width: 100%;
}

.pricing-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
  padding: 0 5px;
}

.pricing-nav-btn {
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.pricing-nav-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.hide-desktop {
  display: none;
}

@media (max-width: 1024px) {
  .hide-desktop {
    display: flex;
  }
}

/* Gallery */
.gallery-mini {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.contact-info-card {
  padding: 40px;
  background: var(--bg-alt);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 18px;
}

.contact-item svg {
  color: var(--primary);
}

/* Animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Pricing Table */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.pricing-table th, .pricing-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}

.pricing-table th {
  background-color: #f8fafc;
  font-weight: 600;
  color: var(--black);
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

/* Utilities */
.space-y-10 > * + * {
  margin-top: 10px;
}

.col-span-2 {
  grid-column: span 2 / span 2;
}

@media (max-width: 768px) {
  .col-span-2 {
    grid-column: span 1 / span 1;
  }
}
