/* ===== WEBTURA DESIGN SYSTEM ===== */

:root {
  --primary: #ef476f;
  --primary-light: #fce4ec;
  --primary-hover: #d63a5e;
  --blue: #4361EE;
  --blue-light: #e8ecfd;
  --dark: #0A1128;
  --dark-soft: #162041;
  --dark-mid: #1a2744;
  --gray-900: #212529;
  --gray-700: #495057;
  --gray-600: #6C757D;
  --gray-400: #ADB5BD;
  --gray-200: #E9ECEF;
  --gray-100: #F8F9FA;
  --white: #FFFFFF;
  --green: #28A745;
  --red: #DC3545;
  --text-light: #edf2fb;
  --font: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
  --transition: 0.2s ease;
  /* keep --orange as alias for backward compat */
  --orange: var(--primary);
  --orange-light: var(--primary-light);
  --orange-hover: var(--primary-hover);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4, h5 { line-height: 1.2; font-weight: 700; color: var(--dark); }
h1 { font-size: 3rem; letter-spacing: -0.02em; }
h2 { font-size: 2.25rem; letter-spacing: -0.01em; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.125rem; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.25rem; }
}

.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--gray { background: var(--gray-100); }
.section--orange-light { background: var(--primary-light); }
.section--cta-dark {
  background: var(--dark);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}
.section--cta-dark::before {
  content: '';
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(ellipse 700px 500px at 75% 25%, rgba(67,97,238,0.42), transparent 65%),
    radial-gradient(ellipse 650px 450px at 15% 65%, rgba(239,71,111,0.40), transparent 65%),
    radial-gradient(circle 450px at 50% 35%, rgba(147,51,234,0.22), transparent 65%);
  z-index: 0;
  pointer-events: none;
  animation: meshDrift 25s ease-in-out infinite alternate-reverse;
}
.section--cta-dark > .container { position: relative; z-index: 1; }
.section--cta-dark h2 { color: var(--white); }
.section--cta-dark p { color: rgba(237,242,251,0.75); }
.section--cta-dark .note { color: rgba(237,242,251,0.5); }
.section--cta-dark .btn--secondary { color: var(--white); border-color: rgba(255,255,255,0.3); }
.section--cta-dark .btn--secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }
.section--dark { background: var(--dark); color: var(--white); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
@media (max-width: 768px) { .section { padding: 48px 0; } }

.section-label {
  font-size: 13px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 2px; color: var(--orange); margin-bottom: 12px;
}
.section-header { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-header p { margin-top: 16px; color: var(--gray-700); font-size: 1.125rem; }

.grid { display: grid; gap: 32px; align-items: stretch; }
.grid > .animate-in { height: 100%; }
.grid > .animate-in > .card { height: 100%; display: flex; flex-direction: column; }
.testimonials-grid > .animate-in { break-inside: avoid; margin-bottom: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) { .grid--4, .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card--bordered-top { border-top: 3px solid var(--orange); }
.card h3 { margin-bottom: 12px; }
.card p { color: var(--gray-700); }
.card__icon {
  width: 48px; height: 48px; background: var(--orange-light);
  border-radius: var(--radius); display: flex; align-items: center;
  justify-content: center; margin-bottom: 16px; color: var(--orange);
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font); font-size: 1rem; font-weight: 600;
  padding: 14px 28px; border-radius: var(--radius); border: 2px solid transparent;
  cursor: pointer; transition: all var(--transition); white-space: nowrap;
}
.btn--primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn--primary:hover { background: var(--orange-hover); border-color: var(--orange-hover); }
.btn--secondary { background: transparent; color: var(--orange); border-color: var(--orange); }
.btn--secondary:hover { background: var(--orange-light); }
.btn--ghost { background: transparent; color: var(--dark); border-color: var(--gray-200); }
.btn--ghost:hover { border-color: var(--gray-400); }
.btn--sm { padding: 10px 20px; font-size: 0.875rem; }
.btn--lg { padding: 16px 36px; font-size: 1.125rem; }
.btn-group { display: flex; gap: 16px; flex-wrap: wrap; }
@media (max-width: 640px) { .btn-group { flex-direction: column; } .btn-group .btn { width: 100%; } }

.pricing-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px 32px; box-shadow: var(--shadow); position: relative;
  transition: box-shadow var(--transition);
}
.pricing-card:hover { box-shadow: var(--shadow-md); }
.pricing-card--featured { border: 2px solid var(--orange); box-shadow: var(--shadow-md); }
.pricing-card__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: var(--white); font-size: 12px;
  font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  padding: 4px 16px; border-radius: 20px; white-space: nowrap;
}
.pricing-card__name { font-size: 1.25rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.pricing-card__desc { color: var(--gray-600); font-size: 0.875rem; margin-bottom: 24px; }
.pricing-card__price { font-size: 2.5rem; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.pricing-card__price span { font-size: 1rem; font-weight: 400; color: var(--gray-600); }
.pricing-card__period { color: var(--gray-600); font-size: 0.875rem; margin-bottom: 32px; }
.pricing-card__features { margin-bottom: 32px; }
.pricing-card__features li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; font-size: 0.9375rem; color: var(--gray-700); }
.pricing-card__features li svg { flex-shrink: 0; margin-top: 3px; }
.pricing-card .btn { width: 100%; }

.check-list li { display: flex; align-items: flex-start; gap: 10px; padding: 6px 0; color: var(--gray-700); }
.check-list li .check { color: var(--green); flex-shrink: 0; margin-top: 3px; }
.check-list li .x-mark { color: var(--gray-400); flex-shrink: 0; margin-top: 3px; }

.hero {
  padding: 120px 0 100px; text-align: center; position: relative; overflow: hidden;
  background: var(--dark);
  color: var(--text-light);
}
.hero::before {
  content: '';
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 900px 600px at 20% 55%, rgba(239,71,111,0.55), transparent 65%),
    radial-gradient(ellipse 700px 500px at 70% 15%, rgba(67,97,238,0.45), transparent 65%),
    radial-gradient(circle 550px at 45% 80%, rgba(147,51,234,0.28), transparent 65%),
    radial-gradient(ellipse 500px 400px at 90% 60%, rgba(239,71,111,0.22), transparent 65%),
    radial-gradient(circle 500px at 5% 20%, rgba(67,97,238,0.20), transparent 65%);
  z-index: 0;
  pointer-events: none;
  animation: meshDrift 25s ease-in-out infinite alternate;
}
.hero h1 { margin-bottom: 20px; color: var(--white); }
.hero p { font-size: 1.25rem; color: rgba(237,242,251,0.8); max-width: 640px; margin: 0 auto 32px; }
.hero .btn-group { justify-content: center; }
.hero .section-label { color: var(--primary); }
.hero .btn--secondary { color: var(--white); border-color: rgba(255,255,255,0.3); }
.hero .btn--secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }
.hero__bullets { display: flex; justify-content: center; gap: 32px; margin-top: 40px; flex-wrap: wrap; }
.hero__bullet { display: flex; align-items: center; gap: 10px; font-size: 0.9375rem; color: rgba(237,242,251,0.75); }
.hero__bullet svg { color: var(--primary); flex-shrink: 0; }
.hero__svg-left, .hero__svg-right {
  position: absolute; top: 50%; transform: translateY(-50%); pointer-events: none; opacity: 0.3;
}
.hero__svg-left { left: -60px; }
.hero__svg-right { right: -60px; }
@media (min-width: 1200px) { .hero__svg-left, .hero__svg-right { opacity: 0.4; } }
@media (max-width: 1024px) {
  .hero__svg-left, .hero__svg-right { opacity: 0.12; transform: translateY(-50%) scale(0.6); }
  .hero__svg-left { left: -100px; }
  .hero__svg-right { right: -100px; }
}
@media (max-width: 480px) {
  .hero__svg-left, .hero__svg-right { opacity: 0.08; transform: translateY(-50%) scale(0.45); }
  .hero__svg-left { left: -120px; }
  .hero__svg-right { right: -120px; }
}
@media (max-width: 768px) { .hero { padding: 80px 0 64px; } .hero__bullets { flex-direction: column; align-items: center; gap: 12px; } }

