/* =============================================
   AKTIV BODY REHAB — style.css
   Palette:
     Navy Dark   #0B1120  (dark sections anchor)
     Navy Mid    #111C30  (dark cards)
     Lime Green  #A8E63D  (primary brand)
     Green Dark  #5CA800  (text on light bg)
     Sky Blue    #38BDF8  (secondary brand)
     Blue Dark   #0284C7  (text on light bg)
     White       #FFFFFF
     Off-White   #F6FAF8  (light section bg)
     Gray        #64748B  (body text muted)
   Fonts: Syne (display), Inter (body)
   Designed by Prizmek
============================================= */

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

:root {
  --navy:       #0B1120;
  --navy-mid:   #111C30;
  --navy-card:  #162035;
  --green:      #A8E63D;
  --green-dark: #5CA800;
  --green-dim:  rgba(168,230,61,0.12);
  --green-glow: rgba(168,230,61,0.22);
  --blue:       #38BDF8;
  --blue-dark:  #0284C7;
  --blue-dim:   rgba(56,189,248,0.12);
  --blue-glow:  rgba(56,189,248,0.22);
  --white:      #FFFFFF;
  --off:        #F6FAF8;
  --gray:       #64748B;
  --border-lt:  rgba(0,0,0,0.08);
  --border-dk:  rgba(255,255,255,0.07);
  --radius:     14px;
  --radius-sm:  8px;
  --t:          0.26s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* =============================================
   TYPOGRAPHY
============================================= */
.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  flex-shrink: 0;
}
.section-eyebrow--light { color: var(--green); }
.section-eyebrow--light::before { background: var(--green); }

