:root {
  --teal: #1A7A6D; --teal-deep: #12564D; --teal-light: #E8F4F1;
  --cream: #F8F5F0; --cream-warm: #F2ECE2;
  --coral: #C77B6A; --coral-light: #F3E3DE;
  --gold: #C9A24B; --charcoal: #2D2D2D; --text: #3A3A3A;
  --text-soft: #6B6B6B; --white: #FFFFFF; --line: #E4DED4;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
::selection { background: var(--teal-light); }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body); color: var(--charcoal);
  background: var(--cream); min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-body); }
.lift { transition: transform .18s ease, box-shadow .18s ease; }
.lift:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(18,86,77,.10); }
@media (prefers-reduced-motion: reduce) { .lift { transition: none; } }

.compliance-strip {
  background: var(--cream-warm); border-bottom: 1px solid var(--line);
  padding: 10px 20px; text-align: center; font-size: 11.5px;
  line-height: 1.55; color: var(--text-soft);
}
.compliance-strip.teal {
  background: var(--teal-deep); border-bottom: none;
  color: rgba(255,255,255,.8); font-size: 12px; padding: 8px 32px;
}
.compliance-strip .compliance-items {
  max-width: 820px; margin: 0 auto; display: flex;
  flex-wrap: wrap; justify-content: center; gap: 6px 24px;
}
.compliance-strip .compliance-item {
  display: inline-flex; align-items: center; gap: 5px; white-space: nowrap;
}
.compliance-strip .dot { color: var(--gold); flex-shrink: 0; }
.compliance-strip.teal .dot { color: rgba(255,255,255,.55); }
@media (max-width: 600px) {
  .compliance-strip, .compliance-strip.teal { padding: 12px 16px; font-size: 11px; }
  .compliance-strip .compliance-items { flex-direction: column; align-items: center; gap: 4px; }
}

.nav {
  border-bottom: 1px solid var(--line);
  background: rgba(248,245,240,.95);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  position: sticky; top: 0; z-index: 50;
}
.nav-inner {
  max-width: 1080px; margin: 0 auto; padding: 12px 32px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 12px;
}
.nav-brand {
  font-family: var(--font-display); font-size: 21px; font-weight: 600;
  color: var(--teal); letter-spacing: -0.01em; justify-self: start;
}
.nav-logo {
  display: flex; align-items: center; justify-content: center;
  width: 72px; height: 72px; border-radius: 0;
  background: transparent; border: none;
  box-shadow: none; overflow: visible;
}
.nav-logo img {
  width: 68px; height: 68px; object-fit: contain; display: block;
}
.nav-links {
  display: flex; gap: 24px; font-size: 14px; font-weight: 500;
  color: var(--text-soft); align-items: center; justify-self: end;
}
.nav-links a:hover { color: var(--teal); }
.nav-links .dim { opacity: .4; }
@media (max-width: 720px) {
  .nav-inner {
    grid-template-columns: auto 1fr; padding: 12px 16px;
  }
  .nav-brand { font-size: 17px; grid-column: 2; grid-row: 1; justify-self: end; }
  .nav-logo { grid-column: 1; grid-row: 1; width: 56px; height: 56px; }
  .nav-logo img { width: 50px; height: 50px; }
  .nav-links {
    grid-column: 1 / -1; justify-self: stretch; justify-content: center;
    gap: 14px; font-size: 13px; padding-top: 4px;
  }
}

