/* ===== DESIGN TOKENS ===== */
:root {
  --primary: #0F766E;
  --primary-dark: #115E59;
  --primary-light: #14B8A6;
  --primary-50: #F0FDFA;
  --primary-100: #CCFBF1;

  --bg: #FAFAF9;
  --surface: #FFFFFF;
  --border: #E5E7EB;
  --border-strong: #D1D5DB;

  --text: #0F172A;
  --text-muted: #475569;
  --text-subtle: #64748B;

  --warning: #F59E0B;
  --warning-bg: #FEF3C7;
  --warning-text: #92400E;

  --success: #16A34A;

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .05);
  --shadow: 0 4px 16px rgba(15, 23, 42, .06);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, .12);
  --shadow-card: 0 10px 30px rgba(15, 118, 110, .12);

  --container: 1200px;
  --section-py: 96px;

  --ease: cubic-bezier(.2, .8, .2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }
button { font: inherit; cursor: pointer; border: 0; background: transparent; }

/* ===== UTILITIES ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--primary);
  margin-bottom: 12px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-50);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--primary-100);
  margin-bottom: 24px;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, .25);
  animation: pulse 2s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(20, 184, 166, .25); }
  50% { box-shadow: 0 0 0 8px rgba(20, 184, 166, .0); }
}
.hl {
  background: linear-gradient(120deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all .2s var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 12px rgba(15, 118, 110, .25);
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(15, 118, 110, .35);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  background: var(--surface);
  border-color: var(--primary);
  color: var(--primary);
}
.btn-light {
  background: white;
  color: var(--primary-dark);
}
.btn-light:hover {
  background: var(--primary-50);
  color: var(--primary-dark);
  transform: translateY(-1px);
}
.btn-ghost-light {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, .4);
}
.btn-ghost-light:hover {
  background: rgba(255, 255, 255, .1);
  color: white;
  border-color: white;
}

/* ===== ANNOUNCEMENT BAR ===== */
.announce {
  background: var(--text);
  color: white;
  font-size: 13px;
  padding: 10px 24px;
  text-align: center;
  font-weight: 500;
}
.announce strong { color: var(--primary-light); }

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
  letter-spacing: -.01em;
}
.brand em { font-style: normal; color: var(--primary); }
.brand-foot { color: white; }
.brand-foot em { color: var(--primary-light); }
.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-left: auto;
  margin-right: 16px;
}
.nav-links a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all .15s var(--ease);
}
.nav-links a:hover {
  color: var(--text);
  background: var(--primary-50);
}
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .2s var(--ease);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 20px;
  background: white;
  border-top: 1px solid var(--border);
}
.mobile-menu a {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  color: var(--text);
  font-weight: 500;
}
.mobile-menu a:hover { background: var(--primary-50); }
.mobile-menu .btn { margin-top: 8px; }
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 80px 0 100px;
  background:
    radial-gradient(circle at 20% 0%, rgba(20, 184, 166, .12) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(15, 118, 110, .08) 0%, transparent 50%),
    var(--bg);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.025em;
  margin-bottom: 20px;
  color: var(--text);
}
.lede {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 540px;
  margin-bottom: 32px;
}
.lede strong { color: var(--text); font-weight: 600; }
.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-bullets {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 36px;
  padding: 0;
}
.hero-bullets li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}
.hero-bullets svg { color: var(--primary); }