.section-h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--navy);
  margin-bottom: 20px;
}
.section-h2 em {
  font-style: normal;
  color: var(--green-dark);
}
.section-h2--light { color: #fff; }
.section-h2--light em { color: var(--green); }

/* =============================================
   BUTTONS
============================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
}
.btn-primary:hover {
  background: #BFF054;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--green-glow);
}
.btn-primary:active { transform: scale(0.98); }

.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: border-color var(--t), color var(--t);
}
.btn-ghost-dark:hover { border-color: var(--green); color: var(--green); }

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gray);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(100,116,139,0.3);
  cursor: pointer;
  transition: border-color var(--t), color var(--t);
}
.btn-ghost-light:hover { border-color: var(--blue-dark); color: var(--blue-dark); }

/* =============================================
   TOP BAR
============================================= */
.topbar {
  background: var(--navy);
  border-bottom: 1px solid rgba(168,230,61,0.12);
  padding: 8px 40px;
}
.topbar-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar-left { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  transition: color var(--t);
}
.topbar-item:hover { color: var(--green); }
.topbar-item i { font-size: 14px; color: var(--green); }
.topbar-right { display: flex; gap: 14px; }
.topbar-right a {
  color: rgba(255,255,255,0.4);
  font-size: 16px;
  transition: color var(--t);
}
.topbar-right a:hover { color: var(--green); }

/* =============================================
   NAVBAR
============================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 68px;
  padding: 0 40px;
  background: rgba(11,17,32,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(168,230,61,0.15);
  transition: background var(--t);
}
.navbar.scrolled { background: rgba(11,17,32,1); }
.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.logo-aktiv {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  letter-spacing: 0.04em;
}
.logo-body {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-top: 1px;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color var(--t);
}
.nav-links a:hover { color: var(--green); }
.btn-nav-cta {
  flex-shrink: 0;
  background: var(--green);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  transition: background var(--t), box-shadow var(--t);
}
.btn-nav-cta:hover {
  background: #BFF054;
  box-shadow: 0 0 20px var(--green-glow);
}
.hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

/* =============================================
   HERO
============================================= */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 80px 80px 60px;
  gap: 60px;
  position: relative;
  overflow: hidden;
}
.hero-watermark {
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  font-family: 'Syne', sans-serif;
  font-size: clamp(140px, 22vw, 280px);
  font-weight: 800;
  color: rgba(168,230,61,0.04);
  pointer-events: none;
  user-select: none;
  line-height: 1;
  letter-spacing: -0.04em;
  z-index: 0;
}
.hero-left { position: relative; z-index: 1; }
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 24px;
}
.eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 var(--green-glow);
  animation: pulseGreen 2.2s infinite;
  flex-shrink: 0;
}
@keyframes pulseGreen {
  0%  { box-shadow: 0 0 0 0 rgba(168,230,61,0.5); }
  70% { box-shadow: 0 0 0 10px rgba(168,230,61,0); }
  100%{ box-shadow: 0 0 0 0 rgba(168,230,61,0); }
}
.hero-h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(64px, 10vw, 112px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 24px;
}
.h1-blue { color: var(--blue); }
.h1-green { color: var(--green); }
.hero-sub {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.48);
  max-width: 460px;
  margin-bottom: 28px;
}
.hero-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 6px 14px;
  border-radius: 100px;
}
.hero-pill i { color: var(--green); font-size: 14px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero right — image */
.hero-right {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-frame {
  position: relative;
  width: 100%;
  max-width: 520px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(168,230,61,0.2);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}
.hero-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  filter: brightness(0.9) saturate(0.85);
}
.hero-stat-bubble {
  position: absolute;
  background: rgba(11,17,32,0.88);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid rgba(168,230,61,0.25);
}
.hero-stat-bubble--1 {
  bottom: 28px;
  left: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.hsb-num {
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}
.hsb-label { font-size: 11px; color: rgba(255,255,255,0.5); }
.hero-stat-bubble--2 {
  top: 24px;
  right: 20px;
  border-color: rgba(56,189,248,0.3);
}
.hero-stat-bubble--2 i { color: var(--blue); font-size: 16px; }
.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
}
.hero-glow--green {
  width: 300px; height: 300px;
  background: rgba(168,230,61,0.12);
  top: -60px; right: -60px;
}
.hero-glow--blue {
  width: 250px; height: 250px;
  background: rgba(56,189,248,0.1);
  bottom: -40px; left: -40px;
}

/* =============================================
   STATS STRIP
============================================= */
.stats-strip {
  background: linear-gradient(135deg, var(--green-dark) 0%, #3A9400 100%);
}
.stats-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
}
.strip-stat { flex: 1; padding: 24px 0; text-align: center; }
.ss-num {
  font-family: 'Syne', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  display: block;
  line-height: 1;
  letter-spacing: -0.01em;
}
.ss-plus { font-size: 26px; }
.ss-star { font-size: 22px; vertical-align: -2px; color: #FFE066; }
.ss-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  display: block;
  margin-top: 4px;
}
.strip-div { width: 1px; height: 36px; background: rgba(255,255,255,0.2); }

/* =============================================
   MARQUEE
============================================= */
.marquee-bar {
  background: var(--navy);
  overflow: hidden;
  padding: 13px 0;
  border-bottom: 1px solid rgba(56,189,248,0.15);
}
.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: marqueeScroll 36s linear infinite;
}
.marquee-track span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  padding: 0 16px;
}
.marquee-track .msep { color: var(--blue) !important; opacity: 0.6; padding: 0 4px !important; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================
   ABOUT
============================================= */
.about { padding: 110px 80px; background: var(--white); }
.about-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 20px;
  filter: brightness(0.92);
  border: 1px solid rgba(168,230,61,0.15);
}
.about-quote-card {
  position: absolute;
  bottom: -20px;
  right: -24px;
  background: var(--navy);
  border-radius: var(--radius);
  padding: 20px 22px;
  max-width: 260px;
  border: 1px solid rgba(168,230,61,0.2);
  box-shadow: 0 12px 36px rgba(0,0,0,0.3);
}
.aqc-text {
  font-family: 'Syne', sans-serif;
  font-style: italic;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  margin-bottom: 8px;
}
.aqc-attr { font-size: 11px; font-weight: 500; color: var(--green); letter-spacing: 0.1em; }

