/* Lectuo LP v9: claro minimalista, corporativo sério.
   Off-white + azul profundo de destaque, muito respiro, bordas finas,
   sombras suaves. Tipografia Geist (corpo) + Bricolage (títulos). Marca 100% Lectuo. */

@font-face {
  font-family: 'Geist';
  src: url('../fonts/Geist-Variable.woff2') format('woff2');
  font-weight: 100 900; font-display: swap;
}
@font-face {
  font-family: 'Bricolage';
  src: url('../fonts/Bricolage-Variable.woff2') format('woff2');
  font-weight: 200 800; font-display: swap;
}

:root {
  --bg: #FBFCFD;          /* fundo base off-white */
  --bg-2: #FFFFFF;        /* cartões / seções claras */
  --bg-soft: #F4F6F9;     /* seções alternadas */
  --line: #E6E9EF;        /* borda fina */
  --line-2: #D8DDE6;      /* borda um pouco mais forte */
  --tint: #EEF2FB;        /* wash de azul p/ realces discretos */

  --ink: #0A0E1A;         /* título quase-preto azulado */
  --ink-2: #3C4658;       /* corpo */
  --ink-3: #6B7280;       /* secundário */

  --accent: #1E40AF;      /* azul profundo */
  --accent-2: #1D3A9A;    /* hover */
  --accent-ink: #FFFFFF;
  --accent-soft: #EEF2FF; /* fundo de pílula accent */

  --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.05);
  --shadow: 0 1px 3px rgba(16, 24, 40, 0.06), 0 8px 24px rgba(16, 24, 40, 0.05);
  --shadow-lg: 0 2px 6px rgba(16, 24, 40, 0.06), 0 24px 48px rgba(16, 24, 40, 0.09);

  --wrap: 1180px;
  --pad: 20px;
  --r: 16px;
  interpolate-size: allow-keywords;
}
@media (min-width: 900px) { :root { --pad: 44px; } }

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  font-family: 'Geist', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 16px; font-weight: 400; line-height: 1.65; color: var(--ink-2);
  background: var(--bg); -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3 { font-family: 'Bricolage', 'Geist', sans-serif; color: var(--ink); font-weight: 600; letter-spacing: -0.018em; line-height: 1.12; text-wrap: balance; }
::selection { background: rgba(30, 64, 175, 0.16); color: var(--ink); }

.skip { position: absolute; left: -9999px; top: 0; background: var(--accent); color: var(--accent-ink); padding: 10px 16px; z-index: 200; }
.skip:focus { left: 12px; top: 12px; }
:focus-visible { outline: none; }
a:focus-visible, button:focus-visible, summary:focus-visible { box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--accent); border-radius: 10px; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }

.grad { color: var(--accent); }
.muted { color: var(--ink-3); font-weight: 500; }

