:root {
  --bg: #FAF7F2;
  --ink: #12151C;
  --accent: #FF6B2C;
  --border: #E4DED2;
  --muted: #55524A;
  --muted-2: #6B6B63;
  --muted-3: #8A857A;
  --card-tint: #FFF3EA;
  --card-tint-border: #F0D9C4;
  --dark-border: #2A2E38;
  --light-text: #EDE9DE;
  --light-muted: #B8B2A3;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }

.serif {
  font-family: 'Source Serif 4', Georgia, serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  border-radius: 999px;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  padding: 12px 24px;
  font-family: inherit;
  line-height: 1;
}
.btn-accent { background: var(--accent); color: #FFFFFF; }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-light { background: var(--bg); color: var(--ink); }
.btn:disabled { opacity: 0.6; cursor: default; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.logo .dot { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-weight: 600; font-size: 14px; color: var(--muted-2); }
.header-actions { display: flex; align-items: center; gap: 10px; }

.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  all: unset;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  font-size: 14px;
  color: var(--muted-2);
}
.nav-dropdown-toggle .chevron { transition: transform 0.15s ease; }
.nav-dropdown.open .nav-dropdown-toggle .chevron { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 14px 30px rgba(18, 21, 28, 0.12);
}
.nav-dropdown.open .nav-dropdown-menu { display: flex; }
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}
.nav-dropdown-menu a svg { flex-shrink: 0; color: var(--accent); }
.nav-dropdown-menu a:hover { background: var(--card-tint); }
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: #FFFFFF;
  cursor: pointer;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 6px 40px 18px 40px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.mobile-menu a {
  padding: 12px 0;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu.open { display: flex; }
.mobile-dropdown-toggle {
  all: unset;
  box-sizing: border-box;
  width: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
}
.mobile-dropdown-toggle .chevron { flex-shrink: 0; transition: transform 0.15s ease; }
.mobile-dropdown.open .mobile-dropdown-toggle .chevron { transform: rotate(180deg); }
.mobile-dropdown-menu { display: none; flex-direction: column; padding-left: 14px; }
.mobile-dropdown.open .mobile-dropdown-menu { display: flex; }
.mobile-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-weight: 500;
  font-size: 14px;
  color: var(--muted-2);
  border-bottom: 1px solid var(--border);
}
.mobile-dropdown-menu a svg { flex-shrink: 0; color: var(--accent); }
.mobile-dropdown-menu a:last-child { border-bottom: none; }

/* ---------- hero ---------- */
.hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 110px 40px 90px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-3);
  background: #FFFFFF;
}
.hero h1 {
  margin: 0;
  font-weight: 700;
  font-size: 54px;
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.hero p {
  margin: 0;
  font-style: italic;
  font-size: 19px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 600px;
}

/* ---------- products showcase ---------- */
.products-showcase { padding: 72px 40px 80px 40px; background: #FFFFFF; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.products-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 20px; }
.product-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #FFFFFF;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.product-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 14px 30px rgba(18, 21, 28, 0.08); }
.product-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--card-tint);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card-icon svg { color: var(--accent); }
.product-card h3 { margin: 0; font-size: 16px; font-weight: 700; }
.product-card p { margin: 0; font-size: 13px; line-height: 1.5; color: var(--muted-2); flex-grow: 1; }
.product-card-arrow { display: flex; align-items: center; gap: 5px; font-size: 12.5px; font-weight: 700; color: var(--accent); }

/* ---------- pricing ---------- */
.pricing {
  padding: 72px 40px 96px 40px;
  background: #FFFFFF;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-head { text-align: center; margin-bottom: 48px; }
.section-eyebrow { font-weight: 600; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-3); }
.section-head h2 { margin: 10px 0 0 0; font-weight: 700; font-size: 32px; letter-spacing: -0.01em; }

.pricing-row { display: flex; gap: 22px; align-items: stretch; max-width: 1180px; margin: 0 auto; }
.pricing-row-two { max-width: 900px; gap: 28px; }
.plan-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  padding: 28px 24px;
  background: #FFFFFF;
  border: 1px solid var(--border);
}
.plan-card.plan-growth {
  position: relative;
  background: var(--card-tint);
  border: 1.5px solid var(--accent);
}
.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.plan-name { font-weight: 700; font-size: 19px; }
.plan-quote { font-style: italic; font-size: 13px; line-height: 1.4; color: var(--muted-2); margin: 7px 0 16px 0; }
.plan-price { display: flex; align-items: baseline; gap: 3px; margin-bottom: 8px; }
.plan-price .amount { font-weight: 700; font-size: 32px; }
.plan-price .period { font-style: italic; font-size: 14px; color: var(--muted-2); }
.plan-blurb { margin: 0 0 18px 0; font-style: italic; font-size: 13px; line-height: 1.5; color: var(--muted-2); }
.plan-divider { height: 1px; background: var(--border); margin-bottom: 18px; }
.plan-growth .plan-divider { background: var(--card-tint-border); }
.plan-features { display: flex; flex-direction: column; gap: 12px; flex-grow: 1; }
.plan-features .group-label { font-weight: 700; font-size: 11.5px; letter-spacing: 0.04em; margin-top: 4px; }
.plan-features .group-items { display: flex; flex-direction: column; gap: 10px; margin-top: -6px; }
.feature-item { display: flex; align-items: flex-start; gap: 8px; }
.feature-item svg { flex-shrink: 0; margin-top: 3px; }
.feature-item span { font-style: normal; font-size: 13px; line-height: 1.42; color: #2C2C28; }
.plan-growth .feature-item span { font-size: 12.5px; }
.plan-card .btn { margin-top: 22px; width: 100%; }
.pricing-note { margin: 34px auto 0 auto; text-align: center; font-style: italic; font-size: 13px; color: var(--muted-2); max-width: 1180px; }

/* ---------- FAQ ---------- */
.faq { padding: 90px 40px 100px 40px; }
.faq-list { max-width: 740px; margin: 0 auto; display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  all: unset;
  box-sizing: border-box;
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
}
.faq-question span.q-text { font-weight: 600; font-size: 16px; color: var(--ink); }
.faq-chevron { flex-shrink: 0; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; transition: transform 0.2s ease; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  margin: 0 0 22px 0;
  padding-right: 38px;
  font-style: italic;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
  display: none;
}
.faq-item.open .faq-answer { display: block; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: var(--bg); padding: 52px 40px 40px 40px; }
.footer-top { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 17px; color: var(--bg); }
.footer-links { display: flex; align-items: center; gap: 28px; font-size: 13px; }
.footer-links a { color: var(--light-muted); }
.footer-note { max-width: 1200px; margin: 20px auto 0 auto; font-style: italic; font-size: 12.5px; color: var(--muted-3); }

/* ---------- contact page ---------- */
.contact-wrap { max-width: 620px; margin: 0 auto; padding: 70px 40px 110px 40px; }
.contact-head { text-align: center; margin-bottom: 40px; }
.contact-head h1 { margin: 10px 0 0 0; font-weight: 700; font-size: 34px; letter-spacing: -0.01em; }
.contact-head p { margin: 12px 0 0 0; font-style: italic; font-size: 15px; color: var(--muted); }

.plan-picker { display: flex; gap: 10px; margin-bottom: 30px; }
.plan-option { flex: 1; position: relative; }
.plan-radio { position: absolute; opacity: 0; width: 1px; height: 1px; }
.plan-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 8px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  text-align: center;
  background: #FFFFFF;
}
.plan-pill .name { font-weight: 700; font-size: 13px; }
.plan-pill .price { font-style: italic; font-size: 12px; color: var(--muted-2); }
.plan-radio:checked + .plan-pill { border-color: var(--accent); background: var(--card-tint); }
.plan-radio:focus-visible + .plan-pill { outline: 2px solid var(--accent); outline-offset: 2px; }