.hero {
  position: relative; overflow: hidden;
  max-width: none; margin: 0; padding: 0; text-align: center;
}
.hero-with-bg { background: var(--cream); }
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 40%;
  opacity: 0.14; filter: blur(1.5px) saturate(0.95);
  pointer-events: none;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(248,245,240,.88) 0%,
    rgba(248,245,240,.78) 45%,
    rgba(248,245,240,.92) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 820px; margin: 0 auto; padding: 72px 32px 48px;
}
.hero-badges {
  display: inline-flex; gap: 6px; margin-bottom: 26px;
  flex-wrap: wrap; justify-content: center;
}
.hero h1 {
  font-family: var(--font-display); font-size: clamp(34px,5vw,52px);
  font-weight: 600; line-height: 1.12; letter-spacing: -0.02em;
  color: var(--charcoal); margin-bottom: 22px;
}
.hero-sub {
  font-size: 18px; line-height: 1.65; color: var(--text);
  max-width: 580px; margin: 0 auto 34px;
}
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-disclosure {
  font-size: 12.5px; line-height: 1.6; color: var(--text-soft);
  max-width: 500px; margin: 22px auto 0;
}
@media (max-width: 600px) {
  .hero-content { padding: 48px 20px 36px; }
  .hero-sub { font-size: 16px; }
  .hero-bg { opacity: 0.11; }
  .hero-ctas {
    flex-direction: column; align-items: stretch; width: 100%; max-width: 360px; margin: 0 auto;
  }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-ghost { width: 100%; text-align: center; }
  .hero-cta-consult { order: -1; }
}

.product-band {
  max-width: 1080px; margin: 8px auto 0; padding: 8px 32px 48px;
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 28px; align-items: center;
}
.product-band-media {
  border-radius: 14px; overflow: hidden; border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(18,86,77,.10); background: var(--white);
}
.product-band-media img {
  display: block; width: 100%; height: auto; object-fit: cover;
}
.product-band-copy { text-align: left; padding: 8px 4px; }
.product-band-tag {
  font-family: var(--font-display); font-size: clamp(22px, 2.8vw, 28px);
  font-weight: 600; color: var(--teal-deep); line-height: 1.25; margin-bottom: 10px;
}
.product-band-sub {
  font-size: 15.5px; line-height: 1.6; color: var(--text); margin-bottom: 20px;
}
.product-band .ref-note { margin-top: 12px; font-size: 12px; color: var(--text-soft); }
@media (max-width: 800px) {
  .product-band { grid-template-columns: 1fr; padding: 8px 20px 40px; }
  .product-band-copy { text-align: center; }
}

.btn-primary {
  display: inline-block; padding: 14px 28px; font-size: 15px; font-weight: 600;
  background: var(--teal); color: var(--white); border: none; border-radius: 8px;
  cursor: pointer; transition: opacity .15s;
}
.btn-primary:hover { opacity: .9; }
.btn-primary.coral { background: var(--coral); }
.btn-ghost {
  display: inline-block; padding: 14px 28px; font-size: 15px; font-weight: 600;
  background: transparent; color: var(--teal); border: 1.5px solid var(--teal);
  border-radius: 8px; cursor: pointer;
}
.btn-ghost:hover { background: var(--teal-light); }

.trust-strip {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--cream-warm);
}
.trust-strip-inner {
  max-width: 1080px; margin: 0 auto; padding: 18px 32px;
  display: flex; justify-content: center; gap: 32px; flex-wrap: wrap;
}
.trust-item {
  font-size: 13px; font-weight: 600; color: var(--teal-deep);
  display: flex; align-items: center; gap: 8px;
}
.trust-item .gold { color: var(--gold); }

.cards-section { max-width: 1080px; margin: 0 auto; padding: 64px 32px 40px; }
.cards-section > h2 {
  font-family: var(--font-display); font-size: 15px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-soft);
  text-align: center; margin-bottom: 36px;
}
.cards-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px;
}
.card {
  text-align: left; background: var(--white); border: 1px solid var(--line);
  border-radius: 12px; padding: 26px 24px; display: block; width: 100%;
}
.card h3 {
  font-family: var(--font-display); font-size: 21px; font-weight: 600;
  color: var(--charcoal); margin-bottom: 8px;
}
.card p { font-size: 14.5px; line-height: 1.6; color: var(--text-soft); margin-bottom: 14px; }
.read-link { font-size: 13px; font-weight: 600; color: var(--teal); }
@media (max-width: 600px) {
  .cards-section { padding: 40px 20px 30px; }
  .cards-grid { grid-template-columns: 1fr; }
}

