/* ---------- Design tokens ---------- */
:root {
  --bg: #F2EDE3;
  --bg-2: #EAE3D5;
  --paper: #FBF8F1;
  --ink: #1A1916;
  --ink-2: #2C2A26;
  --muted: #6B6457;
  --muted-2: #8E8775;
  --rule: #1A1916;
  --rule-soft: rgba(26, 25, 22, 0.14);
  --accent: #B14D2E;          /* terracotta — overridden by tweak */
  --accent-ink: #FBF8F1;
  --success: #2F5D3A;
  --warn: #8A5A12;
  --shadow-paper: 0 1px 0 rgba(26,25,22,0.04), 0 24px 60px -32px rgba(26,25,22,0.25);

  --maxw: 1180px;
  --gutter: clamp(20px, 4vw, 56px);
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 18px;

  --f-display: "Newsreader", "Times New Roman", serif;
  --f-body: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --f-mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; width: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
#root { min-width: 0; overflow-x: clip; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
a { color: inherit; }

/* ---------- Layout primitives ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); min-width: 0; }
.narrow { width: 100%; max-width: 740px; margin: 0 auto; padding: 0 var(--gutter); min-width: 0; }

.section { padding: clamp(56px, 8vw, 112px) 0; position: relative; }
.section + .section { border-top: 1px solid var(--rule-soft); }
.section.paper { background: var(--paper); }
.section.ink { background: var(--ink); color: var(--paper); }
.section.ink .rule-soft, .section.ink .hr { border-color: rgba(251,248,241,0.18); }
.section.ink .muted { color: rgba(251,248,241,0.65); }
.section.ink .eyebrow { color: rgba(251,248,241,0.55); }

/* ---------- Type ---------- */
.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.eyebrow .num { color: var(--accent); margin-right: 12px; font-weight: 600; }

.display {
  font-family: var(--f-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.04;
  text-wrap: balance;
  margin: 0;
}
.h1 { font-size: clamp(44px, 6.5vw, 84px); }
.h2 { font-size: clamp(32px, 4.5vw, 56px); }
.h3 { font-size: clamp(24px, 3vw, 36px); }
.h4 { font-size: clamp(20px, 2vw, 26px); }

.lede {
  font-family: var(--f-display);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.4;
  color: var(--ink-2);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.body-md { font-size: 17px; line-height: 1.6; }
.body-lg { font-size: 19px; line-height: 1.55; }
.muted { color: var(--muted); }
.mono { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.04em; }

.italic-serif { font-family: var(--f-display); font-style: italic; }

/* drop cap on first paragraph */
.dropcap::first-letter {
  font-family: var(--f-display);
  font-size: 4.6em;
  float: left;
  line-height: 0.86;
  padding: 6px 10px 0 0;
  color: var(--accent);
  font-weight: 400;
}

/* ---------- Rules ---------- */
.hr { border: 0; border-top: 1px solid var(--rule-soft); margin: 0; }
.hr-strong { border-top-color: var(--ink); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 16px;
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
}
.btn-primary:hover { transform: translateY(-1px); filter: brightness(1.05); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: var(--paper); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding: 10px 0;
  border-radius: 0;
  border-bottom: 1px solid var(--ink);
}
.btn-ghost:hover { color: var(--accent); border-color: var(--accent); }
.section.ink .btn-secondary { color: var(--paper); border-color: var(--paper); }
.section.ink .btn-secondary:hover { background: var(--paper); color: var(--ink); }
.section.ink .btn-ghost { color: var(--paper); border-color: var(--paper); }

.cta-microcopy {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 14px;
}
.section.ink .cta-microcopy,
.final-path.primary .cta-microcopy,
.urgency-card.dark .cta-microcopy,
.sticky-cta .cta-microcopy {
  color: rgba(255,248,235,0.95);
  font-weight: 600;
  letter-spacing: 0.08em;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--rule-soft);
  z-index: 30;
  backdrop-filter: blur(8px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--f-display);
  font-size: 20px;
  letter-spacing: -0.02em;
  color: inherit;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-logo {
  display: block;
  width: auto;
  height: 54px;
  aspect-ratio: 260 / 107;
  object-fit: contain;
}
.brand-mark {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--ink);
  position: relative;
  flex-shrink: 0;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 2px solid var(--accent);
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  text-decoration: none;
  font-size: 14px;
  color: var(--ink-2);
}
.nav-links a:hover { color: var(--accent); }
@media (max-width: 720px) {
  .nav-links { display: none; }
  .brand-logo { height: 48px; }
}

/* ---------- Sticky CTA ---------- */
.sticky-cta {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, calc(100% + 28px));
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  padding: 10px 10px 10px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 40;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 24px 60px -20px rgba(26,25,22,0.5);
  max-width: calc(100% - 32px);
  pointer-events: none;
}
.sticky-cta.show { transform: translate(-50%, 0); pointer-events: auto; }
.sticky-cta .label { font-size: 14px; }
.sticky-cta .btn { padding: 10px 18px; font-size: 14px; }
@media (max-width: 560px) {
  .sticky-cta .label { display: none; }
  .sticky-cta { padding: 8px; }
}

/* ---------- Hero ---------- */
.hero {
  padding: clamp(48px, 7vw, 96px) 0 clamp(56px, 8vw, 112px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: end;
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-grid > * { min-width: 0; }
}
.hero-meta {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.tick {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.tick .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(47,93,58,0.15);
}
.hero-h1 { margin-bottom: 28px; }
.hero-h1 .accent { color: var(--accent); font-style: italic; }
.hero-sub {
  max-width: 540px;
  color: var(--ink-2);
}
.hero-ctas {
  display: flex; gap: 16px; align-items: center; margin-top: 36px; flex-wrap: wrap;
}
.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 380px;
  min-width: 0;
}

/* placeholder image */
.placeholder {
  background-color: var(--bg-2);
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0 14px,
    rgba(26,25,22,0.05) 14px 15px
  );
  border: 1px solid var(--rule-soft);
  border-radius: var(--r-md);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 16px;
  min-height: 200px;
}
.placeholder .ph-caption {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--paper);
  padding: 6px 10px;
  border-radius: 4px;
  border: 1px solid var(--rule-soft);
}

