/* ══════════════════════════════════════════════
   Stuck in Therapy  - Shared Styles
   ══════════════════════════════════════════════ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --sage: #6B8F71;
  --sage-dark: #4A6B50;
  --cream: #FAF8F5;
  --warm-white: #FFFDF9;
  --charcoal: #1E1E1E;
  --text: #2D2D2D;
  --text-mid: #555;
  --text-light: #777;
  --cta: #D4763A;
  --cta-hover: #C06830;
  --cta-glow: rgba(212, 118, 58, 0.3);
  --red: #C0392B;
  --border: #E8E4DF;
  --radius: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  line-height: 1.2;
  color: var(--charcoal);
}

.container { max-width: 760px; margin: 0 auto; padding: 0 24px; }

/* ── STICKY BUY BAR ── */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(30, 30, 30, 0.97);
  backdrop-filter: blur(12px);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar .bar-text { color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 500; }
.sticky-bar .bar-price { color: white; font-weight: 800; font-size: 1.1rem; }
.sticky-bar .bar-cta {
  background: var(--cta); color: white; border: none;
  padding: 10px 28px; border-radius: 8px; font-weight: 700;
  font-size: 0.95rem; cursor: pointer; text-decoration: none;
  transition: background 0.2s; white-space: nowrap;
}
.sticky-bar .bar-cta:hover { background: var(--cta-hover); }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
nav .container { display: flex; justify-content: space-between; align-items: center; }
nav .logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem; color: var(--sage-dark); text-decoration: none;
}
nav .nav-cta {
  background: var(--cta); color: white; padding: 8px 20px;
  border-radius: 8px; text-decoration: none; font-weight: 700;
  font-size: 0.85rem; transition: background 0.2s;
}
nav .nav-cta:hover { background: var(--cta-hover); }