/* Eligibility widget */
.eligibility {
  padding: 24px;
  max-width: 560px;
  background: white;
  border-color: var(--primary-100);
  box-shadow: var(--shadow-card);
}
.elig-head h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}
.elig-head p {
  font-size: 14px;
  color: var(--text-subtle);
  margin-bottom: 16px;
}
.elig-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.elig-form .field { display: flex; flex-direction: column; }
.elig-form .field span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.elig-form select {
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  font-size: 15px;
  padding: 12px 36px 12px 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: white url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>") no-repeat right 12px center / 18px;
  color: var(--text);
  transition: border-color .15s var(--ease);
}
.elig-form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, .2);
}
.elig-form .btn { grid-column: span 2; margin-top: 4px; }
.elig-result {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  border-radius: var(--radius);
  margin-top: 12px;
  animation: slideUp .3s var(--ease);
}
.elig-result-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.elig-result strong {
  display: block;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 4px;
}
.elig-result p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero visual: floating MMJ card */
.hero-visual {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-art {
  position: relative;
  width: 380px;
  height: 240px;
  border-radius: 20px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F0FDFA 100%);
  box-shadow: 0 30px 60px rgba(15, 118, 110, .25), 0 10px 30px rgba(15, 23, 42, .12);
  padding: 28px;
  transform: rotate(-6deg);
  animation: floaty 6s ease-in-out infinite;
  border: 1px solid rgba(20, 184, 166, .2);
}
@keyframes floaty {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50% { transform: rotate(-6deg) translateY(-12px); }
}
.card-art-band {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 20px 20px 0 0;
}
.card-art-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}
.card-art-state {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: .04em;
  color: var(--primary-dark);
}
.card-art-badge {
  background: var(--primary);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: .12em;
}
.card-art-name {
  margin-bottom: 18px;
}
.line {
  display: block;
  background: var(--border-strong);
  border-radius: 4px;
  height: 8px;
}
.line-lg { width: 65%; margin-bottom: 6px; height: 10px; background: var(--text); opacity: .8; }
.line-md { width: 45%; height: 7px; }
.line-sm { width: 35%; height: 6px; }
.card-art-leaf {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  filter: drop-shadow(0 10px 20px rgba(15, 118, 110, .3));
  animation: floaty 6s ease-in-out infinite reverse;
}
.card-art-foot {
  position: absolute;
  bottom: 24px;
  left: 28px;
  right: 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 8px;
}

.floating-stat {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  font-size: 14px;
  animation: floaty 5s ease-in-out infinite;
}
.floating-stat strong {
  display: block;
  font-size: 15px;
  color: var(--text);
  font-weight: 700;
}
.floating-stat span {
  display: block;
  font-size: 12px;
  color: var(--text-subtle);
}
.stat-ico {
  font-size: 20px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary-50);
  border-radius: 10px;
}
.stat-1 { top: 10%; left: -20px; animation-delay: 0s; }
.stat-2 { top: 50%; right: -30px; animation-delay: 1.5s; }
.stat-3 { bottom: 8%; left: 0; animation-delay: 3s; }

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--text);
  color: white;
  padding: 32px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.trust-item strong {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-light);
  letter-spacing: -.02em;
  margin-bottom: 4px;
}
.trust-item span {
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 500;
}

/* ===== SECTIONS ===== */
.section {
  padding: var(--section-py) 0;
}
.section-alt { background: var(--primary-50); }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text);
}
.section-head p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.6;
}
.section-head p a { text-decoration: underline; text-underline-offset: 3px; }

/* ===== STEPS ===== */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0;
  position: relative;
}
.step {
  position: relative;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: all .25s var(--ease);
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--primary-100);
}
.step-num {
  position: absolute;
  top: 16px; right: 20px;
  font-size: 64px;
  font-weight: 800;
  color: var(--primary-100);
  line-height: 1;
  letter-spacing: -.04em;
}
.step-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--primary-50);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== BENEFITS ===== */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.benefit {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all .25s var(--ease);
}
.benefit:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--primary-100);
}
.benefit-ico {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.benefit h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
  line-height: 1.3;
}
.benefit p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.benefit p strong { color: var(--text); }

