/* ============================================================
   CashSpace — Marketing site
   Design: "cockpit financeiro espacial"
   Navy profundo · gradiente azul→verde-água · órbita como assinatura
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --bg:            #080D18;
  --bg-2:          #0B1220;
  --surface:       #101B30;
  --surface-2:     #16233d;
  --line:          rgba(146, 170, 209, 0.14);
  --line-strong:   rgba(146, 170, 209, 0.28);

  --primary:       #3B82F6;
  --teal:          #2DD4BF;
  --sky:           #38BDF8;
  --accent:        #F97316;

  --text:          #EAF1FB;
  --muted:         #93A4C0;
  --faint:         #64748b;

  --grad:          linear-gradient(120deg, #3B82F6 0%, #2DD4BF 100%);
  --grad-soft:     linear-gradient(120deg, rgba(59,130,246,.16), rgba(45,212,191,.16));
  --glow:          0 0 60px rgba(45, 212, 191, .35);

  --radius:        18px;
  --radius-sm:     12px;
  --radius-lg:     26px;

  --shadow:        0 24px 60px -24px rgba(0, 0, 0, .7);
  --maxw:          1180px;

  --font-display:  'Space Grotesk', system-ui, sans-serif;
  --font-body:     'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:     'JetBrains Mono', ui-monospace, monospace;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Ambient starfield / gradient wash */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 600px at 78% -8%, rgba(45, 212, 191, .16), transparent 60%),
    radial-gradient(1000px 700px at 12% 4%, rgba(59, 130, 246, .18), transparent 55%),
    radial-gradient(700px 500px at 50% 108%, rgba(56, 189, 248, .10), transparent 60%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 .5em;
}

p { margin: 0 0 1em; color: var(--muted); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-display);
  font-weight: 500; font-size: .98rem;
  padding: .82rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, border-color .2s;
  white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; }
.btn-primary {
  background: var(--grad);
  color: #04121b;
  box-shadow: 0 12px 34px -12px rgba(45, 212, 191, .6);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(45, 212, 191, .75); }
.btn-ghost {
  background: rgba(255,255,255,.03);
  border-color: var(--line-strong);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--teal); transform: translateY(-2px); }
.btn-wa { background: #22C55E; color: #04120a; box-shadow: 0 12px 30px -12px rgba(34,197,94,.6); }
.btn-wa:hover { transform: translateY(-2px); }
.btn-lg { padding: 1rem 1.8rem; font-size: 1.05rem; }

/* Skip link */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 200; }
.skip-link:focus { left: 16px; top: 16px; }

/* ---------- Eyebrow / section head ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-mono);
  font-size: .74rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--teal); opacity: .6; }

.section { padding: clamp(70px, 10vw, 130px) 0; position: relative; }
.section-head { max-width: 660px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); }
.section-head p { font-size: 1.12rem; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(8, 13, 24, .72);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.site-header.scrolled { border-bottom-color: var(--line); background: rgba(8, 13, 24, .9); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 24px; }
.brand { display: flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-weight: 600; font-size: 1.28rem; }
.brand img { width: 34px; height: 34px; border-radius: 9px; }
.brand .b-cash { color: var(--text); }
.brand .b-space { color: var(--teal); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--muted); font-size: .96rem; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: 0; color: var(--text); cursor: pointer; padding: 8px; }
.nav-toggle svg { width: 26px; height: 26px; }

/* ============================================================
   Hero + orbit signature
   ============================================================ */
.hero { position: relative; padding: clamp(48px, 8vw, 96px) 0 clamp(60px, 9vw, 110px); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .4rem .85rem; border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--grad-soft);
  font-size: .82rem; color: var(--text); margin-bottom: 1.4rem;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 10px var(--teal); }
.hero h1 { font-size: clamp(2.5rem, 5.6vw, 4.15rem); margin-bottom: .55rem; }
.hero .lede { font-size: 1.22rem; max-width: 40ch; margin-bottom: 2rem; color: #b7c4dd; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 2rem; }
.hero-trust { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 20px; }
.hero-trust span { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); }
.hero-trust .t-item { color: var(--muted); font-size: .82rem; display: inline-flex; align-items: center; gap: .4rem; }
.hero-trust .t-item::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--teal); }

