@import url('/design-system/tokens.css');
@import url('/design-system/components.css');

/* ============================================
   SIYA HEALTH - Premium Telehealth Design System
   Legacy styles below — migrating to design-system/
   Import order: tokens → components → legacy
   ============================================ */

:root {
  /* Colors — Option C + soft yellow tint (bright butter wash, teal accents) */
  --white: #ffffff;
  --primary: #1e3a8a;
  --primary-hover: #1e40af;
  --accent: #0f766e;
  --accent-hover: #115e59;
  --text: #1c1917;
  --text-secondary: #57534e;
  --text-muted: #78716c;
  --border: #ebe5d6;
  --bg-subtle: #faf4e4;
  --bg-tinted: #faf4e4;
  --page-bg: #fffdf6;
  
  /* Layout - Stripe/modern SaaS */
  --section-padding: 72px;
  --section-padding-mobile: 40px;
  --container-max: 1100px;
  --gap: 24px;

  /* Header — bar height locked; logo display size is independent for legibility */
  --header-height: 72px;
  --brand-lockup-mark: 40px;
  --brand-lockup-mark-desktop: 44px;
  
  /* Typography */
  --font-heading: "Poppins", "Inter", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --line-height-body: 1.7;
  
  /* Misc */
  --radius: 10px;
  --shadow: 0 4px 16px rgba(28, 25, 23, 0.06);
  --shadow-header: 0 1px 12px rgba(28, 25, 23, 0.06);
}

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--page-bg);
  line-height: var(--line-height-body);
  -webkit-font-smoothing: antialiased;
}

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

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

/* Strict 2-column grid for content sections */
.section-with-image .section-content,
.section-with-image .section-media {
  min-width: 0; /* prevent overflow */
}

/* 12-column grid system */
.grid-12 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 48px;
}

@media (min-width: 768px) {
  .grid-12 {
    grid-template-columns: repeat(12, 1fr);
  }
}

.col-12 { grid-column: 1 / -1; }
.col-6 { grid-column: 1 / -1; }

@media (min-width: 768px) {
  .col-6 { grid-column: span 6; }
}

section {
  padding: var(--section-padding-mobile) 0;
}

@media (min-width: 768px) {
  section { padding: var(--section-padding) 0; }
}

/* Mobile: more breathing room, reduced text density */
@media (max-width: 767px) {
  .section .lead,
  .section-header .lead { margin-bottom: 20px; }
  .section-header { margin-bottom: 28px; }
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text);
}

h1 {
  font-size: clamp(32px, 5vw, 44px);
  line-height: 1.2;
  font-weight: 700;
  color: var(--text);
}

h2 {
  font-size: clamp(28px, 4vw, 36px);
  margin-bottom: 16px;
  font-weight: 700;
  color: var(--text);
}

h3 { font-size: 1.25rem; margin-bottom: 12px; font-weight: 700; color: var(--text); }

p {
  font-size: clamp(16px, 2vw, 18px);
  line-height: var(--line-height-body);
  color: var(--text-secondary);
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--primary);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  z-index: 1000;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 246, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  overflow: visible;
}

.site-header.site-header-scrolled {
  background: rgba(255, 253, 246, 0.98);
  box-shadow: var(--shadow-header);
}

/* Transparent header over hero */
.site-header-transparent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header-transparent .nav-center a,
.site-header-transparent .nav-toggle-label { color: var(--white); }
.site-header-transparent .nav-toggle-label { border-color: rgba(255,255,255,0.45); background: rgba(255,255,255,0.08); }
.site-header-transparent .nav-toggle-label::before { color: var(--white); }
.site-header-transparent .header-logo {
  background: transparent;
  padding: 0;
  border-radius: 0;
}
.site-header-transparent .button { background: var(--white); color: var(--primary); }
.site-header-transparent .button:hover { background: var(--bg-subtle); }

/* When scrolled past hero, header becomes solid for readability */
.site-header-transparent.site-header-scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-header);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.site-header-transparent.site-header-scrolled .nav-center a,
.site-header-transparent.site-header-scrolled .nav-toggle-label { color: var(--text); }
.site-header-transparent.site-header-scrolled .nav-toggle-label { border-color: var(--border); background: var(--white); }
.site-header-transparent.site-header-scrolled .nav-toggle-label::before { color: var(--text); }
.site-header-transparent.site-header-scrolled .header-logo {
  background: transparent;
  padding: 0;
  color: var(--text);
}
.site-header-transparent.site-header-scrolled .button { background: var(--primary); color: var(--white); }
.site-header-transparent.site-header-scrolled .button:hover { background: var(--primary-hover); }

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 16px;
  min-height: var(--header-height);
  max-width: none;
  flex-wrap: nowrap;
  overflow: visible;
}

@media (min-width: 900px) {
  .site-header .container {
    gap: 24px;
    padding: 10px 24px 10px 16px;
  }
}

/* Brand lockup: circular mark + Siya Health® wordmark */
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
  color: var(--primary);
}

.brand-lockup__mark {
  width: var(--brand-lockup-mark);
  height: var(--brand-lockup-mark);
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}

.brand-lockup__wordmark {
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  white-space: nowrap;
  color: inherit;
}

.brand-lockup__reg {
  font-size: 0.55em;
  font-weight: 600;
  line-height: 0;
  vertical-align: super;
  margin-left: 0.05em;
}

.header-logo.brand-lockup {
  height: var(--header-height);
  max-height: var(--header-height);
  overflow: visible;
}

.header-logo.brand-lockup:hover { opacity: 0.9; }

.site-header-transparent .brand-lockup {
  color: var(--white);
}

.site-header-transparent .brand-lockup__mark {
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.35));
}

.site-header-transparent.site-header-scrolled .brand-lockup {
  color: var(--primary);
}

.site-header-transparent.site-header-scrolled .brand-lockup__mark {
  filter: none;
}

@media (min-width: 900px) {
  .brand-lockup__mark {
    width: var(--brand-lockup-mark-desktop);
    height: var(--brand-lockup-mark-desktop);
  }

  .brand-lockup__wordmark {
    font-size: 1.15rem;
  }
}

/* Legacy: img-only header logo (pre-lockup pages until rebuild) */
.header-logo:not(.brand-lockup) {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  height: var(--header-height);
  max-height: var(--header-height);
  width: auto;
  overflow: visible;
}

.header-logo:not(.brand-lockup) img {
  height: 56px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.header-logo:not(.brand-lockup):hover { opacity: 0.9; }

.site-header-transparent .header-logo:not(.brand-lockup) img {
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.35));
}

.site-header-transparent.site-header-scrolled .header-logo:not(.brand-lockup) img {
  filter: none;
}

@media (min-width: 900px) {
  .header-logo:not(.brand-lockup) img {
    height: 60px;
    max-width: 240px;
  }
}

/* Footer logo text (keep for footer) */
.logo-siya { font-weight: 700; }
.logo-health { font-weight: 300; letter-spacing: 0.08em; }

.nav-center {
  display: none;
}

@media (min-width: 900px) {
  .nav-center {
    display: flex;
    align-items: center;
    gap: 22px;
    flex: 1;
    justify-content: center;
    margin: 0 20px;
  }

  /* Even nav rhythm — single flex gap; no cluster margin after Care Team */
  .nav-center a {
    margin-left: 0;
    margin-right: 0;
  }
}

.nav-center a {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-center a:hover,
.nav-center a:focus { color: var(--primary); }

.nav-cta {
  flex-shrink: 0;
}

.nav-cta .button {
  padding: 10px 16px;
  min-height: 42px;
  font-size: 0.9rem;
  white-space: nowrap;
}

@media (max-width: 899px) {
  .nav-cta { display: none; }
}

/* Mobile menu */
.nav-toggle { display: none; }

.nav-toggle-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  font-size: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
}

.nav-toggle-label::before {
  content: "☰";
  font-size: 20px;
  color: var(--text);
}

@media (min-width: 900px) {
  .nav-toggle-label { display: none; }
}

.nav-mobile {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  display: none;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow);
}

.nav-toggle:checked ~ .nav-mobile { display: flex; }

@media (min-width: 900px) {
  .nav-mobile { display: none !important; }
}

.nav-mobile a {
  font-size: 1.125rem;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.nav-mobile a:last-child { border-bottom: none; }

.nav-mobile a { white-space: nowrap; }

/* About dropdown — matches nav link typography; solid visible panel */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-dropdown__toggle {
  appearance: none;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: inherit;
  color: inherit;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.nav-dropdown__toggle::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.75;
  transition: transform 0.15s ease;
}

.nav-dropdown.is-open .nav-dropdown__toggle::after {
  transform: rotate(180deg);
}

.nav-dropdown__menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 180px;
  /* Invisible bridge so hover doesn't drop while moving into the menu */
  padding: 14px 0 8px;
  margin: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  z-index: 200;
}

.nav-dropdown__menu::before {
  content: "";
  display: block;
  margin: 0 0 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(28, 25, 23, 0.18);
  /* Drawn as panel behind links via absolute fill */
  position: absolute;
  inset: 10px 0 0;
  z-index: -1;
  pointer-events: none;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu,
.nav-dropdown.is-open .nav-dropdown__menu {
  display: block;
}

.nav-dropdown__menu a {
  position: relative;
  z-index: 1;
  display: block;
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text) !important;
  text-decoration: none;
  white-space: nowrap;
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a:focus-visible {
  background: var(--bg-subtle);
  color: var(--primary) !important;
}

.site-header-transparent .nav-dropdown__toggle,
.site-header-transparent .nav-center .nav-dropdown__toggle {
  color: var(--white);
}

.site-header-transparent.site-header-scrolled .nav-dropdown__toggle,
.site-header-transparent.site-header-scrolled .nav-center .nav-dropdown__toggle {
  color: var(--text);
}

.site-header-transparent .nav-dropdown__menu {
  background: transparent;
}

/* ============================================
   BUTTONS
   ============================================ */

.button,
button.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  min-height: 48px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

@media (max-width: 640px) {
  .button, button.primary {
    width: 100%;
    max-width: 100%;
  }
}

.button.primary,
.button:not(.secondary) {
  background: var(--primary);
  color: var(--white);
  border: none;
}

.button.primary:hover,
.button:not(.secondary):hover {
  background: var(--primary-hover);
}

.button.secondary,
button.secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
}

.button.secondary:hover,
button.secondary:hover {
  background: var(--primary);
  color: var(--white);
}

.cta-block .button { margin: 0; }

/* ============================================
   DESIGN SYSTEM UTILITIES (v2.0)
   Reusable patterns — alias existing components
   ============================================ */

.ds-section { padding: var(--section-padding-mobile) 0; }
@media (min-width: 768px) { .ds-section { padding: var(--section-padding) 0; } }
.ds-section--tinted { background: var(--bg-subtle); }

.ds-section-header { margin-bottom: 28px; text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.ds-section-header .lead { margin-bottom: 0; }
.ds-section-header--left { text-align: left; margin-left: 0; margin-right: 0; }

.ds-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.ds-card-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .ds-card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .ds-card-grid--3 { grid-template-columns: repeat(3, 1fr); } }

.ds-hero { position: relative; min-height: 58vh; display: flex; align-items: center; padding: calc(var(--header-height) + 32px) 0 48px; }
.ds-hero__content { position: relative; z-index: 2; max-width: 560px; color: var(--white); }

.ds-cta-band { background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%); color: var(--white); border-radius: 16px; padding: 40px 28px; text-align: center; }
.ds-cta-band h3 { color: var(--white); margin-bottom: 12px; }
.ds-cta-band p { color: rgba(255,255,255,0.92); margin-bottom: 20px; }
.ds-cta-band .button { background: var(--accent); border: none; }
.ds-cta-band .button:hover { background: var(--accent-hover); }
.ds-cta-band .button.secondary { background: transparent; border: 2px solid rgba(255,255,255,0.9); color: var(--white); }
.ds-cta-band .button.secondary:hover { background: rgba(255,255,255,0.15); color: var(--white); }

.ds-trust-row { display: flex; flex-wrap: wrap; gap: 12px 20px; justify-content: center; font-size: 0.9rem; color: var(--text-secondary); }
.ds-trust-row strong { color: var(--text); }

/* Aliases — legacy class names map to ds-* patterns above */
.section-header--compact { margin-bottom: 20px; }
.section-header--compact h2 { margin-bottom: 8px; }
.section-header--compact .lead { font-size: 1rem; }

/* ============================================
   HERO
   ============================================ */

.hero, .page-hero {
  padding: var(--section-padding-mobile) 0;
  background: linear-gradient(180deg, #faf4e4 0%, var(--page-bg) 100%);
}

/* Hero - unified across all pages */
.hero-merged,
.hero-fullwidth {
  position: relative;
  width: 100%;
  min-height: 58vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: calc(var(--header-height) + 64px) 0 70px;
  box-sizing: border-box;
  background-color: #1c1917;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* LCP-friendly hero media (picture instead of huge CSS background downloads) */
.hero-merged.hero-merged--lcp {
  background-image: none !important;
}
.hero-merged__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  pointer-events: none;
}
.hero-merged__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-availability-note {
  margin: 14px 0 0;
  max-width: 36rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}
/* Keep note light on LCP picture heroes (no inline background-image). */
.hero-merged.hero-merged--lcp .hero-availability-note {
  color: rgba(255, 255, 255, 0.88);
}
.hero-merged:not([style*="background-image"]):not(.hero-merged--lcp) .hero-availability-note,
.section-tinted .hero-availability-note {
  color: var(--text-secondary);
}

.hero-merged::before,
.hero-fullwidth::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(28, 25, 23, 0.58) 0%, rgba(28, 25, 23, 0.35) 50%, rgba(0, 0, 0, 0.45) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Hero inner wrapper - ensures alignment with page content */
.hero-inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

/* Shared hero content box - identical on all pages */
.hero-merged-content,
.hero-fullwidth-inner {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 560px;
  width: 100%;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  padding: 32px 40px;
  border-radius: 16px;
  margin-left: 0;
  margin-right: auto;
  flex-shrink: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-merged h1,
.hero-fullwidth h1 {
  color: var(--white);
  font-size: clamp(1.85rem, 4.5vw, 2.5rem);
  margin-bottom: 16px;
  line-height: 1.25;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-merged-lead,
.hero-fullwidth-lead {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 520px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-trust-mini {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}

.hero-merged .button {
  background: var(--accent);
  color: var(--white);
  border: none;
}

.hero-merged .button:hover {
  background: #115e59;
  color: var(--white);
}

.hero-merged .hero-ctas {
  margin-top: 0;
}
.hero-trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 20px;
  padding-top: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.02em;
}
.hero-trust-bar span { white-space: nowrap; }
.hero-trust-bar--chips {
  gap: 10px 12px;
  margin-top: 24px;
}
.hero-trust-bar--chips span {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.85rem;
  white-space: normal;
  text-align: center;
}

/* Mobile UX polish (2026-07) — hero trust contrast + even trust chips.
   Task 1: the hero trust bar also carries the design-system `ds-trust-row`
   class, whose `strong` color is dark (var(--text)). On the dark gradient
   hero that renders as dark-on-dark. Force light text (incl. stat numbers). */
.hero-merged .hero-trust-bar,
.hero-fullwidth .hero-trust-bar {
  color: rgba(255, 255, 255, 0.95);
}
.hero-merged .hero-trust-bar strong,
.hero-fullwidth .hero-trust-bar strong {
  color: #fff;
}
/* Tasks 2 & 4: trust chips under the weight-loss / telehealth heroes wrapped
   as uneven-width pills. Use an even 2-column grid on mobile so they read as
   consistent, equal-height cards without feeling cramped. */
@media (max-width: 640px) {
  .hero-trust-bar--chips {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    align-items: stretch;
  }
  .hero-trust-bar--chips span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 46px;
    padding: 10px 12px;
    text-align: center;
    white-space: normal;
  }
}

/* Weight loss hero + recognition (Sprint 1) */
.weight-loss-hero .hero-merged-content {
  max-width: 720px;
}
.weight-loss-hero .hero-inline-testimonial {
  margin-bottom: 20px;
}
.weight-recognition-section {
  padding-top: 48px;
  padding-bottom: 56px;
}
.weight-recognition-section .section-header {
  margin-bottom: 32px;
}
#tele-recognition .symptoms-card {
  opacity: 1;
  transform: none;
}

/* Weight complexity section (Sprint 2) */
.weight-complexity-section {
  padding-top: 56px;
  padding-bottom: 56px;
}
.weight-complexity-section .section-header {
  margin-bottom: 36px;
}
.weight-complexity-grid {
  margin-bottom: 32px;
}
.weight-complexity-transition {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  text-align: center;
  padding: 24px 20px;
  border-top: 1px solid var(--border);
}

/* Weight care roadmap (Sprint 3) */
.how-care-works-section .section-header {
  margin-bottom: 28px;
}
.care-roadmap-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  position: relative;
}
.care-roadmap-strip::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 12.5%;
  right: 12.5%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
  border-radius: 2px;
  z-index: 0;
}
.care-roadmap-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 8px;
}
.care-roadmap-strip-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px rgba(28, 25, 23, 0.25);
}
.care-roadmap-strip-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
}
.care-roadmap-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
  margin-bottom: 28px;
}
@media (min-width: 768px) {
  .care-roadmap-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1100px) {
  .care-roadmap-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}
.care-roadmap-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.care-roadmap-card:hover {
  border-color: rgba(28, 25, 23, 0.35);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}
.care-roadmap-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--primary);
}
.care-roadmap-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0 0 10px;
}
.care-roadmap-card p:last-child {
  margin-bottom: 0;
}
.care-roadmap-card-goal {
  margin-top: 12px !important;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 0.9rem !important;
  color: var(--text) !important;
}
.care-roadmap-disclaimer {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-secondary);
}
.program-overview-audience-header {
  margin-top: 48px;
}
.care-approach-section .section-header {
  margin-bottom: 32px;
}
.care-approach-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
}
@media (min-width: 768px) {
  .care-approach-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.care-approach-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.care-approach-card:hover {
  border-color: rgba(28, 25, 23, 0.3);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
}
.care-approach-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  color: var(--accent);
}
.care-approach-icon svg {
  width: 100%;
  height: 100%;
}
.care-approach-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--primary);
}
.care-approach-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}
@media (max-width: 639px) {
  .care-roadmap-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 12px;
  }
  .care-roadmap-strip::before {
    display: none;
  }
  .care-roadmap-strip-item:nth-child(odd)::after {
    content: '';
    position: absolute;
    top: 18px;
    right: -6px;
    width: calc(100% - 36px);
    height: 2px;
    background: var(--border);
    transform: translateX(50%);
    z-index: 0;
  }
  .care-roadmap-strip-item:nth-child(2)::after {
    display: none;
  }
}

/* ADHD hero: bullets + single CTA + secondary screening link */
.hero-merged .hero-bullet-list {
  list-style: none;
  margin: 0 0 20px 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  line-height: 1.65;
}
.hero-merged .hero-bullet-list li {
  margin-bottom: 8px;
  padding-left: 1.25em;
  position: relative;
}
.hero-merged .hero-bullet-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.hero-merged-lead--primary {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.hero-merged-lead--note {
  font-size: 0.98rem;
  margin-bottom: 16px;
  opacity: 0.95;
}
.hero-state-line {
  margin: 0 0 10px;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.95);
}
.hero-ctas-adhd-primary {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.hero-ctas-adhd-primary.hero-ctas-row {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.hero-ctas-adhd-primary .button {
  flex: 0 0 auto;
  min-width: 220px;
}
@media (max-width: 599px) {
  .hero-ctas-adhd-primary.hero-ctas-row {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .hero-ctas-adhd-primary.hero-ctas-row .button {
    width: 100%;
    min-width: 0;
  }
}
.hero-secondary-cta {
  margin: 14px 0 0;
  font-size: 0.9rem;
  font-weight: 500;
}
.hero-secondary-cta a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hero-secondary-cta a:hover {
  color: #fff;
}

/* ADHD hero: single testimonial above the fold */
.hero-inline-testimonial {
  margin: 24px 0 0;
  padding: 16px 18px;
  max-width: 520px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 0 var(--radius) var(--radius) 0;
  backdrop-filter: blur(6px);
}
.hero-inline-testimonial-quote {
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.98);
}
.hero-inline-testimonial-star {
  margin-right: 4px;
}
.hero-inline-testimonial-cite {
  display: block;
  font-size: 0.88rem;
  font-style: normal;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

/* Trust bar moved below hero (light background) */
.hero-trust-bar-below-fold {
  padding: 18px 0;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border);
}
.hero-trust-bar-below-fold .hero-trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.hero-trust-bar-below-fold .hero-trust-bar-inner span {
  white-space: nowrap;
}

.hero-cta-subtext { color: rgba(255, 255, 255, 0.9) !important; margin-top: 10px; width: 100%; }
.cta-screening-subtext {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 8px;
  margin-bottom: 0;
}
.cta-block-with-subtext {
  flex-direction: column;
  align-items: center;
}
.cta-block-with-subtext .cta-screening-subtext { margin-top: 10px; }

@media (max-width: 899px) {
  .site-header-transparent + main .hero-merged,
  .site-header-transparent + main .hero-fullwidth {
    padding-top: calc(var(--header-height) + 32px);
  }
  .hero-merged,
  .hero-fullwidth {
    min-height: auto;
    padding: calc(var(--header-height) + 24px) 0 40px;
  }
  .hero-merged-content,
  .hero-fullwidth-inner { padding: 20px 24px; }
  .hero-merged .hero-trust-bar,
  .hero-fullwidth .hero-trust-bar {
    margin-top: 16px;
    font-size: 0.82rem;
    gap: 8px 14px;
  }
  .hero-inline-testimonial {
    margin-top: 16px;
    padding: 12px 14px;
  }
}

@media (min-width: 768px) {
  .hero, .page-hero { padding: var(--section-padding) 0; }
}

/* Legacy overlay divs - no longer needed when using ::before */
.hero-merged-overlay,
.hero-fullwidth-overlay {
  display: none;
}

.hero-fullwidth .hero-ctas,
.hero-merged .hero-ctas {
  margin-top: 0;
}

.hero-fullwidth .button {
  background: var(--accent);
  color: #fff;
  border: none;
}

.hero-fullwidth .button:hover {
  background: #115e59;
  color: #fff;
}

.hero-bullets {
  list-style: none;
  margin: 0 0 24px 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  line-height: 1.7;
}

.hero-bullets li { margin-bottom: 8px; }

.hero-cta-secondary {
  background: rgba(255, 255, 255, 0.25) !important;
  border: 2px solid rgba(255, 255, 255, 0.95);
  color: #fff !important;
}

.hero-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.4) !important;
  color: #fff !important;
}

