/* =========================================================
   Pablo Marques — Gestão de Tráfego Estratégico
   LP com VSL — design system: dark / verde neon / HUD tech
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@500;700;800;900&family=JetBrains+Mono:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  /* TESTE — fundo claro (tom extraído de lucaskeidson.com.br: rgb(242,237,226)).
     Versão escura original preservada na branch master. */
  --bg: #f2ede2;
  --bg-alt: #ece5d4;
  --bg-card: #ffffff;
  --bg-card-hover: #fbf8f0;
  --line: rgba(20, 30, 22, 0.10);
  --line-strong: rgba(20, 30, 22, 0.22);
  --green: #22c55e;
  --green-bright: #4ade80;
  --green-dim: #16a34a;
  --green-ink: #15803d;
  --cyan: #2dd4d4;
  --text: #142218;
  --text-dim: #4b5850;
  --text-faint: #74847a;
  --danger: #dc2626;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --maxw: 1180px;
  --font-display: 'Unbounded', 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
  --font-body: 'Manrope', 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* --- atmosphere: fundo limpo (teste) -----------------------------------
   Versão anterior tinha dot-grid + 2 blobs de glow (ver branch master /
   histórico do git). Removidos aqui pra testar um fundo mais clean,
   inspirado em lucaskeidson.com.br — mantendo cor, paleta e o resto do
   design system intactos.
   ------------------------------------------------------------------- */

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

section { position: relative; z-index: 1; }

/* --- typography --------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-ink);
  border: 1px solid var(--line-strong);
  background: rgba(34, 197, 94, 0.08);
  padding: 7px 16px;
  border-radius: 999px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.15rem; font-weight: 700; }

.gradient-text {
  background: linear-gradient(100deg, var(--green-bright) 20%, var(--cyan) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--text-dim);
  max-width: 640px;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}
.section-head .eyebrow { margin-bottom: 18px; }
.section-head p { color: var(--text-dim); margin-top: 14px; font-size: 1.02rem; }

.section-pad { padding: 100px 0; }
@media (max-width: 720px) { .section-pad { padding: 64px 0; } }

/* --- HUD corner brackets ------------------------------------------------- */
.hud {
  position: relative;
}
.hud::before, .hud::after,
.hud .hud-br::before, .hud .hud-br::after { content: none; }

.hud-frame { position: relative; }
.hud-frame > .corner { position: absolute; width: 20px; height: 20px; pointer-events: none; }
.hud-frame > .corner::before, .hud-frame > .corner::after { content: ''; position: absolute; background: var(--line-strong); }
.corner--tl { top: -1px; left: -1px; }
.corner--tl::before { width: 100%; height: 2px; top: 0; left: 0; }
.corner--tl::after { width: 2px; height: 100%; top: 0; left: 0; }
.corner--tr { top: -1px; right: -1px; }
.corner--tr::before { width: 100%; height: 2px; top: 0; right: 0; }
.corner--tr::after { width: 2px; height: 100%; top: 0; right: 0; }
.corner--bl { bottom: -1px; left: -1px; }
.corner--bl::before { width: 100%; height: 2px; bottom: 0; left: 0; }
.corner--bl::after { width: 2px; height: 100%; bottom: 0; left: 0; }
.corner--br { bottom: -1px; right: -1px; }
.corner--br::before { width: 100%; height: 2px; bottom: 0; right: 0; }
.corner--br::after { width: 2px; height: 100%; bottom: 0; right: 0; }

/* --- buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--green-dim), var(--green-bright));
  color: #04150a;
  box-shadow: 0 0 0 1px rgba(74, 222, 128, 0.4), 0 12px 30px -10px rgba(34, 197, 94, 0.55);
}
.btn--primary:hover { transform: translateY(-2px); filter: brightness(1.08); }
.btn--ghost {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line-strong);
  color: var(--text);
}
.btn--ghost:hover { background: rgba(255,255,255,0.05); border-color: var(--green-bright); }
.btn--block { width: 100%; }
.btn svg { width: 16px; height: 16px; }

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* --- header ---------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(242, 237, 226, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text);
}
.logo span { color: var(--green-ink); }
.header-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 0.08em;
  display: none;
}
@media (min-width: 640px) { .header-sub { display: block; } }

/* --- hero / vsl ------------------------------------------------------------- */
.hero {
  padding: 76px 0 90px;
  text-align: center;
}
.hero .eyebrow { margin-bottom: 22px; }
.hero h1 { max-width: 900px; margin: 0 auto 22px; }
.hero .lede { margin: 0 auto 44px; max-width: 620px; }