/* phone mockup */
.phone {
  position: absolute;
  right: 0;
  bottom: -20px;
  width: 280px;
  background: var(--ink);
  border-radius: 36px;
  padding: 10px;
  box-shadow: 0 30px 80px -20px rgba(26,25,22,0.4);
}
.phone-screen {
  background: var(--paper);
  border-radius: 28px;
  padding: 28px 18px 24px;
  position: relative;
  min-height: 380px;
}
.phone-notch {
  position: absolute;
  top: 12px; left: 50%; transform: translateX(-50%);
  width: 70px; height: 18px; background: var(--ink); border-radius: 10px;
}
.phone-time { font-family: var(--f-mono); font-size: 11px; color: var(--muted); }
.notif {
  margin-top: 32px;
  background: rgba(255,255,255,0.96);
  border: 1px solid var(--rule-soft);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  gap: 10px;
  box-shadow: 0 12px 24px -10px rgba(26,25,22,0.18);
  animation: notif-in 1.2s cubic-bezier(.2,.8,.2,1) .4s both;
}
@keyframes notif-in {
  0% { opacity: 0; transform: translateY(-8px); }
  100% { opacity: 1; transform: translateY(0); }
}
.notif-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--success);
  color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.notif-title { font-size: 13px; font-weight: 600; }
.notif-body { font-size: 12px; color: var(--muted); margin-top: 2px; }
.notif-amount { font-family: var(--f-display); font-size: 14px; font-weight: 500; margin-top: 8px; }
.notif-amount span { color: var(--success); }