.trust-bar { display: flex; justify-content: center; gap: 40px; padding: 24px 0; flex-wrap: wrap; }
.trust-bar__item { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; color: var(--gray-600); font-weight: 500; }
.trust-bar__item svg { color: var(--blue); }
.trust-bar--dark { background: var(--dark-soft); border-bottom: 1px solid rgba(255,255,255,0.06); }
.trust-bar--dark .trust-bar__item { color: rgba(237,242,251,0.5); }
.trust-bar--dark .trust-bar__item svg { color: var(--primary); }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; counter-reset: step; }
.step { text-align: center; position: relative; }
.step__number {
  width: 48px; height: 48px; background: var(--orange); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.125rem; margin: 0 auto 16px;
}
.step h4 { margin-bottom: 8px; }
.step p { color: var(--gray-700); font-size: 0.9375rem; }
@media (max-width: 768px) {
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .step { text-align: left; display: grid; grid-template-columns: 48px 1fr; gap: 0 16px; align-items: start; }
  .step__number { margin: 0; grid-row: 1/3; }
}

.comparison-table { width: 100%; border-collapse: collapse; font-size: 0.9375rem; }
.comparison-table th { text-align: left; padding: 14px 20px; font-weight: 600; background: var(--gray-100); color: var(--dark); border-bottom: 2px solid var(--gray-200); }
.comparison-table td { padding: 14px 20px; border-bottom: 1px solid var(--gray-200); color: var(--gray-700); }
.comparison-table tr td:last-child { color: var(--dark); font-weight: 500; }
.comparison-table .highlight-col { background: var(--blue-light); }