.vsl-wrap {
  max-width: 860px;
  margin: 0 auto 30px;
}
.vsl-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(circle at 30% 20%, rgba(34,197,94,0.18), transparent 55%),
    linear-gradient(160deg, #0c1712 0%, #060a08 65%);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.7);
}
.vsl-frame .noise-lines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,0.025) 0 2px, transparent 2px 6px);
  opacity: 0.5;
}
.vsl-play {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  color: #eef2ee;
}
.vsl-play-btn {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-dim), var(--green-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 1px rgba(74,222,128,0.5), 0 0 0 14px rgba(34,197,94,0.08), 0 20px 40px -12px rgba(34,197,94,0.6);
  transition: transform 0.25s ease;
}
.vsl-play-btn svg { width: 30px; height: 30px; margin-left: 4px; fill: #04150a; }
.vsl-play:hover .vsl-play-btn { transform: scale(1.07); }
.vsl-caption {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9fb0a6;
}
.vsl-caption strong { color: var(--green-bright); }
.vsl-frame .corner { width: 26px; height: 26px; }
/* boxes escuros (vsl/depoimento) mantêm o acento verde original, mesmo com a página clara ao redor */
.vsl-frame .corner::before, .vsl-frame .corner::after,
.testi-video .corner::before, .testi-video .corner::after {
  background: rgba(45, 212, 130, 0.35);
}

.vsl-sub {
  max-width: 620px;
  margin: 0 auto 34px;
  color: var(--text-dim);
  font-size: 1.02rem;
}

.hero-note {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-faint);
  letter-spacing: 0.04em;
}

/* --- social proof bar --------------------------------------------------------- */
.proof-bar {
  padding: 54px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.proof-label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 30px;
}
.logo-marquee {
  position: relative;
  overflow: hidden;
  margin-bottom: 54px;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}
.logo-track {
  display: flex;
  align-items: flex-start;
  gap: 44px;
  width: max-content;
  animation: logo-scroll var(--marquee-duration, 46s) linear infinite;
}
.logo-marquee:hover .logo-track { animation-play-state: paused; }
@keyframes logo-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .logo-track { animation: none; }
}
.logo-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 92px;
  flex-shrink: 0;
}
.logo-slot .logo-chip {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #f4f4f2;
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.logo-slot:hover .logo-chip {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px -8px rgba(34,197,94,0.45);
}
.logo-slot .logo-chip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Polidor Academy / Polidor Automotive: logos são wordmarks bem largos
   e rasos (~240x43px), com texto claro pensado pra fundo escuro — em
   "cover" numa chip circular ficavam cortados a uma tira ilegível, e o
   texto claro sumia no fundo claro do chip. Aqui o chip vira escuro e a
   imagem usa "contain" com uma margem, pra mostrar o wordmark inteiro e
   legível. Seletores com a mesma especificidade da regra geral acima
   (.logo-slot .logo-chip / .logo-slot .logo-chip img), senão perdem. */
.logo-slot .logo-chip--wordmark {
  background: #14171a;
}
.logo-slot .logo-chip--wordmark img {
  object-fit: contain;
  width: 78%;
  height: 78%;
}
.logo-slot .logo-name {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: var(--text-faint);
  text-align: center;
  line-height: 1.3;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 720px) { .stat-grid { grid-template-columns: 1fr; } }
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.1rem;
  color: var(--green-ink);
  margin-bottom: 6px;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* --- mecanismo / steps ------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}
@media (max-width: 960px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  position: relative;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.step-card:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.step-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--green-ink);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  display: block;
}
.step-card h3 { margin-bottom: 10px; }
.step-card p { color: var(--text-dim); font-size: 0.94rem; }