.differentiator { background: var(--teal-deep); color: var(--white); margin-top: 40px; }
.differentiator-inner { max-width: 820px; margin: 0 auto; padding: 64px 32px; text-align: center; }
.differentiator h2 {
  font-family: var(--font-display); font-size: clamp(26px,3.5vw,34px);
  font-weight: 600; margin-bottom: 18px; line-height: 1.2;
}
.differentiator p {
  font-size: 16.5px; line-height: 1.7; color: rgba(255,255,255,.82);
  max-width: 620px; margin: 0 auto 26px;
}
.differentiator .tags {
  display: inline-flex; gap: 10px; flex-wrap: wrap; justify-content: center;
  padding: 16px 22px; background: rgba(255,255,255,.06); border-radius: 12px;
  font-size: 13.5px; color: rgba(255,255,255,.9);
}
.differentiator .sep { opacity: .4; }

.pathway { max-width: 720px; margin: 0 auto; padding: 40px 32px 64px; text-align: center; }
.pathway.compact { padding: 0 0 40px; max-width: 720px; }
.pathway-card {
  background: var(--teal-deep); border-radius: 14px; padding: 40px 32px; color: var(--white);
}
.pathway.compact .pathway-card { padding: 30px 26px; }
.pathway-card h2 {
  font-family: var(--font-display); font-size: 26px; font-weight: 600;
  color: var(--white); margin-bottom: 12px;
}
.pathway.compact .pathway-card h2 { font-size: 21px; }
.pathway-card > p {
  font-size: 15px; line-height: 1.65; color: rgba(255,255,255,.82);
  max-width: 480px; margin: 0 auto 22px;
}
.pathway .ref-note, .soft-cta .ref-note {
  font-size: 12px; color: rgba(255,255,255,.55); margin-top: 14px;
}
.soft-cta .ref-note { color: rgba(255,255,255,.6); font-size: 12px; }

.how-it-works { max-width: 900px; margin: 0 auto; padding: 64px 32px; }
.how-it-works > h2 {
  font-family: var(--font-display); font-size: 15px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-soft);
  text-align: center; margin-bottom: 40px;
}
.how-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.how-step { text-align: center; padding: 28px 20px; }
.how-num { font-family: var(--font-display); font-size: 36px; font-weight: 600; opacity: .7; display: block; }
.how-num-teal { color: var(--teal); }
.how-num-gold { color: var(--gold); }
.how-num-coral { color: var(--coral); }
.how-step h3 { font-family: var(--font-display); font-size: 19px; font-weight: 600; margin: 10px 0 8px; }
.how-step p { font-size: 14px; line-height: 1.6; color: var(--text-soft); }

.email-capture { max-width: 620px; margin: 0 auto 40px; padding: 0 32px; }
.email-capture-inner {
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  padding: 36px 32px; text-align: center;
}
.email-kicker { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; color: var(--gold); }
.email-capture h2 {
  font-family: var(--font-display); font-size: 24px; font-weight: 600;
  color: var(--charcoal); margin: 10px 0 8px;
}
.email-capture p { font-size: 15px; line-height: 1.6; color: var(--text-soft); margin-bottom: 22px; }
.lead-form { display: flex; flex-direction: column; gap: 10px; max-width: 360px; margin: 0 auto; }
.lead-form input {
  padding: 13px 16px; font-size: 15px; border: 1px solid var(--line); border-radius: 8px;
  font-family: var(--font-body); background: var(--cream); color: var(--charcoal); width: 100%;
}
.lead-form input:focus { outline: 2px solid var(--teal); outline-offset: 2px; }
.email-fine { font-size: 11px; color: var(--text-soft); margin-top: 12px; margin-bottom: 0 !important; }
.email-success-mark { font-size: 28px; color: var(--teal); }

.mid-intent-cta {
  background: var(--teal-light); border-radius: 12px; padding: 24px; text-align: center;
  margin: 16px 0 32px; border: 1px solid rgba(26,122,109,.13);
}
.mid-intent-cta > p:first-child { font-size: 16px; font-weight: 500; color: var(--teal-deep); margin-bottom: 14px; }
.mid-intent-note { font-size: 11px; color: var(--text-soft); margin-top: 10px; margin-bottom: 0 !important; }