/* ---------- botões ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 6px; justify-content: center;
  padding: 11px 20px; border-radius: 10px; font-size: 0.95rem; font-weight: 560;
  text-decoration: none; border: 0; cursor: pointer; white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-sm { padding: 9px 16px; font-size: 0.9rem; }
.btn-lg { padding: 14px 26px; font-size: 1rem; border-radius: 12px; }
.btn .chev { font-weight: 700; transition: transform 0.15s ease; }
.btn:hover .chev { transform: translateX(3px); }

.btn-neon, .btn-primary {
  color: var(--accent-ink); background: var(--accent); font-weight: 580;
  box-shadow: var(--shadow-sm);
}
.btn-neon:hover, .btn-primary:hover { transform: translateY(-1px); background: var(--accent-2); box-shadow: var(--shadow); }

.btn-glass, .btn-ghost {
  color: var(--ink); background: var(--bg-2); border: 1px solid var(--line-2);
}
.btn-glass:hover, .btn-ghost:hover { background: var(--bg-soft); border-color: var(--ink-3); transform: translateY(-1px); }

.btn-white { color: var(--accent); background: #fff; box-shadow: var(--shadow); }
.btn-white:hover { transform: translateY(-1px); background: #F2F6FF; }
.btn-outline-light { color: #fff; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.4); }
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.16); }

.link-plain { display: none; color: var(--accent); text-decoration: none; font-size: 0.9rem; font-weight: 520; }
.link-plain:hover { color: var(--accent-2); }
@media (min-width: 620px) { .link-plain { display: inline; } }
.link-arrow { display: inline-flex; align-items: center; gap: 5px; color: var(--accent); text-decoration: none; font-weight: 540; margin-top: 18px; }
.link-arrow .chev { font-weight: 700; transition: transform 0.15s ease; }
.link-arrow:hover .chev { transform: translateX(3px); }

/* ---------- topbar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251, 252, 253, 0.82); backdrop-filter: blur(14px) saturate(1.2); -webkit-backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: inset 0 -1px 0 0 var(--line);
}
.topbar.scrolled { box-shadow: inset 0 -1px 0 0 var(--line), var(--shadow-sm); }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 68px; }
.brand img { width: 116px; height: auto; }
.topnav { display: none; gap: 28px; }
.topnav a { color: var(--ink-2); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.15s ease; }
.topnav a:hover { color: var(--accent); }
@media (min-width: 1000px) { .topnav { display: flex; } }
.topbar-ctas { display: flex; align-items: center; gap: 18px; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--bg); }
.glow { display: none; }
.grid-fade {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(100% 80% at 35% 18%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(100% 80% at 35% 18%, #000 0%, transparent 70%);
  opacity: 0.6;
}

.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 56px; padding-block: 72px 96px; align-items: center; }
@media (min-width: 1000px) { .hero-grid { grid-template-columns: 1.02fr 0.98fr; gap: 40px; padding-block: 108px 120px; } }

.chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.84rem; font-weight: 500; color: var(--ink-2);
  background: var(--bg-2); box-shadow: inset 0 0 0 1px var(--line-2);
  padding: 6px 14px 6px 12px; border-radius: 999px; margin-bottom: 26px;
}
.chip-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }

h1 { font-size: clamp(2.6rem, 5.4vw, 4.3rem); font-weight: 640; letter-spacing: -0.028em; margin-bottom: 24px; }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--ink-2); max-width: 42ch; margin-bottom: 34px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-fine { margin-top: 16px; font-size: 0.86rem; color: var(--ink-3); }

/* mockup limpo (sem vidro/3D) */
.hero-stage { position: relative; min-height: 380px; }
.mock-desk {
  position: relative; border-radius: 12px; overflow: hidden;
  background: var(--bg-2); border: 1px solid var(--line-2); box-shadow: var(--shadow-lg);
}
.mock-bar { display: flex; gap: 6px; align-items: center; padding: 10px 14px; background: var(--bg-soft); box-shadow: inset 0 -1px 0 0 var(--line); }
.mock-bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--line-2); }
.mock-bar span { margin-left: 10px; font-size: 0.72rem; font-weight: 500; color: var(--ink-3); }

.mock-phone {
  position: absolute; width: 168px; right: -4%; bottom: -10%; z-index: 3;
  border-radius: 20px; overflow: hidden; border: 3px solid var(--bg-2);
  box-shadow: var(--shadow-lg);
}
@media (max-width: 999px) { .mock-phone { right: 0; bottom: -8%; width: 150px; } }