/* ---------- Dor list ---------- */
.dor-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid var(--rule-soft);
}
@media (max-width: 720px) { .dor-list { grid-template-columns: 1fr; } }
.dor-item {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule-soft);
  align-items: flex-start;
}
.dor-item:nth-child(odd) { padding-right: 24px; border-right: 1px solid var(--rule-soft); }
.dor-item:nth-child(even) { padding-left: 24px; }
@media (max-width: 720px) {
  .dor-item:nth-child(odd) { padding-right: 0; border-right: 0; }
  .dor-item:nth-child(even) { padding-left: 0; }
}
.dor-num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
  flex-shrink: 0;
  width: 24px;
}
.dor-icon {
  width: 38px; height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--bg-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
}
.dor-text { font-size: 16px; line-height: 1.5; }
.dor-text strong { font-weight: 600; }

.dor-cta {
  margin-top: 48px;
  font-family: var(--f-display);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.25;
  text-wrap: balance;
}
.dor-cta .underline {
  background-image: linear-gradient(to top, var(--accent) 18%, transparent 18%, transparent 22%, var(--accent) 22%, var(--accent) 28%, transparent 28%);
  padding: 0 4px;
}

/* ---------- Solução / passos ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
@media (max-width: 880px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
.solucao-grid {
  min-width: 0;
}
@media (max-width: 720px) {
  #solucao {
    padding-top: 54px;
    padding-bottom: 64px;
  }
  #solucao .h2 {
    font-size: clamp(30px, 9vw, 38px);
    line-height: 1.08;
    max-width: 100% !important;
  }
  .solucao-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    margin-top: 28px !important;
  }
  .solucao-grid > .body-lg {
    max-width: none !important;
    font-size: 18px;
    line-height: 1.58;
  }
  .solucao-grid .mono {
    margin-bottom: 14px !important;
    font-size: 11px;
    line-height: 1.45;
  }
  .solucao-grid .steps {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  .solucao-grid .step {
    border-top-color: rgba(26,25,22,0.45);
    padding-top: 16px;
  }
  .solucao-grid .step-num {
    margin-bottom: 8px;
  }
  .solucao-grid .step-title {
    font-size: 24px;
  }
  .solucao-grid .step-body {
    font-size: 15px;
    line-height: 1.55;
    max-width: 34ch;
  }
}
.step {
  border-top: 1px solid var(--ink);
  padding-top: 18px;
}
.step-num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 24px;
}
.step-title { font-family: var(--f-display); font-size: 22px; line-height: 1.2; margin-bottom: 8px; }
.step-body { font-size: 14px; color: var(--muted); line-height: 1.5; }

/* ---------- Benefícios ---------- */
.benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule-soft);
  margin-top: 48px;
  border: 1px solid var(--rule-soft);
  border-radius: var(--r-md);
  overflow: hidden;
}
@media (max-width: 720px) { .benefits { grid-template-columns: 1fr; } }
.benefit {
  background: var(--paper);
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.benefit-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(177, 77, 46, 0.10);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.benefit-title { font-weight: 600; font-size: 17px; }
.benefit-title .check { color: var(--success); margin-right: 6px; }
.benefit-body { color: var(--muted); font-size: 15px; line-height: 1.5; }
.benefit.featured {
  background: var(--ink);
  color: var(--paper);
}
.benefit.featured .benefit-body { color: rgba(251,248,241,0.7); }
.benefit.featured .benefit-icon { background: rgba(251,248,241,0.10); color: var(--paper); }

/* ---------- Prova social ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid rgba(251,248,241,0.18);
  border-bottom: 1px solid rgba(251,248,241,0.18);
}
@media (max-width: 720px) { .stats { grid-template-columns: 1fr 1fr; } }
.stat {
  padding: 32px 24px;
  border-right: 1px solid rgba(251,248,241,0.18);
}
.stat:last-child { border-right: 0; }
@media (max-width: 720px) {
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(251,248,241,0.18); }
}
.stat-num {
  font-family: var(--f-display);
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1;
  color: var(--paper);
  letter-spacing: -0.02em;
}
.stat-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(251,248,241,0.65);
  margin-top: 14px;
}

.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-2);
  background-image: repeating-linear-gradient(-45deg, transparent 0 6px, rgba(26,25,22,0.1) 6px 7px);
  flex-shrink: 0;
}
.placeholder-tag {
  position: absolute; top: 14px; right: 14px;
  font-family: var(--f-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,248,235,0.95);
  border: 1px dashed rgba(255,248,235,0.38);
  padding: 3px 8px;
  border-radius: 4px;
}

/* ---------- Oferta box ---------- */
.offer-card {
  background: var(--paper);
  border: 1px solid var(--rule-soft);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 48px);
  max-width: 720px;
  margin: 48px auto 0;
  box-shadow: var(--shadow-paper);
  position: relative;
}
.offer-stamp {
  position: absolute;
  top: -16px; left: 32px;
  background: var(--accent);
  color: rgba(255,248,235,0.95);
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 4px;
}
.offer-list { list-style: none; margin: 28px 0 0; padding: 0; }
.offer-list li {
  padding: 14px 0;
  border-top: 1px solid var(--rule-soft);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
}
.offer-list li:last-child { border-bottom: 1px solid var(--rule-soft); }
.offer-list li svg { color: var(--success); flex-shrink: 0; }
.offer-price {
  display: flex; align-items: baseline; gap: 14px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 2px solid var(--ink);
}
.offer-price .big {
  font-family: var(--f-display);
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.offer-price .meta { font-size: 14px; color: var(--muted); }
.offer-cta { margin-top: 32px; cursor: pointer; }
.offer-cta .btn { width: 100%; justify-content: center; padding-top: 20px; padding-bottom: 20px; font-size: 17px; }

.prequal {
  margin-top: 36px;
  background: var(--bg-2);
  border-radius: var(--r-md);
  padding: 22px 24px;
}
.prequal-title { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); margin-bottom: 14px; }
.prequal ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.prequal li { display: flex; gap: 10px; font-size: 14px; align-items: flex-start; }
.prequal li svg { color: var(--ink); flex-shrink: 0; margin-top: 2px; }
.prequal-fallback { font-size: 13px; color: var(--muted); margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--rule-soft); }
.prequal-fallback a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Objeções ---------- */
.obj-list { display: grid; gap: 0; margin-top: 48px; }
.obj-item {
  border-top: 1px solid var(--rule-soft);
  padding: 28px 0;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  align-items: start;
}
.obj-item:last-child { border-bottom: 1px solid var(--rule-soft); }
@media (max-width: 720px) { .obj-item { grid-template-columns: 1fr; gap: 12px; } }
.obj-q-num { font-family: var(--f-mono); font-size: 11px; color: var(--muted); margin-top: 8px; }
.obj-q { font-family: var(--f-display); font-size: clamp(20px, 2.2vw, 26px); line-height: 1.25; margin: 0 0 14px; }
.obj-a { color: var(--ink-2); line-height: 1.55; max-width: 640px; }