.hero-edu-routing {
  margin: 16px 0 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
}
.hero-edu-routing a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hero-edu-routing a:hover {
  opacity: 0.9;
}
.medication-decision-cluster ol {
  margin: 0;
  padding-left: 1.25rem;
  max-width: 720px;
}
.medication-decision-cluster li {
  margin-bottom: 0.75rem;
  line-height: 1.55;
}
.blog-hub-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}
.blog-hub-jump a {
  color: var(--brand-primary, #1a6b5c);
  font-weight: 500;
}
.blog-hub-section h2 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}
.hero-cta-link {
  display: block;
  width: 100%;
  margin-top: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hero-cta-link:hover {
  color: #fff;
}

.hero-cta-microcopy,
.cta-microcopy {
  margin-top: 12px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.cta-microcopy { color: var(--text-secondary); }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px 48px;
  align-items: center;
}

/* Mobile: hero image above text */
.hero-grid .hero-media { order: -1; }

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px 64px;
  }
  .hero-grid .hero-media { order: unset; }
}

.hero h1, .page-hero h1 {
  margin-bottom: 16px;
}

.hero p, .page-hero p { margin-bottom: 24px; }

.hero-ctas, .cta-block {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.hero-ctas .button { flex: 1 1 0; min-width: 180px; }

@media (max-width: 640px) {
  .hero-ctas, .cta-block {
    flex-direction: column;
  }
  .hero-ctas .button, .cta-block .button { width: 100%; }
}

.hero-friction-reducer {
  margin-top: 12px;
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Image styling - 4:3 aspect ratio, align with text */
.hero-media img,
.img-hero {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  display: block;
}

.section-media img,
.img-section {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  display: block;
}

.testimonial-img,
.img-testimonial,
.section-media .img-testimonial {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

@media (max-width: 767px) {
  .hero-media img,
  .img-hero {
    aspect-ratio: 4 / 3;
  }
}

.section-media {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}

.section-media img {
  flex-shrink: 0;
}

.hero-media .image-placeholder,
.hero-media img {
  overflow: hidden;
}

/* Trust badges - horizontal row with icons */
.trust-badges {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  width: 100%;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  gap: 8px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  white-space: nowrap;
}

.trust-badges-icons .trust-badge-icon {
  flex-shrink: 0;
  color: var(--primary);
}

@media (max-width: 768px) {
  .trust-badges {
    flex-wrap: wrap;
    gap: 12px;
  }
  .trust-badge {
    flex: 1 1 calc(50% - 6px);
    min-width: 0;
    white-space: normal;
  }
}

.pill {
  display: inline-block;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  background: rgba(28, 25, 23, 0.1);
  border-radius: 999px;
  margin-bottom: 16px;
}

/* ============================================
   SECTION STYLES
   ============================================ */

.section-header {
  margin-bottom: 48px;
}

.section-header h1,
.section-header h2 { margin-bottom: 12px; }

.section p.lead {
  max-width: 600px;
  margin-bottom: 24px;
  color: var(--text-muted);
}

/* Center headers for full-width sections */
#how-it-works .section-header,
#services .section-header,
#pricing .section-header,
#reviews .section-header,
#doctor .section-header,
#why-not-traditional .section-header {
  text-align: center;
}

#why-not-traditional .section-header .lead {
  margin-left: auto;
  margin-right: auto;
}

#how-it-works .section-header .lead,
#pricing .section-header .lead {
  margin-left: auto;
  margin-right: auto;
}

#how-it-works .cta-block,
#doctor .cta-block {
  justify-content: center;
}

#services .section-header .lead,
#pricing .section-header .lead {
  margin-left: auto;
  margin-right: auto;
}

/* Two-column sections: 50/50 desktop, stacked mobile, strict 2-col grid */
.section-with-image {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px 48px;
  align-items: center;
}

/* Mobile: images stack above text */
.section-with-image .section-media { order: -1; }
.section-with-image .section-content { order: 0; }
.section-with-image-reverse .section-media { order: -1; }
.section-with-image-reverse .section-content { order: 0; }