.glass-chip {
  position: absolute; z-index: 4; display: flex; align-items: center; gap: 10px;
  background: var(--bg-2); border: 1px solid var(--line-2); box-shadow: var(--shadow);
  border-radius: 12px; padding: 11px 15px 11px 12px;
}
.glass-chip strong { display: block; font-size: 0.84rem; color: var(--ink); font-weight: 600; letter-spacing: -0.01em; line-height: 1.2; }
.glass-chip span { font-size: 0.73rem; color: var(--ink-3); }
.gc-ic { flex-shrink: 0; width: 30px; height: 30px; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #fff; background: var(--accent); }
.gc-ic svg { width: 15px; height: 15px; }
.live-dot { flex-shrink: 0; width: 10px; height: 10px; border-radius: 50%; background: var(--accent); }
.chip-cert { top: -5%; left: 2%; }
.chip-live { bottom: 4%; left: 6%; }
@media (max-width: 1080px) { .chip-cert { left: -4%; } .chip-live { left: 0; } }
@media (max-width: 620px) { .glass-chip { display: none; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; } .reveal { transition: none !important; }
  .faq details::details-content { transition: none; }
}

/* ---------- faixa de prova ---------- */
.proof { border-block: 1px solid var(--line); background: var(--bg-2); }
.proof-inner { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px 12px; padding-block: 34px; }
@media (min-width: 760px) { .proof-inner { grid-template-columns: repeat(5, 1fr); } }
.proof-item { display: flex; flex-direction: column; gap: 2px; }
.proof-item strong { font-family: 'Bricolage', sans-serif; font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 620; letter-spacing: -0.02em; color: var(--ink); font-variant-numeric: tabular-nums; }
.proof-item span { font-size: 0.82rem; color: var(--ink-3); }

/* ---------- seções ---------- */
.section { padding-block: 100px; }
@media (max-width: 899px) { .section { padding-block: 68px; } }
.section-soft { background: var(--bg-soft); border-block: 1px solid var(--line); }
.sec-head { max-width: 760px; margin-bottom: 52px; }
.eyebrow { display: inline-block; font-size: 0.8rem; font-weight: 620; color: var(--accent); margin-bottom: 14px; letter-spacing: 0.01em; }
.eyebrow.light { color: #BFD0FF; }
h2 { font-size: clamp(2rem, 3.6vw, 2.8rem); font-weight: 620; margin-bottom: 14px; }
.sec-sub { font-size: 1.05rem; color: var(--ink-2); max-width: 56ch; }

/* ---------- BENTO (cartões) ---------- */
.bento { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 680px) { .bento { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .bento { grid-template-columns: repeat(6, 1fr); } }

.cell {
  position: relative; overflow: hidden; border-radius: var(--r);
  background: var(--bg-2); border: 1px solid var(--line);
  padding: 28px; display: flex; flex-direction: column; min-height: 260px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.cell:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-2); }
@media (min-width: 1000px) {
  .cell-lg { grid-column: span 4; }
  .cell-gamif { grid-column: span 2; }
  .cell-cert { grid-column: span 2; }
  .cell-enroll { grid-column: span 2; }
  .cell-mobile { grid-column: span 2; }
  .cell-admin { grid-column: span 6; }
}
.cell-tag { display: inline-block; align-self: flex-start; font-size: 0.74rem; font-weight: 620; color: var(--accent); background: var(--accent-soft); border-radius: 999px; padding: 4px 11px; margin-bottom: 14px; }
.cell-tag.warm { color: var(--accent-2); background: var(--tint); }
.cell h3 { font-size: 1.3rem; font-weight: 620; margin-bottom: 10px; }
.cell p { font-size: 0.93rem; color: var(--ink-2); max-width: 42ch; }
.cell-body { position: relative; z-index: 2; }

.cell-lg { min-height: 420px; }
.cell-media { margin: 24px -28px -28px; height: 230px; overflow: hidden; background: var(--bg-soft); box-shadow: inset 0 1px 0 0 var(--line); }
.cell-media img { width: 100%; object-fit: cover; object-position: top center; transition: transform 0.35s ease; }
.cell-admin .cell-media { height: 300px; }
.cell:hover .cell-media img { transform: scale(1.03); }
@media (max-width: 999px) { .cell-media { height: 200px; } .cell-lg { min-height: 0; } }

/* gamificação nativa */
.gamif-mini { margin-top: auto; }
.gm-row { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 8px; }
.gm-level { font-size: 0.8rem; font-weight: 620; color: var(--accent); }
.gm-xp { font-size: 1.1rem; font-weight: 620; color: var(--ink); }
.gm-bar { height: 8px; border-radius: 999px; background: var(--bg-soft); overflow: hidden; margin-bottom: 16px; box-shadow: inset 0 0 0 1px var(--line); }
.gm-bar i { display: block; height: 100%; border-radius: 999px; background: var(--accent); }
.gm-heat { display: grid; grid-template-columns: repeat(15, 1fr); gap: 4px; margin-bottom: 14px; }
.gm-heat i { aspect-ratio: 1; border-radius: 3px; background: var(--line); }
.gm-heat i.on { background: var(--accent); opacity: 0.85; }
.gm-heat i.on:nth-child(n+27) { opacity: 1; }
.gm-foot { font-size: 0.85rem; font-weight: 560; color: var(--ink); }

/* certificado nativo */
.cert-badge { display: flex; align-items: center; gap: 14px; padding: 16px; border-radius: 12px; background: var(--bg-soft); box-shadow: inset 0 0 0 1px var(--line); margin-bottom: 16px; margin-top: 4px; }
.cert-seal { flex-shrink: 0; width: 44px; height: 44px; border-radius: 11px; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; }
.cert-seal svg { width: 22px; height: 22px; }
.cert-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.cert-info strong { font-size: 0.9rem; color: var(--ink); font-weight: 620; }
.cert-info code { font-family: 'Geist', monospace; font-size: 0.82rem; color: var(--accent); font-weight: 560; }
.cert-verify { display: inline-flex; align-items: center; gap: 6px; font-size: 0.76rem; color: var(--ink-3); }
.dot-ok { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }

/* matrícula flow nativo */
.cell-enroll .flow { display: flex; align-items: stretch; gap: 10px; margin: 4px 0 16px; }
.flow-step { flex: 1; display: flex; flex-direction: column; justify-content: center; font-size: 0.82rem; font-weight: 560; color: var(--ink-2); background: var(--bg-soft); border-radius: 10px; padding: 12px; box-shadow: inset 0 0 0 1px var(--line); }
.flow-step.done { color: var(--accent); background: var(--accent-soft); box-shadow: inset 0 0 0 1px var(--accent); }
.flow-step small { display: block; font-size: 0.7rem; font-weight: 440; color: var(--ink-3); margin-top: 2px; }
.flow-arrow { display: flex; align-items: center; color: var(--ink-3); font-weight: 700; }

/* célula mobile */
.cell-mobile { min-height: 360px; }
.cell-phone { margin: 22px auto -28px; width: 190px; }
.cell-phone img { border-radius: 18px 18px 0 0; box-shadow: inset 0 0 0 1px var(--line-2), var(--shadow); }

/* ---------- demo card ---------- */
.demo-card {
  position: relative; overflow: hidden; border-radius: 20px; color: var(--ink-2);
  background: var(--bg-2); border: 1px solid var(--line-2); box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: 1fr; gap: 36px; padding: 48px 32px;
}
@media (min-width: 940px) { .demo-card { grid-template-columns: 1.1fr 0.9fr; padding: 56px; gap: 56px; } }
.demo-copy { position: relative; z-index: 1; }
.demo-copy h2 { color: var(--ink); }
.demo-copy > p { color: var(--ink-2); max-width: 44ch; margin: 14px 0 26px; }
.demo-fine { font-size: 0.84rem !important; color: var(--ink-3) !important; margin-top: 14px; }
.demo-creds { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 10px; align-self: center; }
.cred { display: grid; grid-template-columns: 84px 1fr; align-items: center; gap: 12px; background: var(--bg-soft); box-shadow: inset 0 0 0 1px var(--line); border-radius: 12px; padding: 12px 16px; }
.cred-k { font-size: 0.78rem; font-weight: 500; color: var(--ink-3); }
.cred-v { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.cred-v code { font-family: 'Geist', monospace; font-size: 0.92rem; font-weight: 560; color: var(--ink); overflow-wrap: anywhere; }
.copy { flex-shrink: 0; border: 1px solid var(--line-2); background: var(--bg-2); color: var(--ink-2); font-family: inherit; font-size: 0.74rem; font-weight: 560; border-radius: 999px; padding: 5px 13px; cursor: pointer; transition: background 0.15s ease, color 0.15s ease; }
.copy:hover { background: var(--ink); color: #fff; }
.copy.copied { background: var(--accent); color: #fff; border-color: var(--accent); }
@media (max-width: 620px) { .cred { grid-template-columns: 1fr; gap: 6px; } }

/* ---------- pilares ---------- */
.pillars { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 860px) { .pillars { grid-template-columns: repeat(3, 1fr); } }
.pillar { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r); padding: 30px 26px; box-shadow: var(--shadow-sm); transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; }
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-2); }
.pillar-n { display: inline-block; font-family: 'Bricolage', sans-serif; font-size: 1.2rem; font-weight: 660; margin-bottom: 12px; color: var(--accent); }
.pillar h3 { font-size: 1.3rem; margin-bottom: 10px; }
.pillar p { font-size: 0.95rem; color: var(--ink-2); }

/* ---------- steps ---------- */
.steps { list-style: none; display: grid; grid-template-columns: 1fr; gap: 8px; }
@media (min-width: 940px) { .steps { grid-template-columns: repeat(4, 1fr); gap: 24px; } }
.steps li { padding-top: 22px; box-shadow: inset 0 2px 0 0 var(--accent); }
@media (min-width: 940px) { .steps li { box-shadow: inset 0 2px 0 0 var(--line-2); } .steps li:first-child { box-shadow: inset 0 2px 0 0 var(--accent); } }
.step-n { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 999px; background: var(--accent-soft); color: var(--accent); font-weight: 620; font-size: 0.9rem; margin-bottom: 14px; box-shadow: inset 0 0 0 1px var(--accent); }
.steps h3 { font-size: 1.08rem; margin-bottom: 8px; }
.steps p { font-size: 0.92rem; color: var(--ink-2); }

/* ---------- caso ---------- */
.case { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 980px) { .case { grid-template-columns: 1fr 1fr; gap: 64px; } }
.case-copy .sec-sub strong { color: var(--ink); font-weight: 620; }
.case-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 28px 0 4px; }
.case-metrics strong { display: block; font-family: 'Bricolage', sans-serif; font-size: 1.4rem; font-weight: 620; color: var(--ink); letter-spacing: -0.02em; }
.case-metrics span { font-size: 0.82rem; color: var(--ink-3); }
.case-shot { border-radius: 12px; overflow: hidden; background: var(--bg-2); border: 1px solid var(--line-2); box-shadow: var(--shadow-lg); }
.case-shot .device-bar { display: flex; gap: 6px; align-items: center; padding: 10px 13px; background: var(--bg-soft); box-shadow: inset 0 -1px 0 0 var(--line); }
.case-shot .device-bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--line-2); }
.case-shot .device-bar span { margin-left: 10px; font-size: 0.72rem; color: var(--ink-3); }
@media (max-width: 979px) { .case-shot { transform: none; } }