/* ---------- Garantia ---------- */
.guarantee {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 48px;
  align-items: center;
}
@media (max-width: 880px) { .guarantee { grid-template-columns: 1fr; gap: 32px; } }
.guarantee-seal {
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto;
}
.guarantee-seal::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 1px solid var(--ink);
}
.guarantee-seal-inner {
  font-family: var(--f-display);
  font-size: 64px;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.04em;
}
.guarantee-seal-label {
  position: absolute;
  bottom: 36px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.guarantee-list { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-direction: column; gap: 16px; }
.guarantee-list li { display: flex; gap: 14px; align-items: flex-start; line-height: 1.5; }
.guarantee-list li svg { color: var(--success); flex-shrink: 0; margin-top: 4px; }

/* ---------- Urgência ---------- */
.urgency-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 720px) { .urgency-grid { grid-template-columns: 1fr; } }
.urgency-card {
  background: var(--paper);
  border: 1px solid var(--rule-soft);
  border-radius: var(--r-md);
  padding: 32px;
}
.urgency-card.dark { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.urgency-card.dark .muted { color: rgba(251,248,241,0.6); }
.urgency-eyebrow { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.urgency-title { font-family: var(--f-display); font-size: 26px; line-height: 1.2; margin: 0 0 14px; }
.urgency-body { font-size: 15px; line-height: 1.55; color: var(--muted); }
.urgency-card.dark .urgency-body { color: rgba(251,248,241,0.75); }
.urgency-meter {
  margin-top: 22px;
  display: flex; align-items: center; gap: 12px;
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
}
.meter {
  flex: 1; height: 4px; background: rgba(255,255,255,0.15); border-radius: 2px; overflow: hidden;
}
.meter-fill { height: 100%; background: var(--accent); width: 42%; }

/* ---------- FAQ ---------- */
.faq { margin-top: 48px; border-top: 1px solid var(--rule-soft); }
.faq-item { border-bottom: 1px solid var(--rule-soft); }
.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  padding: 24px 0;
  font-family: var(--f-display);
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.3;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.faq-q .toggle {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .25s ease, background .2s ease, color .2s ease;
}
.faq-item.open .faq-q .toggle { background: var(--ink); color: var(--paper); transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-a-inner { padding: 0 0 24px; max-width: 720px; color: var(--ink-2); line-height: 1.6; }
.faq-item.open .faq-a { max-height: 400px; }

/* ---------- CTA Final ---------- */
.final-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 720px) { .final-paths { grid-template-columns: 1fr; } }
.final-path {
  padding: 36px;
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 320px;
}
.final-path.primary { background: var(--accent); color: var(--paper); }
.final-path.secondary { background: var(--paper); color: var(--ink); border: 1px solid var(--rule-soft); }
.final-path .path-num { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; }
.final-path.primary .path-num {
  color: rgba(255,248,235,0.95);
  font-weight: 600;
  letter-spacing: 0.08em;
  opacity: 1;
}
.final-path .path-title { font-family: var(--f-display); font-size: clamp(26px, 3vw, 34px); line-height: 1.15; margin: 0; }
.final-path .path-body { font-size: 15px; line-height: 1.5; opacity: 0.85; flex: 1; }
.final-path .btn { align-self: flex-start; margin-top: 8px; }
.final-path.primary .btn-secondary { color: var(--paper); border-color: var(--paper); }
.final-path.primary .btn-secondary:hover { background: var(--paper); color: var(--accent); }

/* ---------- PS ---------- */
.ps-block {
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
}
.ps-label {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 14px;
}
.ps-body {
  font-family: var(--f-display);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.ps-body p + p { margin-top: 18px; }
.ps-body em { color: var(--accent); font-style: italic; }
.ps-cta { margin-top: 36px; }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: rgba(251,248,241,0.7);
  padding: 56px 0 32px;
  font-size: 13px;
}
.footer-top { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-brand { color: var(--paper); font-family: var(--f-display); font-size: 22px; }
.footer-disclaimer {
  font-size: 12px;
  line-height: 1.5;
  max-width: 560px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(251,248,241,0.15);
}
.footer-meta { display: flex; gap: 24px; flex-wrap: wrap; font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(251,248,241,0.5); margin-top: 36px; align-items: center; }
.footer-link { color: rgba(251,248,241,0.5); text-decoration: none; transition: color .2s; }
.footer-link:hover { color: var(--accent); }; }

/* ---------- Modal ---------- */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(26,25,22,0.55);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  z-index: 100;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.modal-backdrop.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--paper);
  border-radius: var(--r-lg);
  max-width: 460px;
  width: 100%;
  padding: 36px;
  transform: translateY(20px);
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
  position: relative;
}
.modal-backdrop.open .modal { transform: translateY(0); }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: transparent; border: 0; padding: 8px;
  color: var(--muted);
}
.modal h3 { font-family: var(--f-display); font-size: 30px; margin: 0 0 12px; letter-spacing: -0.01em; }
.modal p { color: var(--muted); margin: 0 0 24px; font-size: 15px; }
.modal-form { display: flex; flex-direction: column; gap: 12px; }
.modal-form input {
  width: 100%; padding: 14px 18px;
  border: 1px solid var(--rule-soft);
  border-radius: 10px;
  font: inherit;
  background: var(--bg);
}
.modal-form input:focus { outline: 2px solid var(--accent); outline-offset: -2px; border-color: var(--accent); }
.modal-form .btn { width: 100%; justify-content: center; }
.modal-fine { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-top: 16px; text-align: center; }
.modal-success { text-align: center; padding: 24px 0; }
.modal-success .check-big { width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 50%; background: var(--success); color: var(--paper); display: flex; align-items: center; justify-content: center; }