.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
  background: rgba(18,86,77,.97); backdrop-filter: blur(8px);
  padding: 12px 24px; display: flex; justify-content: center; align-items: center;
  gap: 16px; flex-wrap: wrap; box-shadow: 0 -4px 20px rgba(0,0,0,.12);
}
.sticky-cta[hidden] { display: none !important; }
.sticky-cta-copy { font-size: 14px; color: rgba(255,255,255,.9); font-weight: 500; }
.sticky-cta-btn { padding: 10px 22px !important; font-size: 14px !important; }
body.has-sticky-cta { padding-bottom: 72px; }

.badge {
  display: inline-flex; align-items: center; gap: 6px; padding: 3px 9px;
  border-radius: 100px; background: var(--white); border: 1px solid var(--line);
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.05em;
  color: var(--charcoal); white-space: nowrap;
}
.badge.lg { padding: 6px 12px; font-size: 12px; }
.badge-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

.landing { max-width: 720px; margin: 0 auto; padding: 48px 32px 0; }
.back-link {
  display: inline-block; font-size: 14px; font-weight: 500;
  color: var(--teal); margin-bottom: 24px;
}
.back-link:hover { text-decoration: underline; }
.landing h1 {
  font-family: var(--font-display); font-size: clamp(28px,4.5vw,40px);
  font-weight: 600; line-height: 1.15; letter-spacing: -0.01em;
  color: var(--charcoal); margin-bottom: 20px;
}
.thirty-sec {
  background: var(--coral-light); border-radius: 12px; padding: 22px 24px;
  margin-bottom: 32px; border-left: 3px solid var(--coral);
}
.thirty-sec .label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  color: var(--coral); margin-bottom: 8px;
}
.thirty-sec p { font-size: 16px; line-height: 1.65; color: var(--text); }
.section-block { margin: 28px 0; }
.section-block h2, .section-h {
  font-family: var(--font-display); font-size: 22px; font-weight: 600;
  color: var(--charcoal); margin-bottom: 10px;
}
.section-block p { font-size: 16px; line-height: 1.7; color: var(--text); }
.evidence-list { margin: 32px 0; }
.evidence-row {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 0; border-bottom: 1px solid var(--line);
}
.evidence-row .badge { margin-top: 1px; flex-shrink: 0; }
.evidence-row p { font-size: 15px; line-height: 1.55; color: var(--text); }

.clinician-box {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 12px; padding: 26px; margin: 32px 0;
}
.clinician-box .header {
  display: flex; align-items: center; gap: 8px; margin-bottom: 16px;
}
.clinician-box .diamond { color: var(--gold); font-size: 18px; }
.clinician-box .header h2 {
  font-family: var(--font-display); font-size: 21px; font-weight: 600;
  color: var(--charcoal);
}
.clinician-q {
  display: flex; gap: 12px; padding: 9px 0;
  border-bottom: 1px solid var(--line);
}
.clinician-q:last-child { border-bottom: none; }
.clinician-q .num {
  font-family: var(--font-display); color: var(--coral);
  font-weight: 600; flex-shrink: 0;
}
.clinician-q p { font-size: 15px; line-height: 1.55; color: var(--text); }

.soft-cta {
  background: var(--teal-deep); border-radius: 14px; padding: 34px 30px;
  text-align: center; margin: 12px 0 40px;
}
.soft-cta h2 {
  font-family: var(--font-display); font-size: 23px; font-weight: 600;
  color: var(--white); margin-bottom: 12px;
}
.soft-cta > p {
  font-size: 15px; line-height: 1.65; color: rgba(255,255,255,.82);
  max-width: 480px; margin: 0 auto 22px;
}

.related-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px; margin: 40px 0;
}
.related-card {
  text-align: left; background: var(--white); border: 1px solid var(--line);
  border-radius: 10px; padding: 18px 16px; display: block;
}
.related-title {
  font-size: 14px; font-weight: 600; color: var(--charcoal); margin-bottom: 4px;
}