.about-text-col { display: flex; flex-direction: column; }
.about-p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--gray);
  margin-bottom: 16px;
  font-weight: 300;
}
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0 32px;
}
.pillar {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  background: var(--off);
  border-radius: var(--radius);
  border: 1px solid var(--border-lt);
}
.pillar-icon {
  width: 38px; height: 38px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.pillar h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.pillar p {
  font-size: 12px;
  line-height: 1.6;
  color: var(--gray);
  font-weight: 300;
}

/* =============================================
   SERVICES
============================================= */
.services {
  background: var(--navy);
  padding: 110px 80px;
  position: relative;
  overflow: hidden;
}
.services-watermark {
  position: absolute;
  bottom: -40px;
  right: -20px;
  font-family: 'Syne', sans-serif;
  font-size: clamp(120px, 18vw, 240px);
  font-weight: 800;
  color: rgba(56,189,248,0.04);
  pointer-events: none;
  user-select: none;
  line-height: 1;
  letter-spacing: -0.04em;
}
.services-inner { max-width: 1300px; margin: 0 auto; position: relative; z-index: 1; }
.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 52px;
}
.services-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.38);
  font-weight: 300;
  line-height: 1.75;
  align-self: end;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--navy-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(168,230,61,0.35);
  box-shadow: 0 20px 50px rgba(168,230,61,0.08);
}
.sc-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.sc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  filter: brightness(0.78) saturate(0.8);
}
.service-card:hover .sc-img img { transform: scale(1.06); filter: brightness(0.88) saturate(1); }
.sc-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(11,17,32,0.85) 100%);
}
.sc-body { padding: 22px 20px 26px; }
.sc-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}
.sc-body h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.sc-body p {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
  margin-bottom: 16px;
}
.sc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  transition: gap var(--t);
}
.sc-link:hover { gap: 10px; }

