/* ════════════════════════════════════════════
   WOI — Design System
   Navy + Gold. Authority + Trust + Warmth.
   ════════════════════════════════════════════ */

:root {
  /* ── Research-backed: teal primary, warm white base, navy accent ── */
  --navy:        #0D2340;
  --navy-mid:    #1a3a5c;
  --navy-light:  #2a5580;

  /* Primary action color — teal (top converter in healthcare, +28% booking lift) */
  --teal:        #0E7490;
  --teal-mid:    #0891B2;
  --teal-light:  #22D3EE;
  --teal-subtle: rgba(14,116,144,0.10);

  /* Gold — kept for WOI branding accents only, not CTAs */
  --gold:        #B07D2A;
  --gold-light:  #D4A032;
  --gold-subtle: rgba(176,125,42,0.12);

  /* Surfaces — 70% of the page: warm white, not sterile */
  --white:       #ffffff;
  --surface:     #F7F9FC;
  --surface-2:   #EEF2F7;
  --surface-warm:#FAFAF8;

  /* Type */
  --border:      #D4DCE8;
  --text:        #0D1E30;
  --muted:       #4A6280;
  --faint:       #8A9BB0;

  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm:  0.375rem;
  --radius-md:  0.625rem;
  --radius-lg:  1rem;
  --radius-xl:  1.5rem;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 4px rgba(10,20,36,0.08);
  --shadow-md: 0 4px 20px rgba(10,20,36,0.12);
  --shadow-lg: 0 12px 48px rgba(10,20,36,0.18);
  --shadow-xl: 0 24px 80px rgba(10,20,36,0.24);

  --ease-out: cubic-bezier(0.16,1,0.3,1);
  --ease-spring: cubic-bezier(0.34,1.56,0.64,1);
  --dur-fast: 160ms;
  --dur-mid:  240ms;
  --dur-slow: 420ms;
}

/* ── Reset ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.65; overflow-x: hidden; }
img, video { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }
h1,h2,h3,h4,h5 { text-wrap: balance; line-height: 1.15; }
p { text-wrap: pretty; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 3px; }
::selection { background: var(--gold-subtle); }

/* ── Utilities ───────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2rem); }
.gold-bar { width: 48px; height: 3px; background: var(--gold); border-radius: 2px; margin-bottom: 1rem; }
.eyebrow { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.5rem; }
.eyebrow--gold { color: var(--gold-light); }
.section-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.25rem); color: var(--navy); margin-bottom: 1rem; }
.section-title--white { color: var(--white); }
.section-title em { color: var(--gold-light); font-style: italic; }
.section-sub { font-size: 1.05rem; color: var(--muted); max-width: 56ch; }
.section-sub--muted { color: rgba(255,255,255,0.65); }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 3.5rem; }
.section-header .gold-bar { margin: 0 auto 1rem; }

/* ── Buttons ─────────────────────────────── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--teal); color: white; font-weight: 700;
  padding: 0.75rem 1.75rem; border-radius: var(--radius-full);
  font-size: 0.925rem; transition: background var(--dur-fast), transform var(--dur-fast), box-shadow var(--dur-fast);
  white-space: nowrap; letter-spacing: 0.01em;
  box-shadow: 0 4px 14px rgba(14,116,144,0.35);
}
.btn-gold:hover { background: var(--teal-mid); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(14,116,144,0.45); }
.btn-gold.btn-lg { padding: 0.9rem 2rem; font-size: 1rem; }
.btn-gold.btn-full { width: 100%; justify-content: center; padding: 0.9rem; font-size: 1rem; }

.btn-outline-white {
  display: inline-flex; align-items: center;
  background: transparent; color: white; font-weight: 600;
  padding: 0.75rem 1.75rem; border-radius: var(--radius-full);
  font-size: 0.925rem; border: 2px solid rgba(255,255,255,0.55);
  transition: border-color var(--dur-fast), background var(--dur-fast);
  white-space: nowrap;
}
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.10); }
.btn-outline-white.btn-lg { padding: 0.9rem 2rem; font-size: 1rem; }

/* ── Sections ────────────────────────────── */
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section--dark { background: var(--navy); }
.section--surface { background: var(--surface); }
.section--navy { background: var(--navy); }