.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field label { font-weight: 600; font-size: 13px; }
.field .hint { font-style: italic; font-size: 12px; color: var(--muted-3); }
.field input {
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: #FFFFFF;
  color: var(--ink);
}
.field input:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent); }

.form-error {
  font-size: 13px;
  color: #B3261E;
  background: #FCEAE8;
  border: 1px solid #F0C6C2;
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 18px;
}

#submit-btn { width: 100%; padding: 15px 24px; font-size: 15px; margin-top: 6px; }

.hp-field { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }

.consent-field { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 16px; }
.consent-field input[type="checkbox"] { flex-shrink: 0; width: 17px; height: 17px; margin-top: 2px; accent-color: var(--accent); cursor: pointer; }
.consent-field label { font-size: 12.5px; line-height: 1.5; color: var(--muted-2); cursor: pointer; font-weight: 500; }
.consent-field label a { color: var(--accent); font-weight: 600; }
.consent-field .consent-fine-print { display: block; margin-top: 4px; font-size: 11px; color: var(--muted-3); font-style: italic; }

.form-privacy { margin: 12px 0 0 0; text-align: center; font-size: 12px; line-height: 1.5; color: var(--muted-3); }

/* ---------- splash modal ---------- */
.splash-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18, 21, 28, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 100;
}
.splash-overlay[hidden] { display: none; }
.splash-card {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 40px 32px;
  max-width: 380px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.splash-icon {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: var(--card-tint);
  display: flex;
  align-items: center;
  justify-content: center;
}
.splash-card h3 { margin: 0; font-weight: 700; font-size: 21px; }
.splash-card p { margin: 0; font-style: italic; font-size: 14.5px; color: var(--muted); line-height: 1.5; }
.splash-card .btn { margin-top: 8px; padding: 12px 32px; }

/* ---------- legal pages ---------- */
.legal-content { max-width: 720px; margin: 0 auto; padding: 20px 40px 90px 40px; }
.legal-content .legal-updated { margin: 0 0 26px 0; font-size: 12.5px; font-style: italic; color: var(--muted-3); }
.legal-content h2 { margin: 34px 0 12px 0; font-size: 18px; font-weight: 700; letter-spacing: -0.01em; }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p { margin: 0 0 14px 0; font-size: 14px; line-height: 1.7; color: var(--muted-2); }
.legal-content ul { margin: 0 0 14px 0; padding-left: 20px; }
.legal-content li { font-size: 14px; line-height: 1.7; color: var(--muted-2); margin-bottom: 6px; }
.legal-content a { color: var(--accent); font-weight: 600; }

/* ---------- feature pages ---------- */
.feature-page-head { max-width: 760px; margin: 0 auto; padding: 56px 40px 8px 40px; text-align: center; }
.feature-page-head h1 { margin: 10px 0 0 0; font-weight: 700; font-size: 30px; letter-spacing: -0.01em; }
.feature-section { padding: 80px 40px; }
.feature-section.alt { background: #FFFFFF; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.demo-placeholder {
  max-width: 760px;
  margin: 0 auto;
  border: 1.5px dashed var(--card-tint-border);
  border-radius: 16px;
  padding: 56px 24px;
  text-align: center;
  background: var(--card-tint);
}
.demo-placeholder .play-icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px auto;
}
.demo-placeholder h3 { margin: 0 0 8px 0; font-size: 17px; font-weight: 700; }
.demo-placeholder p { margin: 0; font-size: 13.5px; color: var(--muted-2); font-style: italic; }

.feature-grid { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.feature-grid-three { grid-template-columns: repeat(3, 1fr); }
.feature-block { display: flex; gap: 16px; align-items: flex-start; padding: 26px; border: 1px solid var(--border); border-radius: 14px; background: #FFFFFF; }
.feature-block .icon-wrap {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--card-tint);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-block .icon-wrap svg { color: var(--accent); }
.feature-block h3 { margin: 0 0 6px 0; font-size: 16px; font-weight: 700; }
.feature-block p { margin: 0; font-size: 13.5px; line-height: 1.55; color: var(--muted-2); }

.funnel-flow { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; }
.funnel-step { display: flex; gap: 18px; align-items: flex-start; }
.funnel-step .step-num {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.funnel-step h3 { margin: 0 0 4px 0; font-size: 15.5px; font-weight: 700; }
.funnel-step p { margin: 0; font-size: 13.5px; line-height: 1.5; color: var(--muted-2); }
.funnel-arrow { display: flex; justify-content: center; padding: 10px 0; color: var(--muted-3); }
.funnel-fork { display: flex; gap: 20px; }
.funnel-branch { flex: 1; border-radius: 14px; padding: 22px; border: 1.5px solid var(--border); background: #FFFFFF; }
.funnel-branch-good { border-color: var(--accent); background: var(--card-tint); }
.funnel-branch-caution { border-color: var(--dark-border); background: var(--ink); }
.funnel-branch-parallel { border-color: var(--accent); background: var(--card-tint); }
.funnel-branch-parallel .branch-icon { background: var(--accent); }
.funnel-branch-parallel .branch-label { color: var(--accent); }
.funnel-branch .branch-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.funnel-branch-good .branch-icon { background: var(--accent); }
.funnel-branch-caution .branch-icon { background: var(--dark-border); }
.funnel-branch .branch-label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-3); margin-bottom: 6px; }
.funnel-branch-good .branch-label { color: var(--accent); }
.funnel-branch-caution .branch-label { color: var(--light-muted); }
.funnel-branch h3 { margin: 0 0 6px 0; font-size: 15px; font-weight: 700; }
.funnel-branch p { margin: 0; font-size: 13px; line-height: 1.5; color: var(--muted-2); }
.funnel-branch-caution h3, .funnel-branch-caution p { color: var(--light-text); }

.process-steps { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; }
.process-step { display: flex; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--border); }
.process-step:last-child { border-bottom: none; }
.process-step .step-num {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.process-step h3 { margin: 0 0 4px 0; font-size: 15.5px; font-weight: 700; }
.process-step p { margin: 0; font-size: 13.5px; line-height: 1.5; color: var(--muted-2); }

.values-row { max-width: 1000px; margin: 0 auto; display: flex; gap: 22px; }
.value-pill { flex: 1; text-align: center; padding: 26px 18px; border: 1px solid var(--border); border-radius: 14px; background: #FFFFFF; }
.value-pill .icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--card-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.value-pill .icon-wrap svg { color: var(--accent); }
.value-pill h3 { margin: 14px 0 6px 0; font-size: 15px; font-weight: 700; }
.value-pill p { margin: 0; font-size: 13px; line-height: 1.5; color: var(--muted-2); }

.upsell-note { max-width: 720px; margin: 44px auto 0 auto; text-align: center; padding: 22px 26px; border: 1px solid var(--card-tint-border); background: var(--card-tint); border-radius: 14px; font-size: 13.5px; line-height: 1.6; }
.upsell-note a { font-weight: 700; color: var(--accent); }

.explainer { max-width: 680px; margin: 0 auto; text-align: center; }
.explainer h2 { margin: 0 0 18px 0; font-size: 26px; font-weight: 700; letter-spacing: -0.01em; }
.explainer p { margin: 0 0 16px 0; font-size: 15px; line-height: 1.7; color: var(--muted-2); }
.explainer p:last-of-type { margin-bottom: 0; }

.serp-mock { max-width: 460px; margin: 32px auto 0 auto; padding: 22px 24px; border: 1px solid var(--border); border-radius: 14px; background: #FFFFFF; text-align: left; }
.serp-row { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.serp-row:last-of-type { border-bottom: none; }
.serp-badge { flex-shrink: 0; background: var(--accent); color: #FFFFFF; font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 999px; white-space: nowrap; }
.serp-bar { height: 10px; border-radius: 999px; background: var(--border); }
.serp-row-top .serp-bar { background: var(--accent); opacity: 0.85; }
.serp-row-faded { opacity: 0.35; }
.serp-fade-label { margin-top: 14px; text-align: center; font-size: 11.5px; font-style: italic; color: var(--muted-3); }

.stat-row { max-width: 1000px; margin: 0 auto; display: flex; gap: 22px; }
.stat-card { flex: 1; text-align: center; padding: 30px 22px; border: 1px solid var(--border); border-radius: 14px; background: #FFFFFF; }
.stat-card .stat-number { font-weight: 700; font-size: 40px; color: var(--accent); letter-spacing: -0.01em; line-height: 1; }
.stat-card p { margin: 10px 0 0 0; font-size: 13px; line-height: 1.5; color: var(--muted-2); }
.stat-sources { max-width: 1000px; margin: 22px auto 0 auto; text-align: center; font-size: 11.5px; color: var(--muted-3); }

.final-cta { text-align: center; padding: 90px 40px; }
.final-cta h2 { margin: 0 0 10px 0; font-size: 30px; font-weight: 700; letter-spacing: -0.01em; }
.final-cta p.serif { margin: 0 0 26px 0; font-size: 15px; color: var(--muted-2); }

/* ---------- responsive ---------- */
@media (max-width: 880px) {
  .pricing-row { flex-direction: column; }
  .hero h1 { font-size: 38px; }
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .plan-picker { flex-direction: column; }
  .feature-grid { grid-template-columns: 1fr; }
  .values-row { flex-direction: column; }
  .funnel-fork { flex-direction: column; }
  .stat-row { flex-direction: column; }
}