@media (min-width: 768px) {
  .section-with-image {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    align-items: center;
    gap: 48px 64px;
  }
  .section-with-image .section-content {
    grid-column: 1;
    grid-row: 1;
    order: unset;
  }
  .section-with-image .section-media {
    grid-column: 2;
    grid-row: 1;
    order: unset;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  /* Reverse: image left, text right */
  .section-with-image-reverse .section-content {
    grid-column: 2;
    grid-row: 1;
    order: unset;
  }
  .section-with-image-reverse .section-media {
    grid-column: 1;
    grid-row: 1;
    order: unset;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
}

.founder-quote {
  margin: 1.5em 0;
  padding-left: 1.25em;
  border-left: 4px solid var(--accent);
  font-style: italic;
  color: var(--text-secondary);
  font-size: 1.05em;
}

/* Cards */
.card-grid {
  display: grid;
  gap: var(--gap);
  grid-template-columns: 1fr;
  align-items: stretch;
}

@media (min-width: 640px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .card-grid { grid-template-columns: repeat(3, 1fr); }
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card h3 { color: var(--primary); }

/* Service icon */
.service-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 16px;
  flex-shrink: 0;
  padding: 12px;
  background: rgba(28, 25, 23, 0.08);
  border-radius: 16px;
}

/* Service cards */
.service-col, .service-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.service-col .service-icon,
.service-card .service-icon {
  order: -1;
}

.service-col .button,
.service-card .button {
  margin-top: auto;
  align-self: flex-start;
}

.service-col:hover, .service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-cols, .services-grid {
  display: grid;
  gap: var(--gap);
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .service-cols, .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .service-cols, .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.services-grid-4 {
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .services-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .services-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.services-three-col {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .services-three-col { grid-template-columns: repeat(3, 1fr); }
}

/* ADHD dominant services layout */
.services-layout-adhd-dominant {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

.service-col-featured {
  padding: 40px 36px;
  border: 2px solid var(--primary);
  background: linear-gradient(180deg, rgba(28, 25, 23, 0.04) 0%, var(--white) 100%);
}

.service-col-featured .service-icon {
  width: 72px;
  height: 72px;
}

.service-col-featured h3 {
  font-size: 1.5rem;
}

.services-secondary-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
}

@media (min-width: 768px) {
  .services-secondary-row {
    grid-template-columns: 1fr 1fr;
  }
}

.service-col-secondary {
  padding: 24px;
}

.service-col-secondary .service-icon {
  width: 56px;
  height: 56px;
}

.service-col-secondary h3 {
  font-size: 1.1rem;
}

/* Pricing cards */
.pricing-grid {
  display: grid;
  gap: var(--gap);
  grid-template-columns: 1fr;
  align-items: stretch;
}

@media (min-width: 640px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid-two { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid-four { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 1023px) {
  .pricing-grid-four { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 639px) {
  .pricing-grid-two,
  .pricing-grid-four { grid-template-columns: 1fr; }
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
}

.pricing-card p:last-of-type {
  margin-top: auto;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.pricing-card-featured {
  border-color: var(--primary);
  background: linear-gradient(180deg, rgba(28, 25, 23, 0.03) 0%, var(--white) 100%);
}

.pricing-card h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

/* Initial evaluation price — bold sitewide via applyPricingTokens() */
.siya-price,
.siya-price--initial-evaluation {
  font-weight: 700;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.trust-metrics-rewrite-meta .siya-price--initial-evaluation,
.trust-metric-value .siya-price--initial-evaluation,
.pricing-strip-list .siya-price--initial-evaluation {
  font-weight: 700;
}

.pricing-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

/* Price amount stays large; only period labels (/month, one-time) shrink */
.pricing-price > span:not(.siya-price) {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 400;
}

.pricing-price .siya-price,
.pricing-price .siya-price--initial-evaluation {
  font-size: inherit;
  font-weight: 700;
  color: inherit;
}

.pricing-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
}

.pricing-value-stack {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  text-align: left;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.pricing-value-stack li {
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
}

.pricing-value-stack li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.pricing-card-evaluation { text-align: center; }
.pricing-card-evaluation .pricing-value-stack { display: inline-block; }

.pricing-urgency {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  margin: 0;
  margin-top: 8px;
}

.pricing-cta {
  margin-top: 32px;
  justify-content: center;
}

/* Flow cards - 3-step How It Works */
.flow-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .flow-cards { grid-template-columns: repeat(3, 1fr); }
}

.flow-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.flow-card:hover {
  border-color: rgba(28, 25, 23, 0.35);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
  transform: translateY(-2px);
}
.flow-cards--adhd-process .flow-card {
  text-align: left;
  padding: 32px 28px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.flow-cards--adhd-process .flow-card-icon img {
  margin: 0;
}
.flow-cards--adhd-process .flow-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.flow-cards--adhd-process .flow-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 10px;
}
.flow-cards--adhd-process .flow-card p:last-child {
  margin-bottom: 0;
}
.flow-card-note {
  font-size: 0.92rem !important;
  font-weight: 500;
  color: var(--text) !important;
  margin-top: 12px !important;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.flow-step-num {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.flow-card-icon { margin-bottom: 16px; }
.flow-card-icon img { margin: 0 auto; }
.flow-card h3 { margin-bottom: 8px; color: var(--primary); }
.flow-card p { font-size: 0.95rem; margin: 0; color: var(--text-secondary); }
.flow-cta-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 12px;
}

/* Pricing grid three-column layout */
.pricing-grid-three {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
  align-items: stretch;
}

@media (min-width: 640px) {
  .pricing-grid-three { grid-template-columns: repeat(3, 1fr); }
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  text-align: left;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.pricing-list li { margin-bottom: 8px; }
.pricing-includes {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0 0 20px 0;
  line-height: 1.5;
}
.pricing-coming {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 8px;
}

/* Process steps */
.process-steps {
  display: grid;
  gap: var(--gap);
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .process-steps { grid-template-columns: repeat(3, 1fr); }
}

/* When inside two-column section, wait for more space before 3-col */
.section-with-image .process-steps {
  grid-template-columns: 1fr;
}

@media (min-width: 1100px) {
  .section-with-image .process-steps { grid-template-columns: repeat(3, 1fr); }
}

.process-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.process-step-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  display: block;
}

.process-step-num {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}

.process-step h3 { color: var(--primary); }

.process-price {
  font-weight: 600;
  color: var(--primary);
  margin-top: 12px;
}

.pricing-note {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  margin-top: 20px;
}

/* List */
.list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.list li {
  padding-left: 28px;
  position: relative;
}

.list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.list-links li::before { content: none; }
.list-links li { padding-left: 0; }
.list-links a { color: var(--primary); font-weight: 500; }
.list-links a:hover { color: var(--primary-hover); }

/* Reviews / Testimonials */
.reviews { background: var(--bg-subtle); }

.review-grid, .testimonial-grid {
  display: grid;
  gap: var(--gap);
  grid-template-columns: 1fr;
  align-items: stretch;
}

@media (min-width: 640px) {
  .review-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .review-grid, .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
}

.review-card, .testimonial-card {
  background: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.review-card p,
.testimonial-card p {
  flex: 1;
}

.review-stars { color: #f59e0b; font-size: 1.1rem; letter-spacing: 0.05em; margin-bottom: 12px; }

/* Premium testimonial cards */
.testimonial-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}
@media (min-width: 640px) {
  .testimonial-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .testimonial-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
.testimonial-card-premium {
  background: var(--white);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.testimonial-card-premium .testimonial-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.testimonial-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary);
  background: rgba(28, 25, 23, 0.08);
  padding: 4px 12px;
  border-radius: 999px;
}
.testimonial-card-premium .testimonial-text {
  flex: 1;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 16px;
}
.testimonial-footer {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.testimonial-verified {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text-muted);
}
.testimonial-cta {
  text-align: center;
  margin-top: 48px;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
.testimonial-cta-headline {
  font-size: 1.35rem;
  margin: 0 0 10px;
  color: var(--primary);
}
.testimonial-cta-subtext {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0 0 20px;
}
.testimonial-cta .button {
  margin-bottom: 4px;
}
.testimonial-cta .reviews-link-wrap {
  margin-top: 16px;
}
.testimonial-cta-text {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 16px;
}

.review-card strong, .testimonial-card strong { color: var(--primary); }

.reviews-link {
  font-weight: 600;
  color: var(--primary);
  transition: color 0.2s;
}

.reviews-link:hover { color: var(--primary-hover); }

.reviews-link-wrap {
  margin-top: 20px;
  text-align: center;
}

/* Reviews carousel */
.reviews-carousel {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  padding-bottom: 16px;
}

.reviews-carousel::-webkit-scrollbar {
  height: 6px;
}

.reviews-carousel::-webkit-scrollbar-track {
  background: var(--border);
  border-radius: 3px;
}

.reviews-carousel::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}

.reviews-carousel-track {
  display: flex;
  gap: var(--gap);
  padding: 8px 0;
  min-width: min-content;
}

.reviews-carousel .review-card {
  flex: 0 0 min(320px, 85vw);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.trust-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-bottom: 32px;
  font-weight: 600;
  color: var(--text);
}

.trust-stats span::before { content: "✔ "; color: var(--accent); }

/* Trust metrics - rolling numbers below hero */
.trust-metrics {
  padding: 48px 0;
  background: var(--bg-subtle);
}

.trust-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (min-width: 640px) {
  .trust-metrics-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .trust-metrics-grid { grid-template-columns: repeat(6, 1fr); }
}

.trust-metric-card {
  text-align: center;
  padding: 20px 16px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.trust-metric-value {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.trust-metric-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ADHD page: persuasive stats (replaces 6-card grid) */
.trust-metrics-adhd-rewrite {
  padding: 40px 0 48px;
}
.trust-metrics-rewrite-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.trust-metrics-rewrite-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3.5vw, 1.65rem);
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 16px;
  line-height: 1.3;
}
.trust-metrics-rewrite-line {
  margin: 0 0 12px;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--text-secondary);
}
.trust-metrics-rewrite-line-strong {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0;
}
.trust-metrics-adhd-rewrite .trust-metric-value {
  display: inline;
  font-size: inherit;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}
.trust-metrics-rewrite-meta {
  margin: 16px 0 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* CTA Band */
.cta-band, .cta-section {
  text-align: center;
  padding: 60px 32px;
  background: var(--primary);
  color: var(--white);
  border-radius: 16px;
}

@media (min-width: 768px) {
  .cta-band, .cta-section { padding: 80px 48px; }
}

.cta-band h3, .cta-section h3 {
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  color: var(--white);
  margin-bottom: 12px;
}

.cta-band p, .cta-section p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}

.cta-band-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.cta-band-buttons .button { flex: 1 1 0; min-width: 180px; }

@media (max-width: 640px) {
  .cta-band-buttons { flex-direction: column; }
  .cta-band-buttons .button { width: 100%; }
}

.cta-band-buttons .button {
  background: var(--white);
  color: var(--primary);
}

.cta-band-buttons .button:hover {
  background: var(--bg-subtle);
}

.cta-band-buttons .button.secondary {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.cta-band-buttons .button.secondary:hover {
  background: var(--white);
  color: var(--primary);
}

/* Physician profile - 2-column layout */
.physician-main {
  display: grid;
  gap: 20px;
  align-items: start;
}

@media (min-width: 640px) {
  .physician-main { grid-template-columns: auto 1fr; }
}

.physician-profile {
  display: grid;
  gap: 32px;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}

.physician-details h3 { margin-bottom: 8px; }

@media (min-width: 900px) {
  .physician-profile { grid-template-columns: 1fr auto; }
}

.physician-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-subtle);
}

.physician-credentials { font-weight: 600; color: var(--primary); margin-bottom: 4px; }
.physician-licensed { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 12px; }

.physician-why-heading {
  font-size: 1.1rem;
  margin-top: 24px;
  margin-bottom: 8px;
}

/* Physician card - collapsible bio */
.physician-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.physician-card-main {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.physician-card .physician-photo {
  width: 96px;
  height: 96px;
  flex-shrink: 0;
}

.physician-card-main h3 { margin-bottom: 8px; }
.physician-card-main .physician-credentials { font-size: 0.9rem; margin-bottom: 4px; }
.physician-card-main .physician-licensed { font-size: 0.9rem; margin-bottom: 0; }

.physician-card-expand {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.physician-card-expand p { margin-bottom: 12px; }
.physician-card-expand h4 { margin-top: 20px; margin-bottom: 8px; font-size: 1.05rem; }

.physician-read-more {
  margin-top: 16px;
  background: none;
  border: none;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}

.physician-read-more:hover { color: var(--primary-hover); }

.physician-video-placeholder {
  margin-top: 32px;
  background: var(--bg-subtle);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-placeholder-inner {
  text-align: center;
  padding: 32px;
  color: var(--text-secondary);
}

.video-placeholder-icon {
  display: block;
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-size: 24px;
  line-height: 56px;
  text-align: center;
}

/* What happens next section */
.what-happens-steps {
  max-width: 520px;
  margin: 0 auto 32px;
  padding-left: 24px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.what-happens-steps li { margin-bottom: 12px; }

.what-happens-next .cta-block { justify-content: center; }

.meet-greet-section { background: var(--bg-subtle); }

/* Mobile sticky CTA */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
  z-index: 90;
}

.mobile-sticky-cta .button {
  width: 100%;
  justify-content: center;
}

@media (max-width: 899px) {
  .mobile-sticky-cta { display: block; }
  /* Hide until hero CTAs leave the viewport (avoids duplicate Meet & Greet + clipping) */
  .mobile-sticky-cta:not(.is-revealed) {
    transform: translateY(calc(100% + 16px));
    pointer-events: none;
    box-shadow: none;
  }
  .mobile-sticky-cta.is-revealed {
    transform: translateY(0);
    pointer-events: auto;
  }
  .mobile-sticky-cta {
    transition: transform 0.22s ease, box-shadow 0.22s ease;
  }
  body:has(.mobile-sticky-cta) main { padding-bottom: 80px; }
  body:has(.mobile-sticky-cta) {
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
}

/* LeadConnector chat — avoid covering sticky CTAs on mobile */
@media (max-width: 899px) {
  body:has(.mobile-sticky-cta) lc-chat-widget,
  body:has(.mobile-sticky-cta) #lc_text-widget,
  body:has(.mobile-sticky-cta) [id*="chat-widget"],
  body:has(.mobile-sticky-cta) iframe[src*="leadconnector"] {
    bottom: 88px !important;
  }
}

@media (min-width: 900px) {
  .mobile-sticky-cta { display: none !important; }
}

/* Image placeholders */
.image-placeholder {
  background: var(--border);
  border: 2px dashed var(--text-secondary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-align: center;
  padding: 24px;
}

.image-placeholder span { max-width: 240px; }

.hero-media .image-placeholder {
  min-height: 320px;
  aspect-ratio: 4 / 3;
}

img[loading="lazy"] { loading: lazy; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   ASRS ADHD SCREENER
   ============================================ */

.asrs-screener-section { padding-top: 48px; }

/* Clear sticky header (~93px). Use .section.asrs… so we beat later .section mobile padding. */
@media (max-width: 899px) {
  .section.asrs-screener-section {
    padding-top: 120px;
  }
}

.asrs-screener {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow);
}

.asrs-step {
  display: none;
}

.asrs-step.asrs-step-active {
  display: block;
  scroll-margin-top: 110px;
}

.asrs-step.asrs-step-active .asrs-question {
  scroll-margin-top: 110px;
}

.asrs-step[hidden] { display: none !important; }

.asrs-intro h1 {
  font-size: clamp(1.75rem, 4vw, 2rem);
  margin-bottom: 20px;
}

.asrs-intro-lead {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.asrs-intro p {
  margin-bottom: 12px;
  color: var(--text-secondary);
}

.asrs-intro-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 24px;
  margin-bottom: 28px;
}

.asrs-progress {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
}

.asrs-question {
  font-size: 1.15rem;
  line-height: 1.5;
  margin-bottom: 24px;
  font-weight: 600;
}

.asrs-options {
  border: none;
  padding: 0;
  margin: 0 0 28px 0;
}

.asrs-options label {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  margin-bottom: 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.asrs-options label:hover {
  border-color: var(--primary);
  background: var(--bg-subtle);
}

.asrs-options input[type="radio"] {
  margin-right: 12px;
  flex-shrink: 0;
}

.asrs-options label:has(input:checked) {
  border-color: var(--primary);
  background: rgba(28, 25, 23, 0.05);
}

.asrs-answer-nudge {
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: var(--radius);
  border: 1px solid rgba(185, 28, 28, 0.35);
  background: rgba(185, 28, 28, 0.08);
  color: #991b1b;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
}

.asrs-step--needs-answer .asrs-options {
  outline: 2px solid rgba(185, 28, 28, 0.25);
  outline-offset: 4px;
  border-radius: var(--radius);
}

.asrs-next--ready {
  box-shadow: 0 0 0 2px rgba(13, 148, 136, 0.35);
}

.asrs-nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.asrs-results h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.asrs-results .asrs-score {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
}

.asrs-results-message {
  margin-bottom: 28px;
  line-height: 1.65;
}

.asrs-results-message p { margin-bottom: 12px; }

.asrs-cta { margin-top: 24px; margin-bottom: 12px; }

.asrs-results-complete {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.asrs-cta-completion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

@media (min-width: 600px) {
  .asrs-cta-completion {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
}

.asrs-results-microcopy {
  max-width: 36rem;
  margin-top: 4px;
  line-height: 1.55;
}

.asrs-citation {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Post-ASRS results page — composed copy/photo split + site CTA hierarchy */
.screening-results-hero {
  padding-top: 120px;
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.screening-results-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
  max-width: 68rem;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .screening-results-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    grid-template-areas:
      "visual header"
      "visual actions";
    gap: 1.25rem 3rem;
    align-items: start;
  }

  .screening-results-header { grid-area: header; }
  .screening-results-visual { grid-area: visual; }
  .screening-results-actions { grid-area: actions; }
}

.screening-results-header {
  text-align: left;
  margin: 0;
  width: 100%;
}

.screening-results-hero .screening-results-header h1 {
  margin-bottom: 12px;
}

.screening-results-hero .screening-results-header .lead {
  margin-bottom: 0;
  max-width: 36rem;
}

.screening-results-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}

.screening-results-hero-cta {
  margin: 0;
  width: 100%;
}

.screening-results-hero .cta-microcopy {
  margin: 0;
  max-width: 34rem;
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.screening-results-tertiary {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.screening-results-tertiary a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.screening-results-visual {
  margin: 0;
  width: 100%;
}

.screening-results-visual picture,
.screening-results-visual img {
  display: block;
  width: 100%;
}

.screening-results-visual img {
  height: auto;
  aspect-ratio: 4 / 5;
  max-height: 520px;
  object-fit: cover;
  object-position: center 22%;
  border-radius: 16px;
}

.screening-results-visual figcaption {
  margin-top: 12px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.screening-results-path-band {
  padding-top: clamp(1.75rem, 3.5vw, 2.5rem);
  padding-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
}

.screening-results-path-inner {
  max-width: 44rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
}

.screening-results-path {
  margin: 0;
  text-align: center;
}

.screening-results-path h2 {
  margin: 0 0 14px;
  font-size: 1.35rem;
  color: var(--primary);
}

.screening-results-path img {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  margin: 0 auto;
}

.screening-results-path-caption {
  margin: 12px auto 0;
  max-width: 36rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.screening-outcome-badge {
  display: inline-block;
  margin: 0 0 12px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: var(--bg-subtle);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.screening-outcome-badge--positive {
  background: rgba(15, 118, 110, 0.1);
  color: var(--accent);
  border-color: rgba(15, 118, 110, 0.25);
}

.screening-outcome-badge--negative {
  background: rgba(30, 58, 138, 0.08);
  color: var(--primary);
  border-color: rgba(30, 58, 138, 0.2);
}

.screening-outcome-badge--borderline {
  background: rgba(180, 83, 9, 0.1);
  color: #92400e;
  border-color: rgba(180, 83, 9, 0.28);
}

.screening-results-score {
  margin: 12px 0 0;
  max-width: 36rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.5;
}

.screening-results-detail {
  margin: 0;
  max-width: 40rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-secondary);
  text-align: left;
}

.screening-results-detail strong {
  font-weight: 600;
  color: var(--text);
}

.screening-results-disclaimer {
  margin: 0;
  max-width: 40rem;
  text-align: left;
}

.screening-results-more {
  padding-top: 8px;
  padding-bottom: 48px;
}

.screening-results-footnote {
  margin: 0 auto;
  max-width: 40rem;
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Soft email capture — deliberately quieter than Meet & Greet CTAs */
.screening-soft-capture-mount {
  max-width: 28rem;
  margin: 0 auto 28px;
}

.screening-soft-capture {
  position: relative;
  border: 1px solid rgba(10, 36, 107, 0.12);
  background: rgba(244, 239, 231, 0.55);
  border-radius: 8px;
  padding: 1rem 1.15rem 1.1rem;
}

.screening-soft-capture__inner {
  position: relative;
}

.screening-soft-capture__dismiss {
  position: absolute;
  top: -0.25rem;
  right: -0.15rem;
  border: 0;
  background: transparent;
  color: var(--text-secondary, #5a5a5a);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.4rem;
}

.screening-soft-capture__eyebrow {
  margin: 0 0 0.2rem;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary, #5a5a5a);
  font-weight: 600;
}

.screening-soft-capture__title {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text, #1a1a1a);
  line-height: 1.3;
}

.screening-soft-capture__lead {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  color: var(--text-secondary, #5a5a5a);
  line-height: 1.45;
}

.screening-soft-capture__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-secondary, #5a5a5a);
}

.screening-soft-capture__input {
  width: 100%;
  box-sizing: border-box;
  padding: 0.55rem 0.65rem;
  border: 1px solid rgba(10, 36, 107, 0.18);
  border-radius: 6px;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  background: #fff;
}

.screening-soft-capture__check {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--text, #1a1a1a);
  margin-bottom: 0.45rem;
  cursor: pointer;
}

.screening-soft-capture__check input {
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.screening-soft-capture__legal {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  color: var(--text-secondary, #5a5a5a);
}

.screening-soft-capture__legal a {
  color: inherit;
  text-decoration: underline;
}

.screening-soft-capture__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  align-items: center;
  margin-bottom: 0.55rem;
}

.screening-soft-capture__submit {
  border: 1px solid rgba(10, 36, 107, 0.35);
  background: transparent;
  color: var(--primary, #001878);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.45rem 0.85rem;
  border-radius: 6px;
  cursor: pointer;
}

.screening-soft-capture__submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.screening-soft-capture__submit:not(:disabled):hover {
  background: rgba(0, 24, 120, 0.06);
}

.screening-soft-capture__no {
  border: 0;
  background: transparent;
  color: var(--text-secondary, #5a5a5a);
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 0.25rem 0;
}

.screening-soft-capture__note,
.screening-soft-capture__status {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--text-secondary, #5a5a5a);
}

.screening-soft-capture__status a {
  color: var(--primary, #001878);
}

@media (max-width: 899px) {
  .section.screening-results-hero {
    padding-top: 96px;
    padding-bottom: 20px;
  }

  .screening-results-layout {
    gap: 12px;
  }

  /* Phone flow: outcome → compact photo → CTAs */
  .screening-results-visual img {
    aspect-ratio: 16 / 10;
    max-height: 160px;
    object-position: center 30%;
  }

  .screening-results-visual figcaption {
    display: none; /* keep first viewport on outcome + photo + CTAs */
  }

  .screening-results-hero .screening-results-header h1 {
    font-size: clamp(1.45rem, 6vw, 1.75rem);
    line-height: 1.2;
    margin-bottom: 8px;
  }

  .screening-results-hero .screening-results-header .lead {
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .screening-results-score {
    font-size: 0.88rem;
    margin-top: 8px;
  }

  .screening-results-actions {
    gap: 10px;
  }

  .screening-results-detail {
    font-size: 0.86rem;
    line-height: 1.48;
  }

  .screening-results-path-band {
    padding-bottom: calc(clamp(1.75rem, 3.5vw, 2.5rem) + 4.5rem);
  }

  .screening-results-path img {
    max-width: 100%;
  }
}

/* Topic chooser (step -1) */
.asrs-choose h1 { margin-bottom: 12px; }

.asrs-interest-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

button.asrs-interest-btn,
a.asrs-interest-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  font: inherit;
  box-sizing: border-box;
}

button.asrs-interest-btn:hover,
a.asrs-interest-btn:hover {
  border-color: var(--primary);
  background: var(--bg-subtle);
  box-shadow: 0 2px 8px rgba(28, 25, 23, 0.08);
}

.asrs-interest-title {
  display: block;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--text);
}

.asrs-interest-desc {
  display: block;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-secondary);
}

.asrs-back-to-choose-wrap {
  margin-top: 20px;
  margin-bottom: 0;
  text-align: center;
}

.asrs-text-back {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  padding: 8px;
}

.asrs-text-back:hover {
  color: var(--text);
}

.asrs-nav-intro {
  justify-content: center;
}

@media (max-width: 640px) {
  .asrs-screener { padding: 24px 20px; }
}

/* ============================================
   BLOG / ARTICLE PAGES
   ============================================ */

.blog-article { padding-top: 32px; }

.blog-container { max-width: 720px; margin: 0 auto; }

.blog-header {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.blog-meta {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.blog-meta a { color: var(--primary); }

.blog-header h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  line-height: 1.25;
  margin-bottom: 20px;
}

.blog-lead {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.blog-content {
  font-size: 1.05rem;
  line-height: 1.75;
}

.blog-content h2 {
  font-size: 1.35rem;
  margin-top: 40px;
  margin-bottom: 16px;
}

.blog-content h3 {
  font-size: 1.15rem;
  margin-top: 28px;
  margin-bottom: 10px;
}

.blog-content p { margin-bottom: 16px; }
.blog-content ul, .blog-content ol { margin-bottom: 20px; padding-left: 24px; }
.blog-content li { margin-bottom: 8px; }

.blog-cta { margin-top: 32px; margin-bottom: 12px; }

/* Blog index / listing */
.blog-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  .blog-featured-grid { grid-template-columns: repeat(3, 1fr); }
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.blog-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--primary);
}

.blog-card-tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  margin-bottom: 12px;
}

.blog-card h2 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card h2 a { color: inherit; }

.blog-card h2 a:hover { color: var(--primary); }

.blog-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  flex: 1;
}

.blog-card-link {
  font-weight: 600;
  color: var(--primary);
  margin-top: auto;
  padding-top: 4px;
}

.blog-card-link:hover { text-decoration: underline; }

/* Blog hub: category navigation & education blocks (matches existing tokens) */
.blog-hub-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
  margin-bottom: 8px;
}

.blog-hub-categories a {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.blog-hub-categories a:hover,
.blog-hub-categories a:focus-visible {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: var(--shadow);
}

.blog-hub-see-all {
  text-align: center;
  margin-top: 20px;
}

.blog-hub-see-all a {
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

.blog-hub-see-all a:hover { text-decoration: underline; }

.blog-search {
  max-width: 40rem;
  margin: 0 auto 28px;
}
.blog-search label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}
.blog-search input[type="search"] {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 1rem;
  background: var(--white);
}
.blog-search input[type="search"]:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
.blog-search-status {
  margin: 10px 0 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.blog-search-results {
  margin-top: 12px;
}
.blog-search-results-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
}
.blog-search-results-list li + li {
  border-top: 1px solid var(--border);
}
.blog-search-result {
  display: block;
  padding: 14px 16px;
  text-decoration: none;
  color: inherit;
}
.blog-search-result:hover,
.blog-search-result:focus-visible {
  background: var(--bg-subtle);
}
.blog-search-result__title {
  display: block;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}
.blog-search-result__meta {
  display: block;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 4px;
}
.blog-search-result__desc {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.blog-disclaimer {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-secondary);
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 24px;
}

.blog-disclaimer strong { color: var(--text); }

.answer-canonical-pointer {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-secondary);
  background: rgba(15, 118, 110, 0.08);
  border: 1px solid rgba(15, 118, 110, 0.25);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 20px;
}

.answer-canonical-pointer a {
  font-weight: 600;
  color: var(--primary);
}

.answer-full-guide-cta {
  margin: 32px 0;
  padding: 24px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.answer-full-guide-cta h2 {
  margin-top: 0;
  font-size: 1.25rem;
}

.answer-full-guide-cta p:last-child {
  margin-bottom: 0;
}

.clinical-review {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-secondary);
  background: rgba(0, 107, 125, 0.06);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 14px 18px;
  margin-bottom: 24px;
}

.clinical-review-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 6px;
}

.clinical-review p:last-child { margin: 0; }

.clinical-review a { font-weight: 600; }

.clinical-review--pending {
  background: rgba(120, 113, 108, 0.08);
  border-left-color: #9a948c;
}

.clinical-review--pending .clinical-review-label {
  color: #6b6560;
}

.clinical-review--reviewed {
  background: rgba(0, 107, 125, 0.06);
  border-left-color: var(--primary);
}

/* Blog engagement components — cornerstone, blogs & Health Guides */
.blog-engage {
  margin: 28px 0;
  padding: 20px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow);
}

.answer-page .blog-engage--comparison .blog-engage-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.answer-page .blog-engage-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.answer-page .blog-engage-table th,
.answer-page .blog-engage-table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.answer-page .blog-engage-table thead th {
  background: var(--bg-subtle);
  font-weight: 700;
  color: var(--primary);
}

.answer-page .blog-engage-table tbody th {
  font-weight: 600;
  color: var(--text);
  width: 28%;
}

.answer-page .answer-evidence-list {
  margin-top: 16px;
  padding-left: 20px;
}

.answer-page .answer-short + .blog-engage {
  margin-top: 20px;
}

.blog-engage-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 14px;
}

.blog-engage-sub {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin: -8px 0 12px;
}

.blog-engage-body,
.blog-engage-list li {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--text);
}

.blog-engage-list {
  margin: 0;
  padding-left: 20px;
}

.blog-engage-list li { margin-bottom: 10px; }
.blog-engage-list li:last-child { margin-bottom: 0; }

.blog-engage--takeaway {
  background: linear-gradient(135deg, rgba(28, 25, 23, 0.06) 0%, rgba(15, 118, 110, 0.08) 100%);
  border-left: 4px solid var(--accent);
}

.blog-engage--evidence {
  border-left: 4px solid var(--primary);
  background: var(--bg-subtle);
}

.blog-engage-evidence { margin: 0; }

.blog-engage-evidence-row {
  display: grid;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.blog-engage-evidence-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.blog-engage-evidence-row dt {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
}

.blog-engage-evidence-row dd {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text);
}

.blog-engage-cite {
  display: block;
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

.blog-engage--myth .blog-engage-myth-grid {
  display: grid;
  gap: 16px;
}

.blog-engage-myth,
.blog-engage-reality {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}

.blog-engage-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(239, 68, 68, 0.12);
  color: #b91c1c;
  margin-right: 6px;
  vertical-align: middle;
}

.blog-engage-tag--ok {
  background: rgba(15, 118, 110, 0.15);
  color: #0f766e;
}

.blog-engage--reddit {
  background: #fafafa;
  border-left: 4px solid #94a3b8;
}

.blog-engage-quotes {
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-engage-quotes li {
  position: relative;
  padding: 10px 0 10px 16px;
  border-bottom: 1px dashed var(--border);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-secondary);
}

.blog-engage-quotes li::before {
  content: "“";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-style: normal;
  font-weight: 700;
}

.blog-engage-quotes li:last-child { border-bottom: none; }

.blog-engage--pearl {
  background: rgba(15, 118, 110, 0.08);
  border-left: 4px solid var(--accent);
}

.blog-engage--infographic .blog-engage-infographic {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 600px) {
  .blog-engage--infographic .blog-engage-infographic {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-engage-stat {
  text-align: center;
  padding: 16px 12px;
  background: var(--bg-subtle);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.blog-engage-stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

.blog-engage-stat-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 6px;
}

.blog-engage-stat-note {
  display: block;
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-top: 6px;
  line-height: 1.4;
}

.blog-engage-stat-note a {
  color: var(--primary);
  text-decoration: underline;
}

.blog-flowchart {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.blog-flowchart-step {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  position: relative;
}

.blog-flowchart-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 48px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(var(--accent), var(--border));
}

.blog-flowchart-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-flowchart-content strong {
  display: block;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.blog-flowchart-content p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.blog-flowchart-content a {
  color: var(--primary);
  text-decoration: underline;
}

.blog-decision-tree {
  display: grid;
  gap: 14px;
}

.blog-decision-node {
  padding: 14px 16px;
  background: var(--bg-subtle);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.blog-decision-node--branch {
  margin-left: 12px;
  border-left: 3px solid var(--accent);
}

.blog-decision-q {
  font-weight: 600;
  color: var(--text);
  margin: 0 0 8px;
  font-size: 0.95rem;
}

.blog-decision-yes,
.blog-decision-no,
.blog-decision-action {
  margin: 6px 0 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.blog-decision-yes span,
.blog-decision-no span {
  font-weight: 700;
  color: var(--primary);
}

.blog-service-link {
  margin: 0 0 20px;
  font-size: 0.95rem;
}

.blog-service-link a {
  font-weight: 600;
  color: var(--primary);
  text-decoration: underline;
}

.blog-service-card {
  margin: 28px 0;
  padding: 20px 22px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
}

.blog-service-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  color: var(--primary);
}

.blog-service-card p {
  margin: 0 0 14px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

.blog-snippet-def {
  margin: 16px 0 20px;
  padding: 14px 16px;
  background: rgba(15, 118, 110, 0.06);
  border-radius: 8px;
  border-left: 3px solid var(--accent);
  font-size: 0.95rem;
  line-height: 1.55;
}

.blog-snippet-table-wrap {
  margin: 20px 0 24px;
  overflow-x: auto;
}

.blog-snippet-table-caption {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.blog-snippet-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.blog-snippet-table th,
.blog-snippet-table td {
  border: 1px solid var(--border);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

.blog-snippet-table th {
  background: var(--bg-subtle);
  font-weight: 600;
  color: var(--primary);
}

.blog-snippet-list {
  margin: 12px 0 20px;
  padding-left: 1.25rem;
}

.related-health-guides {
  margin: 32px 0;
  padding: 20px 22px;
  background: var(--bg-subtle);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.related-health-guides h2,
.related-health-guides--service h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  color: var(--primary);
}

.related-health-guides ul {
  margin: 0;
  padding-left: 1.25rem;
}

.related-health-guides li {
  margin-bottom: 6px;
}

.related-health-guides--service {
  margin-top: 28px;
  padding: 0;
  background: transparent;
  border: none;
}

.cornerstone-articles-grid {
  margin-top: 8px;
}

.cornerstone-articles-grid .blog-card h3 {
  font-size: 1.1rem;
  margin: 8px 0;
}

.cornerstone-hub .section-header {
  margin-bottom: 24px;
}

.blog-cta--mid {
  margin: 28px 0;
}

.answer-page .answer-lead {
  font-size: 1.125rem;
  line-height: 1.65;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 8px;
}

.answer-page section { margin-bottom: 32px; }

.answer-page section h2 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.answer-hub-section { margin-bottom: 48px; }

.answer-hub-section h2 {
  font-size: 1.35rem;
  margin-bottom: 16px;
}

.answer-hub-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: grid;
  gap: 10px;
}

.answer-hub-list a {
  font-weight: 500;
  color: var(--primary);
}

.answer-hub-list a:hover { text-decoration: underline; }

.answer-section,
.answer-learn-more {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.answer-section h2,
.answer-learn-more h2 {
  font-size: 1.25rem;
  margin: 0 0 12px;
}

.answer-section-list {
  margin: 12px 0 16px;
  padding-left: 1.25rem;
  line-height: 1.55;
}

.answer-section-list li {
  margin-bottom: 8px;
}

.answer-learn-more ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.answer-learn-more a {
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
}

.answer-learn-more a:hover {
  text-decoration: underline;
}

/* Health Guides hub — topic clusters + category cards */
.health-guides-hub-jump-links {
  margin-top: 12px;
  font-size: 0.95rem;
}

.health-guides-hub-jump-links a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.health-guides-hub-jump-links a:hover {
  text-decoration: underline;
}

.topic-cluster-explorer {
  margin: 40px 0 48px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.topic-cluster-explorer-group {
  margin-top: 32px;
}

.topic-cluster-explorer-group h2 {
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.topic-cluster-explorer-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .topic-cluster-explorer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .topic-cluster-explorer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.topic-cluster-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.topic-cluster-card h3 {
  font-size: 1.05rem;
  margin: 0 0 8px;
}

.topic-cluster-card h3 a {
  color: var(--text);
  text-decoration: none;
}

.topic-cluster-card h3 a:hover {
  color: var(--primary);
}

.topic-cluster-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin: 0 0 12px;
}

.topic-cluster-card-links {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}

.topic-cluster-card-links li {
  margin-bottom: 6px;
}

.topic-cluster-card-links a {
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  font-size: 0.9rem;
}

.topic-cluster-card-links a:hover {
  text-decoration: underline;
}

.topic-cluster-card-meta {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin: 0;
}

.answer-ask-siya a:hover {
  text-decoration: underline;
}

/* Conversion-clarity cleanup — pricing strip, ADHD next steps, blog inline CTAs */
.pricing-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-subtle, #f8fafb);
}

.pricing-strip-title {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.pricing-strip-list {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  display: grid;
  gap: 4px;
}

.pricing-strip-list li {
  font-size: 0.95rem;
  line-height: 1.4;
}

.pricing-strip-note {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
  max-width: 60ch;
}

.pricing-strip-copy {
  flex: 1 1 320px;
}

.pricing-strip-cta {
  flex: 0 0 auto;
}

/* Task 7: keep the pricing strip reading as a calm trust/clarity block on
   mobile — softer spacing, comfortable hierarchy, easy full-width tap target. */
@media (max-width: 640px) {
  .pricing-strip-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 20px;
  }
  .pricing-strip-cta {
    width: 100%;
  }
  .pricing-strip-cta .button,
  .pricing-strip-cta .ds-button {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   Reusable media block (Tasks 5 & 6) — calm, premium visual.
   Two modes:
   • Illustration (default, used on service pages): a soft brand-gradient
     panel with inline line-art + a short caption. No photos, no patient
     faces — a warm, lightweight visual accent.
   • Video-ready facade: add a poster <img class="media-block__poster"
     loading="lazy"> and a <button class="media-block__play"> inside the
     frame, plus an optional <details class="media-block__transcript">.
     No video autoplays and no audio plays until a user opts in. This ships
     NO heavy media — it is a placeholder ready for a future approved video.
   Example (video mode):
     <figure class="media-block" data-media="video">
       <div class="media-block__frame">
         <img class="media-block__poster" src="/assets/…poster.jpg" alt="" loading="lazy" />
         <button class="media-block__play" type="button" aria-label="Play video">…</button>
       </div>
       <figcaption class="media-block__caption">Short caption</figcaption>
       <details class="media-block__transcript"><summary>Transcript</summary><p>…</p></details>
     </figure>
   ============================================================ */
.media-block {
  margin: 0;
  max-width: 640px;
}
.media-block--center {
  margin-left: auto;
  margin-right: auto;
}
.media-block__frame {
  position: relative;
  border-radius: var(--radius-lg, 16px);
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(28, 25, 23, 0.10) 0%, rgba(15, 118, 110, 0.12) 100%);
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 20px;
}
.media-block__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Illustration variant reads as a compact, filled band (not a tall empty box);
   the 16:9 frame is reserved for the future video/poster variant. */
.media-block[data-media="illustration"] .media-block__frame {
  aspect-ratio: auto;
  min-height: 180px;
  padding: 36px 24px;
}
.media-block__art {
  display: flex;
  gap: 22px;
  color: var(--primary);
  opacity: 0.92;
}
.media-block__art svg {
  width: 46px;
  height: 46px;
}
.media-block__label {
  position: relative;
  margin: 0;
  max-width: 42ch;
  color: var(--primary);
  font-weight: 600;
  font-size: 1.02rem;
  line-height: 1.4;
}
.media-block__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.18);
  transition: transform 0.2s ease, background 0.2s ease;
}
.media-block__play:hover { transform: scale(1.06); background: #fff; }
.media-block__play svg { width: 24px; height: 24px; margin-left: 3px; }
.media-block__caption {
  margin: 12px 2px 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.media-block--photo .media-block__frame {
  padding: 0;
  background: none;
  aspect-ratio: 16 / 9;
}
.media-block--photo .media-block__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-block__transcript {
  margin: 8px 2px 0;
}
.media-block__transcript > summary {
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
}
.media-block__transcript[open] > summary { margin-bottom: 8px; }
.media-block__transcript p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0 0 8px;
}
@media (max-width: 640px) {
  .media-block__frame { aspect-ratio: 4 / 3; gap: 12px; padding: 18px; }
  .media-block__art svg { width: 34px; height: 34px; }
  .media-block__label { font-size: 0.96rem; }
}
@media (prefers-reduced-motion: reduce) {
  .media-block__play { transition: none; }
}

.adhd-next-steps-list {
  margin: 16px 0 20px;
  padding-left: 22px;
  display: grid;
  gap: 8px;
  max-width: 640px;
}

.adhd-next-steps-list li {
  line-height: 1.5;
}

.adhd-next-steps-list--compact {
  gap: 10px;
}

.adhd-next-steps-note {
  margin: 0 0 18px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  max-width: 56ch;
  line-height: 1.5;
}

.adhd-screening-disclaimer {
  margin: 12px 0;
  padding: 12px 16px;
  border-left: 3px solid var(--primary);
  background: var(--bg-subtle, #f8fafb);
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-radius: 0 6px 6px 0;
  max-width: 70ch;
}

.blog-inline-cta {
  margin: 32px 0;
  padding: 24px 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-subtle, #f8fafb);
}

.blog-inline-cta-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 0 8px;
}

.blog-inline-cta p {
  margin: 0 0 12px;
  line-height: 1.5;
}

.blog-inline-cta-actions {
  margin: 16px 0 12px;
}

.blog-inline-cta-links {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

.answer-internal-links {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.answer-internal-links-intro {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin: 0 0 20px;
}

.answer-internal-links-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .answer-internal-links-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.answer-internal-links-col-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  margin: 0 0 10px;
}

.answer-internal-links-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.answer-internal-links-col li {
  margin-bottom: 10px;
  line-height: 1.45;
}

.answer-internal-links-col a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.answer-internal-links-col a:hover {
  text-decoration: underline;
}

.answer-internal-links-primary {
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

.answer-internal-links-primary:hover {
  text-decoration: underline;
}

.answer-ask-siya {
  margin-top: 24px;
  padding: 16px 18px;
  background: var(--bg-subtle, #f8fafb);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

.answer-ask-siya p {
  margin: 0;
  font-size: 1rem;
}

.answer-ask-siya a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.topic-cluster-nav {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.topic-cluster-nav h2 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.topic-cluster-blurb {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.topic-cluster-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .topic-cluster-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.topic-cluster-col-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  margin: 0 0 10px;
}

.topic-cluster-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.topic-cluster-col li {
  margin-bottom: 10px;
  line-height: 1.45;
  font-size: 0.95rem;
}

.topic-cluster-col a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.topic-cluster-col a:hover {
  text-decoration: underline;
}

.topic-cluster-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-secondary);
  margin-left: 4px;
}

.topic-cluster-bridge {
  margin-top: 28px;
  padding: 16px 18px;
  background: var(--bg-subtle, #f8fafb);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.topic-cluster-bridge-label {
  font-weight: 700;
  margin: 0 0 10px;
  font-size: 0.9rem;
}

.topic-cluster-bridge ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.topic-cluster-bridge li {
  margin-bottom: 8px;
  font-size: 0.92rem;
}

.topic-cluster-bridge a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.topic-cluster-bridge a:hover {
  text-decoration: underline;
}

.health-guides-hub-categories {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 32px;
}

.health-guides-category-header h2 {
  font-size: 1.35rem;
  margin: 0 0 8px;
  color: var(--text);
}

.health-guides-category-blurb {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-secondary);
  margin: 0 0 8px;
  max-width: 52rem;
}

.health-guides-category-meta {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--primary);
  margin: 0 0 20px;
}

.health-guides-featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .health-guides-featured-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.health-guide-feature-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  min-height: 180px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.health-guide-feature-card:hover {
  border-color: rgba(0, 107, 125, 0.35);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.health-guide-feature-card--placeholder {
  background: var(--bg-subtle, #f8fafb);
  border-style: dashed;
}

.health-guide-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary);
  background: rgba(0, 107, 125, 0.08);
}

.health-guide-feature-icon--metabolic { background: rgba(0, 107, 125, 0.1); }
.health-guide-feature-icon--energy { background: rgba(99, 102, 241, 0.12); color: #4338ca; }
.health-guide-feature-icon--hormone { background: rgba(180, 83, 9, 0.1); color: #b45309; }
.health-guide-feature-icon--adhd { background: rgba(13, 148, 136, 0.1); color: #0d9488; }
.health-guide-feature-icon--telehealth { background: rgba(37, 99, 235, 0.1); color: #2563eb; }

.health-guide-feature-title {
  font-size: 1rem;
  line-height: 1.35;
  margin: 0 0 8px;
}

.health-guide-feature-title a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.health-guide-feature-title a:hover { color: var(--primary); }

.health-guide-feature-desc {
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin: 0 0 12px;
  flex: 1;
}

.health-guide-feature-link {
  margin: auto 0 0;
  font-size: 0.875rem;
  font-weight: 600;
}

.health-guide-feature-link a {
  color: var(--primary);
  text-decoration: none;
}

.health-guide-feature-link a:hover { text-decoration: underline; }

.health-guides-category-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  margin-top: 20px;
}

.health-guides-care-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
  text-decoration: none;
}

.health-guides-care-link:hover { text-decoration: underline; }

.health-guides-category-all {
  margin-top: 24px;
  padding: 20px;
  background: var(--bg-subtle, #f8fafb);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.health-guides-category-all-heading {
  font-size: 1rem;
  margin: 0 0 12px;
}

.health-guides-category-all-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.health-guides-category-all-list a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
}

.health-guides-category-all-list a:hover { text-decoration: underline; }


.blog-related {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.blog-related h2 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.blog-related ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-related li {
  margin-bottom: 12px;
}

.blog-related a {
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

.blog-related a:hover { text-decoration: underline; }

.continue-reading,
.related-articles,
.learn-more-cluster .learn-more-links {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.continue-reading h2,
.related-articles h2,
.learn-more-cluster .section-header h2 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.continue-reading ul,
.related-articles ul,
.learn-more-cluster .learn-more-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.continue-reading li,
.related-articles li,
.learn-more-cluster .learn-more-links li {
  margin-bottom: 12px;
}

.continue-reading a,
.related-articles a,
.learn-more-cluster .learn-more-links a {
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

.continue-reading a:hover,
.related-articles a:hover,
.learn-more-cluster .learn-more-links a:hover {
  text-decoration: underline;
}

.related-articles-care {
  margin-top: 20px;
  margin-bottom: 0;
  font-weight: 600;
}

.related-articles-care a {
  color: var(--primary);
  text-decoration: none;
}

.related-articles-care a:hover {
  text-decoration: underline;
}

.blog-master-index-grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 768px) {
  .blog-master-index-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .blog-master-index-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.blog-master-index-group h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.blog-master-index-count {
  font-weight: 500;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.blog-master-index-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-master-index-list li {
  margin-bottom: 10px;
  line-height: 1.45;
}

.blog-master-index-list a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.blog-master-index-list a:hover {
  text-decoration: underline;
}

.continue-reading-answer a::before {
  content: "Answer: ";
  font-weight: 500;
  color: var(--text-secondary);
}

.continue-reading-service a::before {
  content: "Care: ";
  font-weight: 500;
  color: var(--text-secondary);
}

.answer-next-steps {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.answer-next-steps h2 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.answer-next-steps-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.answer-next-steps-list li {
  margin-bottom: 12px;
}

.answer-next-steps-list a {
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

.answer-next-steps-list a:hover {
  text-decoration: underline;
}

.blog-internal-links {
  margin-bottom: 24px;
  padding: 16px 20px;
  border-left: 3px solid var(--primary);
  background: rgba(0, 0, 0, 0.02);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.blog-internal-links p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.blog-internal-links a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.blog-internal-links a:hover { text-decoration: underline; }

/* Content grid */
.content-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .content-grid { grid-template-columns: 1fr 1fr; }
}

.evaluation-includes { max-width: 560px; }

.conditions-list {
  display: grid;
  gap: 12px 32px;
}

@media (min-width: 600px) {
  .conditions-list { grid-template-columns: repeat(2, 1fr); max-width: 640px; }
}

/* Provider cards */
.providers-grid {
  display: grid;
  gap: var(--gap);
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .providers-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .providers-grid { grid-template-columns: repeat(3, 1fr); }
}

.provider-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}

.provider-card img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
  background: var(--bg-subtle);
}

.provider-card h4 { color: var(--primary); margin-bottom: 8px; }
.provider-card span { display: block; color: var(--text-secondary); font-size: 0.95rem; }

/* Service icon cards */
.service-icon-card .service-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: rgba(15, 118, 110, 0.15);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

/* Footer */
.footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.9);
  padding: 36px 0 20px;
  margin-top: 0;
}

.footer a { color: #e0e7ff; }
.footer a:hover { color: var(--white); }

.footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  margin-bottom: 32px;
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: minmax(140px, auto) 1fr 1fr 1fr 1fr; }
}

.footer-logo-col {
  display: flex;
  align-items: flex-start;
  min-width: 0;
}

.footer h3, .footer h4 {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-logo-link { display: block; margin-bottom: 16px; }
.footer .footer-logo-img {
  height: 112px !important;
  min-height: 112px;
  width: auto !important;
  max-width: none;
  object-fit: contain;
  display: block;
}
.footer-physician {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-physician-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.footer-physician-info strong { display: block; color: var(--white); font-size: 0.95rem; margin-bottom: 2px; }
.footer-physician-info p { margin: 0; font-size: 0.85rem; color: rgba(255,255,255,0.8); }

.footer p { color: rgba(255, 255, 255, 0.85); margin-bottom: 8px; }

.footer-brand p { max-width: 280px; }

.footer-trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0;
}

.footer-trust-item {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.95);
}

.footer-trust-logo {
  max-height: 52px;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}
img.footer-trust-logo[src*="hipaa-compliant"] {
  max-height: 72px;
  width: 72px;
  height: 72px;
  background: #fffdf6;
  border-radius: 50%;
  padding: 2px;
  box-shadow: 0 0 0 1px rgba(255, 253, 246, 0.35);
}
img.footer-trust-logo[src*="legitscript"] {
  max-height: 52px;
}

.footer-trust-logos a {
  display: block;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.9);
  transition: background 0.2s;
}

.footer-social a:hover { background: rgba(255, 255, 255, 0.25); }

.footer-notice {
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.footer small { color: rgba(255, 255, 255, 0.7); font-size: 0.9rem; }

.note {
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.info-card-note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 12px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.info-card-icon { font-size: 1.25rem; flex-shrink: 0; }
.info-card-note p { margin: 0; font-size: 0.95rem; color: var(--text-secondary); }

/* ============================================
   ADHD PAGE: Services, Symptoms, Process, Pricing
   ============================================ */

/* 3-column services cards */
.services-grid-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .services-grid-cards { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  background: var(--white);
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.service-card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.service-card h3 {
  margin-bottom: 10px;
  color: var(--primary);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.service-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  flex: 1;
}

.service-card-list li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.service-card-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.service-card .button { margin-top: auto; }
.service-card-coming { opacity: 0.95; }
.service-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #facc15;
  color: #1f2937;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 20px;
}

/* Symptoms section */
.symptoms-section {
  padding: 60px 0;
  text-align: center;
}

.symptoms-section.section-tinted { background: var(--bg-subtle); }

.symptoms-section .section-header {
  text-align: center;
}

.symptoms-section .section-header h2 {
  margin-bottom: 12px;
}

.symptoms-section .section-header .lead {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
}

.symptoms-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 35px;
}

.symptoms-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

@media (min-width: 600px) {
  .symptoms-card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .symptoms-card-grid { grid-template-columns: repeat(3, 1fr); }
}

.symptoms-card {
  background: var(--white);
  border-radius: 16px;
  padding: 22px;
  text-align: left;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.symptoms-card:hover {
  border-color: rgba(28, 25, 23, 0.35);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
  transform: translateY(-2px);
}

.symptoms-icon {
  width: 28px;
  height: 28px;
  color: var(--primary);
  margin-bottom: 10px;
}

.symptoms-icon svg { width: 100%; height: 100%; }

/* Editorial recognition thumbnails — ~30% of card, text stays dominant */
.symptoms-card--editorial {
  padding: 14px 14px 20px;
  overflow: hidden;
}
.symptoms-card-media {
  margin: 0 0 14px;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #e8e2d8;
}
.symptoms-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.92) contrast(1.02) brightness(1.01);
}
.symptoms-card--editorial .symptoms-icon { display: none; }
.symptoms-card--editorial h3 {
  font-size: 1.02rem;
  line-height: 1.35;
  margin-bottom: 6px;
}
.symptoms-card--editorial > p,
.symptoms-card--editorial .symptoms-card--link > p {
  font-size: 0.9rem;
}
.why-patients-media {
  margin: 0;
}
.why-patients-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  filter: saturate(0.92) contrast(1.02) brightness(1.01);
}
.why-patients-media figcaption {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.symptoms-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.symptoms-card p { font-size: 14px; color: var(--text-secondary); }
.symptoms-closing { margin-bottom: 20px; font-weight: 500; color: var(--text); }
.symptoms-patient-context {
  max-width: 42rem;
  margin: 28px auto 0;
  text-align: left;
}
.symptoms-patient-context p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0 0 14px;
}
.symptoms-patient-context .symptoms-transition {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}
.executive-function-section {
  padding-top: 48px;
  padding-bottom: 48px;
}
.executive-function-section .siya-diagram--inline {
  max-width: min(720px, 100%);
  margin-top: 0;
  margin-bottom: 0;
}
@media (max-width: 640px) {
  .executive-function-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .executive-function-section .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ADHD evaluation model — 2×2 educational cards */
.evaluation-model-section .section-header h2 {
  text-transform: none;
}
.evaluation-model-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 28px;
}
@media (min-width: 640px) {
  .evaluation-model-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}
.evaluation-model-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.evaluation-model-card:hover {
  border-color: rgba(28, 25, 23, 0.35);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
  transform: translateY(-2px);
}
.evaluation-model-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 16px;
}
.evaluation-model-icon svg {
  width: 22px;
  height: 22px;
}
.evaluation-model-card h3 {
  font-size: 1.12rem;
  color: var(--primary);
  margin: 0 0 10px;
  line-height: 1.35;
}
.evaluation-model-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
  flex: 1;
}
.evaluation-model-disclaimer {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-secondary);
}
.adhd-process-section .section-header {
  text-align: center;
}
.adhd-process-section .section-header .lead {
  margin-left: auto;
  margin-right: auto;
}

/* Section background tint for visual separation */
.section-tinted { background: var(--bg-subtle); }

/* ===== ICON CARDS - Reusable premium card component ===== */
.icon-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.icon-card:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}
.icon-card-icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}
.icon-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--text);
}
.icon-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}
.care-beyond-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  transition: color 0.2s ease;
}
.care-beyond-link:hover { color: var(--primary-hover); }
.icon-cards-grid {
  display: grid;
  gap: 20px;
}
.icon-cards-2col { grid-template-columns: 1fr; }
.icon-cards-3col { grid-template-columns: 1fr; }
@media (min-width: 600px) {
  .icon-cards-2col { grid-template-columns: repeat(2, 1fr); }
  .icon-cards-3col { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .icon-cards-3col { grid-template-columns: repeat(3, 1fr); }
}

/* Comparison cards - Why Not Traditional */
.comparison-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .comparison-cards-grid { grid-template-columns: 1fr 1fr; }
}
.comparison-cards-col {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.comparison-cards-highlight {
  border-color: rgba(28, 25, 23, 0.3);
  background: linear-gradient(180deg, rgba(28, 25, 23, 0.04) 0%, var(--white) 100%);
}
.comparison-cards-title {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--primary);
}
.comparison-cards-highlight .comparison-cards-title { color: var(--primary); }
.comparison-cards-col .icon-cards-grid { gap: 16px; }
.comparison-cards-col .icon-card {
  padding: 16px 20px;
}

/* Link cards - Legal & Compliance */
.link-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 600px) {
  .link-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .link-cards-grid { grid-template-columns: repeat(3, 1fr); }
}
.link-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.link-card:hover {
  border-color: var(--primary);
  box-shadow: 0 6px 16px rgba(28, 25, 23, 0.1);
}
.link-card-icon { font-size: 1.5rem; display: block; margin-bottom: 12px; }
.link-card h4 { font-size: 1.1rem; margin-bottom: 8px; color: var(--primary); }
.link-card p { font-size: 0.9rem; color: var(--text-secondary); margin: 0; }

/* Contact cards */
.contact-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 600px) {
  .contact-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
.contact-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-card:hover {
  border-color: var(--primary);
  box-shadow: 0 6px 16px rgba(28, 25, 23, 0.1);
}
.contact-card-icon { font-size: 1.5rem; display: block; margin-bottom: 12px; }
.contact-card h4 { font-size: 1.1rem; margin-bottom: 8px; color: var(--primary); }
.contact-card p { font-size: 1rem; margin: 0; font-weight: 500; }

/* State badges */
.state-badges-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 600px) {
  .state-badges-grid { grid-template-columns: repeat(3, 1fr); }
}
.state-badge {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.state-badge-icon { font-size: 1.5rem; display: block; margin-bottom: 12px; }
.state-badge h4 { font-size: 1.2rem; margin-bottom: 8px; color: var(--primary); }
.state-badge p { font-size: 0.9rem; color: var(--text-secondary); margin: 0; }

/* Coming Soon cards */
.coming-soon-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 600px) {
  .coming-soon-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .coming-soon-cards-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Trust cards with image - Weight Loss */
.trust-cards-with-image {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
@media (min-width: 900px) {
  .trust-cards-with-image {
    grid-template-columns: 1fr 1fr;
  }
}
.trust-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 480px) {
  .trust-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
.trust-image-block img {
  width: 100%;
  max-width: 520px;
  border-radius: 16px;
}

/* Physician card modern */
.physician-card-modern {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.physician-card-header {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.physician-card-modern .physician-photo {
  width: 96px;
  height: 96px;
  flex-shrink: 0;
}
.physician-card-info h3 { margin-bottom: 4px; }
.physician-role { font-size: 1rem; color: var(--primary); font-weight: 600; margin: 0 0 12px 0; }
.physician-credentials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.cred-badge {
  font-size: 0.85rem;
  padding: 6px 12px;
  background: var(--bg-subtle);
  border-radius: 8px;
  color: var(--text-secondary);
}
.physician-licensed { font-size: 0.9rem; color: var(--text-secondary); margin: 0; }
.physician-bio-blocks { display: flex; flex-direction: column; gap: 20px; }
.physician-bio-block h4 { margin-bottom: 8px; font-size: 1.05rem; }
.physician-bio-block p { margin: 0 0 16px 0; }
.physician-bio-block p:last-child { margin-bottom: 0; }

/* Founder highlight cards */
.founder-highlight-cards {
  display: grid;
  gap: 20px;
}
.founder-card { min-height: auto; }

/* Why Siya Exists - card grid layout */
.why-siya-exists .section-header {
  text-align: center;
  margin-bottom: 32px;
}
.why-siya-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .why-siya-two-col {
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: start;
  }
}
.why-siya-photo {
  order: -1;
}
.why-siya-founder-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.why-siya-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.why-siya-story p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 1em;
}
.why-siya-story p:last-child {
  margin-bottom: 0;
}
.why-siya-two-col .why-siya-quote-block {
  margin: 0;
}
.why-siya-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 56px;
}
@media (min-width: 768px) {
  .why-siya-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 24px;
  }
}
@media (min-width: 1024px) {
  .why-siya-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .why-siya-quote-block {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
  }
}
.why-siya-story-card { min-height: auto; }
.why-siya-emphasis-card {
  border-color: rgba(28, 25, 23, 0.3);
  background: linear-gradient(180deg, rgba(28, 25, 23, 0.06) 0%, var(--white) 100%);
}
.why-siya-emphasis-card h4 { color: var(--primary); }
.why-siya-quote-block {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.booking-buttons-wrap { margin-bottom: 24px; }
.booking-buttons-wrap .booking-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 16px; }
.card-note {
  padding: 16px 20px;
  background: var(--bg-subtle);
  border-radius: 12px;
  font-size: 0.95rem;
}
.why-siya-quote-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--shadow);
  margin: 0;
  max-width: 100%;
}
.why-siya-quote-text {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 16px;
}
.why-siya-quote-cite {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-style: normal;
  font-weight: 500;
}
.why-siya-cta {
  text-align: center;
  padding-top: 16px;
}
.why-siya-cta-headline {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 20px;
}
.why-siya-cta-subtext {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 12px;
  margin-bottom: 0;
}

/* Why Choose ADHD Care - 6-card grid */
.why-choose-section .section-header.why-choose-header { margin-bottom: 40px; }
.why-choose-section .why-choose-header h2 { margin-bottom: 12px; }
.why-choose-section .why-choose-header .lead { margin-bottom: 0; }
.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
@media (min-width: 600px) {
  .why-choose-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .why-choose-grid { grid-template-columns: repeat(3, 1fr); }
}
.why-choose-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.why-choose-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.why-choose-icon {
  width: 32px;
  height: 32px;
  color: var(--primary);
  margin-bottom: 14px;
}
.why-choose-icon svg { width: 100%; height: 100%; }
.why-choose-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.why-choose-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}
.why-choose-cta {
  text-align: center;
}
.why-choose-cta-text {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 16px;
}
.why-choose-cta .button { margin: 0; }

/* How It Works process */
.process-section {
  padding: 70px 0;
  background: var(--white);
  text-align: center;
}

.process-section h2 { font-size: 28px; margin-bottom: 10px; }
.process-subtitle { color: var(--text-secondary); margin-bottom: 40px; font-size: 15px; }

.process-steps-inline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

@media (min-width: 900px) {
  .process-steps-inline {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.process-step-inline {
  background: var(--bg-subtle);
  border-radius: 16px;
  padding: 20px;
  max-width: 280px;
  text-align: left;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease;
}

.process-step-inline:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.process-step-icon-wrap {
  width: 36px;
  height: 36px;
  color: var(--primary);
  margin-bottom: 10px;
}

.process-step-icon-wrap svg { width: 100%; height: 100%; }
.process-step-num { font-size: 12px; color: var(--text-muted); display: block; margin-bottom: 4px; }
.process-step-content h3 { font-size: 1rem; margin-bottom: 6px; }
.process-step-content p { font-size: 14px; color: var(--text-secondary); }

.process-connector {
  width: 2px;
  height: 30px;
  background: var(--border);
}

@media (min-width: 900px) {
  .process-connector { width: 60px; height: 2px; }
}

/* Pricing section */
.pricing-section {
  padding: 70px 0;
  background: linear-gradient(180deg, var(--white) 0%, #f3f6fb 100%);
  text-align: center;
}

.pricing-section h2 { font-size: 28px; margin-bottom: 10px; }
.pricing-subtitle { color: var(--text-secondary); margin-bottom: 40px; }

.pricing-grid-inline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .pricing-grid-inline { grid-template-columns: 1fr 1fr; }
}

.pricing-grid-three {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 20px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .pricing-grid-three { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

.pricing-plan {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  text-align: left;
  border: 1px solid var(--border);
  transition: 0.3s ease;
  position: relative;
}

.pricing-plan:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.pricing-plan-featured {
  border: 2px solid var(--primary);
  background: linear-gradient(180deg, rgba(28, 25, 23, 0.04) 0%, var(--white) 100%);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 600;
}

.pricing-plan h3 { font-size: 1.1rem; margin-bottom: 8px; }
.pricing-price { font-size: 1.75rem; font-weight: 700; margin-bottom: 5px; }
/* Do not style .siya-price here — that was shrinking $149 to 14px / weight 400 */
.pricing-price > span:not(.siya-price) { font-size: 14px; color: var(--text-secondary); font-weight: 400; }
.pricing-price .siya-price,
.pricing-price .siya-price--initial-evaluation {
  font-size: inherit;
  font-weight: 700;
  color: inherit;
}
.pricing-desc { font-size: 14px; color: var(--text-secondary); margin-bottom: 20px; }
.pricing-plan ul { list-style: none; padding: 0; margin: 0 0 20px 0; }
.pricing-plan li { margin-bottom: 10px; font-size: 14px; padding-left: 0; }
.pricing-plan li.pricing-check { padding-left: 24px; position: relative; }
.pricing-plan li.pricing-check::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
}
.pricing-friction { font-size: 13px; color: var(--accent); font-weight: 500; margin: -4px 0 12px 0; }
.pricing-note { font-size: 13px; color: var(--text-secondary); margin-top: 16px; }

/* ADHD care: evaluation-first pricing hierarchy */
.pricing-layout-adhd {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 960px;
  margin: 0 auto 20px;
}
.pricing-plan-start {
  max-width: 520px;
  margin: 0 auto;
  width: 100%;
}
.pricing-ongoing-block {
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.pricing-ongoing-heading {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 6px;
  text-align: center;
}
.pricing-ongoing-lead {
  font-size: 0.95rem;
  color: var(--text-secondary);
  text-align: center;
  margin: 0 0 20px;
}
.pricing-grid-ongoing {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .pricing-grid-ongoing { grid-template-columns: 1fr 1fr; }
}

/* FAQ dual CTA */
.faq-accordion-section .faq-accordion-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 16px;
}
.faq-accordion-section .faq-accordion-cta-subtext {
  margin-bottom: 12px;
}
.faq-accordion-section .faq-accordion-cta-phone {
  margin: 0;
  font-size: 0.95rem;
}
.faq-accordion-section .faq-accordion-cta-phone a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}
.faq-accordion-section .faq-accordion-cta-phone a:hover {
  text-decoration: underline;
}

.about-team-grid--adhd {
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .about-team-grid--adhd { grid-template-columns: repeat(3, 1fr); }
}

/* Why not traditional - comparison grid */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 600px;
  margin: 0 auto;
}
.comparison-column {
  padding: 20px 24px;
  border-radius: 12px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
}
.comparison-column-highlight {
  background: rgba(28, 25, 23, 0.06);
  border-color: rgba(28, 25, 23, 0.2);
}
.comparison-column h3 { font-size: 1.1rem; margin: 0 0 16px 0; color: var(--primary); }
.comparison-column ul { list-style: none; padding: 0; margin: 0; }
.comparison-column li { padding: 6px 0; font-size: 0.95rem; color: var(--text-secondary); padding-left: 20px; position: relative; }
.comparison-column li::before { content: "•"; position: absolute; left: 0; color: var(--primary); }
@media (max-width: 599px) { .comparison-grid { grid-template-columns: 1fr; } }

.symptoms-transition { font-size: 0.95rem; color: var(--text-secondary); margin: 0 0 16px 0; text-align: center; }
.physician-specialty { font-weight: 600; color: var(--primary); margin: 0 0 8px 0; font-size: 0.95rem; }
.reviews-label { font-size: 0.8rem; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 0.05em; margin: 0 0 8px 0; text-align: center; }

/* FAQ section */
.faq-list { max-width: 640px; }
.faq-item { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.faq-item h4 { font-size: 1.05rem; margin-bottom: 8px; color: var(--primary); }
.faq-item p { font-size: 0.95rem; margin: 0; color: var(--text-secondary); }
.faq-cta-note {
  text-align: center;
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

/* FAQ Accordion - premium, modern */
.faq-accordion-section {
  padding: 60px 0 80px;
}
.faq-accordion-section .faq-accordion {
  max-width: 720px;
  margin: 0 auto;
}
.faq-accordion-section .faq-accordion-header {
  margin-bottom: 40px;
  text-align: center;
}
.faq-accordion-section .faq-accordion-header h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  color: var(--primary);
}
.faq-accordion-section .faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-accordion-section .faq-accordion-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  overflow: hidden;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.faq-accordion-section .faq-accordion-card:hover {
  border-color: rgba(28, 25, 23, 0.2);
}
.faq-accordion-section .faq-accordion-card.is-open {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-color: rgba(28, 25, 23, 0.15);
}
.faq-accordion-section .faq-accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  font: inherit;
  color: var(--primary);
  font-weight: 600;
  font-size: 1.05rem;
  text-align: left;
  cursor: pointer;
  gap: 16px;
  transition: color 0.2s ease;
}
.faq-accordion-section .faq-accordion-trigger:hover {
  color: var(--primary-hover);
}
.faq-accordion-section .faq-accordion-trigger:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
.faq-accordion-section .faq-accordion-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--primary);
  transition: transform 0.25s ease-in-out;
}
.faq-accordion-section .faq-accordion-card.is-open .faq-accordion-icon {
  transform: rotate(45deg);
}
.faq-accordion-section .faq-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}
.faq-accordion-section .faq-accordion-inner {
  padding: 0 20px 20px;
}
.faq-accordion-section .faq-accordion-inner p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}
.faq-accordion-section .faq-accordion-cta {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.faq-accordion-section .faq-accordion-cta-headline {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 8px;
}
.faq-accordion-section .faq-accordion-cta-subtext {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0 0 24px;
}
.faq-accordion-section .faq-accordion-cta .button {
  margin: 0;
}

/* Fade-in animation */
/* .fade-in previously started hidden and relied on a JS `.show` toggle that
   is not present on the site, which left these content cards invisible
   (the "blank area" after "Does any of this sound familiar?" on weight-loss,
   and the same grid on adhd-care). Keep them visible by default and add a
   gentle, non-blocking entrance only for motion-friendly users. */
.fade-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    animation: siyaFadeInUp 0.6s ease both;
  }
}

@keyframes siyaFadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

.fade-in.show {
  opacity: 1;
  transform: none;
}

/* Staggered entrance for the recognition cards (only applies where a
   `.fade-in` animation is running; harmless on non-animated cards). */
.symptoms-card.fade-in:nth-child(1) { animation-delay: 0.04s; }
.symptoms-card.fade-in:nth-child(2) { animation-delay: 0.10s; }
.symptoms-card.fade-in:nth-child(3) { animation-delay: 0.16s; }
.symptoms-card.fade-in:nth-child(4) { animation-delay: 0.22s; }
.symptoms-card.fade-in:nth-child(5) { animation-delay: 0.28s; }
.symptoms-card.fade-in:nth-child(6) { animation-delay: 0.34s; }

/* Membership pricing comparison table */
.pricing-comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.pricing-comparison-table th,
.pricing-comparison-table td {
  padding: 14px 16px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.pricing-comparison-table th {
  font-weight: 600;
  color: var(--text);
  background: var(--bg-subtle);
}
.pricing-comparison-table th:first-child {
  text-align: left;
  background: transparent;
}
.pricing-comparison-table td:first-child {
  text-align: left;
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.pricing-comparison-table tr:last-child td { border-bottom: none; }
.pricing-comparison-table .col-featured { background: rgba(28, 25, 23, 0.04); }
.pricing-comparison-table .check { color: var(--accent); font-weight: 600; }
.pricing-comparison-table .dash { color: var(--text-muted); }
.pricing-comparison-wrap { overflow-x: auto; margin: 0 -24px; padding: 0 24px; }
@media (min-width: 769px) { .pricing-comparison-wrap { margin: 0; padding: 0; } }

/* Provider profile landing pages */
.provider-lp-hero {
  padding: 100px 0 40px;
  background: linear-gradient(180deg, var(--bg-subtle) 0%, var(--white) 100%);
}
@media (min-width: 768px) {
  .provider-lp-hero { padding: 120px 0 56px; }
}
.provider-lp-hero-inner {
  display: grid;
  gap: 28px;
  align-items: center;
}
@media (min-width: 900px) {
  .provider-lp-hero-inner { grid-template-columns: 1fr minmax(220px, 300px); }
}
.provider-lp-hero-copy h1 {
  margin-bottom: 12px;
  line-height: 1.15;
}
.provider-lp-hero-deck {
  font-family: var(--font-display, 'Poppins', sans-serif);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-primary);
  margin: 0 0 14px;
}
.provider-lp-hero-lead {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin: 0 0 8px;
  line-height: 1.65;
}
.provider-lp-photo-wrap {
  text-align: center;
}
.provider-lp-photo-wrap img {
  width: 100%;
  max-width: 280px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  margin: 0 auto;
}
.provider-lp-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
}
.provider-lp-badges span {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(15, 118, 110, 0.14);
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 999px;
}
.provider-lp-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.provider-lp-ctas--tight-top { margin-top: 12px; }
.provider-lp-links-note { margin-top: 20px; }
.provider-lp-testimonials-wrap { margin-top: 32px; }
.provider-lp-disclaimer-below-cta { margin-top: 28px; }
.provider-lp-section {
  padding: var(--section-padding-mobile) 0;
}
@media (min-width: 768px) {
  .provider-lp-section { padding: 56px 0; }
}
.provider-lp-split {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) {
  .provider-lp-split { grid-template-columns: 1fr 1fr; align-items: start; }
}
.provider-lp-steps {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  counter-reset: pstep;
}
.provider-lp-steps li {
  counter-increment: pstep;
  position: relative;
  padding-left: 44px;
  margin-bottom: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.provider-lp-steps li::before {
  content: counter(pstep);
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.provider-testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.provider-testimonial cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-weight: 600;
  color: var(--text);
  font-size: 0.8125rem;
}
.provider-lp-cross {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.provider-lp-cross a { font-weight: 600; }

/* About page: care team & how it works */
.about-md-highlight {
  display: grid;
  gap: 28px;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .about-md-highlight { grid-template-columns: 140px 1fr; }
}
.about-md-highlight img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .about-md-highlight img { width: 140px; height: 140px; margin: 0; }
}
.about-team-grid {
  display: grid;
  gap: var(--gap);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .about-team-grid { grid-template-columns: repeat(3, 1fr); }
}
.about-team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow);
}
.about-team-card img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 14px;
}
.about-team-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--primary);
}
.about-team-card .about-team-tagline {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0 0 14px;
  line-height: 1.5;
}
.about-care-team-grid .about-team-card,
.about-team-grid:not(.homepage-care-grid) .about-team-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.about-care-team-grid .about-team-card .button,
.about-team-grid:not(.homepage-care-grid) .about-team-card .button {
  margin-top: auto;
}
.about-team-card .button.secondary {
  width: 100%;
  justify-content: center;
}
.provider-state-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0 0;
}
.provider-state-chip {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--surface-tinted, #f0f4f8);
  color: var(--primary);
  border: 1px solid var(--border);
}
.provider-state-chip--license-only {
  border-style: dashed;
  opacity: 0.88;
  background: var(--white);
  color: var(--text-secondary);
}
.provider-license-disclaimer {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin: 8px 0 0;
  line-height: 1.45;
  max-width: 42rem;
}
.provider-license-disclaimer--hub {
  margin: 6px 0 10px;
}
.provider-credential-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow);
  max-width: 720px;
}
.provider-credential-list {
  margin: 0;
  padding-left: 1.2rem;
}
.provider-data-pending {
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.provider-profile-meta {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 12px;
}
.provider-profile-meta--footer {
  margin-top: 20px;
  text-align: center;
}
.provider-service-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.provider-service-links a {
  font-weight: 600;
}
.provider-index-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 700px) {
  .provider-index-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .provider-index-grid { grid-template-columns: repeat(3, 1fr); }
}
.provider-index-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  text-align: center;
}
.provider-index-card img,
.provider-index-card .provider-photo-img {
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
}
.provider-photo-wrap {
  position: relative;
  display: inline-block;
}
.provider-photo-wrap--pending {
  text-align: center;
}
.provider-photo-wrap--compact .provider-photo-pending-note {
  display: none;
}
.provider-photo-img--placeholder {
  display: block;
  object-fit: contain;
  background: #e7f0ff;
}
.provider-photo-initials {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  font-weight: 700;
  font-size: 1.25rem;
  color: #1d5fbf;
  letter-spacing: 0.04em;
  pointer-events: none;
}
.provider-photo-pending-note {
  margin: 8px 0 0;
  font-size: 0.75rem;
  color: var(--muted, #5c6b7a);
}
.about-team-card .provider-photo-wrap,
.homepage-care-card .provider-photo-wrap,
.provider-conversion-card .provider-photo-wrap {
  margin: 0 auto 8px;
}
.about-team-card .provider-photo-img--placeholder,
.homepage-care-card .provider-photo-img--placeholder {
  border-radius: 50%;
}
.provider-index-card .provider-photo-wrap {
  margin: 0 auto 12px;
}
.provider-index-card .provider-photo-img--placeholder {
  border-radius: 50%;
}
.provider-index-role {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0 0 10px;
}
.provider-index-credentials {
  color: var(--text-secondary);
  font-size: 0.82rem;
  margin: 0 0 8px;
  line-height: 1.45;
}
.provider-index-states {
  color: var(--text-secondary);
  font-size: 0.82rem;
  margin: 0 0 10px;
}
.provider-hub-positioning .section-header {
  max-width: 52rem;
}
.provider-index-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin: 10px 0 14px;
}
.provider-index-tag {
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--surface-tinted, #f0f4f8);
  color: var(--text-secondary);
}
.provider-index-teaser {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0 0 16px;
  line-height: 1.5;
}
.provider-index-hero .section-header {
  margin-bottom: 20px;
}
.provider-index-hero-layout {
  display: grid;
  gap: 28px;
  align-items: center;
}
.provider-index-hero-media {
  margin: 0;
  border-radius: var(--radius, 10px);
  overflow: hidden;
}
.provider-index-hero-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 320px;
}
@media (min-width: 900px) {
  .provider-index-hero-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 40px;
  }
  .provider-index-hero-media img {
    max-height: 360px;
  }
}
.provider-hub-filters {
  margin-bottom: 28px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.provider-filter-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-bottom: 12px;
}
.provider-filter-row:last-of-type {
  margin-bottom: 8px;
}
.provider-filter-label {
  font-weight: 600;
  font-size: 0.85rem;
  min-width: 4.5rem;
  color: var(--text-secondary);
}
.provider-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.provider-filter-chip {
  font: inherit;
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-primary);
  cursor: pointer;
}
.provider-filter-chip.is-active {
  background: var(--primary, #1e5a9e);
  border-color: var(--primary, #1e5a9e);
  color: #fff;
}
.provider-filter-status {
  margin: 8px 0 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.provider-hub-section-gap {
  margin-top: 2.5rem;
}
.provider-index-card[hidden] {
  display: none;
}
.provider-accepting-badge--hub {
  display: inline-block;
  margin-left: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  vertical-align: middle;
}
.about-how-steps {
  display: grid;
  gap: 16px;
}
@media (min-width: 640px) {
  .about-how-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .about-how-steps { grid-template-columns: repeat(4, 1fr); }
}
.about-how-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  box-shadow: var(--shadow);
}
.about-how-step-num {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.about-how-step h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--primary);
}
.about-how-step p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.55;
}
.who-we-help-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
@media (min-width: 640px) {
  .who-we-help-list { grid-template-columns: 1fr 1fr; }
}
.who-we-help-list li {
  padding: 16px 18px;
  background: var(--bg-subtle);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.who-we-help-list li:hover {
  background: var(--white);
  border-left-color: var(--primary);
  color: var(--text);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(28, 25, 23, 0.06);
}
.trust-strip-compact--logos article { text-align: center; }
.trust-logo-img {
  display: block;
  margin: 0 auto 12px;
  max-height: 56px;
  width: auto;
  object-fit: contain;
}
.trust-logo-states {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
}
.homepage-care-compact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  justify-content: space-between;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
}
.homepage-care-compact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.homepage-care-compact-card img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
}
.homepage-care-compact-card h3 { margin: 0 0 4px; font-size: 1.05rem; }
.homepage-care-compact-card p { margin: 0; color: var(--text-secondary); font-size: 0.9rem; }
.provider-index-card h2,
.provider-index-card h2 a {
  white-space: nowrap;
}
.adhd-pull-quote-list {
  margin: 0 0 1rem;
  padding-left: 1.15rem;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.45;
}
.adhd-pull-quote-list li { margin-bottom: 0.35rem; }
.siya-circle-blog-strip .siya-circle-blog-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
}
.siya-circle-blog-strip .lead { margin-bottom: 0; max-width: 36rem; }
.siya-contact-fab {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.siya-contact-fab__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}
.siya-contact-fab__btn--messenger { background: #0866ff; color: #fff; }
.siya-contact-fab__btn--chat {
  background: var(--white);
  color: var(--primary);
  border: 1px solid var(--border);
}
@media (max-width: 640px) {
  .siya-contact-fab__btn span { display: none; }
  .siya-contact-fab__btn { padding: 12px; border-radius: 50%; }
}
.trust-strip-compact {
  display: grid;
  gap: 20px;
  text-align: center;
}
@media (min-width: 640px) {
  .trust-strip-compact { grid-template-columns: repeat(3, 1fr); }
}
.trust-strip-compact article {
  padding: 12px 8px;
}
.trust-strip-compact h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--primary);
}
.trust-strip-compact p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}
.trust-strip-compact--quad {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .trust-strip-compact--quad { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .trust-strip-compact--quad { grid-template-columns: repeat(4, 1fr); }
}

/* Blog: provider evaluation CTA */
.blog-provider-cta {
  margin-top: 40px;
  padding: 28px 24px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.blog-provider-cta h2 {
  margin-bottom: 12px;
  font-size: 1.3rem;
  color: var(--primary);
}
.blog-provider-cta > p:first-of-type {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.65;
}
.blog-provider-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 14px;
}
.blog-provider-cta-foot {
  font-size: 0.9rem;
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6;
}
.blog-provider-cta-foot a { font-weight: 600; }

.about-hub-links {
  margin-top: 24px;
  text-align: center;
}

/* Counsel legal document pages — neutral layout, no marketing chrome */
body.legal-page .legal-document-main {
  padding: 32px 0 48px;
}
.legal-document-container {
  max-width: 760px;
}
.legal-document-header {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.legal-document-header h1 {
  margin: 0 0 8px;
  font-size: 1.85rem;
}
.legal-document-meta {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.legal-related ul {
  margin: 14px 0 0;
  padding-left: 1.2rem;
}
.legal-document-body h2 {
  margin: 1.75rem 0 0.75rem;
  font-size: 1.2rem;
}
.legal-document-body h3 {
  margin: 1.25rem 0 0.5rem;
  font-size: 1.05rem;
}
.legal-document-body p,
.legal-document-body li {
  line-height: 1.65;
  color: var(--text);
}
.legal-document-body ul {
  margin: 0.5rem 0 1rem;
  padding-left: 1.35rem;
}
.legal-meta {
  margin-top: 36px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-tinted, #f8fafc);
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.legal-hub-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
}
.legal-hub-table th,
.legal-hub-table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
}
.legal-breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 16px;
  color: var(--text-secondary);
}
.site-header--legal .nav-center a {
  font-weight: 500;
}

/* GHL intake legal acceptance gate */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
body.ghl-legal-gate-open {
  overflow: hidden;
}
.ghl-legal-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.ghl-legal-gate[hidden] {
  display: none !important;
}
.ghl-legal-gate__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
}
.ghl-legal-gate__panel {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: min(90vh, 720px);
  overflow: auto;
  background: var(--surface, #fff);
  border-radius: var(--radius, 12px);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.18);
  padding: 28px 28px 24px;
}
.ghl-legal-gate__title {
  margin: 0 0 16px;
  font-size: 1.35rem;
}
.ghl-legal-gate__checks {
  border: 0;
  margin: 0 0 16px;
  padding: 0;
}
.ghl-legal-gate__check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.45;
  cursor: pointer;
}
.ghl-legal-gate__check input {
  margin-top: 3px;
  flex-shrink: 0;
}
.ghl-legal-gate__adhd {
  margin: 0 0 14px;
  padding: 12px 14px;
  border-left: 3px solid var(--accent, #0d9488);
  background: var(--surface-tinted, #f8fafc);
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.ghl-legal-gate__confirm {
  margin: 0 0 12px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.ghl-legal-gate__links {
  margin: 0 0 16px;
  font-size: 0.9rem;
}
.ghl-legal-gate__error {
  margin: 0 0 12px;
  color: #b91c1c;
  font-size: 0.9rem;
}
.ghl-legal-gate__actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.intake-legal-panel {
  max-width: 640px;
  margin: 0 auto 32px;
}
.intake-legal-panel .ghl-legal-gate__check {
  margin-bottom: 14px;
}
.intake-form-frame {
  width: 100%;
  min-height: 720px;
  border: 1px solid var(--border);
  border-radius: var(--radius, 12px);
  background: #fff;
}
.intake-form-frame[hidden] {
  display: none !important;
}

/* Cookie notice — compact; buttons must stay visible (never clipped off-screen) */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--surface, #fff);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 32px rgba(15, 23, 42, 0.1);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  /* Do not use overflow clipping — that hid Accept/Reject under max-height */
  overflow: visible;
}
.cookie-notice__inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  justify-content: space-between;
}
.cookie-notice__text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.4;
  color: var(--text-secondary);
  flex: 1 1 240px;
}
.cookie-notice__controls {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  min-width: min(100%, 260px);
}
.cookie-notice__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 100%;
}
.cookie-notice__btn {
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.2;
  padding: 10px 12px;
  border-radius: 8px;
  border: 2px solid var(--brand, #0d9488);
  background: var(--surface, #fff);
  color: var(--brand, #0d9488);
  cursor: pointer;
  text-align: center;
  min-height: 44px;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.cookie-notice__btn:hover,
.cookie-notice__btn:focus-visible {
  background: rgba(13, 148, 136, 0.08);
  outline: none;
}
.cookie-notice__btn--accept {
  background: var(--brand, #0d9488);
  color: #fff;
}
.cookie-notice__btn--accept:hover,
.cookie-notice__btn--accept:focus-visible {
  background: var(--brand-dark, #0f766e);
  color: #fff;
}
.cookie-notice__policy {
  display: block;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-notice__policy:hover,
.cookie-notice__policy:focus-visible {
  color: var(--brand, #0d9488);
}
body.cookie-notice-visible {
  padding-bottom: var(--cookie-notice-height, 0px);
}
body.cookie-notice-visible .mobile-sticky-cta,
body.cookie-notice-visible .lp-mobile-sticky-cta {
  bottom: var(--cookie-notice-height, 0px);
}
@media (max-width: 640px) {
  .cookie-notice {
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
  }
  .cookie-notice__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  /* Buttons first so they are never below the fold of a short viewport */
  .cookie-notice__controls {
    order: -1;
    min-width: 0;
    width: 100%;
    gap: 4px;
    flex: 0 0 auto;
  }
  .cookie-notice__text {
    order: 0;
    flex: 0 0 auto;
    font-size: 0.75rem;
    line-height: 1.3;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .cookie-notice__actions {
    grid-template-columns: 1fr 1fr;
  }
  .cookie-notice__btn {
    width: 100%;
    padding: 11px 8px;
    font-size: 0.82rem;
    min-height: 44px;
  }
  .cookie-notice__policy {
    font-size: 0.7rem;
  }
}
@media (min-width: 641px) and (max-width: 900px) {
  .cookie-notice__actions {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== Homepage symptom-centric + visual diagram system ===== */
.hero-symptom-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 20px;
}
.hero-symptom-chips span {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 5px 12px;
  border-radius: 20px;
}
.symptoms-card--link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.symptoms-card--link .symptoms-card-actions,
.symptoms-card--dual .symptoms-card-actions {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.symptoms-card--link .text-link,
.symptoms-card--dual .symptoms-card-actions .text-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}
.symptoms-card--link .text-link:hover,
.symptoms-card--dual .symptoms-card-actions .text-link:hover {
  text-decoration: underline;
}
.symptoms-card--link .symptoms-card-secondary,
.symptoms-card--dual .symptoms-card-actions .symptoms-card-secondary {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
}
.symptoms-card--dual .symptoms-card-actions .symptoms-card-secondary:hover {
  text-decoration: underline;
}
.symptoms-card--dual {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.symptoms-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.why-patients-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 900px) {
  .why-patients-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.why-patients-copy p {
  margin-bottom: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.why-patients-copy p:last-child { margin-bottom: 0; }
.why-patients-header {
  text-align: center;
}
.flow-compliance-note {
  margin-top: 20px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  text-align: center;
}
.flow-compliance-note a {
  color: var(--primary);
  text-decoration: underline;
}
.pathway-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .pathway-cards { grid-template-columns: repeat(2, 1fr); }
}
.pathway-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.pathway-card:hover {
  box-shadow: 0 8px 24px rgba(28, 25, 23, 0.08);
  transform: translateY(-2px);
}
.pathway-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
}
.pathway-card-icon svg {
  width: 22px;
  height: 22px;
}
.pathway-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.pathway-card-body p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
}
.pathway-card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.pathway-card-links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
}
.pathway-card-links a.pathway-secondary {
  color: var(--accent);
  font-weight: 500;
}
.pathway-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--primary);
  background: #dbeafe;
  padding: 3px 8px;
  border-radius: 6px;
  margin-bottom: 6px;
}
.ongoing-care-bridge {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
  padding: 8px 0;
}
.ongoing-care-bridge h2 {
  font-size: 1.45rem;
  margin-bottom: 10px;
}
.ongoing-care-bridge .lead {
  color: var(--text-secondary);
  margin: 0 auto 16px;
  max-width: 36rem;
}
.ongoing-care-link {
  margin: 0;
}
.provider-entity-note {
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  text-align: center;
}

/* Reusable Siya diagram components */
.siya-diagram {
  margin: 24px 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-subtle);
}
.siya-diagram img,
.siya-diagram svg {
  width: 100%;
  height: auto;
  display: block;
}
.siya-diagram figcaption {
  padding: 12px 16px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  border-top: 1px solid var(--border);
  background: var(--white);
}
.siya-diagram--inline {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.siya-diagram--wide {
  max-width: 100%;
}
.siya-diagram--scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.siya-diagram--scroll img,
.siya-diagram--scroll svg {
  min-width: 560px;
}
@media (max-width: 640px) {
  .symptoms-card-grid--home {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }
  .symptoms-card-grid--home .symptoms-card {
    flex: 0 0 82%;
    scroll-snap-align: start;
  }
}

/* Siya Circle */
.siya-circle-hero .siya-circle-eyebrow {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 8px;
}
.siya-circle-layout {
  display: grid;
  gap: 40px;
  align-items: start;
}
@media (min-width: 900px) {
  .siya-circle-layout {
    grid-template-columns: 1.2fr 0.8fr;
  }
}
.siya-circle-form-header {
  text-align: left;
}
.siya-circle-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}
.siya-circle-signup-cta {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}
.siya-circle-signup-cta .lead {
  margin-bottom: 16px;
}
.siya-circle-signup-cta .button {
  margin-top: 8px;
}
.siya-circle-ghl-note {
  margin: 14px 0 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
}
.siya-circle-ghl-embed {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  min-height: 480px;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}
.siya-circle-ghl-embed iframe {
  display: block;
  width: 100%;
  min-height: 480px;
}
.siya-circle-form .form-field {
  margin-bottom: 18px;
}
.siya-circle-form label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 6px;
}
.siya-circle-form input[type="email"],
.siya-circle-form input[type="text"],
.siya-circle-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font: inherit;
  font-size: 1rem;
}
.siya-circle-form textarea {
  resize: vertical;
  min-height: 80px;
}
.required-mark { color: #dc2626; }
.optional-mark { font-weight: 400; color: var(--text-secondary); font-size: 0.85rem; }
.field-helper, .fieldset-hint {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0 0 8px;
}
.siya-circle-topics {
  border: none;
  margin: 0 0 18px;
  padding: 0;
}
.siya-circle-topics legend {
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 4px;
}
.siya-circle-topic-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.siya-circle-topic-list label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
  cursor: pointer;
}
.siya-circle-topic-list input {
  margin-top: 3px;
  flex-shrink: 0;
}
.siya-circle-ack {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.88rem;
  line-height: 1.45;
  margin-bottom: 16px;
  cursor: pointer;
}
.siya-circle-ack input { margin-top: 4px; flex-shrink: 0; }
.siya-circle-compliance {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
}
.siya-circle-error {
  color: #b91c1c;
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.siya-circle-success {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 16px;
  padding: 24px;
}
.siya-circle-success h3 { margin-top: 0; }
.siya-circle-pending {
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.siya-circle-side {
  background: var(--bg-subtle);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--border);
}
.siya-circle-side h2 {
  font-size: 1.15rem;
  margin-top: 0;
}
.siya-circle-guide-links {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}
.siya-circle-guide-links li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.siya-circle-guide-links li:last-child { border-bottom: none; }
.siya-circle-benefits {
  display: grid;
  gap: 20px;
}
@media (min-width: 640px) {
  .siya-circle-benefits { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .siya-circle-benefits { grid-template-columns: repeat(4, 1fr); }
}
.siya-circle-benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}
.siya-circle-benefit-card h3 {
  font-size: 1rem;
  margin: 0 0 8px;
}
.siya-circle-benefit-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}
.siya-circle-roadmap {
  max-width: 520px;
  margin: 0 auto 16px;
  padding-left: 1.25rem;
  line-height: 1.7;
}
.siya-circle-roadmap-disclaimer {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}
.siya-circle-promo {
  margin: 32px 0 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #0f766e 0%, #115e59 100%);
  color: #fff;
  padding: 28px 24px;
}
.siya-circle-promo-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  justify-content: space-between;
}
.siya-circle-promo h2 {
  margin: 0 0 6px;
  font-size: 1.25rem;
  color: #fff;
}
.siya-circle-promo p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.92);
  max-width: 520px;
}
.siya-circle-promo .button {
  background: #fff;
  color: #0f766e;
  flex-shrink: 0;
}
.siya-circle-promo .button:hover {
  background: #faf4e4;
}
.siya-circle-home-band {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  justify-content: center;
}
.siya-circle-home-band p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}
.siya-circle-home-band .button.secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: #fff;
}
.siya-circle-home-band .button.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* ============================================
   Sprint B1 — Visual polish (measurement-safe)
   ============================================ */