/* ════════════════════════════════════════════
   NAV
════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13,35,64,0.97); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(14,116,144,0.25);
  transition: padding var(--dur-mid) var(--ease-out);
  box-shadow: 0 2px 20px rgba(13,35,64,0.18);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0.7rem clamp(1rem,4vw,2rem);
  display: flex; align-items: center; gap: 1.5rem;
}
.nav-logo { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-main { color: white; font-weight: 600; font-size: 0.9rem; line-height: 1.2; }
.nav-logo-sub { color: rgba(255,255,255,0.45); font-size: 0.7rem; }
.nav-links { display: flex; align-items: center; gap: 0.25rem; margin: 0 auto; }
.nav-links a { color: rgba(255,255,255,0.7); font-size: 0.875rem; font-weight: 500; padding: 0.5rem 0.75rem; border-radius: var(--radius-sm); transition: color var(--dur-fast), background var(--dur-fast); }
.nav-links a:hover { color: white; background: rgba(255,255,255,0.07); }
.nav-actions { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.nav-phone { color: #67E8F9; font-size: 0.875rem; font-weight: 600; display: flex; align-items: center; gap: 0.4rem; }
.nav-phone:hover { color: white; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: white; border-radius: 2px; transition: transform var(--dur-mid); }

/* Mobile nav */
.mobile-nav { display: none; position: fixed; top: 64px; left: 0; right: 0; background: var(--navy); border-bottom: 1px solid rgba(255,255,255,0.1); flex-direction: column; padding: 1rem; gap: 0.25rem; z-index: 99; }
.mobile-nav.open { display: flex; }
.mobile-nav a { color: rgba(255,255,255,0.8); padding: 0.75rem 1rem; border-radius: var(--radius-md); font-size: 1rem; }
.mobile-nav .btn-gold { text-align: center; justify-content: center; margin-top: 0.5rem; }
.mobile-phone { color: var(--gold-light) !important; font-weight: 600; }

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100dvh;
  display: flex; align-items: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,20,36,0.88) 0%,
    rgba(10,20,36,0.72) 50%,
    rgba(10,20,36,0.55) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 780px; margin: 0 auto 0 0;
  padding-left: clamp(0rem, 4vw, 2rem);
}
.hero-eyebrow { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.hero-eyebrow span { color: var(--gold-light); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.hero-eyebrow .gold-bar { margin: 0; flex-shrink: 0; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  color: white; line-height: 1.08;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}
.hero-title em { color: var(--gold-light); font-style: italic; }
.hero-sub { font-size: clamp(1rem, 1.5vw, 1.2rem); color: rgba(255,255,255,0.78); max-width: 54ch; margin-bottom: 2.5rem; line-height: 1.7; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.trust-item { display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.75); font-size: 0.875rem; font-weight: 500; }

.scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2; }
.scroll-line { width: 1.5px; height: 56px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5)); animation: scrollPulse 2s ease-in-out infinite; margin: 0 auto; }
@keyframes scrollPulse { 0%,100%{opacity:0;transform:scaleY(0.5)} 50%{opacity:1;transform:scaleY(1)} }

/* ════════════════════════════════════════════
   STATS BAR
════════════════════════════════════════════ */
.stats-bar { background: var(--navy); padding: 2rem 0; border-bottom: 3px solid var(--teal); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; text-align: center; }
.stat-number { font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.5rem); color: #67E8F9; line-height: 1; }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-top: 0.4rem; }

/* ════════════════════════════════════════════
   SERVICES
════════════════════════════════════════════ */
.services-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.service-card {
  display: block; border-radius: var(--radius-xl); padding: 2.25rem 2rem;
  transition: transform var(--dur-mid) var(--ease-out), box-shadow var(--dur-mid) var(--ease-out);
  cursor: pointer; position: relative; overflow: hidden;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.service-card--navy { background: var(--navy); color: white; }
.service-card--gold { background: var(--teal); color: white; }
.service-card--green { background: #1a4a2e; color: white; }
.service-card--purple { background: #2d1b69; color: white; }
.service-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.service-eyebrow { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 0.5rem; }
.service-card h3 { font-family: var(--font-display); font-size: 1.5rem; color: white; margin-bottom: 0.75rem; }
.service-card p { font-size: 0.925rem; color: rgba(255,255,255,0.72); line-height: 1.65; margin-bottom: 1.25rem; }
.service-list { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.5rem; }
.service-list span { background: rgba(255,255,255,0.12); border-radius: var(--radius-full); padding: 0.25rem 0.75rem; font-size: 0.78rem; color: rgba(255,255,255,0.8); }
.service-cta { font-weight: 700; font-size: 0.9rem; color: white; display: flex; align-items: center; gap: 0.4rem; }
.service-cta span { transition: transform var(--dur-fast); }
.service-card:hover .service-cta span { transform: translateX(4px); }

/* ════════════════════════════════════════════
   SPLIT LAYOUT
════════════════════════════════════════════ */
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,5rem); align-items: center; }
.split-layout--reverse { direction: rtl; }
.split-layout--reverse > * { direction: ltr; }

/* ── Philosophy video card ── */
.video-card { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.split-video { width: 100%; height: 500px; object-fit: cover; display: block; }
.video-card-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  background: rgba(10,20,36,0.92); backdrop-filter: blur(8px);
  border-radius: var(--radius-lg); padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: 0.875rem;
  border: 1px solid rgba(201,150,42,0.3);
}
.badge-thumb { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); flex-shrink: 0; }
.video-card-badge strong { color: white; font-size: 0.875rem; display: block; }
.video-card-badge span { color: var(--gold-light); font-size: 0.75rem; }

