:root {
  --bg: #FFFFFF;
  --text-main: #0D1B3E;
  --text-muted: #5A6A84;
  --accent: #0056B3;
  --gold: #B8977E;
  --gold-dark: #8F735E;
  --light-bg: #F7F9FC;
  --line: #E8EDF4;
  --urgent: #8B1E1E;
  --shadow: 0 26px 70px rgba(13,27,62,.12);
  --shadow-soft: 0 14px 34px rgba(13,27,62,.07);
  --radius: 22px;
  --max: 1180px;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  background:
    radial-gradient(circle at 8% 3%, rgba(184,151,126,.13), transparent 22rem),
    radial-gradient(circle at 92% 12%, rgba(0,86,179,.08), transparent 26rem),
    linear-gradient(180deg, #FFFFFF 0%, #F7F9FC 42%, #FFFFFF 100%);
  color: var(--text-main);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.skip-link { position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden; }
.skip-link:focus { left: 16px; top: 16px; z-index: 3000; width: auto; height: auto; padding: 10px 14px; background: var(--text-main); color: #fff; }

/* ── NAV ──────────────────────────────────────────────────────────── */
.site-nav { position: sticky; top: 0; width: 100%; z-index: 1000; backdrop-filter: blur(18px); background: rgba(255,255,255,.90); border-bottom: 1px solid rgba(13,27,62,.08); box-shadow: 0 10px 30px rgba(13,27,62,.04); }
.nav-inner { max-width: var(--max); margin: 0 auto; padding: 13px 5%; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.brand img { width: 46px; height: 46px; object-fit: cover; border-radius: 999px; border: 1px solid rgba(184,151,126,.55); box-shadow: 0 10px 22px rgba(13,27,62,.08); flex-shrink: 0; }
.brand-title { display: block; font-size: 13px; font-weight: 600; letter-spacing: .08em; color: var(--text-main); }
.brand-subtitle { display: block; color: var(--text-muted); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; margin-top: 1px; }
.nav-links { display: flex; list-style: none; align-items: center; justify-content: flex-end; gap: 18px; flex-wrap: wrap; }
.nav-links a, .lang-btn { text-decoration: none; color: var(--text-main); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; background: transparent; border: 0; cursor: pointer; white-space: nowrap; }
.nav-links a:hover { color: var(--gold-dark); }

/* ── NAV CTA — V4: high-contrast gold pill ────────────────────────── */
.nav-cta {
  padding: 12px 24px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #C9A882 0%, var(--gold) 50%, #B8977E 100%) !important;
  color: #0D1B3E !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
  border: 1px solid rgba(184,151,126,.9) !important;
  box-shadow: 0 8px 22px rgba(184,151,126,.42), 0 2px 6px rgba(13,27,62,.12) !important;
  transition: box-shadow .18s, transform .14s, background .18s !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.nav-cta:hover {
  background: linear-gradient(135deg, #D4B48C 0%, #C9A882 60%, var(--gold) 100%) !important;
  color: #0D1B3E !important;
  box-shadow: 0 10px 28px rgba(184,151,126,.58), 0 2px 8px rgba(13,27,62,.14) !important;
  transform: translateY(-2px) !important;
}

/* ── MENU DROPDOWN ────────────────────────────────────────────────── */
.nav-menu-dropdown { position: relative; }
.nav-menu-btn { border: 1px solid rgba(13,27,62,.22); border-radius: 999px; padding: 9px 14px; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--text-main); background: transparent; cursor: pointer; white-space: nowrap; transition: border-color .15s, color .15s; }
.nav-menu-btn:hover { border-color: var(--text-main); color: var(--text-main); }
.nav-menu-panel { display: none; position: absolute; top: calc(100% + 12px); left: 0; min-width: 200px; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); padding: 8px; animation: fadeDropdown .14s ease; z-index: 200; }
.nav-menu-panel a { display: block; padding: 10px 14px; border-radius: 10px; text-decoration: none; color: var(--text-main); font-size: 13px; font-weight: 500; letter-spacing: .04em; text-transform: none; }
.nav-menu-panel a:hover { background: var(--light-bg); }
@media (pointer: fine) {
  .nav-menu-dropdown:hover .nav-menu-panel { display: block; }
  .nav-menu-dropdown:hover .nav-menu-btn { border-color: var(--text-main); }
}
.nav-menu-dropdown.open .nav-menu-panel { display: block; }
.nav-menu-dropdown::after { content: ''; position: absolute; top: 100%; left: -8px; right: -8px; height: 14px; }

/* ── LANGUAGE DROPDOWN ────────────────────────────────────────────── */
.lang-dropdown { position: relative; }
.lang-btn { border: 1px solid rgba(13,27,62,.22); border-radius: 999px; padding: 9px 12px; }
.lang-menu { display: none; position: absolute; right: 0; top: 100%; min-width: 172px; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); padding: 8px; animation: fadeDropdown .14s ease; z-index: 200; }
.lang-dropdown::after { content: ''; position: absolute; top: 100%; left: -8px; right: -8px; height: 14px; }
.lang-menu a { display: block; padding: 10px 12px; border-radius: 10px; text-decoration: none; color: var(--text-main); font-size: 13px; }
.lang-menu a:hover { background: var(--light-bg); }
@media (pointer: fine) { .lang-dropdown:hover .lang-menu { display: block; } }
.lang-dropdown.open .lang-menu { display: block; }
@keyframes fadeDropdown {
  from { opacity: 0; transform: translateY(-5px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── HAMBURGER ─────────────────────────────────────────────────────── */
.hamburger { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 44px; height: 44px; background: transparent; border: 1px solid rgba(13,27,62,.18); border-radius: 12px; cursor: pointer; flex-shrink: 0; padding: 0; touch-action: manipulation; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text-main); border-radius: 2px; transition: transform .22s ease, opacity .18s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE DRAWER ─────────────────────────────────────────────────── */
.mobile-nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 999; background: rgba(255,255,255,.97); backdrop-filter: blur(20px); flex-direction: column; justify-content: center; align-items: center; overflow-y: auto; padding: 80px 5% 40px; opacity: 0; transform: translateY(-8px); transition: opacity .22s ease, transform .22s ease; pointer-events: none; }
.mobile-nav.open { display: flex; opacity: 1; transform: translateY(0); pointer-events: all; }
.mobile-nav ul { list-style: none; display: flex; flex-direction: column; align-items: center; gap: 8px; width: 100%; max-width: 340px; }
.mobile-nav li { width: 100%; }
.mobile-nav a { display: block; text-align: center; padding: 16px 20px; color: var(--text-main); text-decoration: none; font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; border-radius: 14px; border: 1px solid transparent; transition: background .18s, border-color .18s, color .18s; }
.mobile-nav a:hover, .mobile-nav a:active { background: var(--light-bg); border-color: var(--line); }
/* Mobile nav CTA — strong gold */
.mobile-nav .nav-cta {
  background: linear-gradient(135deg, #C9A882 0%, var(--gold) 50%, #B8977E 100%) !important;
  color: #0D1B3E !important;
  border: 1px solid rgba(184,151,126,.9) !important;
  margin-top: 16px;
  font-size: 14px !important;
  letter-spacing: .14em !important;
  padding: 18px 32px !important;
  box-shadow: 0 8px 24px rgba(184,151,126,.44) !important;
}
.mobile-nav-lang { margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line); width: 100%; max-width: 340px; text-align: center; }
.mobile-nav-lang p { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
.mobile-nav-lang a { display: inline-block; padding: 9px 14px; margin: 4px; border: 1px solid var(--line); border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-main); text-decoration: none; }

/* ── LAYOUT & TYPOGRAPHY ───────────────────────────────────────────── */
main { overflow: hidden; }
.section { padding: 94px 5%; position: relative; }
.section-inner { max-width: var(--max); margin: 0 auto; position: relative; z-index: 2; }
.section-kicker { color: var(--gold-dark); font-size: 10px; font-weight: 800; letter-spacing: .30em; text-transform: uppercase; margin-bottom: 14px; }
h1, h2, h3 { font-family: 'Cormorant Garamond', Georgia, serif; color: var(--text-main); font-weight: 300; line-height: 1.06; }
h1 { font-size: clamp(36px, 6.8vw, 82px); letter-spacing: -.02em; margin-bottom: 24px; }
h2 { font-size: clamp(28px, 4.8vw, 58px); margin-bottom: 22px; }
h3 { font-size: clamp(22px, 2.8vw, 28px); margin-bottom: 14px; }
p { color: var(--text-muted); font-weight: 300; }
.lead { color: var(--text-muted); font-size: clamp(15px, 2vw, 20px); max-width: 820px; }
.small { font-size: 13px; }
.muted { color: var(--text-muted); }

/* ── HERO ──────────────────────────────────────────────────────────── */
.hero {
  min-height: auto;
  padding: clamp(56px, 7vw, 92px) 5%;
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 8% 10%, rgba(184,151,126,.14), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  overflow: visible;
}
.hero-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  align-items: stretch;
  gap: clamp(30px, 5vw, 64px);
  min-height: auto;
}
.hero-copy {
  position: relative;
  padding: clamp(34px, 5vw, 58px);
  border-radius: 32px;
  background: radial-gradient(circle at 22% 22%, rgba(184,151,126,.22), transparent 18rem),
              linear-gradient(160deg, #0D1B3E 0%, #111e45 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: var(--shadow);
  z-index: 2;
  height: 100%;
  box-sizing: border-box;
}
.hero-card-col {
  background: transparent;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  position: relative;
  z-index: 2;
  overflow: visible;
  flex-direction: column;
  height: 100%;
}

/* ── Hero visual stack (portrait + announcement) ── */
.hero-visual-stack {
  width: min(100%, 500px);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: stretch;
}
.hero-portrait-card {
  width: 100%;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  border-radius: 30px;
  background: linear-gradient(180deg, #f7efe6 0%, #ffffff 100%);
  padding: clamp(10px, 1.4vw, 16px);
  box-shadow: 0 26px 70px rgba(13,27,62,.16);
  border: 1px solid rgba(184,151,126,.22);
}
.hero-portrait-media {
  flex: 1;
  min-height: 320px;
  border-radius: 24px;
  overflow: hidden;
  background: #efe7dc;
  display: flex;
}
.hero-doctor-photo {
  width: 100%;
  height: 100%;
  flex: 1;
  min-height: 0;
  max-height: none;
  object-fit: cover;
  object-position: center 14%;
  display: block;
  filter: saturate(.96) brightness(.99);
}
.hero-portrait-caption {
  padding: 14px 10px 4px;
  text-align: center;
}
.hero-portrait-caption p {
  font-size: 13px;
  color: var(--text-main);
  font-weight: 600;
  letter-spacing: .03em;
  line-height: 1.5;
}
.hero-portrait-caption .nsr {
  margin-top: 4px;
  color: var(--gold-dark);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 800;
}

/* ── Announcement card (secondary, below portrait) ── */
.announcement-card {
  width: 100%;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(184,151,126,.24);
  border-radius: 24px;
  padding: 12px;
  box-shadow: 0 18px 46px rgba(13,27,62,.11);
}
.announcement-label {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(184,151,126,.14);
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.announcement-card img {
  width: 100%;
  height: auto;
  max-height: 330px;
  object-fit: contain;
  border-radius: 16px;
  background: #fff;
  display: block;
}

/* ── Obsolete slideshow rules (removed HTML — kept as no-ops) ── */
.hero-slideshow, .hero-slide, .slideshow-dots, .hero-kpj-photo,
.hero-slide-badge, .hero-cred-strip { display: none; }

.hero .section-kicker { color: var(--gold); }
.hero h1 { color: #fff; text-shadow: 0 10px 28px rgba(0,0,0,.13); }
.hero-p { font-size: clamp(15px, 2vw, 19px); margin-bottom: 14px; max-width: 760px; color: rgba(255,255,255,.78); }
.hero-punchline { margin: 16px 0 0; padding: clamp(12px, 2.5vw, 18px) clamp(14px, 3vw, 20px); border-left: 3px solid var(--gold); color: #fff; font-size: clamp(14px, 1.6vw, 18px); font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-weight: 300; background: rgba(255,255,255,.08); border-radius: 0 18px 18px 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.12); max-width: 760px; line-height: 1.5; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-top: 20px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 14px 22px; text-decoration: none; font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; border-radius: 999px; transition: .22s ease; -webkit-appearance: none; appearance: none; touch-action: manipulation; white-space: nowrap; }
.btn-primary { background: linear-gradient(135deg, var(--gold) 0%, #D0AF8A 100%); color: #111827; border: 1px solid rgba(184,151,126,.9); box-shadow: 0 15px 34px rgba(184,151,126,.25); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(184,151,126,.32); }
.btn-secondary { color: var(--text-main); border: 1px solid rgba(13,27,62,.18); background: rgba(255,255,255,.86); box-shadow: 0 10px 24px rgba(13,27,62,.06); }
.hero .btn-secondary { color: var(--text-main); border-color: rgba(255,255,255,.80); background: rgba(255,255,255,.92); }
.hero .btn-secondary:hover { background: #fff; border-color: #fff; color: var(--gold-dark); transform: translateY(-1px); }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }
.btn-wa { color: #fff; border: 1px solid #25d366; background: #25d366; box-shadow: 0 10px 24px rgba(37,211,102,.22); }
.btn-wa:hover { background: #1ebe5d; border-color: #1ebe5d; color: #fff; transform: translateY(-2px); box-shadow: 0 15px 32px rgba(37,211,102,.32); }
.hero .btn-wa { color: #fff; border-color: #25d366; background: #25d366; }
.hero .btn-wa:hover { background: #1ebe5d; border-color: #1ebe5d; color: #fff; transform: translateY(-2px); }
.btn-urgent { color: var(--urgent); border: 1px solid rgba(139,30,30,.32); background: rgba(139,30,30,.07); box-shadow: 0 8px 18px rgba(139,30,30,.08); }
.hero .btn-urgent { color: #fff; border: 1px solid rgba(255,100,100,.55); background: rgba(139,30,30,.28); }
.hero .btn-urgent:hover { background: rgba(139,30,30,.48); border-color: rgba(255,120,120,.70); color: #fff; transform: translateY(-1px); }
.btn-urgent:hover { background: rgba(139,30,30,.12); border-color: rgba(139,30,30,.48); color: var(--urgent); transform: translateY(-1px); }

/* ── CARDS ─────────────────────────────────────────────────────────── */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card { position: relative; background: rgba(255,255,255,.92); border: 1px solid rgba(13,27,62,.08); border-radius: var(--radius); padding: 28px 24px 24px; box-shadow: var(--shadow-soft); overflow: hidden; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.card::before { content: ''; position: absolute; left: 0; top: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--gold), rgba(0,86,179,.48)); }
.card::after { content: '＋'; position: absolute; right: 18px; top: 16px; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 999px; color: rgba(13,27,62,.62); background: rgba(184,151,126,.10); border: 1px solid rgba(184,151,126,.18); font-weight: 300; }
.card:hover { transform: translateY(-4px); box-shadow: 0 24px 54px rgba(13,27,62,.13); border-color: rgba(184,151,126,.36); }
.card h3 { font-size: clamp(20px, 2.4vw, 27px); max-width: calc(100% - 44px); }
.card p { font-size: 15px; }
.card .card-label { color: var(--gold-dark); font-size: 10px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; margin-bottom: 12px; }
.card-link { display: inline-flex; margin-top: 20px; color: var(--text-main); text-decoration: none; font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; border-bottom: 1px solid var(--gold); padding-bottom: 5px; }
.card ul { margin-top: 12px; padding-left: 18px; color: var(--text-muted); font-size: 15px; }
.card li { margin: 8px 0; line-height: 1.5; }
.light { background: linear-gradient(180deg, rgba(247,249,252,.94), rgba(255,255,255,.86)), url('clinical-pattern.svg'); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section:not(.hero):not(.urgent)::before { content: ''; position: absolute; left: -120px; top: 52px; width: 260px; height: 260px; border-radius: 999px; background: radial-gradient(circle, rgba(184,151,126,.10), transparent 68%); pointer-events: none; }

/* ── BRAIN/SPINE SYMPTOM COLUMNS ───────────────────────────────────── */
.symptom-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 34px; }
.symptom-col { border-radius: 28px; padding: 32px 28px; position: relative; overflow: hidden; }
.symptom-col.brain { background: linear-gradient(150deg, #0D1B3E 0%, #0f2252 100%); border: 1px solid rgba(184,151,126,.22); box-shadow: 0 24px 60px rgba(13,27,62,.18); }
.symptom-col.spine { background: linear-gradient(150deg, #fff 0%, #F7F9FC 100%); border: 1px solid rgba(13,27,62,.10); box-shadow: var(--shadow-soft); }
.symptom-col-label { font-size: 10px; font-weight: 800; letter-spacing: .28em; text-transform: uppercase; margin-bottom: 10px; }
.symptom-col.brain .symptom-col-label { color: var(--gold); }
.symptom-col.spine .symptom-col-label { color: var(--gold-dark); }
.symptom-col h3 { font-size: clamp(20px, 2.8vw, 30px); margin-bottom: 20px; padding-bottom: 16px; }
.symptom-col.brain h3 { color: #fff; border-bottom: 1px solid rgba(255,255,255,.14); }
.symptom-col.spine h3 { color: var(--text-main); border-bottom: 1px solid var(--line); }
.symptom-col .symptom-icon { position: absolute; right: 20px; top: 20px; font-size: 36px; opacity: .12; line-height: 1; }
.symptom-list { list-style: none; display: grid; gap: 10px; }
.symptom-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; line-height: 1.45; }
.symptom-col.brain .symptom-list li { color: rgba(255,255,255,.82); }
.symptom-col.spine .symptom-list li { color: var(--text-muted); }
.symptom-dot { width: 7px; height: 7px; border-radius: 999px; flex-shrink: 0; margin-top: 6px; }
.symptom-col.brain .symptom-dot { background: var(--gold); }
.symptom-col.spine .symptom-dot { background: var(--accent); }
.symptom-col .card-link { margin-top: 22px; display: inline-flex; }
.symptom-col.brain .card-link { color: rgba(255,255,255,.78); border-color: var(--gold); }
.symptom-col.spine .card-link { color: var(--text-main); border-color: var(--gold-dark); }

/* ── URGENT / RED FLAGS ────────────────────────────────────────────── */
.urgent { background: linear-gradient(120deg, rgba(139,30,30,.09), rgba(255,255,255,.94) 40%, rgba(184,151,126,.11)), url('clinical-pattern.svg'); }
.urgent-intro { margin-bottom: 28px; }
.urgent-intro p { max-width: 680px; }
.redflag-groups { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.redflag-group { background: #fff8f8; border: 1px solid rgba(139,30,30,.12); border-radius: 18px; padding: 20px 18px; }
.redflag-group-title { font-size: 10px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; color: var(--urgent); margin-bottom: 14px; }
.redflag-list { display: grid; gap: 8px; list-style: none; }
.redflag-list li { padding: 10px 13px; border-left: 3px solid var(--urgent); background: #fff; color: var(--text-main); font-size: 14px; border-radius: 0 10px 10px 0; line-height: 1.4; box-shadow: 0 4px 10px rgba(139,30,30,.04); }
.urgent-note { margin-top: 22px; color: var(--urgent); font-weight: 600; font-size: 14px; padding: 14px 18px; background: rgba(139,30,30,.05); border-radius: 12px; border: 1px solid rgba(139,30,30,.12); }

/* ── ABOUT — single-column text, centred within page ───────────────
   No photo, no credential card. Hero already shows face + credentials.
─────────────────────────────────────────────────────────────────── */
.about-v2 {
  max-width: 940px;
}
.about-text-col { padding-top: 4px; }
.about-philosophy { margin: 24px 0; padding: 20px 24px; border-left: 3px solid var(--gold); background: linear-gradient(90deg, rgba(184,151,126,.07), transparent); border-radius: 0 20px 20px 0; }
.about-philosophy p { font-size: clamp(16px, 1.8vw, 20px); color: var(--text-main); font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 300; font-style: italic; line-height: 1.55; }
.about-details p { font-size: 16px; line-height: 1.78; color: var(--text-muted); margin-bottom: 16px; }
.about-hospital { display: inline-flex; align-items: center; gap: 10px; padding: 13px 20px; background: var(--light-bg); border: 1px solid var(--line); border-radius: 14px; font-size: 14px; font-weight: 600; color: var(--text-main); margin-top: 6px; }
.about-langs { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.lang-tag { padding: 7px 14px; background: rgba(13,27,62,.06); border: 1px solid rgba(13,27,62,.10); border-radius: 999px; font-size: 12px; font-weight: 700; color: var(--text-main); letter-spacing: .06em; }

/* ── SPECIALIST ASSESSMENT TABLE ─────────────────────────────────── */
.table-wrap { overflow-x: auto; border: 1px solid rgba(13,27,62,.08); border-radius: 22px; background: #fff; box-shadow: var(--shadow-soft); -webkit-overflow-scrolling: touch; }
table { width: 100%; border-collapse: collapse; min-width: 480px; }
th, td { padding: 15px 16px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; font-size: 14px; }
th { color: var(--text-main); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; background: linear-gradient(90deg, rgba(184,151,126,.16), rgba(247,249,252,1)); }
td { color: var(--text-muted); }
tr:last-child td { border-bottom: 0; }
td.situation { color: var(--text-main); font-weight: 500; }
td.action-emergency { color: var(--urgent); font-weight: 600; }
td.action-prompt { color: #1a4f2a; font-weight: 500; }

/* Mobile: stacked assessment cards */
.assessment-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.assessment-card { background: #fff; border: 1px solid rgba(13,27,62,.08); border-radius: 16px; padding: 16px 18px; box-shadow: 0 6px 18px rgba(13,27,62,.05); }
.assessment-card + .assessment-card { margin-top: 12px; }
.assessment-card .situation-label { font-size: 14px; font-weight: 600; color: var(--text-main); margin-bottom: 8px; line-height: 1.4; }
.assessment-card .action-label { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.assessment-card .action-label.emergency { color: var(--urgent); font-weight: 600; }
.assessment-card .action-label.prompt { color: #1a4f2a; font-weight: 500; }

/* ── CONSULTATION PATHWAY ──────────────────────────────────────────── */
/* Uses existing card grid styles */

/* ── CONVERSION / BOOK WITH PURPOSE ───────────────────────────────── */
.conversion-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.conversion-card { background: rgba(255,255,255,.95); border: 1px solid rgba(13,27,62,.08); border-radius: 18px; padding: 22px 20px; box-shadow: 0 10px 24px rgba(13,27,62,.055); position: relative; overflow: hidden; transition: transform .2s, box-shadow .2s, border-color .2s; }
.conversion-card::before { content: ''; position: absolute; left: 0; top: 0; width: 4px; height: 100%; background: linear-gradient(180deg, var(--gold), rgba(0,86,179,.38)); border-radius: 4px 0 0 4px; }
.conversion-card:hover { transform: translateY(-3px); box-shadow: 0 18px 42px rgba(13,27,62,.10); border-color: rgba(184,151,126,.28); }
.conversion-card p { font-size: 14px; line-height: 1.6; color: var(--text-muted); padding-left: 12px; }
.conversion-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }

/* ── BOOKING FORM ──────────────────────────────────────────────────── */
/* V4.2: two-route layout — intro col + right col stacks WA block then form */
.form-panel { display: grid; grid-template-columns: .82fr 1.18fr; gap: 36px; align-items: start; }

/* WhatsApp appointment block */
.wa-appt-block {
  background: linear-gradient(145deg, #f0faf4 0%, #e8f7ee 100%);
  border: 1px solid rgba(37,211,102,.28);
  border-radius: 22px;
  padding: 24px 26px;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
}
.wa-appt-block::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0; width: 5px;
  background: linear-gradient(180deg, #25D366, #1DAA53);
  border-radius: 22px 0 0 22px;
}
.wa-appt-block h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0;
}
.wa-appt-block p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.6;
}
.wa-appt-block .wa-safety {
  font-size: 12px;
  color: var(--urgent);
  font-weight: 600;
  margin-top: 10px;
  display: block;
}

/* Form subheading divider */
.form-subheading {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.form-intro {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.6;
}

/* Caregiver fields group */
.form-section-label {
  grid-column: 1 / -1;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 10px 0 4px;
  border-top: 1px solid var(--line);
  margin-top: 4px;
}
form { background: linear-gradient(180deg, #fff, #FBFCFE); border: 1px solid rgba(184,151,126,.26); border-radius: 28px; padding: 28px; box-shadow: var(--shadow); position: relative; overflow: hidden; }
form::before { content: ''; position: absolute; left: 0; right: 0; top: 0; height: 6px; background: linear-gradient(90deg, var(--text-main), var(--gold), var(--accent)); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
label { font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--text-main); }
input, select, textarea { width: 100%; min-height: 48px; border: 1px solid var(--line); border-radius: 14px; padding: 12px 13px; font: inherit; font-size: 16px; color: var(--text-main); background: #fff; -webkit-appearance: none; appearance: none; }
input:focus, select:focus, textarea:focus { outline: 2px solid rgba(184,151,126,.28); border-color: rgba(184,151,126,.55); }
textarea { min-height: 110px; resize: vertical; }
.checkbox { display: flex; gap: 10px; align-items: flex-start; margin-top: 14px; }
.checkbox input { width: auto; min-height: auto; margin-top: 5px; font-size: inherit; }
.checkbox span { color: var(--text-muted); font-size: 13px; line-height: 1.5; }

/* ── FAQ ───────────────────────────────────────────────────────────── */
.faq-list { display: grid; gap: 12px; }
.faq-group-label { font-size: 10px; font-weight: 800; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-dark); margin: 20px 0 8px; }
details { background: rgba(255,255,255,.94); border: 1px solid rgba(13,27,62,.08); border-radius: 18px; padding: 18px 20px; box-shadow: 0 10px 24px rgba(13,27,62,.04); }
summary { cursor: pointer; color: var(--text-main); font-weight: 600; font-size: 15px; line-height: 1.4; padding-right: 12px; }
details p { margin-top: 12px; font-size: 15px; line-height: 1.7; }

/* ── FOOTER ────────────────────────────────────────────────────────── */
.footer { padding: 58px 5% 110px; background: radial-gradient(circle at 85% 25%, rgba(184,151,126,.18), transparent 24rem), linear-gradient(135deg, #0D1B3E, #071226); color: #fff; position: relative; overflow: hidden; }
.footer::after { content: ''; position: absolute; right: -80px; bottom: -160px; width: 420px; height: 420px; background: url('neuro-spine-line.svg') center / contain no-repeat; opacity: .08; }
.footer-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 38px; position: relative; z-index: 2; }
.footer h2, .footer h3 { color: #fff; }
.footer p, .footer a { color: rgba(255,255,255,.78); font-size: 14px; line-height: 1.7; }
.footer a { text-decoration: none; }
.footer-links { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.footer-links a { border: 1px solid rgba(255,255,255,.18); border-radius: 999px; padding: 10px 14px; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.footer-links a:hover { border-color: var(--gold); color: #fff; }
.legal { margin-top: 30px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.14); font-size: 12px; color: rgba(255,255,255,.62); }

/* ── FLOATING WHATSAPP CTA ─────────────────────────────────────────── */
.floating-wa {
  position: fixed;
  right: 20px;
  bottom: 28px;
  z-index: 1050;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 18px;
  background: #25D366;
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(37,211,102,.34), 0 4px 10px rgba(0,0,0,.12);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  transition: background .18s, box-shadow .18s, transform .14s;
  border: 1px solid rgba(37,211,102,.6);
}
.floating-wa:hover {
  background: #1DAA53;
  box-shadow: 0 16px 36px rgba(37,211,102,.44), 0 4px 12px rgba(0,0,0,.14);
  transform: translateY(-2px);
  color: #fff;
}
.floating-wa svg { flex-shrink: 0; width: 20px; height: 20px; fill: #fff; }
/* On mobile, raise it above the bottom floating CTA bar */
@media (max-width: 640px) {
  .floating-wa {
    bottom: 78px;  /* sit above the ~68px floating-cta bar */
    right: 14px;
    padding: 11px 14px;
    font-size: 11px;
    gap: 7px;
  }
  .floating-wa .wa-label { display: none; } /* icon-only on very small screens */
}

/* ── FLOATING BOTTOM CTA — mobile only ────────────────────────────── */
.floating-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 1100; display: none; padding: 10px 12px; background: rgba(255,255,255,.96); border-top: 1px solid var(--line); backdrop-filter: blur(12px); gap: 10px; padding-bottom: max(10px, env(safe-area-inset-bottom)); }
.floating-cta .btn { flex: 1; min-height: 46px; padding: 12px 10px; font-size: 10px; }

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤900px) — V4.1: hero stays two-column until 900px
═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-card-col { justify-content: center; }
  .hero-visual-stack { max-width: 460px; }
}

@media (max-width: 900px) {
  .hero { min-height: auto; }
  .symptom-cols { grid-template-columns: 1fr; }
  .form-panel, .footer-inner { grid-template-columns: 1fr; }
  .redflag-groups { grid-template-columns: 1fr 1fr; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section { padding: 72px 5%; }
  .conversion-cards { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤640px)
═══════════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  /* Nav */
  .nav-inner { padding: 11px 5%; gap: 12px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .brand-subtitle { display: none; }

  /* Hero */
  .hero { padding: 36px 5% 44px; }
  .hero-copy { padding: 28px 22px; border-radius: 26px; }
  .hero h1 { font-size: clamp(26px, 7.5vw, 36px); }
  .hero-card-col { max-height: none; min-height: auto; align-items: center; }
  .hero-visual-stack { max-width: 360px; gap: 14px; }
  .hero-portrait-card { border-radius: 24px; padding: 10px; flex: none; }
  .hero-portrait-media { flex: none; min-height: 0; aspect-ratio: 4 / 5; display: block; border-radius: 18px; }
  .announcement-card { border-radius: 18px; padding: 10px; }
  .announcement-card img { max-height: 240px; }
  .announcement-label { font-size: 9px; letter-spacing: .12em; }
  .cta-row { gap: 10px; }
  .btn { white-space: normal; text-align: center; }

  /* Typography */
  h1 { font-size: clamp(30px, 10vw, 44px); margin-bottom: 18px; }
  h2 { font-size: clamp(26px, 8.5vw, 38px); margin-bottom: 18px; }
  h3 { font-size: clamp(20px, 6vw, 24px); }

  /* Sections */
  .section { padding: 52px 5%; }

  /* All grids to single column */
  .grid-2, .grid-3, .grid-4, .form-grid { grid-template-columns: 1fr; }
  .redflag-groups { grid-template-columns: 1fr; }
  .conversion-cards { grid-template-columns: 1fr; }

  /* Symptom cols */
  .symptom-cols { grid-template-columns: 1fr; gap: 16px; }
  .symptom-col { padding: 24px 20px; }
  .symptom-col .symptom-icon { font-size: 28px; }

  /* CTA buttons full-width, stacked */
  .cta-row { flex-direction: column; gap: 10px; }
  .cta-row .btn { width: 100%; justify-content: center; min-height: 52px; font-size: 12px; }
  .conversion-cta { flex-direction: column; gap: 10px; }
  .conversion-cta .btn { width: 100%; justify-content: center; min-height: 52px; }

  /* About */
  .about-philosophy { padding: 16px 18px; }
  .about-details p { font-size: 15px; }

  /* Assessment table → stacked cards on mobile */
  .assessment-cards { grid-template-columns: 1fr; }
  .assessment-disclaimer { font-size: 13px; }

  /* Form */
  form { padding: 20px 16px; border-radius: 20px; }
  .form-grid { gap: 12px; }

  /* FAQ */
  summary { font-size: 14px; }

  /* Footer */
  .footer { padding: 48px 5% calc(80px + env(safe-area-inset-bottom, 16px)); }
  .footer-inner { gap: 28px; }
  .floating-cta { display: flex; }
  .floating-cta .btn { font-size: 11px; }
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE — SMALL PHONE (≤420px)
═══════════════════════════════════════════════════════════════════ */
@media (max-width: 420px) {
  .hero-visual-stack { max-width: 320px; }
  .announcement-card img { max-height: 220px; }
  .hero-punchline { font-size: 15px; padding: 12px 14px; border-radius: 0 12px 12px 0; }
  .card { padding: 20px 16px 16px; }
  .section { padding: 44px 4%; }
  .nav-inner { padding: 10px 4%; }
  .symptom-col { padding: 20px 16px; border-radius: 20px; }
  .redflag-group { padding: 16px 14px; }
  .redflag-list li { font-size: 13px; padding: 9px 11px; }
  .footer-links a { font-size: 10px; padding: 8px 12px; }
  table { min-width: 380px; }
  th, td { font-size: 12px; padding: 10px 11px; }
  .floating-wa { bottom: 74px; right: 12px; padding: 10px 12px; }
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE — VERY SMALL (≤360px)
═══════════════════════════════════════════════════════════════════ */
@media (max-width: 380px) {
  .hero h1 { font-size: 26px; }
  .hero-visual-stack { max-width: 320px; }
  .cta-row .btn { width: 100%; }
  .announcement-card img { max-height: 220px; }
}

@media (max-width: 360px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  .section { padding: 38px 4%; }
  .hero-copy { padding: 24px 18px; }
}

/* ═══════════════════════════════════════════════════════════════════
   V5 NEW SECTIONS — PHASE 1 & PHASE 2 ADDITIONS
═══════════════════════════════════════════════════════════════════ */

/* ── Hero credential strip (compact, above punchline) ── */
.hero-credential-strip {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.03em;
  line-height: 1.6;
  margin: 0 0 10px;
  opacity: 0.88;
}

/* ── Hero microcopy (below CTA row) ── */
.hero-microcopy {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--text-muted);
  margin: 6px 0 2px;
  line-height: 1.5;
}

/* ── Local SEO line ── */
.hero-local-seo {
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  color: var(--text-muted);
  margin: 2px 0 0;
  line-height: 1.5;
  opacity: 0.8;
}

/* ── Appointment route cards ── */
.route-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.route-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.route-card:hover {
  box-shadow: 0 6px 24px rgba(13, 27, 62, 0.08);
  border-color: var(--accent);
}

.route-card-icon {
  font-size: 28px;
  line-height: 1;
}

.route-card h3 {
  font-size: 18px;
  color: var(--text-main);
  margin: 0;
}

.route-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.btn-route {
  margin-top: auto;
  font-size: 13px;
  padding: 11px 16px;
  justify-content: center;
  text-align: center;
}

/* ── MRI context section ── */
.mri-context-section .lead {
  max-width: 680px;
}

/* ── Quick answers (AI-answer block) ── */
.quick-answers {
  margin-top: 8px;
}

.qa-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.qa-item {
  background: var(--light-bg);
  border-radius: 14px;
  padding: 18px 20px;
  border: 1px solid var(--line);
}

.qa-q {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 8px;
  line-height: 1.5;
}

.qa-a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Footer professional profiles ── */
.footer-profiles {
  margin-top: 16px;
}

.footer-profiles-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  opacity: 0.85;
}

/* ── Hero microcopy & local SEO — white text on dark hero bg ── */
.hero-copy .hero-microcopy {
  color: rgba(255,255,255,.55);
}
.hero-copy .hero-local-seo {
  color: rgba(255,255,255,.40);
}

/* ── MRI CTA wrapper ── */
.mri-cta-wrap {
  margin-top: 24px;
}

/* ── Responsive: route cards — tablet ── */
@media (max-width: 900px) {
  .route-cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .route-card {
    padding: 22px 20px 20px;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   V5 MOBILE OVERRIDES (≤640px)
═══════════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {

  /* ── Route cards: single column, full-width CTA ── */
  .route-cards {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 20px;
  }
  .route-card {
    padding: 20px 18px 18px;
    gap: 10px;
  }
  .route-card h3 {
    font-size: 17px;
  }
  .route-card p {
    font-size: 13.5px;
  }
  .btn-route {
    width: 100%;
    font-size: 12px;
    min-height: 50px;
    padding: 13px 14px;
  }

  /* ── MRI context section ── */
  .mri-context-section .lead {
    font-size: 15px;
  }
  .mri-context-section .btn {
    width: 100%;
    min-height: 50px;
  }

  /* ── Quick answers: single column ── */
  .qa-list {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 14px;
  }
  .qa-item {
    padding: 14px 16px;
  }
  .qa-q {
    font-size: 13px;
  }
  .qa-a {
    font-size: 13px;
  }

  /* ── Hero credential strip ── */
  .hero-credential-strip {
    font-size: 10px;
    line-height: 1.8;
    margin-bottom: 10px;
  }

  /* ── Hero microcopy & SEO line ── */
  .hero-microcopy {
    font-size: 11.5px;
    margin-top: 10px;
  }
  .hero-local-seo {
    font-size: 11px;
    margin-top: 4px;
  }

  /* ── Footer profiles links: wrap tightly ── */
  .footer-profiles {
    margin-top: 14px;
  }
  .footer-profiles .footer-links {
    gap: 7px;
  }
  .footer-profiles .footer-links a {
    font-size: 10px;
    padding: 8px 11px;
  }

  /* ── MRI CTA wrapper — full-width button on mobile ── */
  .mri-cta-wrap {
    width: 100%;
  }
  .mri-cta-wrap .btn {
    width: 100%;
    min-height: 50px;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   V5 MOBILE OVERRIDES (≤420px)
═══════════════════════════════════════════════════════════════════ */
@media (max-width: 420px) {
  .route-card {
    padding: 18px 15px 16px;
    border-radius: 16px;
  }
  .route-card-icon {
    font-size: 24px;
  }
  .route-card h3 {
    font-size: 16px;
  }
  .qa-item {
    padding: 12px 14px;
    border-radius: 12px;
  }
  .hero-credential-strip {
    font-size: 9.5px;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   PHASE 3 — NEW SECTION STYLES
═══════════════════════════════════════════════════════════════════ */

/* ── AI Summary Section ── */
.ai-summary-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ai-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.ai-summary-item {
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 20px;
}
.ai-summary-item.ai-summary-urgent {
  background: #fff8f8;
  border-color: rgba(139,30,30,.15);
}
.ai-summary-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
}
.ai-summary-item.ai-summary-urgent .ai-summary-label {
  color: var(--urgent);
}
.ai-summary-item p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}
.ai-summary-item.ai-summary-urgent p {
  color: #6b1c1c;
}

/* ── Medical Reviewer Block ── */
.reviewer-section {
  padding-top: 40px;
  padding-bottom: 40px;
}
.reviewer-block {
  max-width: 760px;
  padding: 24px 28px;
  background: rgba(255,255,255,.88);
  border: 1px solid var(--line);
  border-radius: 18px;
  border-left: 4px solid var(--gold);
}
.reviewer-title {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.reviewer-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 4px;
}
.reviewer-role {
  font-size: 12px;
  color: var(--gold-dark);
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 14px;
}
.reviewer-disclaimer {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.reviewer-date {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ── Footer Patient Resources ── */
.footer-patient-resources {
  max-width: var(--max);
  margin: 28px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  position: relative;
  z-index: 2;
}
.footer-pr-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  opacity: .85;
}
.footer-pr-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-pr-links a {
  color: rgba(255,255,255,.70);
  font-size: 12px;
  text-decoration: none;
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  transition: border-color .18s, color .18s;
  letter-spacing: .04em;
}
.footer-pr-links a:hover {
  border-color: var(--gold);
  color: #fff;
}

/* ── Landing Page: Hero ── */
.lp-hero {
  background: radial-gradient(circle at 22% 22%, rgba(184,151,126,.22), transparent 18rem),
              linear-gradient(160deg, #0D1B3E 0%, #111e45 100%);
  padding: 56px 5% 52px;
}
.lp-hero .section-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.lp-hero h1 {
  color: #fff;
  font-size: clamp(30px, 5vw, 58px);
  margin-bottom: 20px;
}
.lp-hero .lead {
  color: rgba(255,255,255,.78);
}
.lp-hero .section-kicker {
  color: var(--gold);
}
.lp-breadcrumb {
  font-size: 11px;
  color: rgba(255,255,255,.50);
  margin-bottom: 16px;
  letter-spacing: .06em;
}
.lp-breadcrumb a {
  color: rgba(255,255,255,.60);
  text-decoration: none;
}
.lp-breadcrumb a:hover { color: var(--gold); }
.lp-breadcrumb span { margin: 0 6px; }
.lp-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.lp-microcopy {
  font-size: 12px;
  color: rgba(255,255,255,.50);
  margin-top: 10px;
  line-height: 1.6;
}

/* ── Landing Page: Content Grid ── */
.lp-content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.lp-card {
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(13,27,62,.08);
  border-radius: 18px;
  padding: 22px 20px;
  box-shadow: var(--shadow-soft);
}
.lp-card h3 {
  font-size: clamp(16px, 2.2vw, 20px);
  margin-bottom: 10px;
}
.lp-card p {
  font-size: 14px;
  line-height: 1.68;
}

/* ── Landing Page: Checklist ── */
.lp-checklist {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}
.lp-check-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--light-bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text-main);
  line-height: 1.5;
}
.lp-check-icon {
  color: var(--gold-dark);
  font-weight: 800;
  flex-shrink: 0;
  font-size: 16px;
  line-height: 1.4;
}

/* ── Landing Page: What to Bring ── */
.lp-bring-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}
.lp-bring-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.lp-bring-item:last-child { border-bottom: 0; }
.lp-bring-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 6px;
}

/* ── Landing Page: Safety note ── */
.lp-safety-note {
  font-size: 13px;
  color: var(--urgent);
  font-weight: 600;
  padding: 12px 16px;
  background: rgba(139,30,30,.05);
  border-radius: 10px;
  border: 1px solid rgba(139,30,30,.12);
  line-height: 1.6;
}

/* ── Landing Page: CTA Section ── */
.lp-cta-section { }
.lp-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}
.lp-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 8px;
}
.lp-cta-buttons .btn {
  width: 100%;
  justify-content: center;
  min-height: 52px;
}

/* ── Landing Page: Related grid ── */
.lp-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.lp-related-card {
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 18px;
  text-decoration: none;
  display: block;
  transition: box-shadow .2s, border-color .2s, transform .2s;
}
.lp-related-card:hover {
  box-shadow: var(--shadow-soft);
  border-color: rgba(184,151,126,.36);
  transform: translateY(-2px);
}
.lp-related-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 8px;
  line-height: 1.3;
}
.lp-related-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   PHASE 3 RESPONSIVE — TABLET (≤900px)
═══════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .ai-summary-grid { grid-template-columns: 1fr 1fr; }
  .lp-content-grid { grid-template-columns: 1fr; }
  .lp-cta-inner { grid-template-columns: 1fr; gap: 24px; }
  .lp-related-grid { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════
   PHASE 3 RESPONSIVE — MOBILE (≤640px)
═══════════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {

  /* AI Summary */
  .ai-summary-grid { grid-template-columns: 1fr; gap: 10px; }
  .ai-summary-item { padding: 14px 16px; border-radius: 14px; }
  .ai-summary-item p { font-size: 13.5px; }

  /* Reviewer block */
  .reviewer-block { padding: 18px 16px; }
  .reviewer-name { font-size: 19px; }
  .reviewer-disclaimer { font-size: 12.5px; }

  /* Footer patient resources */
  .footer-pr-links { gap: 6px; }
  .footer-pr-links a { font-size: 11px; padding: 6px 10px; }

  /* LP hero */
  .lp-hero { padding: 40px 5% 36px; }
  .lp-hero h1 { font-size: clamp(26px, 9vw, 38px); }
  .lp-cta-row { flex-direction: column; gap: 10px; }
  .lp-cta-row .btn { width: 100%; justify-content: center; min-height: 52px; }

  /* LP content */
  .lp-content-grid { gap: 12px; margin-top: 20px; }
  .lp-card { padding: 18px 16px; border-radius: 14px; }
  .lp-checklist { gap: 8px; }
  .lp-check-item { padding: 11px 14px; font-size: 13.5px; border-radius: 10px; }

  /* LP CTA section */
  .lp-cta-inner { grid-template-columns: 1fr; gap: 20px; }
  .lp-cta-buttons { gap: 10px; }
  .lp-cta-buttons .btn { min-height: 52px; }

  /* LP related grid */
  .lp-related-grid { grid-template-columns: 1fr; gap: 10px; }
  .lp-related-card { padding: 16px 14px; border-radius: 14px; }
  .lp-related-title { font-size: 17px; }
}

/* ═══════════════════════════════════════════════════════════════════
   PHASE 3 RESPONSIVE — SMALL PHONE (≤420px)
═══════════════════════════════════════════════════════════════════ */
@media (max-width: 420px) {
  .lp-hero { padding: 34px 4% 30px; }
  .ai-summary-item { padding: 12px 14px; }
  .reviewer-block { padding: 16px 14px; }
  .lp-card { padding: 16px 14px; }
  .lp-check-item { padding: 10px 12px; font-size: 13px; }
}

/* (Temporary announcement block removed — announcement now permanent HTML) */

/* ── Nav menu: patient resources divider + group label ── */
.nav-menu-divider {
  height: 1px;
  background: var(--line);
  margin: 6px 4px;
}
.nav-menu-group-label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  padding: 6px 14px 2px;
  opacity: .8;
}

/* ── Custom checkbox — blue dot on check ── */
.checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  min-height: 22px;
  border: 2px solid var(--line);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  transition: border-color .18s, background .18s;
}
.checkbox input[type="checkbox"]:checked {
  border-color: var(--accent);
  background: var(--accent);
}
.checkbox input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
}
.checkbox input[type="checkbox"]:focus-visible {
  outline: 2px solid rgba(0,86,179,.4);
  outline-offset: 2px;
}

/* ── Required field visual indicator ── */
.form-field input:required:valid,
.form-field select:required:valid,
.form-field textarea:required:valid {
  border-color: rgba(0,120,80,.35);
}
.form-field input:required:invalid:not(:placeholder-shown),
.form-field select:required:invalid,
.form-field textarea:required:invalid:not(:placeholder-shown) {
  border-color: rgba(139,30,30,.35);
}


/* ═══════════════════════════════════════════════════════════════════
   V6 — conversion CTA hierarchy, trust strip, mobile refinements
═══════════════════════════════════════════════════════════════════ */
.cta-priority-row .btn-primary { min-width: 190px; }
.btn-safety-link {
  color: rgba(255,255,255,.86);
  border: 1px solid rgba(255,255,255,.26);
  background: transparent;
  box-shadow: none;
}
.btn-safety-link:hover {
  color: #fff;
  border-color: rgba(255,255,255,.46);
  background: rgba(255,255,255,.08);
  transform: translateY(-1px);
}
.trust-strip {
  padding: 0 5% 34px;
  background: linear-gradient(180deg, #f7f9fc 0%, rgba(247,249,252,.78) 100%);
}
.trust-strip-inner {
  max-width: var(--max);
  margin: -18px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  position: relative;
  z-index: 5;
}
.trust-item {
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(184,151,126,.24);
  border-radius: 18px;
  padding: 16px 16px 14px;
  box-shadow: 0 16px 36px rgba(13,27,62,.08);
}
.trust-item span {
  display: block;
  font-size: 10px;
  line-height: 1.35;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 800;
  margin-bottom: 6px;
}
.trust-item strong {
  display: block;
  color: var(--text-main);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}
.resource-link-grid { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:14px; margin-top:22px; }
.resource-link-card { display:block; text-decoration:none; padding:18px; border:1px solid var(--line); border-radius:18px; background:#fff; box-shadow: var(--shadow-soft); }
.resource-link-card span { display:block; color:var(--gold-dark); font-size:10px; letter-spacing:.16em; text-transform:uppercase; font-weight:800; margin-bottom:6px; }
.resource-link-card strong { display:block; color:var(--text-main); font-size:16px; line-height:1.35; }
.resource-link-card:hover { transform: translateY(-2px); border-color: rgba(184,151,126,.44); }
.lp-disclaimer { margin-top:28px; padding:18px 20px; border-left:4px solid var(--urgent); background:#fff8f8; border-radius:0 16px 16px 0; color:var(--urgent); font-size:14px; line-height:1.65; }
.version-badge { font-size:10px; letter-spacing:.18em; text-transform:uppercase; color:var(--gold-dark); font-weight:800; }
@media (max-width: 900px) {
  .trust-strip-inner { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .resource-link-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 640px) {
  .trust-strip { padding: 0 5% 28px; }
  .trust-strip-inner { grid-template-columns: 1fr; margin-top: -12px; }
  .trust-item { padding: 14px 15px; }
  .cta-priority-row .btn { width: 100%; }
  .resource-link-grid { grid-template-columns: 1fr; }
  .hero .btn-safety-link { min-height: 42px; font-size: 10px; }
}


/* V6 mobile fix: prevent floating CTA bar from covering the mobile menu/language selector */
body.mobile-nav-open .floating-cta,
body.mobile-nav-open .floating-wa {
  display: none !important;
  pointer-events: none !important;
}

body.mobile-nav-open .mobile-nav {
  z-index: 1090;
}

body.mobile-nav-open .site-nav {
  z-index: 1200;
}


/* V6.4 polish: keep anti-spam honeypot hidden from patients but available to Netlify bots */
.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* V6.4: ensure dropdown menus always sit above floating CTAs on touch devices */
.nav-menu-panel, .lang-menu { z-index: 2200; }
.mobile-nav { z-index: 2100; }
.site-nav { z-index: 2300; }
body.mobile-nav-open .floating-cta,
body.mobile-nav-open .floating-wa { display: none !important; visibility: hidden !important; pointer-events: none !important; }


/* V6.4.1 assessment cards: single responsive version; desktop table removed to avoid duplicated triage content */
.assessment-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
@media (max-width: 760px) {
  .assessment-cards { grid-template-columns: 1fr; }
}