/* Orbit visual */
.orbit-stage { position: relative; aspect-ratio: 1 / 1; display: grid; place-items: center; }
.orbit-core {
  width: 42%; aspect-ratio: 1; border-radius: 28px;
  background: radial-gradient(circle at 30% 25%, #17233c, #0a1424);
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  box-shadow: var(--glow), inset 0 0 40px rgba(59,130,246,.15);
  z-index: 3;
}
.orbit-core img { width: 66%; height: auto; }
.orbit-core .core-mark { width: 60%; height: auto; filter: drop-shadow(0 4px 16px rgba(45,212,191,.35)); }
.ring { position: absolute; border-radius: 50%; border: 1px solid var(--line); }
.ring.r1 { width: 62%; aspect-ratio: 1; border-color: rgba(59,130,246,.35); }
.ring.r2 { width: 82%; aspect-ratio: 1; border-color: rgba(45,212,191,.22); }
.ring.r3 { width: 100%; aspect-ratio: 1; border-color: rgba(146,170,209,.12); }
.orbiter { position: absolute; width: 100%; aspect-ratio: 1; animation: spin 16s linear infinite; }
.orbiter.o2 { width: 82%; animation-duration: 24s; animation-direction: reverse; }
.orbiter.o3 { width: 62%; animation-duration: 20s; animation-delay: -6s; }
.orbiter.o4 { width: 100%; animation-duration: 30s; animation-direction: reverse; animation-delay: -19s; }
.orbiter .node {
  position: absolute; top: -6px; left: 50%; transform: translateX(-50%);
  padding: .35rem .7rem; border-radius: 999px;
  background: var(--surface-2); border: 1px solid var(--line-strong);
  font-family: var(--font-mono); font-size: .72rem; white-space: nowrap;
  box-shadow: 0 8px 20px -8px rgba(0,0,0,.7);
  display: inline-flex; align-items: center; gap: .35rem;
}
.orbiter .node .pip { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 8px var(--teal); }
.orbiter .node.blue .pip { background: var(--primary); box-shadow: 0 0 8px var(--primary); }
.orbiter .node.accent .pip { background: var(--accent); box-shadow: 0 0 8px var(--accent); }
/* keep node label upright */
.orbiter .node { animation: spin-rev 16s linear infinite; }
.orbiter.o2 .node { animation-duration: 24s; animation-direction: reverse; }
.orbiter.o3 .node { animation-duration: 20s; animation-delay: -6s; }
.orbiter.o4 .node { animation-duration: 30s; animation-direction: reverse; animation-delay: -19s; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spin-rev { to { transform: translateX(-50%) rotate(-360deg); } }

/* ============================================================
   Stats band
   ============================================================ */
.stats { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(16, 27, 48, .4); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 40px 26px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat .num { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.7rem); font-weight: 600; }
.stat .lbl { color: var(--muted); font-size: .92rem; margin-top: .3rem; }

/* ============================================================
   Modules grid (bento)
   ============================================================ */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.card {
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: var(--shadow); }
.card .ic {
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: 16px;
  background: var(--grad-soft); border: 1px solid var(--line-strong);
}
.card .ic svg { width: 24px; height: 24px; stroke: var(--teal); }
.card h3 { font-size: 1.18rem; }
.card p { font-size: .96rem; margin: 0; }
.card.span-6 { grid-column: span 6; }
.card.span-4 { grid-column: span 4; }
.card.span-3 { grid-column: span 3; }
.card.span-8 { grid-column: span 8; }
/* feature card highlight */
.card.feature { background: linear-gradient(150deg, rgba(59,130,246,.14), rgba(45,212,191,.07)), var(--surface); }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tag { font-family: var(--font-mono); font-size: .74rem; padding: .28rem .6rem; border-radius: 8px; background: rgba(255,255,255,.04); border: 1px solid var(--line); color: var(--muted); }

/* ============================================================
   Differentiators
   ============================================================ */
.diff-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.diff {
  display: flex; gap: 18px; padding: 26px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg-2);
}
.diff .n { font-family: var(--font-mono); font-size: .9rem; color: var(--teal); padding-top: 4px; }
.diff h3 { font-size: 1.16rem; margin-bottom: .35rem; }
.diff p { font-size: .96rem; margin: 0; }

/* ============================================================
   Integrations marquee
   ============================================================ */
.integr { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.integr .chip {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .7rem 1.15rem; border-radius: 12px;
  border: 1px solid var(--line); background: var(--surface);
  font-weight: 500; font-size: .96rem; color: var(--text);
  transition: border-color .2s, transform .2s;
}
.integr .chip:hover { border-color: var(--teal); transform: translateY(-2px); }
.integr .chip .d { width: 9px; height: 9px; border-radius: 50%; background: var(--grad); }

/* ============================================================
   How it works
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; padding: 28px 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-2); }
.step .st-n {
  font-family: var(--font-display); font-weight: 600; font-size: 2.4rem;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1; margin-bottom: 14px;
}
.step h3 { font-size: 1.1rem; }
.step p { font-size: .93rem; margin: 0; }

/* ============================================================
   Audience / verticals
   ============================================================ */
.aud-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.aud { padding: 26px; border-radius: var(--radius); border: 1px solid var(--line); background: linear-gradient(180deg, var(--surface), var(--bg-2)); }
.aud .ai { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 14px; background: var(--grad-soft); border: 1px solid var(--line-strong); }
.aud .ai svg { width: 24px; height: 24px; stroke: var(--teal); }
.aud h3 { font-size: 1.08rem; }
.aud p { font-size: .92rem; margin: 0; }

/* ============================================================
   Pricing
   ============================================================ */
.price-toggle { display: inline-flex; align-items: center; gap: 12px; margin: 0 auto 40px; padding: 6px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); }
.price-toggle button { border: 0; background: none; color: var(--muted); font-family: var(--font-display); font-weight: 500; font-size: .92rem; padding: .5rem 1.1rem; border-radius: 999px; cursor: pointer; transition: all .2s; }
.price-toggle button.active { background: var(--grad); color: #04121b; }
.price-toggle .save { font-family: var(--font-mono); font-size: .72rem; color: var(--teal); }

.plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: start; }
.plan {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  padding: 30px 26px; position: relative; display: flex; flex-direction: column;
}
.plan.popular { border-color: var(--teal); box-shadow: 0 0 0 1px var(--teal), 0 30px 70px -30px rgba(45,212,191,.5); }
.plan .badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: #04121b; font-family: var(--font-display);
  font-weight: 600; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase;
  padding: .35rem .9rem; border-radius: 999px; white-space: nowrap;
}
.plan h3 { font-size: 1.3rem; margin-bottom: .25rem; }
.plan .p-desc { font-size: .88rem; color: var(--muted); min-height: 40px; margin-bottom: 18px; }
.plan .p-price { display: flex; align-items: baseline; gap: 4px; }
.plan .p-price .cur { font-size: 1.05rem; color: var(--muted); }
.plan .p-price .val { font-family: var(--font-display); font-weight: 600; font-size: 2.7rem; }
.plan .p-price .per { color: var(--muted); font-size: .9rem; }
.plan .p-fat { font-family: var(--font-mono); font-size: .76rem; color: var(--faint); margin: 8px 0 20px; }
.plan .btn { width: 100%; justify-content: center; margin-bottom: 22px; }
.plan ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.plan li { font-size: .92rem; color: #c3cee0; display: flex; gap: .6rem; align-items: flex-start; }
.plan li svg { width: 17px; height: 17px; stroke: var(--teal); flex-shrink: 0; margin-top: 3px; }
.plan li.off { color: var(--faint); }
.plan li.off svg { stroke: var(--faint); }

.price-note { text-align: center; margin-top: 34px; color: var(--muted); font-size: .95rem; }
.price-note strong { color: var(--text); }
.addons { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 22px; }
.addon { border: 1px dashed var(--line-strong); border-radius: var(--radius-sm); padding: 18px 20px; background: rgba(16,27,48,.35); }
.addon .a-price { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; }
.addon .a-name { font-size: .9rem; color: var(--muted); }

/* Expansion add-ons */
.addons-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin: 52px 0 18px; flex-wrap: wrap; }
.addons-head h3 { font-size: 1.35rem; margin: 0; }
.addons-head p { margin: 0; font-size: .92rem; color: var(--muted); }
.xaddons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.xaddon {
  display: flex; align-items: flex-start; gap: 14px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  padding: 20px; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.xaddon:hover { transform: translateY(-3px); border-color: var(--line-strong); box-shadow: var(--shadow); }
.xaddon .xa-ic { width: 42px; height: 42px; flex-shrink: 0; border-radius: 11px; display: grid; place-items: center; background: var(--grad-soft); border: 1px solid var(--line-strong); }
.xaddon .xa-ic svg { width: 22px; height: 22px; stroke: var(--teal); }
.xaddon .xa-body { flex: 1; min-width: 0; }
.xaddon .xa-top { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.xaddon .xa-name { font-family: var(--font-display); font-weight: 600; font-size: 1rem; color: var(--text); }
.xaddon .xa-price { font-family: var(--font-mono); font-size: .92rem; color: var(--teal); white-space: nowrap; font-weight: 500; }
.xaddon .xa-desc { font-size: .86rem; color: var(--muted); margin: 4px 0 0; line-height: 1.5; }

/* ============================================================
   Mobile app section
   ============================================================ */
.mobile-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.mobile-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; }
.mobile-list li { display: flex; gap: .7rem; align-items: flex-start; color: #c3cee0; }
.mobile-list li svg { width: 20px; height: 20px; stroke: var(--teal); flex-shrink: 0; margin-top: 3px; }
.phone-mock {
  justify-self: center; width: min(300px, 80%); aspect-ratio: 9/18;
  border-radius: 40px; border: 1px solid var(--line-strong);
  background: linear-gradient(160deg, var(--surface-2), var(--bg-2));
  box-shadow: var(--shadow), var(--glow); padding: 18px;
  display: flex; flex-direction: column; gap: 14px;
}
.phone-mock .p-top { display: flex; justify-content: space-between; align-items: center; }
.phone-mock .p-top img { width: 26px; height: 26px; border-radius: 7px; }
.phone-mock .p-top .pt-name { font-family: var(--font-display); font-weight: 600; font-size: .9rem; }
.phone-mock .p-card { border: 1px solid var(--line); border-radius: 14px; padding: 14px; background: rgba(255,255,255,.03); }
.phone-mock .p-card .k { font-size: .68rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }
.phone-mock .p-card .v { font-family: var(--font-mono); font-size: 1.5rem; font-weight: 600; }
.phone-mock .p-card .v.pos { color: var(--teal); }
.phone-mock .p-qr { flex: 1; border: 1px solid var(--line); border-radius: 14px; display: grid; place-items: center; background: rgba(255,255,255,.03); }
.phone-mock .p-qr .qr { width: 108px; height: 108px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  color: var(--text); font-family: var(--font-display); font-weight: 500; font-size: 1.1rem;
  padding: 24px 44px 24px 0; position: relative;
}
.faq-q::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-size: 1.6rem; color: var(--teal); transition: transform .25s;
}
.faq-item.open .faq-q::after { content: "–"; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 0 24px; margin: 0; }

/* ============================================================
   CTA banner + contact
   ============================================================ */
.cta-band {
  position: relative; overflow: hidden;
  border: 1px solid var(--line-strong); border-radius: var(--radius-lg);
  background: linear-gradient(120deg, rgba(59,130,246,.2), rgba(45,212,191,.12)), var(--surface);
  padding: clamp(40px, 6vw, 72px); text-align: center;
}
.cta-band h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
.cta-band p { font-size: 1.12rem; max-width: 52ch; margin: 0 auto 2rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.contact-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-2); text-align: center; }
.contact-card .ic { width: 48px; height: 48px; margin: 0 auto 14px; border-radius: 14px; display: grid; place-items: center; background: var(--grad-soft); border: 1px solid var(--line-strong); }
.contact-card .ic svg { width: 24px; height: 24px; stroke: var(--teal); }
.contact-card h3 { font-size: 1.1rem; }
.contact-card a { color: var(--teal); font-weight: 500; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { border-top: 1px solid var(--line); padding: 60px 0 34px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer-brand p { font-size: .92rem; max-width: 34ch; margin-top: 14px; }
.footer-col h4 { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--faint); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--muted); font-size: .94rem; padding: 5px 0; transition: color .2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--faint); font-size: .86rem; flex-wrap: wrap; }