/* ── Steps ── */
.steps { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.step { display: flex; gap: 1rem; align-items: flex-start; }
.step-num {
  width: 36px; height: 36px; border-radius: 50%; background: var(--teal);
  color: white; font-weight: 700; font-size: 0.875rem; display: flex;
  align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.step-body h4 { color: white; font-size: 1.05rem; font-weight: 600; margin-bottom: 0.35rem; }
.step-body p { color: rgba(255,255,255,0.62); font-size: 0.9rem; }

/* ════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════ */
.testimonial-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem; }

.testimonial-video-card { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); background: white; border: 1px solid var(--border); }
.testimonial-video-wrap { position: relative; }
.testimonial-video { width: 100%; height: 240px; object-fit: cover; }
.play-btn-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(10,20,36,0.3); cursor: pointer; transition: background var(--dur-fast);
}
.play-btn-overlay:hover { background: rgba(10,20,36,0.45); }
.play-btn {
  width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,0.92);
  display: flex; align-items: center; justify-content: center; font-size: 1.25rem;
  color: var(--navy); padding-left: 4px; transition: transform var(--ease-spring) var(--dur-mid);
  box-shadow: var(--shadow-lg);
}
.play-btn-overlay:hover .play-btn { transform: scale(1.08); }
.testimonial-meta { padding: 1.25rem 1.25rem 1.5rem; }
.stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 0.6rem; }
.testimonial-meta p { font-size: 0.9rem; color: var(--text); line-height: 1.6; margin-bottom: 0.75rem; font-style: italic; }
.testimonial-name { font-size: 0.8rem; color: var(--muted); font-weight: 600; }

.testimonial-text-card {
  background: var(--navy); border-radius: var(--radius-xl); padding: 2rem;
  position: relative; overflow: hidden; display: flex; flex-direction: column; gap: 1rem;
  border-left: 4px solid var(--gold);
}
.quote-mark { font-family: var(--font-display); font-size: 5rem; color: var(--gold); line-height: 1; margin-bottom: -1.5rem; }
.testimonial-text-card p { color: rgba(255,255,255,0.85); font-size: 0.95rem; font-style: italic; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 0.875rem; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 0.875rem; flex-shrink: 0; }
.testimonial-author strong { color: white; font-size: 0.9rem; display: block; }
.testimonial-author span { color: rgba(255,255,255,0.5); font-size: 0.78rem; }

