/* =====================================================================
   Do Zero à Loja de iPhone — Design System
   Editorial premium · papel off-white · verde profundo · serifadas
   ===================================================================== */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
img, svg { display: block; max-width: 100%; }
button, input, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ---------- Tokens ---------- */
:root {
  --paper:      #F5F1E8;
  --paper-2:    #EFE9DB;
  --card:       #FFFEFB;
  --ink:        #17140F;
  --ink-70:     #46413A;
  --ink-50:     #6E685D;
  --accent:     #14432E;   /* verde profundo */
  --accent-deep:#0E3323;
  --accent-soft:#E4ECE4;
  --gold:       #A2712A;   /* âmbar sóbrio */
  --gold-soft:  #F0E6D2;
  --line:       rgba(23,20,15,.14);
  --line-2:     rgba(23,20,15,.08);
  --danger:     #A83B24;
  --shadow-sm:  0 1px 2px rgba(23,20,15,.06);
  --shadow-md:  0 12px 34px -14px rgba(23,20,15,.28);
  --shadow-lg:  0 40px 80px -32px rgba(14,51,35,.40);

  --font-display: "Fraunces", Georgia, serif;
  --font-read:    "Newsreader", Georgia, serif;
  --font-ui:      "Hanken Grotesk", system-ui, sans-serif;

  --wrap:  1140px;
  --read-w: 680px;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 26px;
  --r-pill: 999px;
}

/* ---------- Base ---------- */
body {
  font-family: var(--font-read);
  background: var(--paper);
  color: var(--ink);
  font-size: 19px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* paper grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 460; line-height: 1.06; letter-spacing: -.01em; font-optical-sizing: auto; }
h1 { font-size: clamp(2.55rem, 6.4vw, 4.6rem); }
h2 { font-size: clamp(1.95rem, 4.2vw, 3rem); letter-spacing: -.015em; }
h3 { font-size: clamp(1.28rem, 2.2vw, 1.6rem); font-weight: 500; }
p  { text-wrap: pretty; }
strong { font-weight: 600; }
em { font-style: italic; }

.kicker {
  font-family: var(--font-ui);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: .6em;
}
.kicker::before {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--accent);
  display: inline-block;
}
.kicker.center::after {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--accent);
  display: inline-block;
}
.kicker.center { justify-content: center; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; position: relative; z-index: 2; }
.read { max-width: var(--read-w); margin-inline: auto; }
section { position: relative; z-index: 2; }
.section-pad { padding-block: clamp(56px, 9vw, 116px); }
.divider { height: 1px; background: var(--line); border: 0; max-width: var(--wrap); margin-inline: auto; }
.bg-alt { background: var(--paper-2); }
.bg-ink { background: var(--accent-deep); color: #EFEFE7; }
.center { text-align: center; }
.eyebrow-gap { margin-bottom: 22px; }

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -.01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  padding: 17px 34px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s cubic-bezier(.2,.7,.3,1), box-shadow .25s, background .2s;
  will-change: transform;
}
.btn svg { width: 20px; height: 20px; }
.btn-primary {
  background: var(--accent);
  color: #F6F4EC;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--ink); background: rgba(23,20,15,.03); }
.btn-lg { padding: 20px 44px; font-size: 1.1rem; }
.btn-block { display: flex; width: 100%; }

/* ---------- Topbar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 40;
  background: rgba(245,241,232,.82);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line-2);
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { font-family: var(--font-display); font-weight: 600; font-size: 1.16rem; letter-spacing: -.02em; display: flex; align-items: center; gap: 10px; }
.brand .mark {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--accent); color: #F6F4EC;
  display: grid; place-items: center; font-family: var(--font-ui); font-weight: 800; font-size: .9rem;
}
.topbar-note { font-family: var(--font-ui); font-size: .8rem; color: var(--ink-50); font-weight: 500; }
@media (max-width: 620px){ .topbar-note { display: none; } }

/* ---------- Hero ---------- */
.hero { padding-block: clamp(48px, 7vw, 96px); overflow: hidden; }
.hero .wrap { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(32px, 5vw, 76px); align-items: center; }
.hero h1 { margin: 20px 0 22px; }
.hero h1 .accent { color: var(--accent); font-style: italic; }
.hero-sub { font-size: 1.2rem; color: var(--ink-70); max-width: 30ch; }
.hero-cta { margin-top: 34px; display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.hero-trust { font-family: var(--font-ui); font-size: .84rem; color: var(--ink-50); display: flex; align-items: center; gap: 8px; }
.hero-trust svg { width: 16px; height: 16px; color: var(--accent); }

/* iPhone mockup (pure CSS) */
.phone-stage { display: grid; place-items: center; position: relative; }
.phone-stage::after {
  content: ""; position: absolute; width: 108%; height: 108%;
  background: radial-gradient(closest-side, rgba(20,67,46,.16), transparent 72%);
  z-index: -1;
}
.phone {
  width: min(280px, 74vw); aspect-ratio: 9/19.2;
  background: linear-gradient(150deg, #232019, #14120d);
  border-radius: 46px; padding: 11px;
  box-shadow: var(--shadow-lg), inset 0 0 0 2px rgba(255,255,255,.06);
  position: relative;
  transform: rotate(-4deg);
  animation: floaty 7s ease-in-out infinite;
}
@keyframes floaty { 0%,100%{ transform: rotate(-4deg) translateY(0);} 50%{ transform: rotate(-4deg) translateY(-12px);} }
.phone-screen {
  width: 100%; height: 100%; border-radius: 36px; overflow: hidden;
  background: linear-gradient(165deg, #1c5a3f 0%, #14432e 46%, #0e3323 100%);
  position: relative; display: flex; flex-direction: column;
  color: #EDECE2; font-family: var(--font-ui);
}
.phone-island {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 92px; height: 26px; background: #000; border-radius: 999px; z-index: 3;
}
.phone-content { padding: 52px 22px 22px; display: flex; flex-direction: column; height: 100%; }
.phone-content .p-label { font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; opacity: .75; }
.phone-content .p-price { font-family: var(--font-display); font-size: 2.1rem; margin-top: 4px; font-weight: 500; }
.phone-content .p-row { margin-top: auto; display: flex; flex-direction: column; gap: 9px; }
.phone-content .p-card {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px; padding: 11px 13px; display: flex; align-items: center; gap: 10px; font-size: .74rem;
}
.phone-content .p-card .dot { width: 26px; height: 26px; border-radius: 7px; background: rgba(255,255,255,.16); display: grid; place-items: center; flex-shrink: 0; }
.phone-content .p-card svg { width: 15px; height: 15px; }
.phone-tag {
  position: absolute; z-index: 5; font-family: var(--font-ui);
  background: var(--card); color: var(--ink); border: 1px solid var(--line);
  border-radius: 14px; padding: 10px 14px; box-shadow: var(--shadow-md); font-size: .8rem; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
}
.phone-tag svg { width: 17px; height: 17px; color: var(--accent); }
.phone-tag.t1 { top: 12%; left: -6%; animation: floaty 6s ease-in-out infinite .4s; }
.phone-tag.t2 { bottom: 15%; right: -8%; animation: floaty 6.5s ease-in-out infinite .9s; }
.phone-tag .big { font-family: var(--font-display); font-weight: 600; }

/* ---------- Lead / article ---------- */
.article p { margin-bottom: 1.15em; }
.article p.dropcap::first-letter {
  font-family: var(--font-display); font-weight: 500;
  float: left; font-size: 3.9em; line-height: .78; padding: .04em .12em 0 0; color: var(--accent);
}
.article .lead-first { font-size: 1.24rem; color: var(--ink); }
.pull {
  font-family: var(--font-display); font-weight: 460;
  font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1.22; color: var(--accent);
  border-left: 3px solid var(--gold); padding-left: 26px; margin: 42px 0; letter-spacing: -.01em;
}
.note-inline { font-family: var(--font-ui); font-size: .95rem; color: var(--ink-50); }

/* ---------- Stat cards ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.stat {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 30px 26px; box-shadow: var(--shadow-sm);
}
.stat .num { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 500; color: var(--accent); line-height: 1; }
.stat .lbl { font-family: var(--font-ui); font-size: .92rem; color: var(--ink-70); margin-top: 12px; }
.stat .src { font-family: var(--font-ui); font-size: .72rem; color: var(--ink-50); margin-top: 10px; }

/* ---------- How it works (steps) ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 52px; counter-reset: step; }
.step { position: relative; padding-top: 26px; border-top: 2px solid var(--ink); }
.step .st-ico { width: 46px; height: 46px; color: var(--accent); margin-bottom: 18px; }
.step .st-ico svg { width: 100%; height: 100%; }
.step h3 { margin-bottom: 10px; }
.step p { font-size: 1.02rem; color: var(--ink-70); }
.step::after {
  counter-increment: step; content: "0" counter(step);
  position: absolute; top: -2px; right: 0; transform: translateY(-118%);
  font-family: var(--font-display); font-size: 1rem; color: var(--ink-50); font-weight: 600; letter-spacing: .05em;
}

/* ---------- Pillars / modules ---------- */
.pillars-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; margin-top: 46px; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: var(--card); }
.pillar { padding: 34px 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); position: relative; transition: background .25s; }
.pillar:hover { background: var(--accent-soft); }
.pillar:nth-child(2n) { border-right: 0; }
.pillar .p-no { font-family: var(--font-display); font-size: 1.05rem; color: var(--gold); font-weight: 600; }
.pillar h3 { margin: 14px 0 10px; }
.pillar p { font-size: 1.02rem; color: var(--ink-70); }
.pillar .p-ico { position: absolute; top: 30px; right: 30px; width: 30px; height: 30px; color: var(--accent); opacity: .5; }

/* ---------- For who ---------- */
.forwho { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 46px; }
.fw-card { border-radius: var(--r-md); padding: 34px; border: 1px solid var(--line); }
.fw-card.yes { background: var(--accent-soft); border-color: rgba(20,67,46,.22); }
.fw-card.no { background: var(--card); }
.fw-card h3 { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; font-size: 1.32rem; }
.fw-card h3 svg { width: 28px; height: 28px; flex-shrink: 0; }
.fw-card.yes h3 svg { color: var(--accent); }
.fw-card.no h3 svg { color: var(--ink-50); }
.fw-list { list-style: none; display: flex; flex-direction: column; gap: 15px; }
.fw-list li { display: flex; gap: 12px; font-size: 1.04rem; line-height: 1.5; color: var(--ink-70); }
.fw-list li svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 4px; }
.fw-card.yes li svg { color: var(--accent); }
.fw-card.no li svg { color: var(--danger); opacity: .8; }

/* ---------- Offer ---------- */
.offer-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-md); overflow: hidden; max-width: 860px; margin: 48px auto 0;
  display: grid; grid-template-columns: 1.15fr .85fr;
}
.offer-main { padding: clamp(30px, 4vw, 48px); }
.offer-main h3 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 500; margin-bottom: 8px; }
.offer-main .o-sub { font-family: var(--font-ui); font-size: .92rem; color: var(--ink-50); margin-bottom: 26px; }
.includes { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.includes li { display: flex; gap: 13px; font-size: 1.04rem; color: var(--ink-70); line-height: 1.45; }
.includes li svg { width: 21px; height: 21px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.includes li strong { color: var(--ink); font-weight: 600; }
.offer-side { background: var(--accent-deep); color: #EDEEE4; padding: clamp(30px, 4vw, 44px) clamp(24px,3vw,36px); display: flex; flex-direction: column; justify-content: center; text-align: center; }
.offer-side .os-label { font-family: var(--font-ui); font-size: .76rem; letter-spacing: .18em; text-transform: uppercase; opacity: .7; }
.offer-side .os-old { font-family: var(--font-ui); text-decoration: line-through; opacity: .55; margin-top: 16px; font-size: 1.05rem; }
.offer-side .os-price { font-family: var(--font-display); font-size: clamp(3rem, 7vw, 4rem); font-weight: 500; line-height: 1; margin-top: 4px; }
.offer-side .os-price small { font-size: 1.1rem; opacity: .8; font-weight: 400; }
.offer-side .os-terms { font-family: var(--font-ui); font-size: .88rem; opacity: .8; margin-top: 8px; }
.offer-side .btn { margin-top: 26px; }
.offer-side .btn-primary { background: var(--gold); color: #201704; }
.offer-side .btn-primary:hover { background: #b98531; }
.offer-side .os-safe { font-family: var(--font-ui); font-size: .78rem; opacity: .7; margin-top: 16px; display: flex; align-items: center; justify-content: center; gap: 7px; }
.offer-side .os-safe svg { width: 15px; height: 15px; }

/* ---------- Guarantee ---------- */
.guarantee { display: grid; grid-template-columns: auto 1fr; gap: 34px; align-items: center; max-width: 800px; margin-inline: auto; }
.seal {
  width: 148px; height: 148px; border-radius: 50%; flex-shrink: 0;
  border: 2px solid var(--gold); color: var(--accent);
  display: grid; place-items: center; text-align: center; background: var(--gold-soft);
  font-family: var(--font-display); position: relative;
}
.seal .s-big { font-size: 3rem; font-weight: 600; line-height: 1; }
.seal .s-sm { font-family: var(--font-ui); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; margin-top: 4px; font-weight: 700; }
.guarantee h3 { margin-bottom: 12px; }
.guarantee p { color: var(--ink-70); font-size: 1.06rem; }

/* ---------- FAQ ---------- */
.faq-list { max-width: var(--read-w); margin: 44px auto 0; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  cursor: pointer; list-style: none; padding: 24px 44px 24px 0; position: relative;
  font-family: var(--font-display); font-size: 1.24rem; font-weight: 500; color: var(--ink);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-ui); font-size: 1.6rem; color: var(--accent); transition: transform .25s; font-weight: 400;
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list .faq-a { padding: 0 44px 26px 0; color: var(--ink-70); font-size: 1.06rem; }
.faq-list .faq-a p + p { margin-top: 1em; }

/* ---------- Footer ---------- */
.footer { background: var(--accent-deep); color: #C9CFC5; font-family: var(--font-ui); padding-block: 60px 40px; z-index: 2; position: relative; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer .f-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer .f-brand { font-family: var(--font-display); font-size: 1.4rem; color: #F1F2EA; font-weight: 500; }
.footer .f-links { display: flex; flex-wrap: wrap; gap: 22px; font-size: .92rem; }
.footer .f-legal { font-size: .82rem; line-height: 1.7; color: #9AA394; margin-top: 30px; }
.footer .f-legal strong { color: #C9CFC5; font-weight: 600; }
.footer .f-disclaimer { font-size: .8rem; line-height: 1.65; color: #8A937F; margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08); }

/* Legal pages */
.legal-doc { max-width: 760px; margin-inline: auto; }
.legal-doc h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 8px; }
.legal-doc .updated { font-family: var(--font-ui); font-size: .85rem; color: var(--ink-50); margin-bottom: 40px; }
.legal-doc h2 { font-size: clamp(1.4rem, 3vw, 1.8rem); margin: 40px 0 14px; }
.legal-doc p, .legal-doc li { color: var(--ink-70); font-size: 1.05rem; margin-bottom: 12px; }
.legal-doc ul { padding-left: 24px; }
.legal-doc a { color: var(--accent); text-decoration: underline; }
.back-link { font-family: var(--font-ui); font-size: .9rem; color: var(--accent); display: inline-flex; gap: 8px; align-items: center; margin-bottom: 30px; }

/* =====================================================================
   Checkout modal (injected by app.js — styled here)
   ===================================================================== */
.ck-overlay {
  position: fixed; inset: 0; z-index: 100; display: none;
  align-items: center; justify-content: center; padding: 18px;
  background: rgba(14,18,13,.62); backdrop-filter: blur(6px);
}
.ck-box {
  background: var(--card); width: 100%; max-width: 440px; border-radius: var(--r-lg);
  padding: 30px 28px 26px; box-shadow: var(--shadow-lg); position: relative;
  max-height: 94vh; overflow-y: auto; font-family: var(--font-ui);
  animation: ckIn .35s cubic-bezier(.2,.7,.3,1);
}
@keyframes ckIn { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: none; } }
.ck-close { position: absolute; top: 16px; right: 16px; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line); background: transparent; cursor: pointer; display: grid; place-items: center; color: var(--ink-50); }
.ck-close:hover { background: rgba(23,20,15,.05); color: var(--ink); }
.ck-head { text-align: center; margin-bottom: 22px; }
.ck-head .ck-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; }
.ck-head .ck-sub { font-size: .9rem; color: var(--ink-50); margin-top: 4px; }
.ck-field { margin-bottom: 14px; }
.ck-field label { display: block; font-size: .8rem; font-weight: 600; color: var(--ink-70); margin-bottom: 7px; }
.ck-input, #card-element {
  width: 100%; padding: 13px 14px; border: 1px solid var(--line); border-radius: var(--r-sm);
  background: #fff; font-size: 1rem; transition: border-color .2s, box-shadow .2s;
}
#card-element { padding: 14px; }
.ck-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(20,67,46,.12); }
.ck-errline { color: var(--danger); font-size: .82rem; min-height: 1em; margin-top: 6px; }
.ck-total { display: flex; justify-content: space-between; align-items: baseline; padding: 16px 0; margin: 6px 0 4px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.ck-total .t-lbl { font-weight: 600; color: var(--ink-70); }
.ck-total .t-val { font-family: var(--font-display); font-size: 1.7rem; font-weight: 500; color: var(--accent); }
.ck-submit { margin-top: 18px; }
.ck-errbox { display: none; background: rgba(168,59,36,.08); border: 1px solid rgba(168,59,36,.3); color: var(--danger); font-size: .88rem; padding: 11px 14px; border-radius: var(--r-sm); margin-top: 12px; }
.ck-loading { display: none; text-align: center; padding: 14px; color: var(--ink-50); font-size: .9rem; }
.ck-spinner { width: 26px; height: 26px; border: 2.5px solid var(--line); border-top-color: var(--accent); border-radius: 50%; margin: 0 auto 10px; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.ck-safe { text-align: center; font-size: .76rem; color: var(--ink-50); margin-top: 16px; display: flex; align-items: center; justify-content: center; gap: 7px; }
.ck-safe svg { width: 14px; height: 14px; }
.ck-success { text-align: center; padding: 16px 0; }
.ck-success .cs-ico { width: 66px; height: 66px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; margin: 0 auto 18px; }
.ck-success .cs-ico svg { width: 34px; height: 34px; }
.ck-success h2 { font-size: 1.7rem; margin-bottom: 8px; }
.ck-success p { color: var(--ink-50); font-size: .95rem; }

/* =====================================================================
   Scroll reveal + motion
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { max-width: none; margin-inline: auto; }
  .hero-cta, .hero .kicker { justify-content: center; }
  .phone-stage { order: -1; margin-bottom: 20px; }
  .offer-card { grid-template-columns: 1fr; max-width: 520px; }
  .forwho { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  body { font-size: 18px; }
  .stats { grid-template-columns: 1fr; gap: 14px; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .step::after { transform: translateY(-135%); }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { border-right: 0 !important; }
  .guarantee { grid-template-columns: 1fr; text-align: center; justify-items: center; gap: 22px; }
}
@media (max-width: 420px) {
  .wrap { padding-inline: 18px; }
  .btn { padding: 15px 26px; }
}