.site-footer {
  border-top: 1px solid var(--line); background: var(--cream-warm); margin-top: 20px;
}
.footer-inner { max-width: 820px; margin: 0 auto; padding: 40px 32px; }
.legend-title {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  color: var(--text-soft); margin-bottom: 14px;
}
.legend-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px 20px; margin-bottom: 32px;
}
.legend-item { display: flex; align-items: center; gap: 9px; }
.legend-item .ldot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.legend-item span:last-child { font-size: 13px; color: var(--text); }
.footer-legal { border-top: 1px solid var(--line); padding-top: 22px; }
.footer-legal p { font-size: 12.5px; line-height: 1.7; color: var(--text-soft); }
.footer-legal .copy { font-size: 12px; margin-top: 16px; }
@media (max-width: 600px) {
  .landing { padding: 32px 20px 0; }
  .clinician-box { padding: 20px 18px; }
  .soft-cta { padding: 28px 20px; }
  .footer-inner { padding: 30px 20px; }
  .pathway { padding: 48px 20px; }
}

.hearing-banner {
  display: block; text-decoration: none;
  background: var(--coral);
  border-top: 1px solid #B56A59; border-bottom: 1px solid #B56A59;
}
.hearing-banner:hover { filter: brightness(1.03); }
.hearing-banner-inner {
  max-width: 1080px; margin: 0 auto; padding: 16px 32px;
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap; text-align: center;
}
.hearing-badge {
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  color: #fff; background: rgba(255,255,255,.22);
  padding: 4px 10px; border-radius: 100px; white-space: nowrap;
}
.hearing-copy {
  font-size: 16px; font-weight: 600; color: #fff; line-height: 1.4;
}
.hearing-cta {
  font-size: 15px; font-weight: 700; color: #fff; white-space: nowrap;
  border-bottom: 2px solid rgba(255,255,255,.6); padding-bottom: 1px;
}
@media (max-width: 600px) {
  .hearing-banner-inner { padding: 14px 16px; }
  .hearing-copy { font-size: 15px; }
}

.ad-landing { max-width: 720px; margin: 0 auto; padding: 48px 32px 90px; }
.ad-pill {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  color: var(--coral); background: var(--coral-light); padding: 5px 12px; border-radius: 100px;
}
.ad-landing h1 {
  font-family: var(--font-display); font-size: clamp(30px,4.5vw,44px); font-weight: 600;
  line-height: 1.14; letter-spacing: -0.01em; color: var(--charcoal); margin: 16px 0 20px;
}
.ad-landing h2.section-h {
  font-family: var(--font-display); font-size: 24px; font-weight: 600;
  color: var(--charcoal); margin: 34px 0 12px;
}
.ad-landing .body-p {
  font-size: 16.5px; line-height: 1.75; color: var(--text); margin-bottom: 14px;
}
.mid-cta-coral {
  background: var(--coral-light); border-radius: 12px; padding: 24px 26px;
  margin: 36px 0; text-align: center; border-left: 3px solid var(--coral);
}
.mid-cta-coral .kicker {
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; color: var(--coral); margin-bottom: 8px;
}
.proof-near-cta {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 18px;
  margin: 18px 0 8px; font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,.85);
}
.related-strip { display: flex; gap: 12px; margin: 32px 0; flex-wrap: wrap; }
.related-strip a {
  flex: 1 1 200px; background: var(--white); border: 1px solid var(--line);
  border-radius: 10px; padding: 16px 18px; text-decoration: none;
}
.related-strip a p { font-size: 14px; font-weight: 600; color: var(--charcoal); margin-bottom: 4px; }
@media (max-width: 600px) {
  .ad-landing { padding: 36px 20px 90px; }
}