/* ════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════ */
.about-photo-stack { position: relative; }
.about-photo-main { width: 100%; border-radius: var(--radius-xl); object-fit: cover; height: 520px; box-shadow: var(--shadow-xl); }
.about-photo-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  width: 180px; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-xl); border: 4px solid white;
}
.about-photo-secondary { width: 100%; height: 130px; object-fit: cover; }
.credentials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.credential { background: white; border-radius: var(--radius-md); padding: 1rem 1.25rem; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.credential strong { color: var(--navy); font-size: 0.9rem; display: block; margin-bottom: 0.2rem; }
.credential span { color: var(--muted); font-size: 0.8rem; }

/* ════════════════════════════════════════════
   BOOKING CTA
════════════════════════════════════════════ */
.booking-cta { padding: clamp(4rem, 8vw, 7rem) 0; }
.cta-block { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.cta-title { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3rem); color: white; margin-bottom: 1rem; }
.cta-sub { color: rgba(255,255,255,0.65); font-size: 1rem; line-height: 1.7; margin-bottom: 2rem; }
.cta-contact { display: flex; flex-direction: column; gap: 0.875rem; }
.contact-item { display: flex; align-items: center; gap: 0.75rem; color: rgba(255,255,255,0.7); font-size: 0.925rem; }
.contact-item:hover { color: var(--gold-light); }

.quick-form { background: white; border-radius: var(--radius-xl); padding: 2rem; box-shadow: var(--shadow-xl); border: 1px solid rgba(201,150,42,0.2); }
.quick-form h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--navy); margin-bottom: 0.35rem; }
.form-sub { font-size: 0.875rem; color: var(--muted); margin-bottom: 1.5rem; border-bottom: 1px solid var(--border); padding-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.form-input {
  width: 100%; padding: 0.7rem 0.875rem; border: 1.5px solid var(--border);
  border-radius: var(--radius-md); font-family: var(--font-body); font-size: 0.9rem;
  color: var(--text); background: var(--surface); margin-bottom: 0.75rem;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast); outline: none;
}
.form-input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-subtle); }
.form-privacy { font-size: 0.8rem; color: var(--muted); text-align: center; margin-top: 0.75rem; }
.form-privacy a { color: var(--navy); font-weight: 600; }
.form-success { text-align: center; padding: 2rem; }
.success-icon { width: 56px; height: 56px; border-radius: 50%; background: #dcfce7; color: #166534; font-size: 1.5rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.form-success h4 { color: var(--navy); font-size: 1.25rem; margin-bottom: 0.5rem; }
.form-success p { color: var(--muted); font-size: 0.9rem; }

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.footer { background: var(--navy); padding: 4rem 0 2rem; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-brand { display: flex; flex-direction: column; gap: 0.875rem; }
.footer-logo { display: flex; align-items: center; gap: 0.75rem; color: white; font-weight: 600; font-size: 0.95rem; }
.footer-tagline { color: rgba(255,255,255,0.45); font-size: 0.875rem; line-height: 1.5; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); transition: background var(--dur-fast), color var(--dur-fast); }
.footer-social a:hover { background: var(--teal); color: white; }
.footer-col { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col h4 { color: white; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.5rem; color: var(--gold-light); }
.footer-col a { color: rgba(255,255,255,0.55); font-size: 0.875rem; transition: color var(--dur-fast); }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 1.5rem; }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.8rem; }

/* ════════════════════════════════════════════
   LANDING PAGES (shared)
════════════════════════════════════════════ */
.lp-hero { min-height: 92vh; display: flex; align-items: center; padding: 7rem 2rem 3rem; position: relative; overflow: hidden; }
.lp-hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,20,36,0.92) 0%, rgba(26,46,74,0.85) 100%); }
.lp-hero-img { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; }
.lp-hero-overlay { position: absolute; inset: 0; }
.lp-hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 480px; gap: 4rem; align-items: center; }
.lp-title { font-family: var(--font-display); color: white; font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.1; margin-bottom: 1rem; }
.lp-title em { color: var(--gold-light); font-style: italic; }
.lp-sub { color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.7; margin-bottom: 1.75rem; }
.lp-bullets { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
.lp-bullets li { display: flex; align-items: flex-start; gap: 0.625rem; color: rgba(255,255,255,0.82); font-size: 0.95rem; }
.lp-bullets li::before { content: '✓'; color: var(--gold-light); font-weight: 700; flex-shrink: 0; margin-top: 0.05em; }
.lp-form-card { background: white; border-radius: var(--radius-xl); padding: 2.25rem; box-shadow: var(--shadow-xl); border: 1px solid rgba(201,150,42,0.15); }
.lp-form-card h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--navy); margin-bottom: 0.25rem; }
.lp-form-card .form-sub { margin-bottom: 1.25rem; }

/* Progress steps */
.form-steps { display: flex; gap: 0.375rem; margin-bottom: 1.25rem; }
.form-step { flex: 1; height: 3px; border-radius: 2px; background: var(--border); transition: background var(--dur-mid); }
.form-step.active { background: var(--navy); }

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .split-layout { grid-template-columns: 1fr; }
  .split-layout--reverse { direction: ltr; }
  .lp-hero-content { grid-template-columns: 1fr; gap: 2rem; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-block { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .credentials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links, .nav-phone { display: none; }
  .nav-hamburger { display: flex; }
  .about-photo-badge { display: none; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════════ */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Stagger children */
.fade-up:nth-child(1) { transition-delay: 0ms; }
.fade-up:nth-child(2) { transition-delay: 80ms; }
.fade-up:nth-child(3) { transition-delay: 160ms; }
.fade-up:nth-child(4) { transition-delay: 240ms; }