/* Hard modal override: keep popups attached to the viewport at the current scroll position. */
.modal-backdrop.open {
  position: fixed !important;
  inset: 0 !important;
  z-index: 9999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100vw !important;
  min-height: 100vh !important;
  padding: 24px !important;
  overflow: auto !important;
  background: rgba(26,25,22,0.55) !important;
  backdrop-filter: blur(6px);
}
.modal-backdrop.open .modal {
  margin: auto !important;
  max-height: calc(100vh - 48px);
  overflow: auto;
}

/* ---------- 3D & motion ---------- */
.scene-3d { perspective: 1200px; transform-style: preserve-3d; }
.tilt-card { will-change: transform; transform-style: preserve-3d; transition: transform .3s cubic-bezier(.2,.8,.2,1); border-radius: inherit; }
.tilt-card > * { transform-style: preserve-3d; }

/* Layered hero stack with depth */
.hero-visual { perspective: 1400px; transform-style: preserve-3d; }
.hero-visual .placeholder { transform: translateZ(-40px) rotateY(-3deg); transition: transform 1.2s cubic-bezier(.2,.8,.2,1); }
.hero-visual:hover .placeholder { transform: translateZ(-20px) rotateY(-1deg); }

/* ---------- Hero photo (replacing placeholder) ---------- */
.hero-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  min-height: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  transform: translateZ(-30px) rotateY(-2deg);
  transition: transform 1s cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 30px 80px -30px rgba(26,25,22,0.45);
}
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s cubic-bezier(.2,.8,.2,1);
}
.hero-visual:hover .hero-photo { transform: translateZ(-15px) rotateY(0deg); }
.hero-visual:hover .hero-photo img { transform: scale(1.04); }
.hero-photo-tag {
  position: absolute;
  bottom: 16px; left: 16px;
  background: rgba(251,248,241,0.92);
  backdrop-filter: blur(8px);
  z-index: 2;
}
.phone-photo {
  position: absolute;
  right: -20px;
  bottom: -40px;
  width: 240px;
  border-radius: 28px;
  overflow: visible;
  transform: translateZ(80px) rotateY(-12deg) rotateX(6deg) rotateZ(2deg);
  animation: float-y 6s ease-in-out infinite;
  filter: drop-shadow(0 30px 50px rgba(26,25,22,0.4));
  z-index: 3;
}
.phone-photo img {
  width: 100%;
  display: block;
  border-radius: 24px;
}
@keyframes float-y {
  0%, 100% { transform: translateZ(80px) translateY(0) rotateY(-12deg) rotateX(6deg) rotateZ(2deg); }
  50%      { transform: translateZ(80px) translateY(-14px) rotateY(-10deg) rotateX(7deg) rotateZ(1deg); }
}
.phone-badge {
  position: absolute;
  top: 14px; left: -90px;
  background: var(--paper);
  border-radius: 999px;
  padding: 8px 14px;
  display: flex; align-items: center; gap: 8px;
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  box-shadow: 0 14px 30px -10px rgba(26,25,22,0.25);
  transform: translateZ(100px) rotateY(8deg);
  animation: badge-float 5s ease-in-out infinite .3s;
  white-space: nowrap;
}
.phone-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(47,93,58,0.18);
}
@keyframes badge-float {
  0%, 100% { transform: translateZ(100px) translateY(0) rotateY(8deg); }
  50%      { transform: translateZ(100px) translateY(-8px) rotateY(6deg); }
}
@media (max-width: 880px) {
  .hero-photo { min-height: 0; }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 44px;
  }
  .hero .wrap,
  .hero-grid,
  .hero-grid > *,
  .hero-sub,
  .hero-ctas,
  .hero-visual,
  .hero-photo {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
  }
  .hero-meta {
    gap: 14px 18px;
    margin-bottom: 30px;
  }
  .h1 {
    font-size: clamp(38px, 10vw, 44px);
    line-height: 1.08;
  }
  .hero-sub {
    max-width: 100%;
    font-size: 21px;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }
  .hero-visual {
    min-height: 0;
  }
  .hero-photo,
  .hero-visual:hover .hero-photo {
    transform: none;
  }
  .hero-visual:hover .hero-photo img {
    transform: none;
  }
}