@media (min-width: 900px) {
  .nav-center a {
    font-size: 1.2rem;
    letter-spacing: 0.01em;
  }
}

#symptoms.section,
#why-patients.section,
#pathways.section,
#care-team.section,
.testimonials-premium.section,
#membership.section,
.why-siya-exists.section,
.faq-accordion-section.section {
  padding-top: 72px;
  padding-bottom: 72px;
}

#reviews .section-header,
.testimonials-premium-header {
  text-align: center;
}

.testimonials-premium-header .reviews-label {
  margin: 0 auto 10px;
}

.testimonials-premium-header .lead {
  margin-left: auto;
  margin-right: auto;
}

.testimonials-premium .testimonial-cards-grid {
  margin-top: 8px;
}

.homepage-care-grid {
  gap: 24px;
}

@media (min-width: 640px) {
  .homepage-care-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .homepage-care-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

.homepage-care-card {
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.homepage-care-card:hover {
  border-color: rgba(28, 25, 23, 0.35);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
  transform: translateY(-2px);
}

.homepage-care-card img,
.homepage-care-card .provider-photo-wrap {
  width: 128px;
  height: 128px;
  margin: 0 auto 18px;
}

.homepage-care-card .provider-photo-wrap img {
  width: 128px;
  height: 128px;
}

.homepage-care-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.homepage-care-card .about-team-role {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 8px;
  line-height: 1.35;
}

.homepage-care-card .about-team-states {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0 0 8px;
  line-height: 1.35;
}
.homepage-care-card .about-team-bio {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin: 0 0 18px;
  line-height: 1.5;
  flex: 1 1 auto;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.care-team-profile-btn {
  width: 100%;
  max-width: 200px;
  margin: auto auto 0;
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 600;
}
.care-team-hub-link {
  text-align: center;
  margin-top: 28px;
}
.care-team-header .lead {
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .why-siya-two-col {
    grid-template-columns: minmax(300px, 2fr) 3fr;
    gap: 56px;
    align-items: start;
    max-width: 1040px;
  }

  .why-siya-founder-img {
    min-height: 420px;
    object-position: center top;
  }
}

.footer .container--footer-wide {
  max-width: min(1400px, 100%);
  padding-left: clamp(16px, 3vw, 40px);
  padding-right: clamp(16px, 3vw, 40px);
}

.footer-grid--enhanced,
.footer-grid--seo {
  gap: 20px clamp(16px, 2.5vw, 32px);
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .footer-grid--seo {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .footer-grid--enhanced {
    grid-template-columns: minmax(160px, auto) 1.15fr repeat(4, minmax(0, 1fr));
  }

  .footer-grid--seo {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 6px;
  line-height: 1.35;
}

.footer-links a {
  font-size: 0.88rem;
}

.footer-col p {
  margin-bottom: 6px;
  line-height: 1.35;
}

.footer-brand-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px 32px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-brand-bar__left {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px 24px;
  flex: 1 1 320px;
  min-width: 0;
}

.footer-brand-bar__right {
  flex: 0 1 auto;
  text-align: right;
}

.footer-logo-link--compact.brand-lockup {
  margin-bottom: 0;
  flex-shrink: 0;
  color: var(--white);
}

.brand-lockup--footer .brand-lockup__mark {
  width: 36px;
  height: 36px;
}

.brand-lockup--footer .brand-lockup__wordmark {
  font-size: 0.95rem;
}

.footer .footer-logo-img--compact {
  height: 125px !important;
  min-height: 0;
  width: auto !important;
  object-fit: contain;
}

.footer-brand-meta {
  min-width: 0;
  flex: 1 1 200px;
}

.footer-brand-tagline {
  margin: 0 0 10px;
  font-size: 0.82rem;
  line-height: 1.45;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.78);
}

.footer-brand-bar .footer-trust-logos {
  margin: 8px 0 10px;
  gap: 10px;
}

.footer-brand-bar .footer-trust-logo {
  max-height: 48px;
}
.footer-brand-bar img.footer-trust-logo[src*="hipaa-compliant"] {
  max-height: 68px;
  width: 68px;
  height: 68px;
}

.footer-brand-bar .footer-social {
  gap: 10px;
}

.footer-contact-block p {
  margin-bottom: 6px;
  white-space: nowrap;
}

.footer-contact-block a {
  font-size: 0.9rem;
}

.footer-contact-phone {
  margin-bottom: 8px !important;
}

.footer-phone {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.footer-notice {
  line-height: 1.5;
  max-width: none;
  font-size: 0.82rem;
  margin-top: 20px;
}

@media (max-width: 767px) {
  .footer-grid--seo {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 12px;
    margin-bottom: 12px;
  }

  .footer-col h4 {
    margin-bottom: 6px;
    font-size: 0.72rem;
  }

  .footer-links li {
    margin-bottom: 4px;
  }

  .footer-links a {
    font-size: 0.84rem;
  }

  .footer-brand-bar {
    gap: 14px;
    margin-top: 14px;
    padding-top: 14px;
  }

  .footer-brand-bar__left {
    gap: 10px 14px;
  }

  .footer .footer-logo-img--compact {
    height: 58px !important;
  }

  .footer-brand-tagline {
    font-size: 0.78rem;
    margin-bottom: 6px;
    line-height: 1.4;
  }

  .footer-brand-bar .footer-trust-logos {
    margin: 4px 0 6px;
    gap: 8px;
  }

  .footer-brand-bar .footer-trust-logo {
    max-height: 34px;
  }

  .footer-brand-bar .footer-social {
    gap: 8px;
  }

  .footer-brand-bar__right {
    text-align: left;
    width: 100%;
  }

  .footer-contact-block p {
    white-space: normal;
    margin-bottom: 4px;
    font-size: 0.86rem;
  }

  .footer-phone {
    font-size: 0.95rem;
  }

  .footer-notice {
    margin-top: 12px;
    font-size: 0.76rem;
    line-height: 1.45;
  }

  .footer small {
    font-size: 0.74rem;
  }
}

/* —— Google Ads landing pages (.siya-landing-page) —— */
.siya-landing-page {
  --lp-header-h: 64px;
}

.siya-landing-page .site-header,
.siya-landing-page .footer:not(.lp-footer) {
  display: none !important;
}

/* Minimal LP header */
.siya-landing-page .lp-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.siya-landing-page .lp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 56px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.siya-landing-page .lp-header-logo.brand-lockup .brand-lockup__mark {
  width: 32px;
  height: 32px;
}

.siya-landing-page .lp-header-logo.brand-lockup .brand-lockup__wordmark {
  font-size: 0.9rem;
}

@media (min-width: 480px) {
  .siya-landing-page .lp-header-logo.brand-lockup .brand-lockup__mark {
    width: 36px;
    height: 36px;
  }

  .siya-landing-page .lp-header-logo.brand-lockup .brand-lockup__wordmark {
    font-size: 0.95rem;
  }
}

.siya-landing-page .lp-header-logo:not(.brand-lockup) img {
  height: 44px;
  width: auto;
  max-width: 180px;
  display: block;
  object-fit: contain;
}

@media (min-width: 480px) {
  .siya-landing-page .lp-header-logo:not(.brand-lockup) img {
    height: 48px;
  }
}

.siya-landing-page .lp-header-chat {
  flex-shrink: 0;
  padding: 8px 14px;
  font-size: 0.82rem;
  min-height: 40px;
  white-space: nowrap;
}

.siya-landing-page .lp-header-label,
.siya-landing-page .lp-header-phone {
  display: none;
}

/* LP hero — reuse sitewide hero-merged (same as ADHD Care) */
.siya-landing-page .hero-merged.lp-hero-merged {
  padding-top: calc(var(--lp-header-h, 64px) + 32px);
  padding-bottom: 48px;
  min-height: min(72vh, 620px);
}

.siya-landing-page .hero-merged.lp-hero-merged .hero-merged-content {
  max-width: 560px;
}

.siya-landing-page .hero-merged .lp-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 10px;
}

.siya-landing-page .hero-merged .lp-disclaimer,
.siya-landing-page .hero-merged .hero-disclaimer {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 16px;
  margin-bottom: 0;
}

.siya-landing-page .hero-merged .lp-hero-secondary-link a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: underline;
}

@media (max-width: 899px) {
  .siya-landing-page .hero-merged.lp-hero-merged {
    padding-top: calc(var(--lp-header-h, 64px) + 24px);
    padding-bottom: 40px;
    min-height: auto;
  }
}

/* Hero — visual-first with overlay (legacy; prefer hero-merged.lp-hero-merged) */
.siya-landing-page .lp-hero--visual {
  position: relative;
  padding: 0;
  min-height: min(88vh, 640px);
  background: var(--bg-subtle) center / cover no-repeat;
  background-image: var(--lp-hero-image);
}

.siya-landing-page .lp-hero-overlay {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.72) 0%, rgba(15, 23, 42, 0.85) 55%, rgba(255, 255, 255, 0.98) 100%);
  min-height: inherit;
  display: flex;
  align-items: flex-end;
  padding: 88px 0 28px;
}

.siya-landing-page .lp-hero-content {
  color: var(--white);
  max-width: 36rem;
}

.siya-landing-page .lp-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 10px;
}