.timeline { position: relative; padding-left: 48px; }
.timeline::before { content: ''; position: absolute; left: 15px; top: 0; bottom: 0; width: 2px; background: var(--gray-200); }
.timeline__item { position: relative; padding-bottom: 32px; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__dot {
  width: 32px; height: 32px; background: var(--orange); border-radius: 50%;
  position: absolute; left: -48px; top: 0; display: flex; align-items: center;
  justify-content: center; color: var(--white); font-weight: 700; font-size: 0.75rem;
}
.timeline__item h4 { margin-bottom: 4px; color: var(--dark); }
.timeline__days { font-size: 0.8125rem; color: var(--orange); font-weight: 600; margin-bottom: 4px; }
.timeline__item p { color: var(--gray-700); font-size: 0.9375rem; }

.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-item__question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; cursor: pointer; font-weight: 600; color: var(--dark);
  font-size: 1.0625rem; background: none; border: none; width: 100%;
  text-align: left; font-family: var(--font); gap: 16px;
}
.faq-item__question:hover { color: var(--orange); }
.faq-item__question svg { flex-shrink: 0; transition: transform var(--transition); }
.faq-item__question.open svg { transform: rotate(180deg); }
.faq-item__answer { padding: 0 0 20px; color: var(--gray-700); font-size: 0.9375rem; line-height: 1.7; display: none; }
.faq-item__answer.visible { display: block; }

.testimonial { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); }
.testimonial__quote { font-size: 1.125rem; font-style: italic; color: var(--dark); margin-bottom: 20px; line-height: 1.7; }
.testimonial__author { font-weight: 600; color: var(--dark); }
.testimonial__role { font-size: 0.875rem; color: var(--gray-600); }

.stat-card { text-align: center; padding: 32px; }
.stat-card__number { font-size: 3rem; font-weight: 800; color: var(--orange); margin-bottom: 8px; }
.stat-card__label { color: var(--gray-700); font-size: 0.9375rem; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 500; margin-bottom: 6px; font-size: 0.9375rem; color: var(--dark); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1px solid var(--gray-200);
  border-radius: var(--radius); font-family: var(--font); font-size: 1rem;
  transition: border-color var(--transition); background: var(--white); color: var(--gray-900);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--orange); }
.form-group textarea { min-height: 120px; resize: vertical; }

.navbar {
  position: sticky; top: 0; background: var(--dark);
  backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 1000; padding: 0 24px;
}
.navbar__inner { max-width: var(--max-width); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 64px; }
.navbar__logo { font-size: 1.5rem; font-weight: 800; color: var(--white); letter-spacing: -0.02em; cursor: pointer; flex-shrink: 0; }
.navbar__logo span { color: var(--primary); }
.navbar__links { display: flex; align-items: center; gap: 4px; }
.navbar__link { padding: 8px 16px; font-size: 0.9375rem; font-weight: 700; color: rgba(237,242,251,0.7); border-radius: var(--radius); transition: color var(--transition), background var(--transition); cursor: pointer; background: none; border: none; font-family: var(--font); }
.navbar__link:hover, .navbar__link.active { color: var(--white); background: rgba(255,255,255,0.08); }

/* Dropdown */
.navbar__dropdown { position: relative; }
.navbar__dropdown-trigger { display: flex; align-items: center; gap: 4px; font-size: 0.9375rem; padding: 8px 16px; line-height: 24px; }
.navbar__chevron { transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.navbar__dropdown--open .navbar__chevron { transform: rotate(180deg); }
.navbar__dropdown-menu {
  position: absolute; top: calc(100% + 12px); left: 0;
  transform: translateY(20px) scale(0.92);
  background: rgba(22, 28, 45, 0.96); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-radius: 16px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.08), inset 0 1px 0 rgba(255,255,255,0.06);
  padding: 10px; min-width: 340px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
  transform-origin: top left;
}
.navbar__dropdown--open .navbar__dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateY(0) scale(1);
}
/* Staggered item animation — dramatic */
.navbar__dropdown-item {
  display: flex; align-items: center; gap: 14px; padding: 12px 14px;
  border-radius: 12px; transition: background 0.2s ease, transform 0.2s ease;
  color: var(--white); text-decoration: none;
  opacity: 0; transform: translateY(16px) scale(0.95);
}
.navbar__dropdown--open .navbar__dropdown-item {
  opacity: 1; transform: translateY(0) scale(1);
  transition: background 0.2s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}
