/* ==========================================================================
   BioGen Restoration — Marketing Site Styles v2
   Display: Cormorant Garamond (serif w/ italic accent)
   Body:    Outfit (geometric sans)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --brand-blue:        #1E40AF;
  --brand-blue-bright: #2563EB;
  --brand-blue-deep:   #1E3A8A;
  --brand-sky:         #93C5FD;
  --brand-ink:         #0B1220;

  --neutral-25:  #FAFCFE;
  --neutral-50:  #F4F7FB;
  --neutral-100: #E9EEF5;
  --neutral-200: #D6DEE9;
  --neutral-300: #B8C3D2;
  --neutral-400: #8B97A8;
  --neutral-500: #6A7689;
  --neutral-700: #3A4557;
  --neutral-800: #1F2937;
  --neutral-900: #0F172A;

  --fg-1: var(--neutral-900);
  --fg-2: var(--neutral-700);
  --fg-3: var(--neutral-500);
  --fg-on-dark:    #FFFFFF;
  --fg-on-dark-2:  #C8D2E0;

  --bg-canvas:     var(--neutral-25);
  --bg-surface:    #FFFFFF;
  --bg-subtle:     var(--neutral-50);
  --bg-muted:      var(--neutral-100);
  --bg-brand-soft: #EFF6FF;

  --border-subtle:  var(--neutral-100);
  --border-default: var(--neutral-200);

  --font-display: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --font-body:    'Outfit', ui-sans-serif, system-ui, sans-serif;

  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.08), 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.12), 0 4px 8px rgba(15, 23, 42, 0.05);
  --shadow-brand: 0 8px 24px rgba(30, 64, 175, 0.30);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  --ease-out:    cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur-fast: 160ms;
  --dur-med:  280ms;
  --dur-slow: 480ms;

  --max-w: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg-2);
  background: var(--bg-canvas);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--brand-blue); text-decoration: none; transition: color var(--dur-fast) var(--ease-out); }
a:hover { color: var(--brand-blue-bright); }
button { font-family: inherit; cursor: pointer; }

/* ---- Display headlines ---- */
.h-serif {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--fg-1);
  letter-spacing: -0.005em;
  line-height: 1.05;
  margin: 0;
}
.h-serif .italic {
  font-style: italic;
  font-weight: 500;
  color: var(--brand-blue-bright);
}
h1.h-serif { font-size: clamp(48px, 7vw, 96px); }
h2.h-serif { font-size: clamp(40px, 5.5vw, 72px); }
h3.h-serif { font-size: clamp(28px, 3.5vw, 44px); }

p { margin: 0 0 1em; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 28px;
}