.siya-landing-page .lp-hero-content h1 {
  font-size: clamp(1.55rem, 5.5vw, 2.2rem);
  line-height: 1.2;
  margin-bottom: 10px;
  color: var(--white);
}

.siya-landing-page .lp-hero-sub {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.95);
}

.siya-landing-page .lp-hero-body {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 18px;
}

.siya-landing-page .lp-hero-content .lp-disclaimer {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.75rem;
}

.siya-landing-page .lp-hero-content .lp-hero-secondary a {
  color: rgba(255, 255, 255, 0.95);
}

@media (min-width: 900px) {
  .siya-landing-page .lp-hero--visual {
    min-height: 520px;
  }
  .siya-landing-page .lp-hero-overlay {
    align-items: center;
    padding: 100px 0 40px;
    background: linear-gradient(105deg, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.55) 48%, rgba(15, 23, 42, 0.2) 100%);
  }
  .siya-landing-page .lp-hero-content {
    max-width: 520px;
  }
}

.siya-landing-page .lp-hero {
  padding-top: 28px;
  padding-bottom: 24px;
  background: linear-gradient(180deg, var(--bg-subtle) 0%, var(--white) 100%);
}

.siya-landing-page .lp-hero-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

@media (min-width: 900px) {
  .siya-landing-page .lp-hero-grid {
    grid-template-columns: 1fr minmax(280px, 42%);
    gap: 40px;
  }
}