.navbar__dropdown--open .navbar__dropdown-item:nth-child(1) { transition-delay: 0.05s; }
.navbar__dropdown--open .navbar__dropdown-item:nth-child(2) { transition-delay: 0.1s; }
.navbar__dropdown--open .navbar__dropdown-item:nth-child(3) { transition-delay: 0.15s; }
.navbar__dropdown--open .navbar__dropdown-item:nth-child(4) { transition-delay: 0.2s; }
.navbar__dropdown-item:hover { background: rgba(255,255,255,0.08); transform: translateX(4px); }
.navbar__dropdown-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(67,97,238,0.2), rgba(67,97,238,0.08));
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.navbar__dropdown-item:hover .navbar__dropdown-icon {
  background: linear-gradient(135deg, rgba(67,97,238,0.35), rgba(67,97,238,0.15));
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(67,97,238,0.2);
}
.navbar__dropdown-label { display: block; font-size: 0.9375rem; font-weight: 600; color: var(--white); }
.navbar__dropdown-desc { display: block; font-size: 0.8125rem; color: rgba(237,242,251,0.55); margin-top: 2px; }

/* Right side */
.navbar__right { display: flex; align-items: center; gap: 8px; }
.navbar__cta { white-space: nowrap; }
.navbar__lang { display: flex; align-items: center; gap: 2px; }
.navbar__lang-btn { background: none; border: 1px solid transparent; color: rgba(237,242,251,0.4); font-size: 0.75rem; font-weight: 600; cursor: pointer; padding: 4px 8px; border-radius: var(--radius); font-family: var(--font); transition: all var(--transition); }
.navbar__lang-btn.active { color: var(--white); border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.08); }
.navbar__lang-btn:hover { color: var(--white); }

.navbar__mobile-extras { display: none; }
.navbar__mobile-toggle { display: none; background: none; border: none; padding: 8px; cursor: pointer; color: var(--white); }

/* ===== MOBILE NAV ===== */
@media (max-width: 1024px) {
  .navbar__cta { display: none; }
  .navbar__mobile-toggle { display: block; }

  /* Panel: always in DOM, animate via max-height + opacity */
  .navbar__links {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 64px; left: 0; right: 0;
    background: var(--dark); padding: 0 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 16px 48px rgba(0,0,0,0.4);
    gap: 0; z-index: 999;
    max-height: 0; overflow: hidden; opacity: 0;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.35s ease,
                padding 0.4s ease;
  }
  .navbar__links.open {
    max-height: 700px; opacity: 1; padding: 12px 24px 24px;
    overflow: visible;
  }

  /* Each direct child gets staggered entrance animation */
  .navbar__links > * {
    opacity: 0; transform: translateY(16px);
    transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .navbar__links.open > * {
    opacity: 1; transform: translateY(0);
  }
  /* Stagger: Home, Services, Pricing, About, Contact, CTA */
  .navbar__links.open > *:nth-child(1) { transition-delay: 0.04s; }
  .navbar__links.open > *:nth-child(2) { transition-delay: 0.08s; }
  .navbar__links.open > *:nth-child(3) { transition-delay: 0.12s; }
  .navbar__links.open > *:nth-child(4) { transition-delay: 0.16s; }
  .navbar__links.open > *:nth-child(5) { transition-delay: 0.20s; }
  .navbar__links.open > *:nth-child(6) { transition-delay: 0.24s; }

  /* Mobile nav links — left aligned, full width */
  .navbar__links .navbar__link {
    padding: 15px 0; font-size: 1.0625rem; text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    border-radius: 0; background: none;
  }
  .navbar__links .navbar__link:hover { background: none; }
  .navbar__links .navbar__link.active {
    color: var(--white);
  }

  /* Mobile dropdown */
  .navbar__links .navbar__dropdown {
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .navbar__links .navbar__dropdown-trigger {
    padding: 15px 0; font-size: 1.0625rem; width: 100%;
    justify-content: space-between; border-radius: 0; background: none;
    line-height: inherit;
  }

  /* Mobile dropdown menu — full width accordion */
  .navbar__links .navbar__dropdown-menu {
    position: static; opacity: 1; visibility: visible; pointer-events: auto;
    transform: none; box-shadow: none; border: none; border-radius: 0;
    background: transparent; backdrop-filter: none;
    min-width: auto; padding: 0; margin: 0;
    max-height: 0; overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  }
  .navbar__links .navbar__dropdown--open .navbar__dropdown-menu {
    max-height: 350px; padding: 4px 0;
  }

  /* Mobile dropdown items — one by one, left aligned */
  .navbar__links .navbar__dropdown-item {
    padding: 14px 0; gap: 14px; border-radius: 0;
    opacity: 0; transform: translateY(12px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s ease;
    border-bottom: 1px solid rgba(255,255,255,0.03);
  }
  .navbar__links .navbar__dropdown--open .navbar__dropdown-item {
    opacity: 1; transform: translateY(0);
  }
  .navbar__links .navbar__dropdown--open .navbar__dropdown-item:nth-child(1) { transition-delay: 0.08s; }
  .navbar__links .navbar__dropdown--open .navbar__dropdown-item:nth-child(2) { transition-delay: 0.16s; }
  .navbar__links .navbar__dropdown--open .navbar__dropdown-item:nth-child(3) { transition-delay: 0.24s; }
  .navbar__links .navbar__dropdown--open .navbar__dropdown-item:nth-child(4) { transition-delay: 0.32s; }
  .navbar__links .navbar__dropdown-item:active { background: rgba(255,255,255,0.04); }

  .navbar__links .navbar__dropdown-icon { width: 36px; height: 36px; border-radius: 10px; }
  .navbar__links .navbar__dropdown-label { font-size: 0.9375rem; color: var(--white); }
  .navbar__links .navbar__dropdown-desc { display: none; }

  /* Mobile CTA — full width */
  .navbar__links .navbar__mobile-extras {
    display: flex; flex-direction: column; gap: 0; align-items: stretch;
    margin-top: 8px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.08);
  }
  .navbar__links .navbar__mobile-extras .btn { width: 100%; text-align: center; }
}

.footer { background: var(--dark); color: var(--gray-400); padding: 64px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer__brand p { margin-top: 12px; font-size: 0.875rem; line-height: 1.7; }
.footer h4 { color: var(--white); font-size: 0.875rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer ul li { margin-bottom: 8px; }
.footer ul li a { font-size: 0.875rem; color: var(--gray-400); transition: color var(--transition); cursor: pointer; }
.footer ul li a:hover { color: var(--white); }
.footer__bottom { border-top: 1px solid var(--dark-soft); padding-top: 24px; display: flex; justify-content: space-between; font-size: 0.8125rem; flex-wrap: wrap; gap: 8px; }
@media (max-width: 768px) { .footer__grid { grid-template-columns: 1fr; gap: 32px; } }

/* Section decorative SVGs */
.section-decorated { position: relative; overflow: hidden; }
.section-svg { position: absolute; pointer-events: none; z-index: 0; }
.section-svg--top-right { top: 20px; right: 60px; animation: svgFloat 8s ease-in-out infinite; }
.section-svg--top-left { top: 20px; left: 60px; animation: svgFloatAlt 9s ease-in-out infinite; }
.section-svg--bottom-right { bottom: 20px; right: 60px; animation: svgFloat 10s ease-in-out infinite 1s; }
.section-svg--bottom-left { bottom: 20px; left: 60px; animation: svgFloatAlt 8.5s ease-in-out infinite 0.5s; }
.section-svg--center-right { top: 50%; right: 40px; transform: translateY(-50%); animation: svgPulse 7s ease-in-out infinite; }
.section-svg--center-left { top: 50%; left: 40px; transform: translateY(-50%); animation: svgPulse 8s ease-in-out infinite 1s; }
.section-decorated > .container { position: relative; z-index: 1; }
.section-wave { position: relative; z-index: 0; }

/* SVG animations */
@keyframes svgFloat {
  0%, 100% { transform: translateY(0px); opacity: 1; }
  50% { transform: translateY(-12px); opacity: 0.85; }
}
@keyframes svgFloatAlt {
  0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 1; }
  50% { transform: translateY(-10px) rotate(2deg); opacity: 0.9; }
}
@keyframes svgPulse {
  0%, 100% { transform: translateY(-50%) scale(1); opacity: 1; }
  50% { transform: translateY(-50%) scale(1.05); opacity: 0.85; }
}

/* Mesh gradient drift */
@keyframes meshDrift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(3%, -2%) scale(1.03); }
  100% { transform: translate(-2%, 3%) scale(0.97); }
}

/* Hero SVG animations */
.hero__svg-left { animation: heroFloat 12s ease-in-out infinite; }
.hero__svg-right { animation: heroFloat 12s ease-in-out infinite 2s; }
@keyframes heroFloat {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(calc(-50% - 15px)); }
}