/* Floating WhatsApp */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #22C55E; display: grid; place-items: center;
  box-shadow: 0 14px 34px -10px rgba(34,197,94,.7);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #04120a; }

/* ============================================================
   Reveal on scroll
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .orbit-stage { max-width: 440px; margin: 0 auto; order: -1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .diff-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .aud-grid { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: repeat(2, 1fr); }
  .addons { grid-template-columns: repeat(3, 1fr); }
  .xaddons { grid-template-columns: repeat(2, 1fr); }
  .mobile-wrap { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .card.span-6, .card.span-4, .card.span-3, .card.span-8 { grid-column: span 6; }
  .bento { grid-template-columns: repeat(6, 1fr); }
  .nav-links, .nav-cta .btn-ghost, .nav-cta .btn-primary { display: none; }
  .nav-toggle { display: block; }
  .nav.open + .mobile-menu { display: flex; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .steps, .aud-grid, .plans, .addons, .xaddons, .footer-grid { grid-template-columns: 1fr; }
  .card.span-6, .card.span-4, .card.span-3, .card.span-8 { grid-column: span 6; }
  .bento { grid-template-columns: 1fr; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; justify-content: center; }
}

/* Mobile menu */
.mobile-menu {
  display: none; flex-direction: column; gap: 6px;
  padding: 18px 24px 26px; border-bottom: 1px solid var(--line);
  background: rgba(8,13,24,.96);
}
.mobile-menu a { color: var(--muted); padding: 10px 0; font-weight: 500; }
.mobile-menu .btn { margin-top: 10px; justify-content: center; }

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