.savings-callout {
  background: linear-gradient(135deg, var(--text) 0%, #1E293B 100%);
  color: white;
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.savings-callout .kicker { color: var(--primary-light); }
.savings-callout h3 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 8px;
  line-height: 1.2;
}
.savings-callout p {
  color: rgba(255, 255, 255, .75);
  font-size: 15px;
  max-width: 540px;
}

/* ===== CONDITIONS CHIPS ===== */
.conditions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}
.chip {
  background: white;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: all .15s var(--ease);
}
.chip:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.footnote {
  text-align: center;
  font-size: 13px;
  color: var(--text-subtle);
  margin-top: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.price-card {
  position: relative;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: all .25s var(--ease);
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.price-card.featured {
  border-color: var(--primary);
  border-width: 2px;
  box-shadow: 0 20px 50px rgba(15, 118, 110, .18);
  transform: scale(1.02);
}
.price-card.featured:hover { transform: scale(1.02) translateY(-4px); }
.price-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.price-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}
.price-tag {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.price {
  display: block;
  font-size: 52px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.03em;
  line-height: 1;
}
.price-sub {
  display: block;
  font-size: 14px;
  color: var(--text-subtle);
  margin-top: 6px;
}
.price-feats {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price-feats li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
.price-feats svg { color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.state-fee {
  background: var(--primary-50);
  color: var(--primary-dark);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 13px;
  text-align: center;
  margin-bottom: 20px;
}
.state-fee strong { font-weight: 700; }
.price-card .btn { margin-top: auto; }

/* ===== DOCTORS / TRUST SECTION ===== */
.trust-section {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}
.trust-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.trust-list-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.trust-list-item svg {
  flex-shrink: 0;
  width: 36px; height: 36px;
  padding: 7px;
  background: var(--primary-50);
  color: var(--primary);
  border-radius: 10px;
}
.trust-list-item strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}
.trust-list-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
.doctor-card {
  padding: 28px;
  position: sticky;
  top: 96px;
}
.doctor-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.doctor-avatar svg { border-radius: 50%; }
.doctor-head strong {
  display: block;
  font-size: 16px;
  color: var(--text);
}
.doctor-head span {
  display: block;
  font-size: 13px;
  color: var(--text-subtle);
  font-weight: 500;
}
.doctor-card > p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 18px;
}
.doctor-cred {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.doctor-cred li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}
.doctor-cred li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial {
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.stars {
  color: var(--warning);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 20px;
}
.testimonial footer {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial footer strong {
  font-size: 14px;
  color: var(--text);
  font-weight: 700;
}
.testimonial footer span {
  font-size: 13px;
  color: var(--text-subtle);
}

/* ===== FAQ ===== */
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s var(--ease);
}
.faq-item[open] {
  border-color: var(--primary-100);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-toggle {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--primary-50);
  color: var(--primary);
  position: relative;
  transition: transform .2s var(--ease), background-color .2s var(--ease);
}
.faq-toggle::before, .faq-toggle::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 1px;
  transition: transform .2s var(--ease);
}
.faq-toggle::before { top: 11px; left: 7px; right: 7px; height: 2px; }
.faq-toggle::after { top: 7px; bottom: 7px; left: 11px; width: 2px; }
.faq-item[open] .faq-toggle { background: var(--primary); color: white; transform: rotate(45deg); }
.faq-body {
  padding: 0 24px 22px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== FINAL CTA ===== */
.final-cta {
  background:
    radial-gradient(circle at 80% 0%, rgba(20, 184, 166, .3) 0%, transparent 50%),
    linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 80px 0;
}
.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.final-cta h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin-bottom: 8px;
  max-width: 600px;
}
.final-cta p {
  font-size: 16px;
  color: rgba(255, 255, 255, .85);
}
.final-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--text);
  color: white;
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 56px;
}
.foot-tag {
  font-size: 14px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.6;
  margin-top: 16px;
  max-width: 320px;
}
.footer h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--primary-light);
  margin-bottom: 16px;
}
.footer ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer ul a {
  color: rgba(255, 255, 255, .8);
  font-size: 14px;
  transition: color .15s var(--ease);
}
.footer ul a:hover { color: white; }
.foot-contact li { color: rgba(255, 255, 255, .8); font-size: 14px; }
.legal {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.legal p {
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.7;
}
.legal strong { color: rgba(255, 255, 255, .7); }

/* ===== ANIMATIONS ===== */
/* Only hide elements when JS is available — otherwise content is visible by default (progressive enhancement + SEO). */
.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { height: 420px; order: -1; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-4px); }
  .trust-section { grid-template-columns: 1fr; gap: 40px; }
  .doctor-card { position: static; }
  .testimonials { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 720px) {
  :root { --section-py: 64px; }
  .container { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .hero { padding: 48px 0 64px; }
  .hero-visual { height: 360px; }
  .card-art { width: 320px; height: 200px; padding: 22px; }
  .card-art-state { font-size: 16px; }
  .card-art-leaf svg { width: 90px; height: 90px; }
  .floating-stat { padding: 10px 12px; }
  .floating-stat strong { font-size: 13px; }
  .floating-stat span { font-size: 11px; }
  .stat-ico { width: 30px; height: 30px; font-size: 16px; }
  .elig-form { grid-template-columns: 1fr; }
  .elig-form .btn { grid-column: 1; }
  .savings-callout { flex-direction: column; align-items: flex-start; padding: 28px; }
  .steps { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .final-cta-inner { flex-direction: column; align-items: flex-start; }
  .legal p { font-size: 11px; }
}

@media (max-width: 480px) {
  .hero-cta-row .btn { flex: 1; }
  .floating-stat { display: none; }
  .stat-1 { display: flex; left: 0; top: 0; }
  .card-art-leaf { right: -10px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ===== COST CALCULATOR ===== */
.calc {
  padding: 40px;
  background: white;
}
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.calc-field {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.calc-field > span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.4;
}
.calc-slider-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.calc-slider-row input[type="range"] {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
  outline: none;
}
.calc-slider-row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--primary);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform .15s var(--ease);
}
.calc-slider-row input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}
.calc-slider-row input[type="range"]::-moz-range-thumb {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--primary);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.calc-slider-row output {
  min-width: 70px;
  text-align: right;
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-dark);
  font-variant-numeric: tabular-nums;
}
.calc-radios {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.calc-radios label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s var(--ease);
}
.calc-radios input[type="radio"] {
  accent-color: var(--primary);
  margin: 0;
}
.calc-radios label:has(input:checked) {
  border-color: var(--primary);
  background: var(--primary-50);
  color: var(--primary-dark);
}
.calc-results {
  background: linear-gradient(135deg, var(--text) 0%, #1E293B 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 6px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, .75);
}
.calc-row strong {
  font-size: 18px;
  font-weight: 700;
  color: white;
  font-variant-numeric: tabular-nums;
}
.calc-bad { color: #FCA5A5 !important; }
.calc-good { color: #5EEAD4 !important; font-size: 24px !important; }
.calc-row-total {
  border-top: 1px solid rgba(255, 255, 255, .15);
  margin-top: 8px;
  padding-top: 16px;
}
.calc-row-total strong { color: #5EEAD4; }
.calc-row-payback strong { color: #FCD34D; }
.calc-results .btn {
  margin-top: 12px;
  background: white;
  color: var(--primary-dark);
}
.calc-results .btn:hover {
  background: var(--primary-50);
}

/* ===== SUBPAGE HERO (city / blog / content pages) ===== */
.subpage-hero {
  padding: 64px 0 56px;
  background:
    radial-gradient(circle at 20% 0%, rgba(20, 184, 166, .12) 0%, transparent 50%),
    var(--bg);
  border-bottom: 1px solid var(--border);
}
.subpage-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-bottom: 16px;
  max-width: 800px;
}
.subpage-hero .lede {
  font-size: 18px;
  max-width: 700px;
  margin-bottom: 28px;
}
.breadcrumb {
  font-size: 13px;
  color: var(--text-subtle);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-subtle); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb-sep { opacity: .5; }
.breadcrumb-current { color: var(--text); font-weight: 600; }

/* ===== CITY TILES ===== */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.city-tile {
  display: block;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  text-decoration: none;
  color: var(--text);
  transition: all .2s var(--ease);
}
.city-tile:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
  color: var(--text);
}
.city-tile strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.city-tile span {
  font-size: 13px;
  color: var(--text-subtle);
}

/* ===== BLOG POST CARDS ===== */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.post-card {
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  transition: all .25s var(--ease);
}
.post-card:hover {
  border-color: var(--primary-100);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  color: var(--text);
}
.post-card-thumb {
  height: 160px;
  background: linear-gradient(135deg, var(--primary-100) 0%, var(--primary-50) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 48px;
  position: relative;
  overflow: hidden;
}
.post-card-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(20, 184, 166, .3) 0%, transparent 60%);
}
.post-card-thumb span {
  position: relative;
  font-weight: 800;
  letter-spacing: -.02em;
  font-size: 32px;
}
.post-card-body {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.post-card-cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--primary);
}
.post-card h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
}
.post-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
}
.post-card-meta {
  font-size: 12px;
  color: var(--text-subtle);
  margin-top: 8px;
  display: flex;
  gap: 12px;
  align-items: center;
}