/* ── HERO ── */
.hero {
  padding: 130px 0 70px;
  text-align: center;
  background: linear-gradient(180deg, var(--warm-white) 0%, var(--cream) 100%);
}
.hero .social-proof-bar {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; border: 1px solid var(--border);
  border-radius: 50px; padding: 6px 18px;
  font-size: 0.82rem; color: var(--text-mid); margin-bottom: 32px; font-weight: 500;
}
.hero .social-proof-bar .dot {
  width: 8px; height: 8px;
  background: #4CAF50; border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero h1 { font-size: clamp(2.2rem, 5.5vw, 3.4rem); margin-bottom: 20px; }
.hero h1 .highlight { color: var(--cta); position: relative; }
.hero h1 .highlight::after {
  content: ''; position: absolute;
  bottom: 2px; left: 0; right: 0; height: 8px;
  background: rgba(212, 118, 58, 0.15); border-radius: 4px; z-index: -1;
}
.hero .hook { font-size: 1.2rem; color: var(--text-mid); max-width: 540px; margin: 0 auto 36px; }
.hero .hook strong { color: var(--text); }

/* ── CTA BLOCK ── */
.cta-block {
  background: white; border: 2px solid var(--border);
  border-radius: 16px; padding: 36px 32px;
  max-width: 420px; margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.cta-block .price-row {
  display: flex; align-items: baseline; justify-content: center;
  gap: 12px; margin-bottom: 4px;
}
.cta-block .price-strike { font-size: 1.3rem; color: var(--text-light); text-decoration: line-through; }
.cta-block .price { font-size: 2.8rem; font-weight: 800; color: var(--charcoal); }
.cta-block .price-context { font-size: 0.88rem; color: var(--text-light); margin-bottom: 20px; }

.cta-button {
  display: block; width: 100%;
  background: var(--cta); color: white;
  font-size: 1.15rem; font-weight: 700;
  padding: 18px 24px; border-radius: 10px;
  border: none; cursor: pointer; text-decoration: none; text-align: center;
  transition: all 0.2s;
  box-shadow: 0 4px 16px var(--cta-glow);
  letter-spacing: -0.01em;
}
.cta-button:hover {
  background: var(--cta-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px var(--cta-glow);
}
.cta-block .trust-row {
  display: flex; justify-content: center; gap: 20px;
  margin-top: 16px; font-size: 0.78rem; color: var(--text-light);
}
.cta-block .trust-row span { display: flex; align-items: center; gap: 4px; }

/* ── PROBLEM AGITATION ── */
.problem { padding: 90px 0 70px; }
.problem .intro { text-align: center; max-width: 560px; margin: 0 auto 48px; }
.problem .intro h2 { font-size: 2rem; margin-bottom: 14px; }
.problem .intro p { color: var(--text-mid); font-size: 1.05rem; }
.problem-list { list-style: none; }
.problem-list li {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 28px;
  margin-bottom: 14px; display: flex; align-items: flex-start;
  gap: 16px; transition: box-shadow 0.2s;
}
.problem-list li:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.problem-list .emoji { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.problem-list strong { display: block; margin-bottom: 2px; font-size: 0.98rem; }
.problem-list p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; }

/* ── COST CALCULATOR ── */
.cost-section {
  padding: 70px 0; background: white;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  text-align: center;
}
.cost-section h2 { font-size: 1.8rem; margin-bottom: 12px; }
.cost-section .lead { color: var(--text-mid); margin-bottom: 36px; font-size: 1rem; }
.cost-compare {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 20px; align-items: center;
  max-width: 540px; margin: 0 auto 36px;
}
.cost-box { background: var(--cream); border-radius: var(--radius); padding: 28px 20px; }
.cost-box.bad { border: 2px solid #E8D5D5; }
.cost-box.good { border: 2px solid var(--sage); position: relative; }
.cost-box.good::before {
  content: 'BEST VALUE'; position: absolute;
  top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--sage); color: white;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
  padding: 3px 10px; border-radius: 4px;
}
.cost-box .label {
  font-size: 0.8rem; color: var(--text-light);
  text-transform: uppercase; letter-spacing: 0.06em;
  font-weight: 600; margin-bottom: 8px;
}
.cost-box .amount { font-size: 2rem; font-weight: 800; color: var(--charcoal); }
.cost-box.bad .amount { color: var(--red); }
.cost-box .detail { font-size: 0.82rem; color: var(--text-light); margin-top: 4px; }
.cost-vs { font-weight: 800; color: var(--text-light); font-size: 0.9rem; }
.cost-section .kicker {
  font-size: 1.1rem; font-weight: 600; color: var(--text);
  max-width: 440px; margin: 0 auto;
}

/* ── WHAT'S INSIDE ── */
.inside { padding: 80px 0; }
.inside h2 { text-align: center; font-size: 2rem; margin-bottom: 12px; }
.inside .lead { text-align: center; color: var(--text-mid); margin-bottom: 44px; }
.inside-items { list-style: none; }
.inside-items li { display: flex; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--border); }
.inside-items li:last-child { border-bottom: none; }
.inside-items .num {
  flex-shrink: 0; width: 32px; height: 32px;
  background: var(--sage); color: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; margin-top: 2px;
}
.inside-items h3 { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.inside-items p { font-size: 0.9rem; color: var(--text-mid); }

/* ── AUTHORITY / CREDIBILITY ── */
.authority { padding: 80px 0; background: var(--sage-dark); color: white; }
.authority-inner {
  display: flex; gap: 48px; align-items: flex-start;
}
.authority-badge {
  flex-shrink: 0; text-align: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px; padding: 32px 24px;
  min-width: 160px;
}
.badge-icon {
  width: 72px; height: 72px; margin: 0 auto 16px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
}
.badge-years {
  display: block; font-size: 1.3rem; font-weight: 800;
  color: white; line-height: 1.2; margin-bottom: 4px;
}
.badge-label {
  display: block; font-size: 0.78rem; color: rgba(255,255,255,0.6);
  text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600;
}
.authority-text h2 {
  color: white; font-size: 1.8rem; margin-bottom: 18px;
}
.authority-text > p {
  font-size: 1rem; line-height: 1.75;
  color: rgba(255,255,255,0.85); margin-bottom: 24px;
}
.authority-points {
  list-style: none; margin-bottom: 28px;
}
.authority-points li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.94rem; line-height: 1.6;
  color: rgba(255,255,255,0.88); margin-bottom: 12px;
}
.authority-points .auth-check {
  flex-shrink: 0; width: 24px; height: 24px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  font-size: 0.75rem; color: #8FC795;
  font-weight: 700; margin-top: 2px;
}
.authority-quote {
  font-style: italic; font-size: 1rem;
  line-height: 1.7; color: rgba(255,255,255,0.75);
  border-left: 3px solid rgba(255,255,255,0.25);
  padding-left: 20px; margin-top: 8px;
}

/* ── OBJECTION HANDLING ── */
.objections { padding: 80px 0; }
.objections h2 { text-align: center; font-size: 1.8rem; margin-bottom: 40px; }
.obj-item { max-width: 600px; margin: 0 auto; padding: 22px 0; border-bottom: 1px solid var(--border); }
.obj-item:first-of-type { border-top: 1px solid var(--border); }
.obj-item .objection {
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1rem;
  margin-bottom: 8px; color: var(--charcoal); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
}
.obj-item .objection .toggle { font-size: 1.2rem; color: var(--text-light); transition: transform 0.2s; }
.obj-item.open .objection .toggle { transform: rotate(45deg); }
.obj-item .response {
  font-size: 0.92rem; color: var(--text-mid); line-height: 1.7;
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
}
.obj-item.open .response { max-height: 300px; }

/* ── MID CTA ── */
.mid-cta {
  padding: 60px 0; text-align: center;
  background: white; border-bottom: 1px solid var(--border);
}
.mid-cta h2 { font-size: 1.6rem; margin-bottom: 20px; }
.mid-cta-inner { max-width: 380px; margin: 0 auto; }

/* ── FINAL CTA ── */
.final-cta {
  padding: 100px 0 120px; text-align: center;
  background: linear-gradient(180deg, var(--cream) 0%, #F2EDE8 100%);
}
.final-cta .urgency {
  display: inline-block; background: var(--red); color: white;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 6px 16px;
  border-radius: 50px; margin-bottom: 24px;
}
.final-cta h2 { font-size: 2.2rem; margin-bottom: 14px; }
.final-cta .sub {
  color: var(--text-mid); font-size: 1.05rem;
  max-width: 460px; margin: 0 auto 36px;
}
.final-cta .cta-block { margin-bottom: 32px; }
.final-cta .risk-reversal {
  max-width: 480px; margin: 0 auto;
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 28px; text-align: left;
}
.final-cta .risk-reversal h3 {
  font-family: 'Inter', sans-serif; font-size: 0.95rem;
  font-weight: 700; margin-bottom: 8px;
  display: flex; align-items: center; gap: 8px;
}
.final-cta .risk-reversal p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; }

/* ── URGENCY TIMER ── */
.urgency-timer {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--red);
  font-weight: 600;
  margin-top: 8px;
  min-height: 1.2em;
}

/* ── FOOTER ── */
footer {
  padding: 36px 0; text-align: center;
  font-size: 0.82rem; color: var(--text-light);
  border-top: 1px solid var(--border);
}
footer .footer-links {
  display: flex; justify-content: center; gap: 20px;
  flex-wrap: wrap; margin-top: 10px;
}
footer .footer-links a {
  color: var(--text-light); text-decoration: none;
  transition: color 0.2s; font-size: 0.78rem;
}
footer .footer-links a:hover { color: var(--sage-dark); }

footer .footer-ai-disclosure {
  margin-top: 14px; font-size: 0.72rem; color: var(--text-light);
  opacity: 0.7; max-width: 500px; margin-left: auto; margin-right: auto;
  line-height: 1.5;
}
footer .footer-ai-disclosure a { color: var(--text-light); text-decoration: underline; }

/* ══════════════════════════════════════════════
   COOKIE CONSENT BANNER
   ══════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 300;
  background: white;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  padding: 18px 24px;
  display: none;
  animation: slideUp 0.4s ease;
}
@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.cookie-banner.show { display: block; }
.cookie-banner .cookie-inner {
  max-width: 760px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
}
.cookie-banner .cookie-text { font-size: 0.85rem; color: var(--text-mid); line-height: 1.5; }
.cookie-banner .cookie-text a { color: var(--sage-dark); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  padding: 8px 20px; border-radius: 8px;
  font-size: 0.82rem; font-weight: 600;
  cursor: pointer; border: none; transition: all 0.2s;
}
.cookie-btn.accept { background: var(--sage); color: white; }
.cookie-btn.accept:hover { background: var(--sage-dark); }
.cookie-btn.decline { background: transparent; color: var(--text-light); border: 1px solid var(--border); }
.cookie-btn.decline:hover { background: var(--cream); }

/* ══════════════════════════════════════════════
   EXIT-INTENT POPUP
   ══════════════════════════════════════════════ */
.exit-overlay {
  position: fixed; inset: 0;
  z-index: 400;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center; justify-content: center;
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.exit-overlay.show { display: flex; }
.exit-modal {
  background: white; border-radius: 16px;
  padding: 48px 40px; max-width: 440px; width: 90%;
  text-align: center; position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  animation: scaleIn 0.3s ease;
}
@keyframes scaleIn { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.exit-modal .exit-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; font-size: 1.5rem;
  color: var(--text-light); cursor: pointer; line-height: 1;
}
.exit-modal h2 { font-size: 1.6rem; margin-bottom: 12px; }
.exit-modal p { color: var(--text-mid); font-size: 0.95rem; margin-bottom: 24px; line-height: 1.6; }
.exit-modal .cta-button { font-size: 1rem; padding: 16px 24px; }
.exit-modal .exit-dismiss {
  display: block; margin-top: 14px;
  font-size: 0.82rem; color: var(--text-light);
  cursor: pointer; background: none; border: none;
  text-decoration: underline;
}

/* ══════════════════════════════════════════════
   SOCIAL PROOF TOAST
   ══════════════════════════════════════════════ */
.social-toast {
  position: fixed;
  bottom: 24px; left: 24px;
  z-index: 150;
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  font-size: 0.88rem; color: var(--text);
  display: none;
  animation: toastIn 0.4s ease;
  max-width: 300px;
}
@keyframes toastIn {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.social-toast.show { display: block; }
.social-toast .toast-icon { margin-right: 8px; }

/* ══════════════════════════════════════════════
   LEGAL PAGE
   ══════════════════════════════════════════════ */
.legal-hero {
  padding: 120px 0 40px;
  text-align: center;
  background: linear-gradient(180deg, var(--warm-white) 0%, var(--cream) 100%);
}
.legal-hero h1 { font-size: 2.2rem; margin-bottom: 10px; }
.legal-hero p { color: var(--text-light); font-size: 0.92rem; }
.legal-nav {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  background: white;
  position: sticky; top: 52px; z-index: 50;
}
.legal-nav ul {
  list-style: none; display: flex;
  justify-content: center; flex-wrap: wrap; gap: 8px;
}
.legal-nav a {
  display: inline-block; padding: 6px 14px;
  border-radius: 6px; font-size: 0.82rem;
  color: var(--text-mid); text-decoration: none;
  background: var(--cream); border: 1px solid var(--border);
  font-weight: 500; transition: all 0.2s;
}
.legal-nav a:hover { background: var(--sage); color: white; border-color: var(--sage); }
.legal-content { padding: 60px 0 80px; }
.legal-section { margin-bottom: 56px; scroll-margin-top: 120px; }
.legal-section h2 {
  font-size: 1.5rem; margin-bottom: 20px;
  padding-bottom: 12px; border-bottom: 2px solid var(--sage);
  display: inline-block;
}
.legal-section h3 {
  font-family: 'Inter', sans-serif; font-size: 1rem;
  font-weight: 700; margin: 24px 0 8px;
}
.legal-section p, .legal-section li {
  font-size: 0.92rem; color: var(--text-mid); line-height: 1.8;
  margin-bottom: 12px;
}
.legal-section ul {
  margin-left: 20px; margin-bottom: 16px;
}
.legal-section strong { color: var(--text); }

/* ══════════════════════════════════════════════
   THANK YOU PAGE
   ══════════════════════════════════════════════ */
.thankyou-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: linear-gradient(180deg, var(--warm-white) 0%, var(--cream) 100%);
}
.thankyou-hero .check-icon {
  width: 80px; height: 80px;
  background: var(--sage); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
}
.thankyou-hero .check-icon svg { width: 36px; height: 36px; }
.thankyou-hero h1 { font-size: 2.4rem; margin-bottom: 14px; }
.thankyou-hero p { font-size: 1.1rem; color: var(--text-mid); max-width: 480px; margin: 0 auto; }
.thankyou-steps {
  padding: 60px 0; background: white;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.thankyou-steps h2 { text-align: center; font-size: 1.6rem; margin-bottom: 36px; }
.step-list { list-style: none; max-width: 500px; margin: 0 auto; }
.step-list li {
  display: flex; gap: 16px; padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.step-list li:last-child { border-bottom: none; }
.step-list .step-num {
  flex-shrink: 0; width: 32px; height: 32px;
  background: var(--sage); color: white;
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem;
}
.step-list h3 { font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.step-list p { font-size: 0.88rem; color: var(--text-mid); }
.thankyou-share { padding: 60px 0; text-align: center; }
.thankyou-share h2 { font-size: 1.4rem; margin-bottom: 10px; }
.thankyou-share p { color: var(--text-mid); font-size: 0.92rem; margin-bottom: 20px; }
.share-buttons { display: flex; justify-content: center; gap: 12px; }
.share-btn {
  padding: 10px 24px; border-radius: 8px;
  font-size: 0.88rem; font-weight: 600;
  text-decoration: none; transition: opacity 0.2s;
  color: white;
}
.share-btn:hover { opacity: 0.85; }
.share-btn.twitter { background: #1DA1F2; }
.share-btn.facebook { background: #4267B2; }
.share-btn.copy { background: var(--charcoal); cursor: pointer; border: none; }

/* ══════════════════════════════════════════════
   DASHBOARD
   ══════════════════════════════════════════════ */
.dash-hero {
  padding: 100px 0 30px;
  background: var(--charcoal); color: white; text-align: center;
}
.dash-hero h1 { color: white; font-size: 1.8rem; margin-bottom: 6px; }
.dash-hero p { color: rgba(255,255,255,0.5); font-size: 0.88rem; }
.dash-toolbar {
  padding: 16px 0; background: var(--charcoal);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.dash-toolbar button {
  padding: 8px 20px; margin: 0 6px;
  border-radius: 6px; border: 1px solid rgba(255,255,255,0.2);
  background: transparent; color: rgba(255,255,255,0.7);
  font-size: 0.82rem; font-weight: 600; cursor: pointer;
  transition: all 0.2s;
}
.dash-toolbar button:hover { background: rgba(255,255,255,0.1); color: white; }
.dash-toolbar button.danger { border-color: var(--red); color: var(--red); }
.dash-toolbar button.danger:hover { background: var(--red); color: white; }
.dash-body { padding: 32px 0 80px; }
.dash-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-bottom: 32px;
}
.dash-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  text-align: center;
}
.dash-card .dash-label {
  font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--text-light);
  font-weight: 600; margin-bottom: 8px;
}
.dash-card .dash-value { font-size: 2rem; font-weight: 800; color: var(--charcoal); }
.dash-card .dash-sub { font-size: 0.78rem; color: var(--text-light); margin-top: 4px; }
.dash-section {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  margin-bottom: 20px;
}
.dash-section h3 {
  font-family: 'Inter', sans-serif; font-size: 0.95rem;
  font-weight: 700; margin-bottom: 16px; color: var(--charcoal);
}
.funnel-bar {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 10px;
}
.funnel-bar .funnel-label { font-size: 0.82rem; color: var(--text-mid); min-width: 140px; }
.funnel-bar .funnel-track {
  flex: 1; height: 28px; background: var(--cream);
  border-radius: 6px; overflow: hidden; position: relative;
}
.funnel-bar .funnel-fill {
  height: 100%; background: var(--sage);
  border-radius: 6px; transition: width 0.5s ease;
  display: flex; align-items: center; justify-content: flex-end;
  padding-right: 8px;
}
.funnel-bar .funnel-fill span {
  font-size: 0.72rem; font-weight: 700; color: white;
}
.funnel-bar .funnel-count {
  font-size: 0.82rem; font-weight: 600; color: var(--charcoal);
  min-width: 40px; text-align: right;
}
.dash-table {
  width: 100%; border-collapse: collapse;
  font-size: 0.85rem;
}
.dash-table th {
  text-align: left; padding: 8px 12px;
  border-bottom: 2px solid var(--border);
  font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--text-light);
  font-weight: 600;
}
.dash-table td {
  padding: 8px 12px; border-bottom: 1px solid var(--border);
  color: var(--text-mid);
}
.dash-table tr:last-child td { border-bottom: none; }
.dash-table .mono { font-family: 'Courier New', monospace; font-size: 0.82rem; }
.event-log {
  max-height: 400px; overflow-y: auto;
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .hero { padding: 110px 0 60px; }
  .hero h1 { font-size: 1.9rem; }
  .cost-compare { grid-template-columns: 1fr; gap: 12px; }
  .cost-vs { display: none; }
  .authority-inner { flex-direction: column; align-items: center; gap: 28px; }
  .authority-badge { min-width: auto; width: 100%; max-width: 240px; }
  .cta-block { padding: 28px 20px; }
  .sticky-bar { gap: 10px; padding: 10px 16px; }
  .sticky-bar .bar-text { display: none; }
  .cookie-banner .cookie-inner { flex-direction: column; text-align: center; }
  .exit-modal { padding: 36px 24px; }
  .social-toast { left: 12px; right: 12px; bottom: 70px; max-width: none; }
  .legal-nav ul { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding: 0 10px; }
  .dash-grid { grid-template-columns: 1fr 1fr; }
  .share-buttons { flex-direction: column; }
}