/* --- dor / agitação -------------------------------------------------------------- */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (max-width: 720px) { .pain-grid { grid-template-columns: 1fr; } }
.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px 26px;
}
.pain-card h3 {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-ink);
  margin-bottom: 18px;
  font-weight: 600;
}
.pain-card ul { display: flex; flex-direction: column; gap: 14px; }
.pain-card li {
  display: flex;
  gap: 10px;
  color: var(--text-dim);
  font-size: 0.96rem;
  line-height: 1.5;
}
.pain-card li::before {
  content: '×';
  flex-shrink: 0;
  color: var(--danger);
  font-family: var(--font-mono);
  font-weight: 700;
}

/* --- objeções por segmento --------------------------------------------------------- */
.objection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 960px) { .objection-grid { grid-template-columns: 1fr; } }
.objection-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 24px;
}
.objection-quote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.35;
}
.objection-answer {
  display: flex;
  gap: 10px;
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.55;
}
.objection-answer::before {
  content: '✓';
  flex-shrink: 0;
  color: var(--green-ink);
  font-family: var(--font-mono);
  font-weight: 700;
}

/* --- FAQ --------------------------------------------------------------------------- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 6px 24px;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 1.3rem;
  color: var(--green-ink);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  color: var(--text-dim);
  font-size: 0.94rem;
  padding-bottom: 20px;
  line-height: 1.6;
}

/* --- cenário (CTA final) ------------------------------------------------------------ */
.scenario-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 900px;
  margin: 0 auto 34px;
  text-align: left;
}
@media (max-width: 720px) { .scenario-grid { grid-template-columns: 1fr; } }
.scenario-card {
  border-radius: var(--radius-md);
  padding: 26px 24px;
  border: 1px solid var(--line);
  background: var(--bg-card);
}
.scenario-card h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.scenario-card p { color: var(--text-dim); font-size: 0.94rem; line-height: 1.55; }
.scenario-card--a {
  border-color: var(--line-strong);
  background: linear-gradient(160deg, rgba(34,197,94,0.08), rgba(45,212,212,0.03));
}
.scenario-card--a h4 { color: var(--text-faint); }
.scenario-card--b h4 { color: var(--green-ink); }

/* --- oferta / cards ------------------------------------------------------------ */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
/* card ímpar (Overdelivery) centralizado na própria linha, em vez de colado à esquerda */
.offer-grid > .offer-card:last-child {
  grid-column: 1 / -1;
  max-width: calc(50% - 9px);
  margin: 0 auto;
}
@media (max-width: 720px) {
  .offer-grid { grid-template-columns: 1fr; }
  .offer-grid > .offer-card:last-child { max-width: none; }
}
.offer-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
  display: flex;
  gap: 16px;
}
.offer-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(34,197,94,0.1);
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-ink);
}
.offer-icon svg { width: 20px; height: 20px; }
.offer-card h3 { margin-bottom: 6px; }
.offer-card p { color: var(--text-dim); font-size: 0.94rem; }
.offer-note {
  margin-top: 30px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--text-faint);
}

/* --- prova em vídeo -------------------------------------------------------------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 44px;
  align-items: center;
}
@media (max-width: 860px) { .testimonial-grid { grid-template-columns: 1fr; } }
.testi-video {
  aspect-ratio: 9 / 16;
  max-width: 360px;
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong);
  background: linear-gradient(160deg, #0c1712 0%, #060a08 70%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  overflow: hidden;
}
/* O embed padrão do Instagram renderiza o Reel (vertical, ~9:16) dentro de
   um canvas quase quadrado, sobrando tarja preta nas laterais (pillarbox).
   Aqui o iframe é desenhado ~1.73x maior que o box e deslocado (esquerda +
   topo) pra: (1) a tarja preta lateral sair da área visível, o vídeo
   preenche o box de ponta a ponta; (2) o cabeçalho ("Ver perfil") ficar
   fora da área visível, por cima. O rodapé (curtir/"Ver mais no
   Instagram") sai por baixo, dentro do overflow:hidden do container.
   Calibrado visualmente pro embed atual — se o post/vídeo mudar, reconferir. */
.testi-video iframe {
  position: absolute;
  top: -64px;
  left: -36.5%;
  width: 173%;
  height: calc(100% + 64px);
  border: none;
  display: block;
}
.testi-video .vsl-play-btn { width: 64px; height: 64px; }
.testi-video .vsl-play-btn svg { width: 22px; height: 22px; }
.testi-copy blockquote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.35;
  margin-bottom: 18px;
}
.testi-copy cite {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 12.5px;
  color: var(--text-faint);
  letter-spacing: 0.04em;
}