@media (max-width: 479px) {
  .hero .wrap,
  .hero-grid,
  .hero-grid > *,
  .hero-sub,
  .hero-ctas,
  .hero-visual,
  .hero-photo {
    width: 100%;
    max-width: 350px;
  }
}

/* Override default phone keyframes by keeping the new ones — old .phone class no longer used */
/* Avatar with photo */
.avatar {
  background-image: none;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-2);
}

/* Floating brand mark */
.brand-mark { transition: transform .4s cubic-bezier(.2,.8,.2,1); }
.brand:hover .brand-mark { transform: rotateY(180deg); }

/* 3D benefit cards */
.benefits { perspective: 1400px; }
.benefit {
  transform-style: preserve-3d;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease;
  position: relative;
  z-index: 0;
}
.benefit:hover {
  transform: translateZ(20px) rotateX(2deg);
  z-index: 2;
  box-shadow: 0 30px 60px -30px rgba(26,25,22,0.3);
}
.benefit-icon { transition: transform .4s cubic-bezier(.2,.8,.2,1); }
.benefit:hover .benefit-icon { transform: translateZ(20px) rotate(-6deg) scale(1.1); }

/* 3D offer card lift */
.offer-card {
  transform-style: preserve-3d;
  transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease;
}
.offer-card:hover {
  transform: perspective(1400px) rotateX(2deg) translateY(-8px) translateZ(20px);
  box-shadow: 0 1px 0 rgba(26,25,22,0.04), 0 50px 100px -40px rgba(26,25,22,0.4);
}
.offer-stamp { transform: translateZ(40px); }