.trust-strip {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
  margin: 22px 0 28px; padding: 0; list-style: none;
}
.trust-strip li {
  background: var(--white); border: 1px solid var(--line); border-radius: 10px;
  padding: 12px 14px; font-size: 13.5px; font-weight: 600; color: var(--charcoal);
  line-height: 1.35;
}
.trust-strip li span { color: var(--teal); margin-right: 6px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 22px 0 8px; }
.hero-actions .btn-secondary {
  display: inline-block; padding: 14px 22px; border-radius: 8px;
  border: 2px solid var(--teal); color: var(--teal); font-weight: 600;
  text-decoration: none; background: transparent;
}
.quiz-anchor-section { margin: 48px 0 24px; scroll-margin-top: 88px; }
#cw-quiz { margin: 20px 0 48px; }
.quiz-panel, .quiz-result {
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  padding: 28px 24px; max-width: 640px;
}
.quiz-kicker {
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; color: var(--gold);
  margin: 0 0 10px;
}
.quiz-panel h2, .quiz-result h3 {
  font-family: var(--font-display); font-size: 26px; line-height: 1.25;
  color: var(--charcoal); margin: 0 0 18px;
}
.quiz-progress { margin-bottom: 18px; }
.quiz-progress-bar {
  height: 6px; background: var(--teal); border-radius: 100px; margin-bottom: 8px;
}
.quiz-progress-label { font-size: 13px; color: var(--muted); font-weight: 600; }
.quiz-options { display: flex; flex-direction: column; gap: 10px; }
.quiz-option {
  text-align: left; font-size: 17px; line-height: 1.4; padding: 16px 18px;
  border-radius: 10px; border: 1px solid var(--line); background: #FBF9F5;
  cursor: pointer; color: var(--charcoal); font-weight: 500;
}
.quiz-option:hover, .quiz-option:focus {
  border-color: var(--teal); background: #F0F7F5; outline: none;
}
.quiz-result-block { margin-bottom: 16px; font-size: 16.5px; line-height: 1.7; color: var(--text); }
.quiz-cta-row { display: grid; gap: 14px; margin: 22px 0; }
.quiz-cta-card {
  border: 1px solid var(--line); border-radius: 12px; padding: 18px;
  background: #FBF9F5;
}
.quiz-cta-card.ellie { border-left: 3px solid var(--coral); }
.quiz-thank-you h3 {
  font-family: var(--font-display); font-size: 26px; color: var(--teal-deep);
  margin: 0 0 12px;
}
.quiz-thank-you p {
  font-size: 16px; line-height: 1.65; color: var(--text); margin: 0 0 12px;
}
/* Glyph conversion rescue — scorecard modal */
.quiz-invite-card {
  background: #12564D; color: #F8F5F0; border-radius: 16px; padding: 28px 24px;
  margin: 28px 0 36px; box-shadow: 0 12px 40px rgba(18,86,77,.28);
  scroll-margin-top: 88px;
}
.quiz-invite-card .section-h { color: #F8F5F0 !important; font-size: 30px; }
.quiz-invite-card .body-p { color: rgba(248,245,240,.92); font-size: 17px; }
.quiz-invite-card h2.section-h { color: #F8F5F0 !important; }
.quiz-invite-eyebrow {
  letter-spacing: .08em; font-size: 12px; font-weight: 700; color: #C9A24B; margin: 0 0 10px;
}
.quiz-invite-micro { font-size: 15px !important; opacity: .9; }
.quiz-invite-btn { font-size: 17px !important; padding: 16px 28px !important; }
/* Dim EllieMD only while the scorecard modal is open — not for the whole visit */
body.cw-quiz-lock .cw-compete-hide { opacity: .35; pointer-events: none; }
body.cw-pre-capture #leo-widget { display: none !important; }
body.cw-quiz-lock { overflow: hidden; }
.cw-quiz-overlay {
  position: fixed; inset: 0; z-index: 12000; background: rgba(18,86,77,.72);
  display: flex; align-items: flex-end; justify-content: center; padding: 0;
}
.cw-quiz-overlay[hidden] { display: none !important; }
.cw-quiz-sheet {
  width: 100%; max-width: 680px; background: #12564D; color: #F8F5F0;
  border-radius: 20px 20px 0 0; max-height: 94vh; display: flex; flex-direction: column;
  box-shadow: 0 -8px 40px rgba(0,0,0,.35);
}
.cw-quiz-sheet-head {
  display: flex; justify-content: flex-end; gap: 12px; align-items: center;
  padding: 12px 16px 0; flex-shrink: 0;
}
.cw-quiz-close {
  width: 48px; height: 48px; border-radius: 50%; border: 2px solid rgba(255,255,255,.55);
  background: transparent; color: #fff; font-size: 28px; line-height: 1; cursor: pointer;
}
.cw-quiz-keep {
  border: none; background: transparent; color: rgba(248,245,240,.9); font-size: 15px;
  font-weight: 600; cursor: pointer; text-decoration: underline; padding: 12px 8px;
}
.cw-quiz-sheet-body {
  overflow-y: auto; padding: 8px 16px 28px; -webkit-overflow-scrolling: touch;
}
.cw-quiz-sheet-body .quiz-panel, .cw-quiz-sheet-body .quiz-result {
  background: #FBF9F5; color: var(--charcoal); border: none; border-radius: 14px;
  max-width: none; padding: 24px 20px;
}
.cw-quiz-sheet-body .quiz-panel h2, .cw-quiz-sheet-body .quiz-result h2 {
  font-size: 22px; line-height: 1.3; color: var(--charcoal);
}
.cw-quiz-sheet-body .quiz-option {
  min-height: 52px; font-size: 18px; padding: 16px 18px; background: #fff;
  border: 2px solid #D9D2C5; display: flex; gap: 12px; align-items: flex-start;
}
.cw-quiz-sheet-body .quiz-option.selected {
  border-color: var(--teal); background: #E8F4F1;
}
.cw-quiz-sheet-body .quiz-option-check {
  width: 22px; height: 22px; border-radius: 50%; border: 2px solid #B8B0A2; flex: 0 0 auto; margin-top: 2px;
}
.cw-quiz-sheet-body .quiz-option.selected .quiz-option-check {
  border-color: var(--teal); background: var(--teal);
  box-shadow: inset 0 0 0 3px #fff;
}
.cw-quiz-sheet-body .quiz-progress-bar { height: 8px; }
.scorecard-checks { margin: 0 0 18px; padding-left: 22px; font-size: 17px; line-height: 1.55; }
.scorecard-checks li { margin-bottom: 10px; }
.quiz-confirm { font-size: 17px; margin: 18px 0 12px; }
.quiz-leo-handoff { font-size: 16px; margin: 14px 0; }
.quiz-leo-handoff .linkish {
  background: none; border: none; color: var(--teal); font-weight: 700; font-size: inherit;
  cursor: pointer; text-decoration: underline; padding: 0;
}
.quiz-lead { font-size: 17px; line-height: 1.55; margin: 0 0 16px; color: var(--text); }
@media (min-width: 720px) {
  .cw-quiz-overlay { align-items: center; padding: 24px; }
  .cw-quiz-sheet { border-radius: 18px; max-height: 90vh; }
}
.quiz-capture-form { display: flex; flex-direction: column; gap: 10px; margin-top: 12px; }
.quiz-capture-form input[type="text"],
.quiz-capture-form input[type="email"] {
  font-size: 16px; padding: 14px; border-radius: 8px; border: 1px solid var(--line);
}
.quiz-consent {
  display: flex; gap: 10px; align-items: flex-start; font-size: 13px; line-height: 1.5;
  color: var(--muted); text-align: left;
}
.quiz-consent input { margin-top: 3px; width: 18px; height: 18px; flex: 0 0 auto; }
.quiz-fine { font-size: 12.5px; color: var(--muted); margin-top: 10px; }
.quiz-disclaimer {
  font-size: 12.5px; line-height: 1.55; color: var(--muted);
  border-top: 1px solid var(--line); padding-top: 14px; margin-top: 8px;
}
.faq-list { margin: 18px 0 40px; }
.faq-list details {
  border: 1px solid var(--line); border-radius: 10px; background: var(--white);
  padding: 14px 16px; margin-bottom: 10px;
}
.faq-list summary {
  font-size: 16.5px; font-weight: 600; cursor: pointer; color: var(--charcoal);
}
.faq-list details p {
  margin: 12px 0 0; font-size: 15.5px; line-height: 1.7; color: var(--text);
}
@media (max-width: 600px) {
  .trust-strip { grid-template-columns: 1fr; }
  .quiz-panel, .quiz-result { padding: 22px 16px; }
  .quiz-option { font-size: 16px; padding: 15px 14px; }
}