/* --- autoridade ------------------------------------------------------------------ */
.authority {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 720px) { .authority { grid-template-columns: 1fr; text-align: center; } }
.authority-photo {
  width: 340px;
  max-width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  margin: 0 auto;
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(circle at 35% 25%, rgba(34,197,94,0.35), transparent 60%),
    linear-gradient(160deg, #0c1712, #060a08);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.6);
  /* bio ficou bem mais longa que a foto — sticky mantém a foto em
     evidência enquanto o texto rola, em vez de "flutuar" perdida no
     meio de um bloco muito mais alto */
  position: sticky;
  top: 110px;
}
@media (max-width: 720px) { .authority-photo { position: static; } }
.authority-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.authority-copy p { color: var(--text-dim); margin-bottom: 16px; font-size: 1.02rem; }
.authority-sign {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text);
  margin-top: 18px;
}
.authority-sign span { display: block; font-family: var(--font-mono); font-weight: 400; font-size: 12px; color: var(--text-faint); margin-top: 4px; }

/* --- escassez --------------------------------------------------------------------- */
.scarcity {
  background: linear-gradient(160deg, rgba(34,197,94,0.08), rgba(45,212,212,0.03));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 54px 40px;
  text-align: center;
}
.scarcity h2 { max-width: 620px; margin: 0 auto 16px; }
.scarcity p { max-width: 560px; margin: 0 auto 30px; color: var(--text-dim); }

/* --- formulário -------------------------------------------------------------------- */
.form-section { padding-bottom: 120px; }
.form-shell {
  max-width: 680px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 44px;
}
@media (max-width: 640px) { .form-shell { padding: 28px 22px; } }

.form-row { margin-bottom: 22px; }
.form-row label {
  display: block;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 12px;
}
.form-row input[type="text"],
.form-row input[type="tel"],
.form-row textarea {
  width: 100%;
  background: rgba(20, 30, 22, 0.035);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.98rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--green-bright);
  background: rgba(34,197,94,0.05);
}
.form-row textarea { min-height: 90px; resize: vertical; }
.form-row input::placeholder, .form-row textarea::placeholder { color: var(--text-faint); }

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (max-width: 480px) { .option-grid { grid-template-columns: 1fr; } }
.option-grid.option-grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 560px) { .option-grid.option-grid--3 { grid-template-columns: 1fr; } }

.option-pill {
  position: relative;
}
.option-pill input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
}
.option-pill span {
  display: block;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  font-size: 0.9rem;
  color: var(--text-dim);
  text-align: center;
  transition: all 0.15s ease;
}
.option-pill input:checked + span {
  border-color: var(--green-dim);
  background: rgba(34,197,94,0.12);
  color: var(--green-ink);
  font-weight: 600;
}
.option-pill input:focus-visible + span { outline: 2px solid var(--green-bright); outline-offset: 2px; }

.conditional-row {
  display: none;
  margin-top: 12px;
}
.conditional-row.is-visible { display: block; }

.form-foot {
  margin-top: 30px;
}
.form-disclaimer {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-faint);
  margin-top: 16px;
  line-height: 1.6;
}

.field-error {
  color: var(--danger);
  font-family: var(--font-mono);
  font-size: 11.5px;
  margin-top: 8px;
  display: none;
}
.form-row.has-error input,
.form-row.has-error textarea { border-color: var(--danger); }
.form-row.has-error .field-error { display: block; }

/* --- final cta bar ------------------------------------------------------------------ */
.final-cta {
  text-align: center;
  padding: 90px 0 60px;
}
.final-cta h2 { max-width: 640px; margin: 0 auto 18px; }
.final-cta p { max-width: 520px; margin: 0 auto 34px; color: var(--text-dim); }

/* --- footer --------------------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 34px 0;
  text-align: center;
}
.site-footer .logo { display: block; margin-bottom: 10px; }
.footer-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 0.06em;
}

/* --- reveal-on-scroll animation --------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- toast (whatsapp redirect notice) ------------------------------------------------------ */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--bg-card);
  border: 1px solid var(--green-dim);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 12.5px;
  padding: 14px 22px;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 100;
  white-space: nowrap;
}
.toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }
