/* ─────────────────────────────────────────────────────────────────────────
   styles-minimal.css — editorial cream + orange theme
   Distinct moves vs typical SaaS:
   - Sharp corners (4-6px), no pill buttons
   - Handwritten Caveat circle scribble around headline word (not underline)
   - Mono-tagged section indices in side margins
   - Callouts as stacked side-rail (not floating over device)
   - Stats as horizontal monospace ticker with bracket marks
   - Numbered chip style with bracket marks
   ───────────────────────────────────────────────────────────────────────── */

:root {
  --cream:        oklch(0.985 0.005 80);
  --cream-soft:   oklch(0.97  0.008 75);
  --cream-line:   oklch(0.90  0.010 75);
  --paper:        oklch(0.995 0.003 80);
  --ink:          oklch(0.16  0.01 60);
  --ink-soft:     oklch(0.36  0.01 60);
  --muted:        oklch(0.54  0.01 60);
  --line:         oklch(0.88  0.008 70);

  --orange:       oklch(0.62 0.18 50);
  --orange-deep:  oklch(0.52 0.20 48);
  --orange-soft:  oklch(0.95 0.05 55);
  --orange-tint:  oklch(0.97 0.03 55);

  --teal:         oklch(0.48 0.08 200);   /* secondary accent — orange's complement */
  --positive:     oklch(0.55 0.14 155);

  --r-xs: 3px;
  --r-sm: 5px;
  --r-md: 7px;
  --r-lg: 10px;
  --r-xl: 14px;

  --shadow-card: 0 1px 0 var(--cream-line), 0 4px 14px -6px oklch(0 0 0 / 0.06);
  --shadow-pop:  0 2px 0 var(--ink), 0 12px 32px -10px oklch(0 0 0 / 0.18);

  --primary:      var(--orange);
  --primary-deep: var(--orange-deep);
  --primary-soft: var(--orange-soft);
  --accent:       var(--teal);
  --surface:      var(--paper);
  --surface-warm: var(--cream-soft);
}

html, body {
  background: var(--cream);
  color: var(--ink);
}

/* ── Nav: thin, square corners, mono ─────────────────────────────────── */
.nav {
  background: oklch(from var(--paper) l c h / 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--cream-line);
  box-shadow: 0 1px 0 var(--cream-line);
  transition: box-shadow .25s ease, background .25s ease;
}
.nav.scrolled {
  background: var(--paper);
  border-bottom-color: transparent;
  box-shadow:
    0 1px 0 var(--orange),
    0 8px 24px -8px oklch(0 0 0 / 0.12);
}
.nav-inner { height: 78px; gap: 36px; }
.nav-brand { color: var(--ink); }
.nav-links a {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  position: relative;
}
.nav-links a:hover { color: var(--orange-deep); }
.nav-links a::before {
  content: "·";
  margin-right: 6px;
  color: var(--orange);
  font-weight: 700;
  opacity: 0;
  transition: opacity .15s;
}
.nav-links a:hover::before { opacity: 1; }
.nav-cta .btn-ghost,
.nav-cta .btn-secondary { display: none; }
.nav-cta .btn-primary {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--r-sm);
  padding: 12px 20px;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid var(--ink);
  transition: transform .15s, box-shadow .15s;
}
.nav-cta .btn-primary:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-1px);
}
.nav-cta .btn-primary .arrow { color: inherit; }

/* ── Hero: editorial 2-col with side rail ─────────────────────────────── */
.hero {
  background: var(--cream);
  padding: 56px 0 64px;
  border-bottom: 1px solid var(--cream-line);
  position: relative;
}
.hero::before {
  /* vertical line + index ticker on left */
  content: "";
  position: absolute;
  top: 56px;
  bottom: 64px;
  left: 36px;
  width: 1px;
  background: var(--cream-line);
  z-index: 1;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: center;
  min-height: auto;
}
.hero-copy {
  background: transparent;
  color: var(--ink);
  padding: 0;
  order: 0;
  max-width: 600px;
  position: relative;
}
.hero-copy::before,
.hero-copy::after { display: none; }

/* Section index in upper left, like a print book chapter */
.hero-copy {
  position: relative;
}
.hero-copy > .chip:first-child::before {
  content: "[ §01 — INTRO ]";
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 18px;
}
.hero-copy .chip,
.hero-meta-row .chip {
  background: transparent;
  color: var(--orange-deep);
  border: 1.5px solid var(--orange);
  border-radius: var(--r-sm);
  font-weight: 600;
  padding: 5px 10px 5px 8px;
  font-size: 11px;
  letter-spacing: 0.06em;
  font-family: var(--font-mono);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-copy .chip .dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 0;
  transform: rotate(45deg);
}

.hero h1 {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 4.8vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  margin-top: 22px;
  text-wrap: balance;
}
.hero h1 em,
.hero h1 span[style] {
  color: var(--ink) !important;
  font-style: italic !important;
  font-weight: 800;
  position: relative;
  display: inline-block;
  z-index: 1;
}
/* Hand-drawn circle scribble around the emphasized word */
.hero h1 em::before,
.hero h1 span[style]::before {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  top: -8%;
  bottom: -8%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 80' preserveAspectRatio='none'><path d='M 18 38 C 12 18, 60 8, 110 9 C 162 10, 192 22, 188 42 C 184 62, 138 72, 82 71 C 36 70, 10 60, 14 42 C 17 27, 50 18, 96 16' fill='none' stroke='%23d97757' stroke-width='2.2' stroke-linecap='round'/></svg>");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: -1;
  transform: rotate(-1.5deg);
}

.hero-sub {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.55;
  margin-top: 28px;
  max-width: 520px;
}
.hero-fine {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11.5px;
  margin-top: 16px;
  letter-spacing: 0.02em;
}
.hero-fine .dot {
  width: 4px; height: 4px;
  background: var(--orange);
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
  vertical-align: middle;
}

/* CTAs: square-ish, ink-on-cream primary, distinct from competitor pill style */
.hero-meta-row { gap: 12px; margin-top: 28px; }
.btn-primary {
  background: var(--ink);
  color: var(--cream);
  border: 2px solid var(--ink);
  border-radius: var(--r-sm);
  padding: 14px 22px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  box-shadow: 4px 4px 0 0 var(--orange);
}
.btn-primary:hover {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 4px 4px 0 0 var(--ink);
  transform: translate(-1px, -1px);
}
.btn-secondary {
  background: var(--paper);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: var(--r-sm);
  padding: 12px 22px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform .15s ease, background .15s ease;
}
.btn-secondary:hover {
  background: var(--cream-soft);
  transform: translate(-1px, -1px);
}

/* Hero visual area */
.hero-visual {
  background: transparent;
  padding: 0;
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
.hero-backdrop {
  position: absolute;
  inset: 4% 4% 4% 4%;
  z-index: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(45deg, var(--orange-tint) 0 1px, transparent 1px 14px);
  border-radius: var(--r-md);
  border: 1px solid var(--cream-line);
}
.hero-visual .dash { display: none; }
.hero-visual::before,
.hero-visual::after { display: none; }
.hero-visual-devices { aspect-ratio: auto; }
.hero-visual .hero-devices {
  position: relative;
  z-index: 2;
  width: 88%;
  max-width: 640px;
  margin: 0;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 32px oklch(0 0 0 / 0.14));
}

/* Side-rail callouts: vertical stack with bracket marks, NOT floating randomly */
.hero-callout {
  position: absolute;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 3px 3px 0 0 var(--ink);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  z-index: 4;
  white-space: nowrap;
}
.hero-callout::before {
  content: "[";
  position: absolute;
  left: -14px;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--orange);
  font-size: 18px;
}
.hero-callout::after {
  content: "]";
  position: absolute;
  right: -14px;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--orange);
  font-size: 18px;
}
.hero-callout .dot {
  width: 8px; height: 8px;
  border-radius: 0;
  transform: rotate(45deg);
  background: var(--positive);
  flex-shrink: 0;
}
.hero-callout .dot.orange { background: var(--orange); }
.hero-callout strong {
  display: block;
  color: var(--ink);
  font-weight: 700;
  font-size: 13px;
}
.hero-callout small {
  display: block;
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 500;
  margin-top: 1px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-callout-1 { top: 14%; right: -10%; transform: rotate(2deg); }
.hero-callout-2 { bottom: 18%; left: -8%; transform: rotate(-2deg); }

/* Rating: inline, no avatar card — just stars + count, distinct */
.hero-rating {
  margin-top: 28px;
  padding: 14px 0;
  border-top: 1px dashed var(--cream-line);
  display: flex;
  align-items: center;
  gap: 18px;
}
.hero-rating .avatars {
  display: flex;
  flex-direction: row;
}
.hero-rating .avatars span {
  width: 28px; height: 28px;
  border-radius: var(--r-xs);
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--paper);
  margin-left: -10px;
  transform: rotate(-3deg);
}
.hero-rating .avatars span:first-child { margin-left: 0; transform: rotate(2deg); }
.hero-rating .avatars span:nth-child(2) { background: var(--orange); transform: rotate(-1deg); }
.hero-rating .avatars span:nth-child(3) { background: var(--teal); transform: rotate(3deg); }
.hero-rating .meta { display: flex; flex-direction: column; gap: 2px; }
.hero-rating .stars {
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-family: var(--font-mono);
}
.hero-rating .stars b {
  color: var(--ink);
  margin-left: 6px;
  font-family: var(--font-display);
  font-weight: 700;
}
.hero-rating .meta small {
  color: var(--ink-soft);
  font-size: 13px;
}
.hero-rating .meta small b {
  color: var(--ink);
  font-weight: 700;
}

/* ── Phone float ──────────────────────────────────────────────────── */
.phone-float {
  position: absolute;
  bottom: 8%;
  left: 2%;
  width: 120px;
  z-index: 3;
  transform: rotate(-5deg);
}
.phone-float:hover { transform: rotate(-3deg) translateY(-4px); }
.phone {
  background: var(--ink);
  border-radius: 18px;
  padding: 5px;
  box-shadow: 0 16px 30px -8px oklch(0 0 0 / 0.3);
}

/* ── Stats strip: ticker-style with bracket marks ─────────────────── */
.stats-strip {
  background: var(--ink);
  color: var(--cream);
  padding: 28px 0;
  border-top: 0;
  border-bottom: 0;
  overflow: hidden;
  position: relative;
}
.stats-strip::before,
.stats-strip::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.stats-strip::before { left: 0; background: linear-gradient(to right, var(--ink), transparent); }
.stats-strip::after { right: 0; background: linear-gradient(to left, var(--ink), transparent); }
.stats-strip-grid {
  display: flex;
  gap: 0;
  align-items: center;
  justify-content: space-around;
  flex-wrap: nowrap;
}
.stats-strip-item {
  padding: 0 36px;
  display: flex;
  align-items: baseline;
  gap: 14px;
  border-left: none;
  position: relative;
  flex: 0 0 auto;
}
.stats-strip-item::before {
  content: "//";
  font-family: var(--font-mono);
  color: var(--orange);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.04em;
  margin-right: 4px;
}
.stats-strip-item:first-child::before { content: ""; margin: 0; }
.stats-strip-item .num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--cream);
  line-height: 1;
}
.stats-strip-item .lbl {
  font-size: 12px;
  color: oklch(from var(--cream) l c h / 0.65);
  line-height: 1.3;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  max-width: 110px;
}

/* ── Sections: cream backgrounds, no aggressive contrast ─────────── */
.section {
  background: var(--cream);
  padding: 96px 0;
  border-bottom: 1px solid var(--cream-line);
}
.section-alt { background: var(--cream-soft); }

.kicker {
  color: var(--orange-deep);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
  font-family: var(--font-mono);
}
.kicker .num { color: var(--orange); }
.kicker::before {
  content: "[";
  margin-right: 4px;
  color: var(--orange);
  font-weight: 400;
}
.kicker::after {
  content: "]";
  margin-left: 4px;
  color: var(--orange);
  font-weight: 400;
}

.display-xl,
.display-lg,
.display-md {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
}
.display-xl { font-size: clamp(40px, 5vw, 76px); font-weight: 800; letter-spacing: -0.035em; line-height: 1.0; }
.display-lg { font-size: clamp(34px, 4vw, 56px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; }
.display-md { font-size: clamp(26px, 2.8vw, 40px); font-weight: 700; letter-spacing: -0.025em; }
.display-lg em,
.display-xl em,
.display-md em {
  color: var(--orange) !important;
  font-style: italic !important;
  font-weight: 800;
}
.lede { color: var(--ink-soft); }

/* Pain section: card grid w/ bracket index */
.pain-grid {
  border: 1px solid var(--cream-line);
  background: var(--cream-line);
}
.pain-cell { background: var(--paper); }
.pain-cell:hover { background: var(--orange-tint); }
.pain-cell .num {
  color: var(--orange);
  font-family: var(--font-mono);
}
.pain-cell .num::before { content: "§"; margin-right: 2px; opacity: 0.5; }

/* Modules / benefits / cards */
.module-card,
.benefit-card,
.testimonial-card,
.objection-card,
.faq-item {
  background: var(--paper);
  border: 1.5px solid var(--cream-line);
  box-shadow: var(--shadow-card);
  border-radius: var(--r-md);
}
.module-card:hover {
  border-color: var(--ink);
  box-shadow: 3px 3px 0 0 var(--orange);
  transform: translate(-1px, -1px);
}

/* Pricing */
.pricing-card {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--r-md);
}
.pricing-card .price-big { color: var(--cream); }
.pricing-card .badge {
  background: var(--orange);
  color: var(--cream);
  border-radius: var(--r-xs);
}

/* Footer */
.footer {
  background: var(--ink);
  color: var(--cream);
  border-top: 4px solid var(--orange);
}
.footer h5 { color: var(--cream); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.footer a { color: oklch(from var(--cream) l c h / 0.7); }
.footer a:hover { color: var(--orange); }
.footer-meta { color: oklch(from var(--cream) l c h / 0.5); }

/* ── Footer: cleaner brand block + better contrast ────────────────── */
.footer {
  padding: 80px 0 32px;
}
.footer-inner {
  padding-bottom: 56px;
  border-bottom: 1px solid oklch(from var(--cream) l c h / 0.12);
}
.footer-brand .nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.footer-mark {
  width: 44px;
  height: 44px;
  background: var(--cream);
  border-radius: var(--r-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  flex-shrink: 0;
}
.footer-mark svg rect:first-child { fill: var(--ink); }
.footer-wordmark {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--cream);
  letter-spacing: -0.02em;
  line-height: 1;
}
.footer-wordmark small {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 6px;
}
.footer-brand p {
  color: oklch(from var(--cream) l c h / 0.72) !important;
  font-size: 14px;
  line-height: 1.55;
  max-width: 38ch;
}
.footer-brand .footer-url {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--orange) !important;
  margin-top: 16px;
  letter-spacing: 0.04em;
}
.footer h5 {
  color: var(--cream) !important;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer h5::before {
  content: "[ ";
  color: var(--orange);
  margin-right: 2px;
}
.footer h5::after {
  content: " ]";
  color: var(--orange);
  margin-left: 2px;
}
.footer ul li { margin-bottom: 10px; }
.footer a {
  color: oklch(from var(--cream) l c h / 0.78) !important;
  font-size: 14.5px;
  transition: color .15s ease, transform .15s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer a:hover {
  color: var(--orange) !important;
  transform: translateX(2px);
}
.footer a::before {
  content: "→";
  opacity: 0;
  transition: opacity .15s ease, transform .15s ease;
  color: var(--orange);
  font-family: var(--font-mono);
  margin-right: 0;
  margin-left: -14px;
}
.footer a:hover::before {
  opacity: 1;
  margin-left: 0;
}
.footer-meta {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: oklch(from var(--cream) l c h / 0.45) !important;
  letter-spacing: 0.04em;
}

/* ── Pain conclusion banner — match orange palette, not teal ───────── */
.pain-conclusion {
  background: var(--ink);
  color: var(--cream);
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 0 var(--orange);
  border-radius: var(--r-md);
}
.pain-conclusion .txt {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--cream);
}
.pain-conclusion .txt em {
  color: var(--orange) !important;
  font-style: italic !important;
  font-weight: 700;
}
.pain-conclusion .btn-amber,
.btn-amber {
  background: var(--orange);
  color: var(--cream);
  border: 2px solid var(--orange);
  border-radius: var(--r-sm);
  font-weight: 600;
  padding: 12px 22px;
  box-shadow: none;
  transition: background .15s, transform .15s;
}
.pain-conclusion .btn-amber:hover,
.btn-amber:hover {
  background: var(--orange-deep);
  border-color: var(--orange-deep);
  transform: translate(-1px, -1px);
}
.pain-conclusion .btn-amber .arrow,
.btn-amber .arrow { color: var(--cream); }

/* override the inline style={{color: 'var(--accent)'}} that picks up teal */
.pain-conclusion em[style] { color: var(--orange) !important; }

/* ── Pricing card: fix off-palette teal from inline styles ─────────── */
.price-card.featured {
  background: var(--ink);
  color: var(--cream);
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 0 var(--orange);
  border-radius: var(--r-md);
}
.price-card.featured .badge-included {
  background: oklch(from var(--cream) l c h / 0.08);
  color: oklch(from var(--cream) l c h / 0.7);
  border: 1px solid oklch(from var(--cream) l c h / 0.18);
  border-radius: var(--r-pill, 999px);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  padding: 5px 12px;
}
.price-card.featured .big { color: var(--cream); }
.price-card.featured .big .cur { color: oklch(from var(--cream) l c h / 0.55); }
.price-card.featured .big .per { color: oklch(from var(--cream) l c h / 0.6); }
.price-card.featured .price-fine {
  color: oklch(from var(--cream) l c h / 0.7);
}
.price-card.featured .price-fine strong {
  color: var(--orange);
}
.price-card.featured .impl {
  background: oklch(from var(--cream) l c h / 0.06) !important;
  border: 1px solid oklch(from var(--orange) l c h / 0.45) !important;
  color: oklch(from var(--cream) l c h / 0.85) !important;
  border-radius: var(--r-sm);
  position: relative;
}
.price-card.featured .impl strong,
.price-card.featured .impl strong[style] {
  color: var(--orange) !important;
}
.price-card.featured .extra {
  color: oklch(from var(--cream) l c h / 0.7);
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.02em;
}

/* CTAs inside dark pricing card — override the inline teal */
.price-card.featured .btn-primary,
.price-card.featured .btn-primary[style] {
  background: var(--orange) !important;
  color: var(--cream) !important;
  border: 2px solid var(--orange) !important;
  border-radius: var(--r-sm);
  box-shadow: 4px 4px 0 0 var(--cream);
}
.price-card.featured .btn-primary:hover,
.price-card.featured .btn-primary[style]:hover {
  background: var(--orange-deep) !important;
  border-color: var(--orange-deep) !important;
  transform: translate(-1px, -1px);
}
.price-card.featured .btn-secondary,
.price-card.featured .btn-secondary[style] {
  background: transparent !important;
  color: var(--cream) !important;
  border: 2px solid oklch(from var(--cream) l c h / 0.35) !important;
  border-radius: var(--r-sm);
}
.price-card.featured .btn-secondary:hover,
.price-card.featured .btn-secondary[style]:hover {
  background: oklch(from var(--cream) l c h / 0.06) !important;
  border-color: var(--cream) !important;
}

/* "GRÁTIS" badge on includes list — fix teal */
.price-card .v.gratis,
.row .v.gratis {
  background: var(--orange) !important;
  color: var(--cream) !important;
  border-radius: var(--r-xs);
  padding: 3px 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.price-card .v {
  color: var(--orange-deep);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}

/* ── Final CTA section: flip from full-orange to ink-on-cream with side panel ── */
.cta-final {
  background: var(--ink) !important;
  color: var(--cream) !important;
  border-radius: var(--r-md);
  padding: 80px 64px !important;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 0 var(--orange);
}
/* Editorial decorative element: large dotted pattern in bottom-right */
.cta-final::before {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 240px;
  height: 240px;
  background-image: radial-gradient(var(--orange) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  opacity: 0.4;
  pointer-events: none;
}
.cta-final::after {
  content: "[ §13 ]";
  position: absolute;
  top: 32px;
  right: 36px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: oklch(from var(--cream) l c h / 0.4);
  pointer-events: none;
}
.cta-final .kicker,
.cta-final .kicker[style] {
  color: var(--orange) !important;
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
}
.cta-final .kicker .num,
.cta-final .kicker .num[style] { color: var(--orange) !important; }
.cta-final .kicker::before,
.cta-final .kicker::after { color: var(--orange); }
.cta-final h2,
.cta-final h2[style] {
  color: var(--cream) !important;
  font-family: var(--font-display);
  font-weight: 800;
  max-width: 22ch;
  position: relative;
  z-index: 2;
}
.cta-final h2 em,
.cta-final h2 em[style] {
  color: var(--orange) !important;
  font-style: italic !important;
  font-weight: 800;
}
.cta-final .lede,
.cta-final .lede[style] {
  color: oklch(from var(--cream) l c h / 0.72) !important;
  max-width: 56ch;
  position: relative;
  z-index: 2;
}
.cta-final .cta-row {
  position: relative;
  z-index: 2;
}
/* Primary CTA inside dark final block: bright orange w/ cream shadow-block */
.cta-final .btn-primary {
  background: var(--orange) !important;
  color: var(--cream) !important;
  border: 2px solid var(--orange) !important;
  border-radius: var(--r-sm);
  box-shadow: 4px 4px 0 0 var(--cream);
  padding: 16px 28px;
  font-size: 15.5px;
}
.cta-final .btn-primary:hover {
  background: var(--orange-deep) !important;
  border-color: var(--orange-deep) !important;
  box-shadow: 4px 4px 0 0 var(--cream);
  transform: translate(-1px, -1px);
}
.cta-final .btn-secondary {
  background: transparent !important;
  color: var(--cream) !important;
  border: 2px solid oklch(from var(--cream) l c h / 0.4) !important;
  border-radius: var(--r-sm);
  padding: 14px 22px;
}
.cta-final .btn-secondary:hover {
  background: oklch(from var(--cream) l c h / 0.06) !important;
  border-color: var(--cream) !important;
  transform: translate(-1px, -1px);
}
.cta-final .hero-fine {
  color: oklch(from var(--cream) l c h / 0.6) !important;
  position: relative;
  z-index: 2;
}
.cta-final .hero-fine .dot,
.cta-final .hero-fine .dot[style] {
  background: var(--orange) !important;
}

/* Tighten responsive */
@media (max-width: 1100px) {
  .hero::before { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { min-height: 420px; }
  .hero-callout-1 { right: 0%; }
  .hero-callout-2 { left: 0%; }
  .stats-strip-grid { flex-wrap: wrap; justify-content: flex-start; gap: 16px 0; }
}
@media (max-width: 680px) {
  .phone-float { display: none; }
  .hero-callout { display: none; }
  .stats-strip-item { padding: 0 20px; }
  .stats-strip-item::before { display: none; }
}