/* ---------- founder ---------- */
.founder { display: flex; flex-direction: column; gap: 26px; align-items: flex-start; }
@media (min-width: 880px) { .founder { flex-direction: row; gap: 48px; align-items: center; } }
.founder-mark { flex-shrink: 0; width: 66px; height: 66px; border-radius: 50%; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Bricolage', sans-serif; font-weight: 660; font-size: 1.2rem; }
.founder blockquote p { font-size: clamp(1.2rem, 2.1vw, 1.55rem); line-height: 1.45; color: var(--ink); font-weight: 460; letter-spacing: -0.012em; max-width: 30em; margin-bottom: 16px; }
.founder footer { font-size: 0.9rem; color: var(--ink-3); }
.founder footer strong { color: var(--ink); font-weight: 620; }

/* ---------- faq ---------- */
.faq-wrap { max-width: 820px; }
.faq { box-shadow: inset 0 1px 0 0 var(--line); }
.faq details { box-shadow: inset 0 -1px 0 0 var(--line); }
.faq details::details-content { height: 0; overflow: clip; transition: height 0.3s cubic-bezier(0,0,0.12,0.95), content-visibility 0.3s allow-discrete; }
.faq details[open]::details-content { height: auto; }
.faq summary { cursor: pointer; list-style: none; padding: 22px 48px 22px 0; font-weight: 540; font-size: 1.05rem; color: var(--ink); position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before, .faq summary::after { content: ''; position: absolute; right: 6px; top: 50%; width: 15px; height: 2px; border-radius: 2px; background: var(--ink-3); transition: transform 0.2s ease, background 0.2s ease; }
.faq summary::after { transform: rotate(90deg); }
.faq details[open] summary { color: var(--accent); }
.faq details[open] summary::before, .faq details[open] summary::after { background: var(--accent); }
.faq details[open] summary::after { transform: rotate(0deg); }
.faq details p { padding: 0 0 24px; max-width: 70ch; color: var(--ink-2); }

/* ---------- cta final ---------- */
.cta-final { position: relative; overflow: hidden; background: var(--accent); color: #fff; text-align: center; }
.cta-final .glow { display: none; }
.mesh { display: none; }
.cta-inner { position: relative; z-index: 1; max-width: 680px; margin-inline: auto; padding-block: 100px; }
.cta-final h2 { color: #fff; font-size: clamp(2.1rem, 3.6vw, 3rem); margin-bottom: 16px; }
.cta-inner > p { color: rgba(255,255,255,0.86); font-size: 1.1rem; margin-bottom: 30px; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.cta-fine { margin-top: 18px; font-size: 0.86rem; color: rgba(255,255,255,0.7); }
@media (max-width: 899px) { .cta-inner { padding-block: 72px; } }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line); background: var(--bg); }
.footer-inner { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; padding-block: 36px; }
.footer-brand { display: flex; flex-direction: column; gap: 8px; }
.footer-brand img { width: 96px; }
.footer-brand span { color: var(--ink-3); font-size: 0.84rem; max-width: 300px; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { color: var(--ink-2); text-decoration: none; font-size: 0.88rem; font-weight: 500; }
.footer-links a:hover { color: var(--accent); }
.footer-note { color: var(--ink-3); font-size: 0.82rem; }

/* ---------- reveal + mobile ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.55s cubic-bezier(.4,0,.2,1), transform 0.55s cubic-bezier(.4,0,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (max-width: 480px) { .hero-ctas .btn, .cta-btns .btn { width: 100%; } }