/* Hero SVG line-draw animation */
@keyframes heroDraw {
  from { stroke-dashoffset: 1000; }
  to { stroke-dashoffset: 0; }
}
@keyframes mobileSlideIn {
  from { opacity: 0; transform: translateX(-12px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero__svg-left :is(line, rect, circle, path, polyline, polygon, ellipse),
.hero__svg-right :is(line, rect, circle, path, polyline, polygon, ellipse) {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: heroDraw 2s ease-out forwards;
}

/* Stagger draw animation per group for sequential reveal */
.hero__svg-left > g:nth-of-type(2) :is(line, rect, circle, path, polyline, polygon, ellipse),
.hero__svg-right > g:nth-of-type(2) :is(line, rect, circle, path, polyline, polygon, ellipse) {
  animation-delay: 0.3s;
}
.hero__svg-left > g:nth-of-type(3) :is(line, rect, circle, path, polyline, polygon, ellipse),
.hero__svg-right > g:nth-of-type(3) :is(line, rect, circle, path, polyline, polygon, ellipse) {
  animation-delay: 0.6s;
}
.hero__svg-left > g:nth-of-type(4) :is(line, rect, circle, path, polyline, polygon, ellipse),
.hero__svg-right > g:nth-of-type(4) :is(line, rect, circle, path, polyline, polygon, ellipse) {
  animation-delay: 0.9s;
}
.hero__svg-left > g:nth-of-type(5) :is(line, rect, circle, path, polyline, polygon, ellipse),
.hero__svg-right > g:nth-of-type(5) :is(line, rect, circle, path, polyline, polygon, ellipse) {
  animation-delay: 1.2s;
}
/* Connection lines (direct children) draw last */
.hero__svg-left > line,
.hero__svg-right > line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: heroDraw 1.5s ease-out forwards 1.5s;
}

@media (max-width: 768px) { .section-svg { opacity: 0.4; } }
@media (prefers-reduced-motion: reduce) {
  .section-svg, .hero__svg-left, .hero__svg-right, .hero::before, .section--cta-dark::before { animation: none !important; }
  .hero__svg-left :is(line, rect, circle, path, polyline, polygon, ellipse),
  .hero__svg-right :is(line, rect, circle, path, polyline, polygon, ellipse),
  .hero__svg-left > line,
  .hero__svg-right > line {
    animation: none !important;
    stroke-dasharray: none;
    stroke-dashoffset: 0;
  }
}

/* ===== CURSOR SPOTLIGHT EFFECT ===== */
.spotlight {
  position: relative;
}
.spotlight::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    650px circle at var(--spotlight-x, -1000px) var(--spotlight-y, -1000px),
    rgba(67, 97, 238, 0.10),
    rgba(239, 71, 111, 0.04) 30%,
    transparent 55%
  );
  pointer-events: none;
  opacity: var(--spotlight-opacity, 0);
  transition: opacity 0.4s ease;
  z-index: 2;
}
/* Disable spotlight on touch devices */
@media (hover: none) {
  .spotlight::after { display: none; }
}

/* Parallax SVGs — JS controls transform, kill CSS animation */
.hero--interactive .hero__svg-left,
.hero--interactive .hero__svg-right {
  will-change: transform;
  animation: none !important;
  transition: none;
}

.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.text-muted { color: var(--gray-600); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.note { font-size: 0.8125rem; color: var(--gray-600); margin-top: 16px; }
.badge { display: inline-block; background: var(--orange); color: var(--white); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 3px 10px; border-radius: 20px; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; } }

.cta-section { text-align: center; padding: 80px 0; }
.cta-section h2 { margin-bottom: 16px; }
.cta-section p { color: var(--gray-700); font-size: 1.125rem; max-width: 560px; margin: 0 auto 32px; }

.price-tag { font-size: 1.25rem; font-weight: 700; color: var(--dark); margin-top: 16px; }
.price-tag span { font-size: 0.875rem; font-weight: 400; color: var(--gray-600); }

.service-link { display: inline-flex; align-items: center; gap: 4px; color: var(--orange); font-weight: 600; font-size: 0.9375rem; margin-top: 16px; transition: gap var(--transition); }
.service-link:hover { gap: 8px; }

.pillar { margin-bottom: 64px; }
.pillar:last-child { margin-bottom: 0; }
.pillar h3 { margin-bottom: 8px; }
.pillar > p { color: var(--gray-700); margin-bottom: 24px; }
.pillar__features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.pillar__feature { display: flex; align-items: flex-start; gap: 10px; color: var(--gray-700); font-size: 0.9375rem; }
.pillar__feature svg { flex-shrink: 0; margin-top: 3px; color: var(--orange); }
@media (max-width: 640px) { .pillar__features { grid-template-columns: 1fr; } }

.pricing-table { width: 100%; border-collapse: collapse; }
.pricing-table th { text-align: left; padding: 12px 16px; font-weight: 600; font-size: 0.875rem; color: var(--gray-600); text-transform: uppercase; letter-spacing: 0.5px; border-bottom: 2px solid var(--gray-200); }
.pricing-table td { padding: 14px 16px; border-bottom: 1px solid var(--gray-200); font-size: 0.9375rem; color: var(--gray-700); }
.pricing-table tr:hover { background: var(--gray-100); }
.pricing-table td:last-child { font-weight: 600; color: var(--dark); white-space: nowrap; }

.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.contact-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); text-align: center; }
.contact-card h3 { margin-bottom: 8px; font-size: 1.125rem; }
.contact-card p { color: var(--gray-700); font-size: 0.9375rem; margin-bottom: 16px; }
@media (max-width: 768px) { .contact-cards { grid-template-columns: 1fr; } }

.founder-card { text-align: center; }
.founder-card__avatar { width: 120px; height: 120px; background: var(--gray-200); border-radius: 50%; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; color: var(--gray-400); }
.founder-card h3 { margin-bottom: 4px; }
.founder-card__role { color: var(--orange); font-weight: 600; font-size: 0.875rem; margin-bottom: 12px; }
.founder-card p { color: var(--gray-700); font-size: 0.9375rem; }

/* ===== SCROLL ENTRY ANIMATIONS ===== */
.animate-in {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-in--visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-in--instant {
  opacity: 1;
  transform: translateY(0);
  transition: none;
}

@media (prefers-reduced-motion: reduce) {
  .animate-in { opacity: 1; transform: none; transition: none; }
}

/* ===== BLUE PROJECTS SECTION ===== */
.section--blue {
  background: var(--blue);
  border-radius: 40px;
  margin: 0 16px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.section--blue h2 { color: var(--white); }
.section--blue p { color: rgba(255,255,255,0.8); }
.section--blue .section-label { color: rgba(255,255,255,0.6); }
.section--blue .project-card { box-shadow: 0 4px 24px rgba(0,0,0,0.15); }
.section--blue .project-card__body h3 { color: var(--dark); }
.section--blue .project-card__desc { color: var(--gray-700); }
@media (max-width: 768px) { .section--blue { border-radius: 24px; margin: 0 8px; } }

/* ===== PROJECT CARDS ===== */
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 1024px) { .project-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .project-grid { grid-template-columns: 1fr; } }

.project-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.project-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.project-card__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  background: var(--gray-100);
}

.project-card__body { padding: 24px; }
.project-card__body h3 { font-size: 1.25rem; margin-bottom: 4px; }
.project-card__url { font-size: 0.8125rem; color: var(--blue); font-weight: 500; margin-bottom: 8px; }
.project-card__desc { color: var(--gray-700); font-size: 0.9375rem; margin-bottom: 16px; line-height: 1.6; }

.project-card__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.project-card__tag {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--gray-100);
  color: var(--gray-600);
}
.project-card__tag--primary { background: var(--primary-light); color: var(--primary); }
.project-card__tag--blue { background: var(--blue-light); color: var(--blue); }

/* ===== TESTIMONIALS (masonry) ===== */
.testimonials-grid { columns: 3; column-gap: 24px; }
@media (max-width: 1024px) { .testimonials-grid { columns: 2; } }
@media (max-width: 640px) { .testimonials-grid { columns: 1; } }

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  break-inside: avoid;
  margin-bottom: 24px;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.testimonial-card__stars { display: flex; gap: 2px; margin-bottom: 16px; color: #F59E0B; }

.testimonial-card__quote {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-card__quote::before { content: '\201C'; font-size: 1.5rem; color: var(--primary); font-weight: 700; line-height: 0; vertical-align: -4px; margin-right: 2px; }

.testimonial-card__footer { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  flex-shrink: 0;
}
.testimonial-card__info { }
.testimonial-card__name { font-weight: 600; font-size: 0.9375rem; color: var(--dark); }
.testimonial-card__role { font-size: 0.8125rem; color: var(--gray-600); }

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  border: none;
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
  pointer-events: none;
  box-shadow: var(--shadow-md);
}
.back-to-top--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--primary-hover);
}

/* ===== CHECKOUT CONFIGURATOR ===== */
.checkout-page {
  min-height: 100vh;
  background: var(--white);
}
.checkout-header {
  background: var(--dark);
  padding: 48px 0 32px;
  text-align: center;
  color: var(--text-light);
}
.checkout-header h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.checkout-header p {
  color: rgba(237,242,251,0.6);
  font-size: 1rem;
}

/* Stepper */
.checkout-stepper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 560px;
  margin: 0 auto;
  padding: 32px 24px 16px;
}
.checkout-stepper__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 auto;
  position: relative;
  cursor: default;
}
.checkout-stepper__step--completed {
  cursor: pointer;
}
.checkout-stepper__circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  border: 2px solid var(--gray-200);
  color: var(--gray-400);
  background: var(--white);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}
.checkout-stepper__step--active .checkout-stepper__circle {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.checkout-stepper__step--completed .checkout-stepper__circle {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}
.checkout-stepper__label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gray-400);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.checkout-stepper__step--active .checkout-stepper__label,
.checkout-stepper__step--completed .checkout-stepper__label {
  color: var(--gray-900);
}
.checkout-stepper__connector {
  flex: 1;
  height: 2px;
  background: var(--gray-200);
  margin: 0 8px;
  margin-top: 19px;
  min-width: 40px;
  transition: background 0.3s ease;
}
.checkout-stepper__connector--filled {
  background: var(--green);
}

/* Step content animation */
.checkout-step-content {
  animation: stepFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes stepFadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Selectable option cards */
.checkout-option {
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  background: var(--white);
  text-align: center;
}
.checkout-option:hover {
  border-color: var(--gray-400);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.checkout-option--selected {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(239, 71, 111, 0.15);
}
.checkout-option--selected:hover {
  border-color: var(--primary);
}
.checkout-option__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--primary);
}
.checkout-option--selected .checkout-option__icon {
  background: rgba(239, 71, 111, 0.1);
}
.checkout-option h3 {
  font-size: 1.125rem;
  margin-bottom: 4px;
}
.checkout-option p {
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* Tier cards in checkout */
.checkout-tier {
  cursor: pointer;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.checkout-tier:hover {
  border-color: var(--gray-400);
  box-shadow: var(--shadow-md);
}
.checkout-tier--selected {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(239, 71, 111, 0.15);
}
.checkout-tier__name {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.checkout-tier__desc {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 12px;
}
.checkout-tier__price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--dark);
}
.checkout-tier__price span {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--gray-600);
}
.checkout-tier__features {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.checkout-tier__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--gray-700);
}

/* Add-on toggles */
.checkout-addon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: border-color 0.2s ease;
  cursor: pointer;
}
.checkout-addon:hover {
  border-color: var(--gray-400);
}
.checkout-addon--active {
  border-color: var(--primary);
  background: rgba(239, 71, 111, 0.02);
}
.checkout-addon__info h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.checkout-addon__info p {
  font-size: 0.8125rem;
  color: var(--gray-600);
}
.checkout-addon__right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.checkout-addon__price {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--dark);
}
.checkout-toggle {
  width: 44px;
  height: 24px;
  border-radius: 12px;
  background: var(--gray-200);
  position: relative;
  cursor: pointer;
  transition: background 0.2s ease;
  border: none;
  flex-shrink: 0;
}
.checkout-toggle--active {
  background: var(--primary);
}
.checkout-toggle::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  transition: transform 0.2s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.checkout-toggle--active::after {
  transform: translateX(20px);
}

/* Review summary */
.checkout-review {
  max-width: 600px;
  margin: 0 auto;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  background: var(--white);
}
.checkout-review__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 0.9375rem;
}
.checkout-review__row--addon {
  color: var(--gray-600);
  font-size: 0.875rem;
}
.checkout-review__divider {
  border: none;
  border-top: 1px solid var(--gray-200);
  margin: 12px 0;
}
.checkout-review__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0 0;
  font-size: 1.5rem;
  font-weight: 800;
}
.checkout-review__note {
  margin-top: 24px;
  padding: 16px;
  background: var(--gray-100);
  border-radius: var(--radius);
  font-size: 0.8125rem;
  color: var(--gray-600);
  text-align: center;
}

/* Bottom bar */
.checkout-bottom-bar {
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 24px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.checkout-bottom-bar__total {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 700;
}
.checkout-bottom-bar__total span {
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(237,242,251,0.5);
}
.checkout-bottom-bar__actions {
  display: flex;
  gap: 12px;
}
.btn--ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 10px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
  font-size: 0.875rem;
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.08);
}

/* Section inside checkout */
.checkout-body {
  padding: 24px 0 100px;
}
.checkout-body .section-header {
  margin-bottom: 32px;
}
.checkout-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.checkout-grid--force-2 {
  grid-template-columns: repeat(2, 1fr) !important;
  max-width: 700px;
  margin: 0 auto;
}
.checkout-addons-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 640px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .checkout-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .checkout-grid--force-2 {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 640px) {
  .checkout-header h1 { font-size: 1.5rem; }
  .checkout-stepper__label { display: none; }
  .checkout-stepper__circle { width: 32px; height: 32px; font-size: 0.75rem; }
  .checkout-stepper__connector { margin-top: 15px; }
  .checkout-grid {
    grid-template-columns: 1fr;
  }
  .checkout-bottom-bar {
    flex-direction: column;
    gap: 12px;
  }
  .checkout-bottom-bar__actions {
    width: 100%;
  }
  .checkout-bottom-bar__actions .btn,
  .checkout-bottom-bar__actions .btn--ghost {
    flex: 1;
    text-align: center;
  }
  .checkout-option { padding: 20px 16px; }
  .checkout-review { padding: 24px 16px; }
  .checkout-form { padding: 0 16px; }
}

/* Pay now summary */
.checkout-review__summary {
  margin-top: 24px;
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  color: var(--white);
}
.checkout-review__summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 1rem;
}
.checkout-review__summary-row--highlight {
  font-size: 1.375rem;
  font-weight: 800;
  padding: 8px 0;
}
.checkout-review__summary-row:not(.checkout-review__summary-row--highlight) {
  font-size: 0.875rem;
  color: rgba(237,242,251,0.6);
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 8px;
  padding-top: 12px;
}

/* Onboarding form */
.checkout-form {
  max-width: 600px;
  margin: 0 auto;
}
.checkout-form__field {
  margin-bottom: 20px;
}
.checkout-form__field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 6px;
}
.checkout-form__field input,
.checkout-form__field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.9375rem;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color 0.2s ease;
  outline: none;
}
.checkout-form__field input:focus,
.checkout-form__field textarea:focus {
  border-color: var(--primary);
}
.checkout-form__field input::placeholder,
.checkout-form__field textarea::placeholder {
  color: var(--gray-400);
}
.checkout-form__field textarea {
  resize: vertical;
  min-height: 80px;
}

/* ===== WORDPRESS OVERRIDES ===== */
html { margin-top: 0 !important; }
body.admin-bar .navbar { top: 32px; }
@media screen and (max-width: 782px) { body.admin-bar .navbar { top: 46px; } }

/* Bilingual system removed — now handled by Polylang URL routing */