/* =============================================
   HOW IT WORKS
============================================= */
.how { padding: 110px 80px; background: var(--off); position: relative; overflow: hidden; }
.how-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.how-watermark {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  font-family: 'Syne', sans-serif;
  font-size: clamp(100px, 16vw, 200px);
  font-weight: 800;
  color: rgba(168,230,61,0.06);
  pointer-events: none;
  user-select: none;
  line-height: 1;
  letter-spacing: -0.04em;
}
.how-sub {
  font-size: 15px;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 60px;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.how-step { display: flex; flex-direction: column; }
.how-step-top {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 20px;
}
.how-step-num {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 800;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0;
}
.how-step-num--green { background: var(--green-dim); color: var(--green-dark); border: 1.5px solid rgba(168,230,61,0.3); }
.how-step-num--blue  { background: var(--blue-dim);  color: var(--blue-dark);  border: 1.5px solid rgba(56,189,248,0.3); }
.how-step-line {
  flex: 1;
  height: 1.5px;
  background: linear-gradient(90deg, rgba(168,230,61,0.3), rgba(56,189,248,0.2));
  margin-left: 8px;
}
.how-step-icon {
  font-size: 28px;
  color: var(--blue-dark);
  margin-bottom: 14px;
}
.how-step:nth-child(odd) .how-step-icon { color: var(--green-dark); }
.how-step h3 {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.how-step p { font-size: 13px; line-height: 1.75; color: var(--gray); font-weight: 300; }

/* =============================================
   TESTIMONIALS
============================================= */
.testimonials { background: var(--navy-mid); padding: 110px 80px; }
.testi-inner { max-width: 1300px; margin: 0 auto; }
.testi-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 20px;
  margin-top: 52px;
  align-items: start;
}
.testi-card {
  background: var(--navy-card);
  border: 1px solid var(--border-dk);
  border-radius: 16px;
  padding: 30px 26px;
  position: relative;
}
.testi-card--featured {
  background: linear-gradient(135deg, rgba(168,230,61,0.12) 0%, rgba(56,189,248,0.08) 100%);
  border-color: rgba(168,230,61,0.3);
}
.testi-quote-icon {
  font-family: 'Syne', sans-serif;
  font-size: 60px;
  font-weight: 800;
  color: var(--green);
  opacity: 0.25;
  line-height: 0.8;
  margin-bottom: 10px;
}
.testi-card blockquote {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 22px;
}
.testi-card--featured blockquote { color: rgba(255,255,255,0.85); }
.testi-footer { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--blue-dim);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.testi-name { font-size: 13px; font-weight: 600; color: #fff; }
.testi-detail { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 2px; }
.testi-stars { margin-left: auto; font-size: 13px; color: #FFE066; letter-spacing: 1px; flex-shrink: 0; }

/* =============================================
   INSURANCE
============================================= */
.insurance { padding: 90px 80px; background: var(--white); }
.insurance-inner { max-width: 1000px; margin: 0 auto; }
.insurance-sub {
  font-size: 15px;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 40px;
}
.insurance-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.ins-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--off);
  border: 1px solid rgba(168,230,61,0.25);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  transition: border-color var(--t), background var(--t);
}
.ins-pill:hover { border-color: var(--green); background: var(--green-dim); }
.ins-pill i { color: var(--green-dark); font-size: 15px; }
.ins-pill--ghost {
  border-style: dashed;
  border-color: rgba(56,189,248,0.3);
  color: var(--blue-dark);
}
.ins-pill--ghost i { color: var(--blue-dark); }
.ins-pill--ghost:hover { border-color: var(--blue-dark); background: var(--blue-dim); }
.insurance-note {
  font-size: 13px;
  color: var(--gray);
  font-weight: 300;
}
.insurance-note a { color: var(--blue-dark); font-weight: 500; text-decoration: underline; }

/* =============================================
   FAQ
============================================= */
.faq { padding: 110px 80px; background: var(--off); position: relative; overflow: hidden; }
.faq-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.faq-watermark {
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  font-family: 'Syne', sans-serif;
  font-size: clamp(100px, 16vw, 200px);
  font-weight: 800;
  color: rgba(56,189,248,0.06);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  margin-top: 52px;
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid rgba(11,17,32,0.1); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  transition: color var(--t);
}
.faq-q:hover { color: var(--green-dark); }
.faq-arrow {
  flex-shrink: 0;
  font-size: 18px;
  color: var(--green-dark);
  transition: transform var(--t);
}
.faq-q[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
}
.faq-a.open { max-height: 300px; padding-bottom: 20px; }
.faq-a p { font-size: 14px; line-height: 1.8; color: var(--gray); font-weight: 300; }

.faq-cta-card {
  background: var(--navy);
  border-radius: 20px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: 100px;
  border: 1px solid rgba(168,230,61,0.15);
}
.fcc-icon { font-size: 40px; color: var(--green); margin-bottom: 4px; }
.faq-cta-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}
.faq-cta-card p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; font-weight: 300; margin-bottom: 8px; }