/* Guarantee proof panel */
.guarantee-proof {
  width: min(100%, 420px);
  margin: 0 auto;
  padding: 34px 34px 30px;
  border: 1px solid var(--ink);
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(177,77,46,0.09), transparent 34%),
    linear-gradient(180deg, rgba(251,248,241,0.96), rgba(242,237,227,0.9));
  box-shadow:
    inset 0 0 0 1px rgba(251,248,241,0.65),
    0 24px 60px -34px rgba(26,25,22,0.34);
}
.proof-kicker {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.proof-total {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 18px;
  font-family: var(--f-display);
  line-height: 0.92;
}
.proof-currency {
  font-size: 24px;
  font-style: italic;
  color: var(--muted);
}
.proof-number {
  font-size: clamp(72px, 8vw, 92px);
  color: var(--accent);
}
.proof-subtitle {
  margin-top: 4px;
  color: var(--ink-2);
  font-size: 15px;
}
.proof-ledger {
  margin-top: 24px;
  border-top: 1px solid rgba(26,25,22,0.18);
}
.proof-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(26,25,22,0.12);
  font-size: 15px;
  color: var(--ink-2);
}
.proof-row span {
  color: var(--muted);
}
.proof-row strong {
  color: var(--ink);
  font-weight: 600;
  text-align: right;
}
.proof-foot {
  margin-top: 18px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 18px;
  line-height: 1.35;
  color: var(--ink);
}
@media (max-width: 767px) {
  .guarantee {
    gap: 28px;
    margin-top: 36px;
  }
  .guarantee-proof {
    width: min(100%, 360px);
    padding: 28px 24px 24px;
    border-radius: 24px;
  }
  .proof-kicker {
    font-size: 10px;
  }
  .proof-total {
    margin-top: 14px;
  }
  .proof-currency {
    font-size: 20px;
  }
  .proof-number {
    font-size: 72px;
  }
  .proof-subtitle,
  .proof-row {
    font-size: 14px;
  }
  .proof-foot {
    font-size: 16px;
  }
}