.lead {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.65;
  color: var(--fg-2);
  max-width: 60ch;
}

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(72px, 10vw, 140px) 0; }
.center { text-align: center; }
.section-head { max-width: 780px; margin: 0 auto 64px; text-align: center; }
.section-head .lead { margin: 0 auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all var(--dur-fast) var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
}
.btn--primary { background: var(--brand-blue); color: #fff; box-shadow: var(--shadow-brand); }
.btn--primary:hover { background: var(--brand-blue-deep); color: #fff; transform: translateY(-1px); }
.btn--primary:active { transform: scale(0.98); }
.btn--ghost-on-dark { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn--ghost-on-dark:hover { border-color: #fff; background: rgba(255,255,255,0.08); color: #fff; }
.btn--white { background: #fff; color: var(--brand-blue); }
.btn--white:hover { background: var(--bg-brand-soft); color: var(--brand-blue-deep); }
.btn--secondary { background: #fff; color: var(--fg-1); border-color: var(--border-default); }
.btn--secondary:hover { border-color: var(--brand-blue); color: var(--brand-blue); }
.btn--lg { padding: 18px 36px; }

/* ---- Header ---- */
.site-header { position: absolute; top: 0; left: 0; right: 0; z-index: 50; }
.site-header.is-scrolled {
  position: fixed;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 88px; }
.nav__logo img { height: 44px; width: auto; }
.nav__logo-dark { display: none; }
.is-scrolled .nav__logo-light { display: none; }
.is-scrolled .nav__logo-dark { display: block; }
.nav__links { display: flex; gap: 40px; list-style: none; margin: 0; padding: 0; }
.nav__links a { color: rgba(255,255,255,0.95); font-size: 14px; font-weight: 500; }
.nav__links a:hover { color: #fff; }
.is-scrolled .nav__links a { color: var(--fg-1); }
.is-scrolled .nav__links a:hover { color: var(--brand-blue); }
.nav__cta { display: flex; gap: 12px; align-items: center; }
.nav__menu-btn { display: none; background: transparent; border: 1px solid rgba(255,255,255,0.4); border-radius: var(--radius-sm); padding: 10px; color: #fff; }
.is-scrolled .nav__menu-btn { color: var(--fg-1); border-color: var(--border-default); }
.is-scrolled .btn--ghost-on-dark { color: var(--fg-1); border-color: var(--border-default); }
.is-scrolled .btn--ghost-on-dark:hover { color: var(--brand-blue); border-color: var(--brand-blue); background: transparent; }

@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__menu-btn { display: inline-flex; }
  .nav__cta .btn--ghost-on-dark { display: none; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: url('/assets/hero.webp') center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11,18,32,0.85) 0%, rgba(11,18,32,0.65) 35%, rgba(11,18,32,0.25) 65%, rgba(11,18,32,0) 100%),
    linear-gradient(180deg, rgba(11,18,32,0.4) 0%, rgba(11,18,32,0) 30%, rgba(11,18,32,0) 70%, rgba(11,18,32,0.5) 100%);
  pointer-events: none;
}
.hero .container { width: 100%; }
.hero__content { position: relative; z-index: 1; max-width: 640px; margin-left: 0; margin-right: auto; padding: 140px 0 80px; text-align: left; }
.hero .eyebrow { color: var(--brand-sky); margin-bottom: 24px; }
.hero h1 { color: #fff; margin-bottom: 32px; }
.hero h1 .italic { color: var(--brand-sky); }
.hero__lead { color: rgba(255,255,255,0.88); font-size: clamp(16px, 1.5vw, 19px); margin-bottom: 40px; max-width: 540px; }
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  animation: bounce 2.4s ease-in-out infinite;
}
@keyframes bounce { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

@media (max-width: 768px) {
  .hero { min-height: 86vh; }
  .hero__content { padding: 100px 0 40px; }
}

/* ============ TRUST STRIP ============ */
.trust-strip { background: #fff; padding: 80px 0; border-bottom: 1px solid var(--border-subtle); }
.trust-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.trust-strip__item .num {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.2vw, 44px);
  font-weight: 500;
  color: var(--brand-blue);
  line-height: 1;
  margin-bottom: 12px;
}
.trust-strip__item .label { font-size: 14px; color: var(--fg-3); }
@media (max-width: 700px) {
  .trust-strip__grid { grid-template-columns: repeat(2, 1fr); gap: 48px 16px; }
}

/* ============ INTRO ============ */
.intro { background: var(--bg-canvas); }
.intro__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.intro__visual { position: relative; aspect-ratio: 1 / 1; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.intro__visual img { width: 100%; height: 100%; object-fit: cover; }
.intro__features { list-style: none; padding: 0; margin: 32px 0 0; display: flex; flex-direction: column; gap: 14px; }
.intro__features li { display: flex; align-items: flex-start; gap: 14px; font-size: 16px; color: var(--fg-2); }
.intro__features svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--brand-blue); margin-top: 2px; }
@media (max-width: 900px) {
  .intro__grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ============ DIFFS ============ */
.diffs { background: var(--bg-canvas); }
.diffs__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px 80px; max-width: 1080px; margin: 0 auto; }
.diff { display: flex; gap: 20px; align-items: flex-start; }
.diff__icon { flex-shrink: 0; width: 48px; height: 48px; border-radius: var(--radius-sm); background: var(--bg-brand-soft); color: var(--brand-blue); display: flex; align-items: center; justify-content: center; }
.diff__icon svg { width: 22px; height: 22px; }
.diff h3 { font-family: var(--font-display); font-weight: 500; font-size: 26px; color: var(--fg-1); margin-bottom: 8px; line-height: 1.2; }
.diff p { margin: 0; font-size: 15px; line-height: 1.65; color: var(--fg-2); }
@media (max-width: 800px) { .diffs__grid { grid-template-columns: 1fr; gap: 40px; } }

/* ============ THERAPIES ============ */
.therapies { background: linear-gradient(180deg, #F8FAFE 0%, #EFF6FF 100%); }
.therapies__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.therapy-card {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: all var(--dur-med) var(--ease-out);
}
.therapy-card:hover { box-shadow: var(--shadow-md); border-color: var(--border-default); transform: translateY(-3px); }
.therapy-card__icon {
  display: inline-flex; width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--bg-brand-soft); color: var(--brand-blue);
  margin-bottom: 24px;
}
.therapy-card__icon svg { width: 22px; height: 22px; }
.therapy-card h3 { font-family: var(--font-display); font-weight: 500; font-size: 28px; color: var(--fg-1); margin-bottom: 10px; line-height: 1.15; }
.therapy-card p { font-size: 15px; line-height: 1.65; color: var(--fg-2); margin: 0 0 20px; }
.therapy-card__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.therapy-card__tags span { font-size: 12px; font-weight: 500; background: var(--bg-brand-soft); color: var(--brand-blue); padding: 6px 12px; border-radius: var(--radius-pill); }
@media (max-width: 960px) { .therapies__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .therapies__grid { grid-template-columns: 1fr; } }

/* ============ PROCESS ============ */
.process { background: #fff; }
.process__top { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 80px; }
.process__visual { aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.process__visual img { width: 100%; height: 100%; object-fit: cover; }
.process__steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.step__num { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--brand-blue); color: var(--brand-blue); font-family: var(--font-display); font-weight: 500; font-size: 17px; margin-bottom: 24px; }
.step h4 { font-family: var(--font-display); font-weight: 500; font-size: 22px; color: var(--fg-1); margin-bottom: 10px; }
.step p { font-size: 14px; line-height: 1.6; color: var(--fg-2); margin: 0; }
@media (max-width: 900px) {
  .process__top { grid-template-columns: 1fr; gap: 40px; }
  .process__steps { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) { .process__steps { grid-template-columns: 1fr; } }

/* ============ SYMPTOMS — DARK ============ */
.symptoms { background: linear-gradient(180deg, #0B1220 0%, #0F172A 100%); color: #fff; position: relative; overflow: hidden; }
.symptoms::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(30, 64, 175, 0.25), transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(30, 64, 175, 0.15), transparent 50%);
  pointer-events: none;
}
.symptoms .container { position: relative; z-index: 1; }
.symptoms h2 { color: #fff; }
.symptoms h2 .italic { color: var(--brand-sky); }
.symptoms .eyebrow { color: var(--brand-sky); }
.symptoms .lead { color: rgba(255,255,255,0.75); }
.symptoms__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 1080px; margin: 0 auto 32px; }
.symptom-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 28px;
  text-decoration: none;
  color: #fff;
  transition: all var(--dur-fast) var(--ease-out);
  display: flex; flex-direction: column; gap: 18px; align-items: flex-start;
}
.symptom-card:hover { background: rgba(30,64,175,0.12); border-color: var(--brand-sky); transform: translateY(-2px); color: #fff; }
.symptom-card__icon { width: 40px; height: 40px; background: rgba(30,64,175,0.3); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--brand-sky); }
.symptom-card__icon svg { width: 22px; height: 22px; }
.symptom-card__title { font-family: var(--font-display); font-size: 24px; font-weight: 500; color: #fff; line-height: 1.2; }
.symptom-card__sub { font-size: 13px; color: var(--brand-sky); margin-top: -8px; }
.symptom-card__sub::after { content: " →"; }
.symptoms__bottom { text-align: center; }
.symptoms__bottom a { color: var(--brand-sky); font-size: 14px; letter-spacing: 0.04em; font-weight: 500; }
.symptoms__bottom a:hover { color: #fff; }
@media (max-width: 900px) { .symptoms__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .symptoms__grid { grid-template-columns: 1fr; } }

/* ============ QUIZ ============ */
.quiz { background: linear-gradient(180deg, #FFFFFF 0%, #F4F7FB 100%); }
.quiz__inner { max-width: 760px; margin: 0 auto; text-align: center; }
.quiz__pill { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--border-default); border-radius: var(--radius-pill); padding: 10px 20px; font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand-blue); margin-bottom: 28px; box-shadow: var(--shadow-sm); }
.quiz__pill svg { width: 14px; height: 14px; }
.quiz__intro h2 { margin-bottom: 24px; }
.quiz__intro p { color: var(--fg-2); font-size: 16px; max-width: 56ch; margin: 0 auto 32px; line-height: 1.65; }
.quiz__progress { height: 4px; background: var(--bg-muted); border-radius: 999px; overflow: hidden; margin: 0 auto 40px; max-width: 480px; }
.quiz__progress-fill { height: 100%; width: 0%; background: var(--brand-blue); border-radius: 999px; transition: width var(--dur-slow) var(--ease-out); }
.quiz__step { display: none; text-align: left; }
.quiz__step.is-active { display: block; }
.quiz__q-meta { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-3); font-weight: 600; margin-bottom: 12px; }
.quiz__q { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 40px); font-weight: 500; color: var(--fg-1); line-height: 1.15; margin-bottom: 8px; }
.quiz__q .italic { font-style: italic; color: var(--brand-blue-bright); }
.quiz__sub { color: var(--fg-3); font-size: 14px; margin-bottom: 28px; }
.quiz__options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 32px; }
.quiz__opt { background: #fff; border: 1px solid var(--border-default); border-radius: var(--radius-md); padding: 18px 22px; font-family: var(--font-body); font-weight: 500; font-size: 15px; color: var(--fg-1); text-align: left; cursor: pointer; transition: all var(--dur-fast) var(--ease-out); }
.quiz__opt:hover { border-color: var(--brand-blue); background: var(--bg-brand-soft); }
.quiz__opt.is-selected { border-color: var(--brand-blue); background: var(--bg-brand-soft); color: var(--brand-blue); box-shadow: 0 0 0 2px rgba(30, 64, 175, 0.15); }
.quiz__nav { display: flex; justify-content: space-between; gap: 12px; }
.quiz__nav button[disabled] { opacity: 0.4; cursor: not-allowed; }
@media (max-width: 600px) { .quiz__options { grid-template-columns: 1fr; } }

.quiz__result { text-align: center; display: none; }
.quiz__result.is-active { display: block; }
.quiz__result-eyebrow { display: inline-block; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand-blue); font-weight: 600; margin-bottom: 16px; padding: 6px 16px; background: var(--bg-brand-soft); border-radius: var(--radius-pill); }
.quiz__result h3 { font-family: var(--font-display); font-size: clamp(32px, 4vw, 48px); font-weight: 500; margin-bottom: 20px; color: var(--fg-1); }
.quiz__result p { color: var(--fg-2); font-size: 16px; max-width: 56ch; margin: 0 auto 32px; line-height: 1.65; }
.quiz__result-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============ FOUNDER ============ */
.founder { background: #fff; }
.founder__grid { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 80px; align-items: center; max-width: 1180px; margin: 0 auto; }
.founder__visual { width: 100%; max-width: 380px; aspect-ratio: 1 / 1; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.founder__visual img { width: 100%; height: 100%; object-fit: cover; }
.founder__name { font-family: var(--font-display); font-size: clamp(36px, 4.5vw, 56px); font-weight: 500; line-height: 1.05; color: var(--fg-1); margin-bottom: 8px; }
.founder__tag { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 42px); font-weight: 500; font-style: italic; color: var(--brand-blue-bright); line-height: 1.1; margin-bottom: 32px; }
.founder__text p { font-size: 16px; line-height: 1.7; color: var(--fg-2); margin-bottom: 18px; }
.founder__text strong { color: var(--fg-1); font-weight: 600; }
.founder__pills { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.founder__pills span { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; background: var(--bg-brand-soft); color: var(--brand-blue); padding: 10px 18px; border-radius: var(--radius-pill); font-weight: 500; }
.founder__pills svg { width: 16px; height: 16px; }
@media (max-width: 900px) {
  .founder__grid { grid-template-columns: 1fr; gap: 40px; }
  .founder__visual { max-width: 360px; margin: 0 auto; }
}

/* ============ TESTIMONIALS ============ */
.testimonials { background: var(--bg-canvas); }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: #fff; border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.testimonial-card__stars { color: var(--brand-blue); margin-bottom: 28px; letter-spacing: 4px; font-size: 16px; }
.testimonial-card__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding-bottom: 24px; margin-bottom: 24px; border-bottom: 1px solid var(--border-subtle); }
.testimonial-card__col h4 { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 12px; }
.testimonial-card__col--before h4 { color: var(--fg-3); }
.testimonial-card__col--after h4 { color: var(--brand-blue); }
.testimonial-card__col ul { list-style: none; padding: 0; margin: 0; }
.testimonial-card__col li { font-size: 14px; color: var(--fg-2); margin-bottom: 6px; }
.testimonial-card__col--after li { color: var(--fg-1); font-weight: 500; }
.testimonial-card__quote { font-family: var(--font-display); font-style: italic; font-size: 18px; line-height: 1.5; color: var(--fg-1); margin-bottom: 32px; flex: 1; }
.testimonial-card__attr-name { font-weight: 600; color: var(--fg-1); font-family: var(--font-body); font-size: 16px; }
.testimonial-card__attr-meta { font-size: 13px; color: var(--fg-3); margin-top: 4px; }
@media (max-width: 960px) { .testimonials__grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; } }

.testimonials__trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 64px auto 0; max-width: 960px; }
.trust-pill { background: #fff; border: 1px solid var(--border-subtle); border-radius: var(--radius-md); padding: 28px 16px; text-align: center; box-shadow: var(--shadow-xs); }
.trust-pill__icon { width: 36px; height: 36px; margin: 0 auto 12px; background: var(--bg-brand-soft); color: var(--brand-blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.trust-pill__icon svg { width: 18px; height: 18px; }
.trust-pill__label { font-size: 14px; font-weight: 600; color: var(--fg-1); }
@media (max-width: 700px) { .testimonials__trust { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

/* ============ FAQ ============ */
.faq { background: #fff; }
.faq__list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-default); }
.faq-item summary { list-style: none; cursor: pointer; padding: 28px 0; font-family: var(--font-display); font-weight: 500; font-size: 22px; color: var(--fg-1); display: flex; align-items: center; justify-content: space-between; gap: 24px; transition: color var(--dur-fast) var(--ease-out); line-height: 1.3; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--brand-blue); }
.faq-item__plus { flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%; background: var(--bg-brand-soft); color: var(--brand-blue); display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 300; transition: transform var(--dur-med) var(--ease-out); }
.faq-item[open] .faq-item__plus { transform: rotate(45deg); }
.faq-item__body { padding: 0 0 28px; color: var(--fg-2); font-size: 16px; line-height: 1.7; max-width: 70ch; }

/* ============ CTA ============ */
.cta-section { background: var(--brand-blue); color: #fff; text-align: center; }
.cta-section .eyebrow { color: rgba(255,255,255,0.7); margin-bottom: 24px; }
.cta-section h2 { color: #fff; margin-bottom: 28px; }
.cta-section h2 .italic { color: var(--brand-sky); }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 17px; max-width: 60ch; margin: 0 auto 40px; line-height: 1.65; }

/* ============ FOOTER ============ */
.site-footer { background: var(--brand-ink); color: var(--fg-on-dark-2); padding: 80px 0 40px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 64px; margin-bottom: 56px; }
.footer__brand img { height: 48px; margin-bottom: 24px; }
.footer__brand p { font-size: 14px; line-height: 1.65; color: var(--fg-on-dark-2); max-width: 38ch; }
.footer__col h4 { color: #fff; font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 20px; }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer__col a, .footer__col li { color: var(--fg-on-dark-2); font-size: 14px; transition: color var(--dur-fast) var(--ease-out); }
.footer__col a:hover { color: #fff; }
.footer__contact-item { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--fg-on-dark-2); }
.footer__contact-item svg { width: 16px; height: 16px; color: var(--brand-sky); flex-shrink: 0; margin-top: 3px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 13px; color: var(--neutral-400); }
.footer__bottom a { color: var(--neutral-400); }
.footer__bottom a:hover { color: #fff; }
.footer__disclaimer { margin-top: 20px; font-size: 11px; color: var(--neutral-500); line-height: 1.65; max-width: 90ch; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer__grid { grid-template-columns: 1fr; gap: 40px; } }

/* ============ Reveal ============ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out); }
.reveal.is-in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   STICKY MOBILE CTA + AVAILABILITY MODAL
   ============================================================ */
.sticky-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: none;
  background: var(--brand-blue);
  color: #fff;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.25);
  cursor: pointer;
  border: none;
  transition: background var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.sticky-cta:hover { background: var(--brand-blue-deep); transform: translateY(-1px); }
.sticky-cta:active { transform: scale(0.98); }
@media (max-width: 800px) { .sticky-cta { display: block; } }

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 18, 32, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.is-open { display: flex; }
.modal {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow-xl, 0 28px 64px rgba(15,23,42,0.16));
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: var(--fg-3);
  cursor: pointer;
  line-height: 1;
  padding: 8px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal__close:hover { background: var(--bg-subtle); color: var(--fg-1); }
.modal h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  color: var(--fg-1);
  line-height: 1.2;
  margin: 0 0 12px;
}
.modal h3 .italic { font-style: italic; color: var(--brand-blue-bright); }
.modal__lead { font-size: 15px; color: var(--fg-2); line-height: 1.6; margin: 0 0 24px; }
.modal__form label { display: block; margin-bottom: 16px; }
.modal__form .label-text { display: block; font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--fg-3); margin-bottom: 6px; }
.modal__form input, .modal__form select {
  padding: 14px 16px;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 15px;
  width: 100%;
  background: #fff;
  color: var(--fg-1);
}
.modal__form select { appearance: none; background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236A7689' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 40px; }
.modal__form button { width: 100%; margin-top: 8px; }
.modal__status { text-align: center; margin-top: 16px; font-size: 14px; }

/* ============================================================
   SUBPAGE STYLES
   ============================================================ */

/* Subpage hero — solid dark, smaller than homepage hero */
.page-hero {
  position: relative;
  background: linear-gradient(180deg, #0B1220 0%, #111827 100%);
  color: #fff;
  padding: 180px 0 100px;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(30, 64, 175, 0.30), transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(30, 64, 175, 0.18), transparent 50%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero__inner { max-width: 760px; }
.page-hero .eyebrow { color: var(--brand-sky); margin-bottom: 24px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(48px, 6.5vw, 84px);
  line-height: 1.05;
  color: #fff;
  letter-spacing: -0.005em;
  margin: 0 0 28px;
}
.page-hero h1 .italic { font-style: italic; color: var(--brand-sky); }
.page-hero__lead { color: rgba(255,255,255,0.85); font-size: clamp(16px, 1.5vw, 19px); max-width: 60ch; margin-bottom: 40px; line-height: 1.65; }
.page-hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Section: prose content — narrow column, comfortable reading */
.section-prose { background: #fff; }
.prose {
  max-width: 720px;
  margin: 0 auto;
}
.prose h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--fg-1);
  line-height: 1.15;
  margin: 0 0 24px;
}
.prose h2 .italic { font-style: italic; color: var(--brand-blue-bright); }
.prose h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 30px);
  color: var(--fg-1);
  line-height: 1.2;
  margin: 48px 0 16px;
}
.prose p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--fg-2);
  margin: 0 0 1.2em;
}
.prose strong { color: var(--fg-1); font-weight: 600; }
.prose ul {
  padding: 0;
  margin: 0 0 1.4em;
  list-style: none;
}
.prose ul li {
  position: relative;
  padding-left: 28px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--fg-2);
  margin-bottom: 12px;
}
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 14px;
  height: 2px;
  background: var(--brand-blue);
  border-radius: 2px;
}

/* Callout — subtle blue card for highlight info */
.callout {
  background: var(--bg-brand-soft);
  border-left: 3px solid var(--brand-blue);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  margin: 40px 0;
}
.callout p { font-size: 16px; line-height: 1.65; color: var(--fg-1); margin: 0; }
.callout strong { color: var(--brand-blue); }

/* Two-column feature grid (used on therapy pages) */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 40px 0;
}
.feature-grid__item {
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
  padding: 28px;
}
.feature-grid__item h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--fg-1);
  margin: 0 0 8px;
}
.feature-grid__item p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-2);
  margin: 0;
}
@media (max-width: 700px) { .feature-grid { grid-template-columns: 1fr; gap: 16px; } }

/* Contact specific */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-card {
  background: var(--bg-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  color: var(--fg-1);
  margin: 0 0 24px;
}
.contact-card__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 20px; }
.contact-card__list li { display: flex; align-items: flex-start; gap: 16px; }
.contact-card__list svg { width: 22px; height: 22px; color: var(--brand-blue); flex-shrink: 0; margin-top: 2px; }
.contact-card__list .label { display: block; font-size: 13px; color: var(--fg-3); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 4px; }
.contact-card__list .value { color: var(--fg-1); font-size: 16px; line-height: 1.5; }
.contact-card__list a.value { color: var(--brand-blue); }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }

/* Process page steps — extended (vertical) */
.process-extended { max-width: 820px; margin: 0 auto; }
.process-extended__step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border-default);
}
.process-extended__step:last-child { border-bottom: none; }

/* Care Roles — Physician vs Coaches 2-up */
.care-roles { background: var(--bg-subtle); }
.care-roles__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1080px;
  margin: 0 auto;
}
.care-role {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.care-role__step {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-blue);
}
.care-role h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 30px;
  color: var(--fg-1);
  line-height: 1.2;
  margin: 0;
}
.care-role h3 .italic { font-style: italic; color: var(--brand-blue-bright); }
.care-role p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-2);
  margin: 0;
}
.care-role__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--bg-brand-soft);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.care-role__icon svg { width: 24px; height: 24px; }
@media (max-width: 800px) {
  .care-roles__grid { grid-template-columns: 1fr; gap: 16px; }
}
.process-extended__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 56px;
  font-weight: 500;
  color: var(--brand-blue);
  line-height: 1;
}
.process-extended__step h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 30px;
  color: var(--fg-1);
  margin: 0 0 12px;
  line-height: 1.2;
}
.process-extended__step p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-2);
  margin: 0 0 0.8em;
}
@media (max-width: 700px) {
  .process-extended__step { grid-template-columns: 60px 1fr; gap: 20px; padding: 28px 0; }
  .process-extended__num { font-size: 40px; }
}