/* =============================================
   BOOKING
============================================= */
.booking {
  background: var(--navy);
  padding: 110px 80px;
}
.booking-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.booking-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 36px;
}
.booking-contacts { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.bc-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dk);
  border-radius: var(--radius);
  transition: border-color var(--t), background var(--t);
}
.bc-item:hover { border-color: rgba(168,230,61,0.3); background: rgba(168,230,61,0.04); }
.bc-icon {
  width: 38px; height: 38px;
  background: var(--green-dim);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 18px;
  flex-shrink: 0;
}
.bc-label { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.3); }
.bc-val { font-size: 13px; font-weight: 500; color: #fff; margin-top: 2px; }
.booking-socials { display: flex; gap: 10px; }
.booking-socials a {
  width: 38px; height: 38px;
  border: 1px solid var(--border-dk);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 17px;
  transition: border-color var(--t), color var(--t);
}
.booking-socials a:hover { border-color: var(--green); color: var(--green); }

/* Form */
.booking-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  padding: 12px 14px;
  transition: border-color var(--t);
  outline: none;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-group select option { background: var(--navy-card); color: #fff; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green); }
.form-group input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(0.4); }
.btn-form-submit { align-self: flex-start; margin-top: 6px; }
.form-success {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--green);
  padding: 12px 14px;
  background: var(--green-dim);
  border: 1px solid rgba(168,230,61,0.25);
  border-radius: var(--radius-sm);
}
.form-success.show { display: flex; }
.form-success i { font-size: 18px; }

/* =============================================
   FOOTER
============================================= */
.footer { background: #060C19; padding: 80px 80px 28px; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-tagline {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255,255,255,0.28);
  font-weight: 300;
  max-width: 260px;
  margin-bottom: 22px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.38);
  font-size: 16px;
  transition: border-color var(--t), color var(--t);
}
.footer-socials a:hover { border-color: var(--green); color: var(--green); }
.footer-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a,
.footer-col ul li {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  font-weight: 300;
  transition: color var(--t);
}
.footer-col ul li a:hover { color: var(--green); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
}
.footer-bottom span { font-size: 12px; color: rgba(255,255,255,0.18); }
.footer-credit a { color: var(--green); }

/* =============================================
   SCROLL ANIMATIONS
============================================= */
[data-aos] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.52s ease, transform 0.52s ease;
}
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }
[data-aos][data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos][data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos][data-aos-delay="300"] { transition-delay: 0.3s; }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; padding: 80px 40px 60px; gap: 48px; }
  .hero-img-frame { max-width: 500px; margin: 0 auto; }
  .about { padding: 80px 40px; }
  .about-inner { grid-template-columns: 1fr; gap: 52px; }
  .about-quote-card { right: 0; }
  .services { padding: 80px 40px; }
  .services-header { grid-template-columns: 1fr; gap: 16px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .how { padding: 80px 40px; }
  .how-steps { grid-template-columns: repeat(2, 1fr); }
  .how-step-line { display: none; }
  .testimonials { padding: 80px 40px; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .testi-card--featured { grid-column: span 2; }
  .insurance { padding: 72px 40px; }
  .faq { padding: 80px 40px; }
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-cta-card { position: static; }
  .booking { padding: 80px 40px; }
  .booking-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer { padding: 64px 40px 28px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .topbar { padding: 8px 20px; }
  .topbar-left { gap: 14px; }
  .topbar-item:last-child { display: none; }
  .navbar { padding: 0 20px; }
  .nav-links {
    display: none; flex-direction: column;
    position: fixed; top: 68px; left: 0; right: 0;
    background: rgba(11,17,32,0.99);
    padding: 24px 20px; gap: 18px;
    border-bottom: 1px solid rgba(168,230,61,0.15);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .btn-nav-cta { display: none; }
  .hamburger { display: block; }
  .hero { padding: 80px 20px 52px; }
  .hero-h1 { font-size: clamp(52px, 14vw, 80px); }
  .stats-strip-inner { flex-wrap: wrap; padding: 0 20px; }
  .strip-stat { min-width: 50%; }
  .strip-div { display: none; }
  .about { padding: 64px 20px; }
  .about-pillars { grid-template-columns: 1fr; }
  .services { padding: 64px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .how { padding: 64px 20px; }
  .how-steps { grid-template-columns: 1fr; }
  .testimonials { padding: 64px 20px; }
  .testi-grid { grid-template-columns: 1fr; }
  .testi-card--featured { grid-column: span 1; }
  .insurance { padding: 64px 20px; }
  .faq { padding: 64px 20px; }
  .booking { padding: 64px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer { padding: 60px 20px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}