/* ===== ARTICLE (blog post body) ===== */
.article {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 0 80px;
}
.article h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.article .article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: var(--text-subtle);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.article .article-meta-author {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--text);
}
.article .article-meta-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.prose h2 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 40px 0 16px;
  line-height: 1.2;
}
.prose h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 32px 0 12px;
  line-height: 1.3;
}
.prose p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 20px;
}
.prose ul, .prose ol {
  margin: 0 0 24px;
  padding-left: 24px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
}
.prose li { margin-bottom: 8px; }
.prose blockquote {
  border-left: 4px solid var(--primary);
  background: var(--primary-50);
  padding: 16px 20px;
  margin: 24px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text);
}
.prose blockquote p { margin-bottom: 0; }
.prose a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 15px;
}
.prose th, .prose td {
  border: 1px solid var(--border);
  padding: 12px 14px;
  text-align: left;
}
.prose th {
  background: var(--primary-50);
  color: var(--text);
  font-weight: 700;
}
.prose .callout {
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.prose .callout-icon {
  width: 32px; height: 32px;
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.prose .callout p { margin-bottom: 0; font-size: 15px; }
.prose .cta-inline {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  margin: 32px 0;
}
.prose .cta-inline h3 { color: white; margin-top: 0; }
.prose .cta-inline p { color: rgba(255, 255, 255, .9); }
.article-author-box {
  display: flex;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 40px 0;
}
.article-author-box strong { display: block; font-size: 16px; margin-bottom: 4px; }
.article-author-box span { font-size: 13px; color: var(--text-subtle); }
.article-author-box p { font-size: 14px; color: var(--text-muted); margin: 8px 0 0; }
.article-references {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 32px 0;
  font-size: 14px;
  color: var(--text-muted);
}
.article-references h4 { margin-top: 0; font-size: 15px; color: var(--text); margin-bottom: 8px; }
.article-references ol { margin: 0; padding-left: 20px; }
.article-references li { margin-bottom: 6px; }

/* ===== COMPARE TABLE (medical vs recreational) ===== */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  font-size: 15px;
}
.compare-table th, .compare-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.compare-table th {
  background: var(--primary-50);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--text);
}
.compare-table th:first-child { color: var(--text-muted); }
.compare-table td:first-child { font-weight: 600; color: var(--text); }
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table .yes { color: var(--success); font-weight: 600; }
.compare-table .no { color: var(--text-subtle); }
.compare-table .partial { color: var(--warning-text); font-weight: 600; }

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 1024px) {
  .calc-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 720px) {
  .calc { padding: 24px; }
  .calc-results { padding: 20px; }
  .calc-radios label { padding: 8px 12px; font-size: 13px; }
  .article { padding: 32px 0 48px; }
  .article h1 { font-size: 1.75rem; }
  .prose h2 { font-size: 22px; }
  .prose p, .prose ul, .prose ol { font-size: 16px; }
  .compare-table { font-size: 13px; }
  .compare-table th, .compare-table td { padding: 10px 12px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