.siya-landing-page .lp-hero-copy h1 {
  font-size: clamp(1.65rem, 4.5vw, 2.35rem);
  line-height: 1.2;
  margin-bottom: 14px;
}

.siya-landing-page .lp-hero-lead {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text-secondary);
  margin-bottom: 20px;
  max-width: 38rem;
}

.siya-landing-page .lp-hero-ctas {
  margin-bottom: 12px;
}

.siya-landing-page .lp-cta-primary {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 14px 20px;
}

@media (min-width: 480px) {
  .siya-landing-page .lp-cta-primary {
    width: auto;
  }
}

.siya-landing-page .lp-hero-secondary {
  margin: 12px 0 0;
  font-size: 0.92rem;
}

.siya-landing-page .lp-hero-secondary a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.siya-landing-page .lp-hero-visual img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  object-fit: cover;
}

.siya-landing-page .lp-disclaimer {
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin: 0;
  max-width: 40rem;
}

.siya-landing-page .lp-disclaimer--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.siya-landing-page .lp-trust-scroll {
  list-style: none;
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0 0 4px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.siya-landing-page .lp-trust-scroll::-webkit-scrollbar {
  display: none;
}

.siya-landing-page .lp-trust-scroll li {
  flex: 0 0 auto;
  scroll-snap-align: start;
  min-width: 140px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.35;
}

.siya-landing-page .lp-trust-scroll strong {
  display: block;
  color: var(--primary);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

@media (min-width: 768px) {
  .siya-landing-page .lp-trust-scroll {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    overflow: visible;
  }
  .siya-landing-page .lp-trust-scroll li {
    min-width: 0;
  }
}

.siya-landing-page .section-header--compact {
  margin-bottom: 20px;
}

.siya-landing-page .section-header--compact .lead {
  font-size: 0.95rem;
  max-width: 36rem;
}

.siya-landing-page .lp-symptom-grid .symptoms-card p {
  font-size: 0.9rem;
}

/* Decision cards (2-up) */
.siya-landing-page .lp-decision-cards {
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .siya-landing-page .lp-decision-cards {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

.siya-landing-page .lp-decision-card {
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(28, 25, 23, 0.08);
}

.siya-landing-page .lp-decision-card h3 {
  margin: 0;
  font-size: 1.15rem;
  color: var(--primary);
}

.siya-landing-page .lp-decision-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.siya-landing-page .lp-card-note {
  font-size: 0.78rem !important;
  font-style: italic;
  color: var(--text-muted) !important;
}

.siya-landing-page .lp-decision-card .button {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

.siya-landing-page .lp-learn-more {
  text-align: center;
  margin-top: 18px;
  font-size: 0.9rem;
}

.siya-landing-page .lp-learn-more a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.siya-landing-page .lp-next-steps {
  background: linear-gradient(180deg, #eef6ff 0%, var(--bg-subtle) 100%);
}

.siya-landing-page .lp-final-cta {
  background: linear-gradient(180deg, #e8f4f8 0%, #f0f7ff 100%);
  text-align: center;
  padding: 40px 0 48px;
}

.siya-landing-page .lp-final-cta h2 {
  color: var(--primary);
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  margin-bottom: 10px;
}

.siya-landing-page .lp-final-cta > .container > p {
  color: var(--text-secondary);
  max-width: 34rem;
  margin: 0 auto 18px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.siya-landing-page .lp-final-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  margin: 0 auto 14px;
}

.siya-landing-page .lp-final-ctas .button {
  width: 100%;
  justify-content: center;
}

/* ADHD CTA architecture (2026-07): "not ready yet" intro-call bullets + the
   high-intent $199 evaluation link under the bottom two-path CTA. */
.siya-landing-page .lp-decision-list {
  margin: 0 0 14px;
  padding-left: 1.1rem;
  display: grid;
  gap: 6px;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--text-secondary, #475569);
}

.siya-landing-page .lp-decision-list li {
  list-style: disc;
}

.siya-landing-page .lp-final-alt {
  text-align: center;
  margin: 0 auto 14px;
  font-size: 0.9rem;
}

.siya-landing-page .lp-final-alt a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.siya-landing-page .lp-disclaimer--light {
  color: var(--text-muted);
  max-width: 32rem;
  margin: 0 auto;
  text-align: center;
}

.siya-landing-page .lp-footer-contact {
  text-align: center;
  font-size: 0.82rem;
  margin-bottom: 10px;
}

.siya-landing-page .lp-footer-contact a {
  color: var(--text-secondary);
  text-decoration: underline;
}

.siya-landing-page .lp-pricing-label {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}

.siya-landing-page .lp-pricing-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 4px;
}

.siya-landing-page .lp-pricing-note {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.siya-landing-page .lp-pricing-list {
  text-align: left;
  margin: 0 0 14px;
  padding-left: 1.2rem;
  font-size: 0.92rem;
  line-height: 1.55;
}

.siya-landing-page .lp-pricing-ctas .button {
  width: 100%;
  justify-content: center;
}

.siya-landing-page .lp-section--compact {
  padding-top: 28px;
  padding-bottom: 28px;
}

/* Trust mini-row */
.siya-landing-page .lp-trust-row {
  padding: 16px 0 20px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

/* Section CTAs */
.siya-landing-page .lp-section-cta {
  text-align: center;
  margin-top: 24px;
  margin-bottom: 0;
}

.siya-landing-page .lp-section-cta .button {
  min-width: min(100%, 320px);
  justify-content: center;
}

/* Screening explanation cards */
.siya-landing-page .lp-screening-cards {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .siya-landing-page .lp-screening-cards {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

.siya-landing-page .lp-screening-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.siya-landing-page .lp-screening-card--muted {
  background: var(--bg-subtle);
}

.siya-landing-page .lp-screening-card h3 {
  margin: 0 0 12px;
  font-size: 1.05rem;
}

.siya-landing-page .lp-screening-card ul {
  margin: 0;
  padding-left: 1.2rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

.siya-landing-page .lp-screening-card li {
  margin-bottom: 6px;
}

/* Pathway cards — secondary emphasis */
.siya-landing-page .lp-pathway-cards {
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .siya-landing-page .lp-pathway-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
}

.siya-landing-page .lp-pathway-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.siya-landing-page .lp-pathway-card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.siya-landing-page .lp-pathway-card p {
  margin: 0;
  flex: 1 1 auto;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.siya-landing-page .lp-pathway-card .button {
  align-self: flex-start;
  width: 100%;
  justify-content: center;
}

/* 4-step process */
.siya-landing-page .lp-process-steps {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .siya-landing-page .lp-process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .siya-landing-page .lp-process-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Pricing card */
.siya-landing-page .lp-pricing-card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.siya-landing-page .lp-pricing-card h3 {
  margin-top: 8px;
}

.siya-landing-page .lp-pricing-card ul {
  margin: 16px 0;
}

.siya-landing-page .lp-pricing-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

@media (min-width: 480px) {
  .siya-landing-page .lp-pricing-ctas {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .siya-landing-page .lp-pricing-ctas .button {
    flex: 1 1 auto;
    justify-content: center;
  }
}

/* California section */
.siya-landing-page .lp-california-copy {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.siya-landing-page .lp-california-copy p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.siya-landing-page .lp-california-copy .lp-disclaimer {
  margin-top: 12px;
}

/* Final CTA */
.siya-landing-page .lp-final-cta .cta-band h2 {
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
}

.siya-landing-page .lp-final-cta .cta-band-buttons {
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 600px) {
  .siya-landing-page .lp-final-cta .cta-band-buttons {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* Minimal footer */
.siya-landing-page .lp-footer {
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  padding: 24px 0 32px;
  margin-top: 0;
}

.siya-landing-page .lp-footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: center;
  margin-bottom: 14px;
}

.siya-landing-page .lp-footer-legal a {
  font-size: 0.78rem;
  color: var(--text-secondary);
  text-decoration: none;
}

.siya-landing-page .lp-footer-legal a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.siya-landing-page .lp-footer-disclaimer {
  font-size: 0.74rem;
  line-height: 1.45;
  color: var(--text-secondary);
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 12px;
}

.siya-landing-page .lp-footer small {
  display: block;
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-secondary);
}

/* Sticky mobile CTA */
.siya-landing-page .lp-mobile-sticky-cta {
  display: none;
}

@media (max-width: 899px) {
  .siya-landing-page .lp-mobile-sticky-cta {
    display: block;
  }

  .siya-landing-page main {
    padding-bottom: 80px;
  }
}

.siya-landing-page .lp-mobile-sticky-cta .button {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 14px 20px;
}

/* Tighter section spacing on LP */
.siya-landing-page .section {
  padding-top: 40px;
  padding-bottom: 40px;
}

@media (max-width: 599px) {
  .siya-landing-page .section {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

.siya-landing-page .lp-header-chat {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  box-shadow: none;
}

.siya-landing-page .lp-header-chat:hover {
  background: var(--bg-subtle);
}

.siya-landing-page .lp-hero-content .lp-cta-primary {
  width: 100%;
}

@media (min-width: 600px) {
  .siya-landing-page .lp-hero-content .lp-cta-primary {
    width: auto;
  }
}

.siya-landing-page .lp-pricing-card {
  text-align: center;
}

.siya-landing-page .lp-section-cta .button {
  width: 100%;
  max-width: 400px;
}

@media (min-width: 480px) {
  .siya-landing-page .lp-pricing-ctas {
    flex-direction: column;
  }

  .siya-landing-page .lp-pricing-ctas .button {
    width: 100%;
  }
}

/* California Google Ads — conversion-first hero */

/* Evaluation ads LPs (TX + CA) — no full chrome; body is the LP */
.siya-landing-page--tx-evaluation .lp-header,
.siya-landing-page--ca-evaluation .lp-header {
  display: none;
}
/* No site header on these LPs — drop the chrome offset so the hero isn't empty black at the top */
.siya-landing-page--tx-evaluation .hero-merged,
.siya-landing-page--ca-evaluation .hero-merged {
  padding-top: 48px;
}
@media (max-width: 768px) {
  .siya-landing-page--tx-evaluation .hero-merged,
  .siya-landing-page--ca-evaluation .hero-merged {
    padding-top: 36px;
  }
}

.siya-landing-page--ca-screening {
  --lp-header-h: 52px;
  --lp-hero-space: 0.85rem;
}

.siya-landing-page--ca-screening .lp-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border);
}

.siya-landing-page--ca-screening .lp-header-inner {
  min-height: var(--lp-header-h);
  padding-top: 6px;
  padding-bottom: 6px;
}

.siya-landing-page--ca-screening .lp-hero-conversion {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  overflow: hidden;
}

.siya-landing-page--ca-screening .lp-hero-conversion__bg {
  display: none;
}

.siya-landing-page--ca-screening .lp-hero-conversion__copy {
  order: 1;
  position: relative;
  z-index: 2;
  padding: 16px 0 20px;
}

.siya-landing-page--ca-screening .lp-hero-conversion__inner {
  max-width: 560px;
}

.siya-landing-page--ca-screening .lp-hero-conversion__eyebrow {
  margin: 0 0 var(--lp-hero-space);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal-700, #0f766e);
}

.siya-landing-page--ca-screening .lp-hero-conversion h1 {
  margin: 0 0 var(--lp-hero-space);
  font-size: clamp(1.65rem, 5.2vw, 2.35rem);
  line-height: 1.15;
  color: var(--text-primary, #0f172a);
}

.siya-landing-page--ca-screening .lp-hero-conversion__sub {
  margin: 0 0 calc(var(--lp-hero-space) + 0.15rem);
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--text-secondary, #334155);
}

.siya-landing-page--ca-screening .lp-hero-conversion__cta {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(13, 148, 136, 0.28);
}

/* ADHD CTA architecture (2026-07): low-friction "hesitation" secondary in the
   hero — the free intro call. Visually subordinate to the teal screening CTA so
   the primary lead-magnet stays dominant. */
.siya-landing-page--ca-screening .lp-hero-conversion__secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  margin: 0 0 0.5rem;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--primary, #1e3a8a);
  background: #fff;
  color: var(--primary, #1e3a8a);
  font-size: 0.98rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.siya-landing-page--ca-screening .lp-hero-conversion__secondary:hover {
  background: var(--bg-subtle, #f1f5f9);
}

.siya-landing-page--ca-screening .lp-hero-conversion__cta-note {
  margin: 0 0 calc(var(--lp-hero-space) + 0.35rem);
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--text-muted, #64748b);
}

.siya-landing-page--ca-screening .lp-hero-trust-bullets {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.86rem;
  line-height: 1.4;
  color: var(--text-secondary, #475569);
}

.siya-landing-page--ca-screening .lp-hero-trust-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.siya-landing-page--ca-screening .lp-hero-trust-bullets span[aria-hidden="true"] {
  color: var(--teal-600, #0d9488);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.siya-landing-page--ca-screening .lp-hero-conversion__media {
  order: 2;
  margin: 0;
  line-height: 0;
}

.siya-landing-page--ca-screening .lp-hero-conversion__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}

/* Mobile — photo band on top (natural ratio), copy on white below */
@media (max-width: 767.98px) {
  .siya-landing-page--ca-screening {
    --lp-hero-space: 1rem;
  }

  .siya-landing-page--ca-screening .lp-hero-conversion {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    background-image: none;
  }

  .siya-landing-page--ca-screening .lp-hero-conversion__bg {
    display: block;
    order: 0;
    flex: 0 0 auto;
    width: 100%;
    aspect-ratio: 5 / 4;
    max-height: 34svh;
    min-height: 200px;
    background-image: var(--lp-hero-image);
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;
  }

  .siya-landing-page--ca-screening .lp-hero-conversion__media {
    display: none;
  }

  .siya-landing-page--ca-screening .lp-hero-conversion__copy {
    order: 1;
    flex: 0 0 auto;
    padding: 22px 0 26px;
    background: #ffffff;
  }

  .siya-landing-page--ca-screening .lp-hero-conversion__eyebrow {
    margin-bottom: var(--lp-hero-space);
  }

  .siya-landing-page--ca-screening .lp-hero-conversion h1 {
    margin-bottom: var(--lp-hero-space);
  }

  .siya-landing-page--ca-screening .lp-hero-conversion__sub {
    margin-bottom: calc(var(--lp-hero-space) + 0.1rem);
  }

  .siya-landing-page--ca-screening .lp-hero-conversion__cta {
    margin-bottom: calc(var(--lp-hero-space) + 0.5rem);
  }

  .siya-landing-page--ca-screening .lp-hero-trust-bullets {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem 1rem;
    margin-top: 0.15rem;
  }
}

.siya-landing-page--ca-screening .lp-trust-grid-section {
  padding: 20px 0 24px;
  background: #f8fafc;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.siya-landing-page--ca-screening .lp-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.siya-landing-page--ca-screening .lp-trust-grid__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 96px;
  padding: 14px 10px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #ffffff;
  text-align: center;
}

.siya-landing-page--ca-screening .lp-trust-grid__icon {
  font-size: 1.25rem;
  line-height: 1;
}

.siya-landing-page--ca-screening .lp-trust-grid__title {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary, #0f172a);
}

.siya-landing-page--ca-screening .lp-trust-grid__meta {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.3;
  color: var(--text-secondary, #64748b);
}

.siya-landing-page--ca-screening .lp-how-it-works {
  padding-top: 28px;
  padding-bottom: 28px;
}

.siya-landing-page--ca-screening .lp-how-steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.siya-landing-page--ca-screening .lp-how-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
}

.siya-landing-page--ca-screening .lp-how-step__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #ecfdf5;
  color: #0d9488;
}

.siya-landing-page--ca-screening .lp-how-step h3 {
  margin: 0 0 4px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
}

.siya-landing-page--ca-screening .lp-how-step p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--text-secondary);
}

.siya-landing-page--ca-screening .lp-text-cta {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--teal-700, #0f766e);
  text-decoration: none;
}

.siya-landing-page--ca-screening .lp-text-cta:hover {
  text-decoration: underline;
}

.siya-landing-page--ca-screening .lp-pricing-alt {
  margin: 10px 0 0;
  text-align: center;
}

.siya-landing-page--ca-screening .lp-section-cta {
  margin-top: 18px;
  text-align: center;
}

.siya-landing-page--ca-screening .lp-section-cta .button {
  width: 100%;
  max-width: 420px;
}

@media (min-width: 768px) {
  .siya-landing-page--ca-screening .lp-hero-conversion {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 44%);
    min-height: min(78vh, 640px);
    align-items: stretch;
    background: #ffffff;
    background-image: none;
  }

  .siya-landing-page--ca-screening .lp-hero-conversion__bg {
    display: none;
  }

  .siya-landing-page--ca-screening .lp-hero-conversion__copy {
    display: flex;
    align-items: center;
    padding: 36px 0;
    background: none;
  }

  .siya-landing-page--ca-screening .lp-hero-conversion__media {
    display: block;
    order: 2;
    min-height: 100%;
  }

  .siya-landing-page--ca-screening .lp-hero-conversion__media img {
    height: 100%;
    min-height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: center 22%;
  }

  .siya-landing-page--ca-screening .lp-hero-conversion__cta {
    width: auto;
    min-width: 320px;
  }

  .siya-landing-page--ca-screening .lp-hero-trust-bullets {
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem 1.25rem;
  }

  .siya-landing-page--ca-screening .lp-how-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .siya-landing-page--ca-screening .lp-trust-grid {
    gap: 16px;
  }

  .siya-landing-page--ca-screening .lp-trust-grid__card {
    min-height: 108px;
    padding: 16px 12px;
  }
}

@media (min-width: 480px) {
  .siya-landing-page--ca-screening .lp-hero-conversion__cta,
  .siya-landing-page--ca-screening .lp-hero-conversion__secondary,
  .siya-landing-page--ca-screening .lp-section-cta .button,
  .siya-landing-page--ca-screening .lp-final-ctas .button,
  .siya-landing-page--ca-screening .lp-mobile-sticky-cta .button {
    width: auto;
    min-width: 300px;
  }
}

/* ============================================
   Brand Experience Tier 1 — Homepage listen hero
   Soften density; physician-first; no frost card
   ============================================ */

.page-home {
  --listen-cream: #f7f3ee;
  --listen-ink: #1a1a1a;
  --listen-muted: #5c5c5c;
}

.page-home .brand-lockup__wordmark {
  font-size: 1.1rem;
}

@media (min-width: 900px) {
  .page-home .brand-lockup__wordmark {
    font-size: 1.2rem;
  }

  .page-home .nav-center {
    gap: 20px;
    justify-content: center;
    margin-left: 8px;
    margin-right: 24px;
  }

  .page-home .site-header .container {
    padding-left: 16px;
    padding-right: 20px;
    gap: 12px;
    min-height: var(--header-height);
  }

  .page-home .nav-cta .button {
    padding: 10px 14px;
    font-size: 0.88rem;
  }
}

.hero-merged--listen {
  background: var(--listen-cream) !important;
  background-image: none !important;
  min-height: auto;
  padding: 36px 0 56px;
  align-items: center;
}

.hero-merged--listen::before {
  display: none;
}

.hero-inner--listen {
  display: grid;
  gap: 36px;
  align-items: center;
}

.hero-merged--listen .hero-merged-content {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  border: none;
  border-radius: 0;
  padding: 0;
  max-width: 34rem;
  color: var(--listen-ink);
}

.hero-merged--listen h1 {
  color: var(--listen-ink);
  font-family: Poppins, Inter, system-ui, sans-serif;
  font-size: clamp(2rem, 4.8vw, 3.05rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  text-shadow: none;
}

.hero-merged--listen .hero-merged-lead {
  color: var(--listen-muted);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  line-height: 1.55;
  margin: 0 0 28px;
  max-width: 30rem;
  text-shadow: none;
}

.hero-merged--listen .hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
}

.hero-merged--listen .hero-ctas .button.ds-button--primary {
  background: var(--primary);
  color: var(--white);
  min-height: 48px;
  padding: 14px 22px;
}

.hero-merged--listen .hero-ctas .button.ds-button--primary:hover {
  background: var(--primary-hover);
  color: var(--white);
}

.hero-secondary-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.hero-secondary-link:hover,
.hero-secondary-link:focus {
  border-bottom-color: currentColor;
}

.hero-listen-photo {
  margin: 0;
  width: min(100%, 420px);
  justify-self: center;
}

.hero-listen-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 4px;
  background: #e8e2da;
}

.hero-listen-photo figcaption {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--listen-muted);
}

@media (min-width: 900px) {
  .hero-merged--listen {
    padding: 48px 0 72px;
    min-height: calc(92vh - var(--header-height, 72px));
  }

  .hero-inner--listen {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 56px;
    width: 100%;
  }

  .hero-listen-photo {
    width: 100%;
    max-width: 460px;
    justify-self: end;
  }
}

@media (max-width: 899px) {
  .hero-merged--listen {
    padding: 20px 0 40px;
  }

  .hero-listen-photo {
    order: -1;
    width: min(100%, 280px);
  }

  .hero-listen-photo img {
    aspect-ratio: 1 / 1;
    object-position: center 15%;
  }

  .hero-merged--listen .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }
}

.page-home .mobile-sticky-cta--after-hero[hidden] {
  display: none !important;
}

.care-areas-section {
  padding-top: 48px;
  padding-bottom: 40px;
}

.care-areas-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 12px 28px;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .care-areas-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .care-areas-list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.care-areas-list li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--listen-ink, var(--text));
  font-size: 1.05rem;
  line-height: 1.45;
}

.care-areas-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent, #0f766e);
}

.scan-list {
  margin: 16px 0 0;
  padding-left: 1.2rem;
  color: var(--text);
  line-height: 1.55;
}

.scan-list li + li {
  margin-top: 8px;
}

.scan-list--compact {
  margin-top: 10px;
  font-size: 0.98rem;
}

.flow-card .scan-list {
  text-align: left;
}

.footer-booking-alt {
  margin-top: 10px !important;
  font-size: 0.85rem;
  opacity: 0.72;
}

.footer-booking-alt a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.booking-option--secondary {
  opacity: 0.92;
  border-style: dashed;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-merged--listen .hero-merged-content,
  .hero-listen-photo {
    animation: listen-hero-fade 0.65s ease both;
  }
  .hero-listen-photo {
    animation-delay: 0.06s;
  }
}

@keyframes listen-hero-fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   ADHD Care — Brand Experience V2 Tier 1 (humanize, not redesign)
   ============================================================ */
.page-adhd-care .section {
  padding-top: clamp(3rem, 6vw, 4.5rem);
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
}
.page-adhd-care .section-header {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}
.page-adhd-care .section-header .lead {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

/* Physician hero — full-bleed real portrait + frosted panel */
.hero-merged--adhd-physician {
  background-size: cover;
  background-position: center 18%;
  min-height: min(78vh, 640px);
}
.hero-merged--adhd-physician .hero-merged-content {
  max-width: 34rem;
}
.hero-merged--adhd-physician .hero-merged-lead {
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  line-height: 1.55;
}
.hero-merged--adhd-physician .hero-state-line {
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}
.hero-merged--adhd-physician .adhd-screening-disclaimer {
  margin-top: 0.85rem;
  font-size: 0.82rem;
  opacity: 0.92;
}

/* Trust: humans first */
.trust-metrics-adhd-human {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  background: #f7f4ef;
}
.trust-metrics-adhd-human-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) {
  .trust-metrics-adhd-human-grid {
    grid-template-columns: 1.05fr 1fr;
    gap: 2.5rem;
  }
}
.trust-metrics-adhd-photo {
  margin: 0;
}
.trust-metrics-adhd-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}
.trust-metrics-quote {
  margin: 1.25rem 0 0;
  padding: 0;
  border: 0;
  background: none;
}
.trust-metrics-bullets {
  margin-top: 1.25rem;
  text-align: left;
}

/* Story open + pull quotes */
.adhd-story-open-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) {
  .adhd-story-open-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
.adhd-story-open-media {
  margin: 0;
}
.adhd-story-open-media img {
  display: block;
  width: 100%;
  border-radius: 16px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}
.adhd-story-open-copy {
  max-width: 32rem;
}
.adhd-pull-quote {
  font-family: Poppins, system-ui, sans-serif;
  font-size: clamp(1.25rem, 2.8vw, 1.55rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--primary);
  margin: 0 0 1rem;
}
.adhd-story-open-note,
.adhd-story-band .symptoms-transition {
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.adhd-story-band {
  max-width: 40rem;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.adhd-story-band .adhd-pull-quote {
  margin-bottom: 1.25rem;
}

/* 3-step + consult image */
.adhd-process-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 960px) {
  .adhd-process-layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2.5rem;
  }
}
.adhd-process-media {
  margin: 0;
  position: sticky;
  top: 5.5rem;
}
.adhd-process-media img {
  display: block;
  width: 100%;
  border-radius: 16px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}
.page-adhd-care .flow-cards--adhd-process {
  gap: 1.25rem;
}
.page-adhd-care .flow-card {
  padding: 1.35rem 1.4rem;
}

/* Evaluation model photos */
.evaluation-model-media {
  margin: 0 0 0.85rem;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #e8e2d8;
}
.evaluation-model-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}
.evaluation-model-card--photo {
  padding-top: 0.85rem;
}
.evaluation-model-grid--premium {
  gap: 1.25rem;
}
@media (min-width: 900px) {
  .evaluation-model-grid--premium {
    gap: 1.5rem;
  }
}

/* Pricing breathe */
.page-adhd-care .pricing-layout-adhd {
  gap: clamp(1.5rem, 4vw, 2.5rem);
}
.page-adhd-care .pricing-plan {
  padding: clamp(1.5rem, 3vw, 2rem);
}
.page-adhd-care .pricing-ongoing-block {
  padding-top: 0.5rem;
}
.page-adhd-care .pricing-grid-ongoing {
  gap: 1.25rem;
}

/* Medication resource cards */
.medication-guide-cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-bottom: 1.25rem;
}
@media (min-width: 700px) {
  .medication-guide-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1000px) {
  .medication-guide-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
.medication-guide-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.15rem 1.2rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--white);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.medication-guide-card:hover {
  border-color: rgba(28, 25, 23, 0.35);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}
.medication-guide-kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}
.medication-guide-card strong {
  font-size: 1rem;
  line-height: 1.35;
  color: var(--primary);
}
.medication-guide-card span:last-child {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

/* Comparison VS */
.comparison-cards-grid--vs {
  align-items: stretch;
  gap: 1rem;
}
@media (min-width: 900px) {
  .comparison-cards-grid--vs {
    grid-template-columns: 1fr auto 1fr;
    gap: 1.25rem;
  }
}
.comparison-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0;
}
.comparison-vs span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--border);
  font-family: Poppins, system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--primary);
}
.page-adhd-care .comparison-cards-col {
  padding: 1.35rem;
}
.page-adhd-care .comparison-cards-col .icon-card {
  padding: 1rem;
}

/* MD centerpiece */
.adhd-md-message-section--centerpiece {
  padding-top: clamp(3.5rem, 7vw, 5rem);
  padding-bottom: clamp(3.5rem, 7vw, 5rem);
}
.adhd-md-centerpiece {
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
.adhd-md-portrait {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 18px;
}
.adhd-md-quote-lead {
  margin-bottom: 1.5rem;
}
.adhd-md-quote-lead .why-siya-quote-card {
  padding: 1.5rem 1.6rem;
}
.adhd-md-quote-lead .why-siya-quote-text {
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  line-height: 1.4;
}

/* FAQ breathing room */
.page-adhd-care .faq-accordion-list {
  gap: 0.85rem;
}
.page-adhd-care .faq-accordion-card {
  margin-bottom: 0;
}
.page-adhd-care .faq-accordion-trigger {
  padding: 1.15rem 1.25rem;
}
.page-adhd-care .faq-accordion-inner {
  padding: 0 1.25rem 1.25rem;
  max-width: 42rem;
}

/* Compact care team */
.about-team-grid--adhd-compact {
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 920px;
  margin: 0 auto;
}
@media (min-width: 700px) {
  .about-team-grid--adhd-compact {
    grid-template-columns: repeat(3, 1fr);
  }
}
.adhd-care-team-compact .care-team-hub-link {
  text-align: center;
  margin-top: 1.5rem;
}

/* ============================================================
   ADHD Care — Desktop polish lock (warmth, readability, conversion)
   ============================================================ */

/* Equal-height hero CTAs (match homepage balance) */
.page-adhd-care .hero-merged .hero-ctas-adhd-primary .button {
  flex: 1 1 15.5rem;
  min-width: min(100%, 15.5rem);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.25;
  min-height: 48px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  box-sizing: border-box;
}
@media (max-width: 640px) {
  .page-adhd-care .hero-merged .hero-ctas-adhd-primary .button {
    flex: 1 1 100%;
    min-width: 0;
    width: 100%;
    white-space: normal;
  }
}

/* Trust quote was inheriting hero white-on-glass styles — fix contrast */
.page-adhd-care .trust-metrics-adhd-human .hero-inline-testimonial,
.page-adhd-care .trust-metrics-quote {
  background: rgba(15, 23, 42, 0.04);
  border-left-color: var(--accent);
  backdrop-filter: none;
}
.page-adhd-care .trust-metrics-adhd-human .hero-inline-testimonial-quote,
.page-adhd-care .trust-metrics-quote .hero-inline-testimonial-quote {
  color: var(--text);
}
.page-adhd-care .trust-metrics-adhd-human .hero-inline-testimonial-cite,
.page-adhd-care .trust-metrics-quote .hero-inline-testimonial-cite {
  color: var(--text-secondary);
}

/* Recognition cards — clearer hover lift */
.page-adhd-care .symptoms-card--editorial {
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}
.page-adhd-care .symptoms-card--editorial:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
  border-color: rgba(28, 25, 23, 0.4);
}
.page-adhd-care .symptoms-card--editorial:hover h3,
.page-adhd-care .symptoms-card--editorial:hover > p {
  color: var(--primary);
}

.symptoms-context-list {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.65rem;
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.5;
  text-align: left;
}
.symptoms-context-list li::marker {
  color: var(--accent);
}

/* Homepage-style 3-step process (no photo column) */
.page-adhd-care .adhd-process-section .flow-cards--adhd-process {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .page-adhd-care .adhd-process-section .flow-cards--adhd-process {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
  }
}
.page-adhd-care .adhd-process-section .flow-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}
.page-adhd-care .flow-card-desc {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-secondary);
  flex: 1;
}

/* Patient journey list (replaces dense model cards) */
.evaluation-journey-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 44rem;
  display: grid;
  gap: 1rem;
  counter-reset: eval-step;
}
.evaluation-journey-list li {
  counter-increment: eval-step;
  display: grid;
  gap: 0.25rem;
  padding: 1.1rem 1.2rem 1.1rem 3.4rem;
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.evaluation-journey-list li::before {
  content: counter(eval-step);
  position: absolute;
  left: 1rem;
  top: 1.05rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: rgba(13, 148, 136, 0.12);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.evaluation-journey-list strong {
  color: var(--primary);
  font-size: 1.02rem;
}
.evaluation-journey-list span {
  color: var(--text-secondary);
  font-size: 0.94rem;
  line-height: 1.5;
}

/* Suggested Reading cards */
.adhd-reading-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .adhd-reading-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1000px) {
  .adhd-reading-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.adhd-reading-grid--compact {
  max-width: 56rem;
  margin-inline: auto;
}
@media (min-width: 700px) {
  .adhd-reading-grid--compact {
    grid-template-columns: repeat(3, 1fr);
  }
}
.adhd-reading-card {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0.85rem 0.85rem 1.1rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--white);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.adhd-reading-card:hover {
  border-color: rgba(28, 25, 23, 0.35);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  transform: translateY(-3px);
}
.adhd-reading-card-media {
  margin: 0 0 0.35rem;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #e8e2d8;
}
.adhd-reading-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}
.adhd-reading-card strong {
  font-size: 1.02rem;
  color: var(--primary);
  line-height: 1.3;
}
.adhd-reading-card span {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.45;
}
.adhd-reading-footer {
  margin-top: 1.5rem;
  text-align: center;
}

.page-adhd-care .faq-accordion-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.page-adhd-care .faq-accordion-cta-buttons .button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.page-adhd-care .faq-accordion-cta-subtext a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}