@media (max-width: 479px) {
  .guarantee-proof {
    padding: 24px 20px 20px;
  }
  .proof-ledger {
    margin-top: 20px;
  }
  .proof-row {
    flex-direction: column;
    gap: 4px;
    padding: 13px 0;
  }
  .proof-row strong {
    text-align: left;
  }
}

/* Pulsing dot */
.tick .dot { animation: pulse-dot 2.4s ease-in-out infinite; }
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(47,93,58,0.15); }
  50% { box-shadow: 0 0 0 8px rgba(47,93,58,0.05); }
}

/* Step cards 3D entrance */
.steps { perspective: 1200px; }
.step {
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
  transform-style: preserve-3d;
}
.step:hover { transform: translateZ(15px) rotateX(-3deg); }

/* Stat numbers 3D */
.stat-num { display: inline-block; transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.stat:hover .stat-num { transform: translateZ(30px) scale(1.05); color: var(--accent); }
.stats { perspective: 1200px; }
.stat { transform-style: preserve-3d; transition: background .3s; }
.stat:hover { background: rgba(251,248,241,0.03); }

/* FAQ 3D hover */
.faq-q { transition: transform .3s cubic-bezier(.2,.8,.2,1); transform-style: preserve-3d; }
.faq-q:hover { transform: translateX(8px); color: var(--accent); }

/* Final path cards 3D */
.final-paths { perspective: 1400px; }
.final-path {
  transform-style: preserve-3d;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s;
}
.final-path:hover {
  transform: translateZ(30px) rotateX(-3deg);
  box-shadow: 0 40px 80px -30px rgba(26,25,22,0.4);
}

/* Reveal with 3D rotation */
.reveal {
  opacity: 0;
  transform: perspective(1200px) rotateX(8deg) translateY(40px);
  transition: opacity 1s ease, transform 1.2s cubic-bezier(.2,.8,.2,1);
  transform-origin: center top;
}
.reveal.in {
  opacity: 1;
  transform: perspective(1200px) rotateX(0) translateY(0);
}

/* Hero h1 word-by-word entrance */
.h1-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) rotateX(60deg);
  transform-origin: bottom center;
  animation: word-in 1s cubic-bezier(.2,.8,.2,1) forwards;
}
.h1-word.accent-word { animation-delay: .35s; }
@keyframes word-in {
  to { opacity: 1; transform: translateY(0) rotateX(0); }
}

/* Floating accent shapes in hero */
.hero { position: relative; overflow: hidden; }
.hero::before, .hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
}
.hero::before {
  width: 320px; height: 320px;
  background: var(--accent);
  top: 10%; right: -80px;
  animation: drift-1 12s ease-in-out infinite;
}
.hero::after {
  width: 240px; height: 240px;
  background: rgba(26,25,22,0.4);
  bottom: -60px; left: -60px;
  animation: drift-2 14s ease-in-out infinite;
}
@keyframes drift-1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, 40px); }
}
@keyframes drift-2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, -30px); }
}

/* Sticky CTA 3D */
.sticky-cta { transform-style: preserve-3d; }
.sticky-cta.show:hover { transform: translate(-50%, -4px) scale(1.02); }

/* Buttons subtle 3D */
.btn-primary {
  box-shadow: 0 4px 0 rgba(26,25,22,0.15), 0 14px 30px -10px rgba(177,77,46,0.4);
  transition: transform .15s ease, box-shadow .25s ease, filter .2s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 rgba(26,25,22,0.2), 0 24px 40px -12px rgba(177,77,46,0.5);
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 0 rgba(26,25,22,0.2), 0 8px 20px -10px rgba(177,77,46,0.5);
}

/* Reduce motion fallback */
@media (prefers-reduced-motion: reduce) {
  .phone, .guarantee-seal, .hero::before, .hero::after, .h1-word { animation: none !important; }
  .reveal { transform: none !important; }
  * { transition-duration: 0.01ms !important; }
}

/* small util */
.center { text-align: center; }
.mt-sm { margin-top: 14px; }
.mt-md { margin-top: 28px; }
.mt-lg { margin-top: 48px; }