@media (max-width: 700px) {
  .adhd-process-media {
    position: static;
  }
  .comparison-vs {
    padding: 0.25rem 0 0.75rem;
  }
}

/* ============================================
   Phase 1 polish — spacing & support blocks
   ============================================ */
.weight-hero-support {
  padding-top: 28px;
  padding-bottom: 32px;
}
.weight-hero-support .scan-list {
  max-width: 42rem;
  margin: 0 0 20px;
}
.weight-hero-support-quote {
  margin: 0 0 20px;
  max-width: 40rem;
}
.weight-hero-support .hero-trust-bar--chips {
  margin-top: 4px;
}

/* ============================================================
   Service pages consistency — Weight / Men's / Telehealth
   Align with ADHD Care + SERVICE-PAGE-BLUEPRINT.md
   ============================================================ */
.page-service .section {
  padding-top: clamp(3rem, 6vw, 4.5rem);
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
}
.page-service .section-header {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}
.page-service .hero-merged .hero-ctas-row .button {
  flex: 1 1 15.5rem;
  min-width: min(100%, 15.5rem);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.25;
  min-height: 48px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  box-sizing: border-box;
}
@media (max-width: 640px) {
  .page-service .hero-merged .hero-ctas-row .button {
    flex: 1 1 100%;
    min-width: 0;
    width: 100%;
    white-space: normal;
  }
}

.page-service .trust-metrics-adhd-human .hero-inline-testimonial,
.page-service .trust-metrics-quote {
  background: rgba(15, 23, 42, 0.04);
  border-left-color: var(--accent);
  backdrop-filter: none;
}
.page-service .trust-metrics-adhd-human .hero-inline-testimonial-quote,
.page-service .trust-metrics-quote .hero-inline-testimonial-quote {
  color: var(--text);
}
.page-service .trust-metrics-adhd-human .hero-inline-testimonial-cite,
.page-service .trust-metrics-quote .hero-inline-testimonial-cite {
  color: var(--text-secondary);
}

.page-service .symptoms-card--editorial {
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}
.page-service .symptoms-card--editorial:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
  border-color: rgba(28, 25, 23, 0.4);
}

.page-service .flow-cards--service-process {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .page-service .flow-cards--service-process {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
  }
}
.page-service .flow-cards--service-process .flow-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.page-service .flow-card-desc {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-secondary);
  flex: 1;
}

@media (max-width: 700px) {
  .section {
    padding-top: clamp(2rem, 5vw, 2.75rem);
    padding-bottom: clamp(2rem, 5vw, 2.75rem);
  }
  .hero-merged-lead {
    line-height: 1.55;
  }
  .hero-edu-routing {
    font-size: 0.9rem;
    line-height: 1.45;
  }
  .cta-band-buttons {
    gap: 10px;
  }
  .provider-index-hero-media {
    order: -1;
  }
  .provider-index-hero-layout {
    display: flex;
    flex-direction: column;
  }
}

/* ============================================
   Homepage final polish — trust, CTAs, paths
   ============================================ */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 14px 16px;
}

/* Keep primary + secondary hero CTAs equal height/width; no label wrap asymmetry */
.page-home .hero-merged .hero-ctas .button {
  flex: 1 1 15.5rem;
  min-width: min(100%, 15.5rem);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.25;
  min-height: 48px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  box-sizing: border-box;
}

@media (max-width: 640px) {
  .page-home .hero-merged .hero-ctas .button {
    flex: 1 1 100%;
    min-width: 0;
    width: 100%;
  }
  /* Fit both CTAs in first viewport once sticky is deferred */
  .page-home .hero-merged {
    overflow: visible;
  }
  .page-home .hero-merged .hero-trust-bar {
    margin-top: 14px;
    font-size: 0.8rem;
    gap: 6px 12px;
  }
  .page-home .hero-symptom-chips {
    margin: 12px 0 14px;
  }
}

.hero-secondary-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 0.92;
}
.hero-merged .hero-secondary-link {
  color: var(--primary);
}
.site-header-transparent .hero-secondary-link,
.hero-merged-content .hero-secondary-link {
  color: var(--primary);
}
.homepage-trust-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 28px;
  padding: 20px 18px;
  background: linear-gradient(180deg, rgba(28, 25, 23, 0.06) 0%, rgba(15, 118, 110, 0.05) 100%);
  border: 1px solid rgba(28, 25, 23, 0.12);
  border-radius: var(--radius);
}
.homepage-trust-stat {
  text-align: center;
}
.homepage-trust-stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}
.homepage-trust-stat-label {
  display: block;
  margin-top: 4px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.35;
}
@media (min-width: 700px) {
  .homepage-trust-summary {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    padding: 24px 20px;
  }
}
.testimonials-premium .testimonial-cards-grid {
  margin-top: 8px;
}
.testimonials-premium .testimonial-card-premium {
  background: var(--white);
  border: 1px solid rgba(28, 25, 23, 0.1);
  box-shadow: 0 6px 20px rgba(28, 25, 23, 0.06);
}
.cta-band--warm {
  background: linear-gradient(160deg, #eef3fb 0%, #e8f6f5 55%, #f4f7fc 100%);
  border: 1px solid rgba(28, 25, 23, 0.18);
  color: var(--text);
  box-shadow: 0 10px 28px rgba(28, 25, 23, 0.08);
}

.cta-band--warm h3 {
  color: var(--primary);
}

.cta-band--warm > p,
.cta-band--warm .cta-microcopy {
  color: var(--text-secondary);
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-band--warm .cta-band-buttons .button.ds-button--primary,
.cta-band--warm .cta-band-buttons .button:not(.secondary) {
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
}

.cta-band--warm .cta-band-buttons .button.ds-button--primary:hover,
.cta-band--warm .cta-band-buttons .button:not(.secondary):hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  color: var(--white);
}

.cta-band--warm .cta-band-buttons .button.secondary,
.cta-band--warm .cta-band-buttons .button.ds-button--secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
}

.cta-band--warm .cta-band-buttons .button.secondary:hover,
.cta-band--warm .cta-band-buttons .button.ds-button--secondary:hover {
  background: var(--primary);
  color: var(--white);
}

.cta-band--warm .homepage-contact-links a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cta-band--warm .homepage-contact-links a:hover {
  color: var(--primary-hover);
}
.homepage-care-grid--featured {
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .homepage-care-grid--featured {
    grid-template-columns: repeat(3, 1fr);
  }
}
.pathway-cards--four {
  display: grid;
  gap: 16px;
}
@media (min-width: 700px) {
  .pathway-cards--four {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1000px) {
  .pathway-cards--four {
    grid-template-columns: repeat(4, 1fr);
  }
}
.pathway-card--editorial {
  display: flex;
  flex-direction: column;
  grid-template-columns: none;
  padding: 0;
  overflow: hidden;
  gap: 0;
}
.pathway-card-media {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e8e2d8;
}
.pathway-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.92) contrast(1.02) brightness(1.01);
}
.pathway-card--editorial .pathway-card-body {
  padding: 18px 18px 20px;
}
.pathway-card--editorial .pathway-card-icon {
  display: none;
}

.pathway-cards--five {
  display: grid;
  gap: 16px;
}
@media (min-width: 700px) {
  .pathway-cards--five {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1100px) {
  .pathway-cards--five {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1280px) {
  .pathway-cards--five {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Labs leave-site modal */
.siya-lab-leave-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.siya-lab-leave-modal[hidden] {
  display: none !important;
}
.siya-lab-leave-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 25, 23, 0.45);
}
.siya-lab-leave-modal__panel {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  background: #fff;
  border: 1px solid var(--border, #e7e5e4);
  border-radius: 12px;
  padding: 28px 24px;
}
.siya-lab-leave-modal__panel h2 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}
.siya-lab-leave-modal__panel p {
  margin: 0 0 10px;
  line-height: 1.5;
}
.siya-lab-leave-modal__muted {
  color: var(--text-muted, #78716c);
  font-size: 0.95rem;
}
.siya-lab-leave-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
body.siya-lab-leave-open {
  overflow: hidden;
}

.labs-pathway-chips {
  margin: 1.25rem 0 0;
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--border, #e7e5e4);
  border-radius: 12px;
  background: var(--bg-subtle, #fafaf9);
}
.labs-pathway-chips h3 {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
}
.labs-pathway-chips ul {
  margin: 0 0 0.85rem;
  padding-left: 1.1rem;
}
.labs-pathway-chips li {
  margin: 0.25rem 0;
}
.labs-marker-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.labs-marker-links a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.labs-care-funnel {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .labs-care-funnel {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
.labs-care-funnel__step {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin: 0;
  padding: 1.1rem 1.15rem;
  border: 1px solid var(--border, #e7e5e4);
  background: var(--surface, #fff);
}
.labs-care-funnel__num {
  flex: 0 0 auto;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  background: var(--accent, #0d9488);
  color: #fff;
}
.labs-care-funnel__step h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}
.labs-care-funnel__step p {
  margin: 0 0 0.5rem;
  line-height: 1.5;
}

.labs-hero-value {
  margin: 0 0 1rem;
  max-width: 36rem;
}
.labs-hero-value p {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  line-height: 1.45;
  /* Global `p { color: var(--text-secondary) }` otherwise wins over inherited white */
  color: rgba(255, 255, 255, 0.95);
}
.labs-hero-value strong {
  color: #fff;
  font-weight: 700;
}
/* Hero glass panels: keep body/microcopy light on dark overlays */
.hero-merged-content > p,
.hero-fullwidth-inner > p {
  color: rgba(255, 255, 255, 0.95);
}
.hero-merged-content > p strong,
.hero-fullwidth-inner > p strong {
  color: #fff;
}
.hero-merged .cta-microcopy,
.hero-fullwidth .cta-microcopy {
  color: rgba(255, 255, 255, 0.88);
}
.labs-visual-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 0 0 1.5rem;
}
@media (min-width: 720px) {
  .labs-visual-strip {
    grid-template-columns: 1fr 1fr;
  }
}
.labs-visual-strip__item {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: var(--bg-subtle);
}
.labs-visual-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================
   Text links + mobile tap targets (phone audit)
   ============================================ */
a.text-link,
.text-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}
a.text-link:hover,
.text-link:hover {
  text-decoration: underline;
}

@media (max-width: 899px) {
  a.text-link,
  .blog-card-link,
  .blog-hub-see-all a,
  .care-team-hub-link a,
  .cta-microcopy a,
  .why-choose-card h3 a,
  .physician-read-more,
  .learn-more-links a,
  .adhd-reading-card a,
  .blog-inline-cta-links a,
  .symptoms-card-actions .text-link,
  .next-steps a,
  .provider-card a.text-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding-top: 10px;
    padding-bottom: 10px;
    box-sizing: border-box;
  }

  /* Lab topic cards: whole title row is easier to hit */
  .why-choose-card h3 a {
    width: 100%;
  }

  /* Blog featured “Read More →” already block-ish; ensure height */
  .blog-card .blog-card-link {
    min-height: 44px;
  }
}

