/* OHLead — Landing page */
/* Hero dark + corpo claro · acento laranja da marca */

:root {
  --orange: #ff6a00;
  --orange-2: #ff8a3d;
  --ink: #16130f;
  --ink-2: rgba(22, 19, 15, 0.66);
  --ink-3: rgba(22, 19, 15, 0.45);
  --paper: #faf7f2;
  --paper-2: #ffffff;
  --line: rgba(22, 19, 15, 0.1);
  --dark: #0c0b09;
  --dark-2: #15130f;
  --green: #1f8a5b;
  --radius: 18px;
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* Símbolo OHLead (anel + sorriso) dentro dos selos em gradiente — branco, 62% do selo. */
.oh-symbol { width: 62%; height: 62%; display: block; }
/* "Lead" do wordmark em laranja (OH + Lead). */
.oh-lead { color: var(--orange); }

.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-tight { padding: 64px 0; }

h1, h2, h3 { font-family: var(--font-display); letter-spacing: -0.015em; text-wrap: balance; }
.kicker {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 14px;
}
.h2 { font-size: clamp(30px, 4.2vw, 44px); font-weight: 700; line-height: 1.12; margin: 0 0 14px; }
.lead { font-size: clamp(17px, 2vw, 20px); color: var(--ink-2); max-width: 640px; margin: 0; text-wrap: pretty; }
.center { text-align: center; }
.center .lead { margin: 0 auto; }

/* ── botões ─────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-size: 16.5px; font-weight: 700;
  padding: 16px 28px; border-radius: 14px; border: 0; cursor: pointer;
  text-decoration: none; transition: transform 0.12s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange-2), var(--orange));
  box-shadow: 0 10px 30px rgba(255, 106, 0, 0.35);
}
.btn-primary:hover { box-shadow: 0 14px 40px rgba(255, 106, 0, 0.5); }
.btn-ghost {
  color: #fff; background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.14); }
.btn-wa { background: linear-gradient(135deg, #34d058, #16a34a); box-shadow: 0 10px 30px rgba(34, 197, 94, 0.35); color: #fff; }
.btn-wa:hover { box-shadow: 0 14px 40px rgba(34, 197, 94, 0.5); }
.btn-sub { display: block; font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.55); margin-top: 10px; }
.light .btn-sub { color: var(--ink-3); }

/* ── CTA variants (controladas por body[data-cta]) ── */
.cta-variant { display: none; }
body[data-cta="whatsapp"] .cta-variant-whatsapp { display: block; }
body[data-cta="form"] .cta-variant-form { display: block; }
body[data-cta="trial"] .cta-variant-trial { display: block; }

.cta-form { display: flex; gap: 10px; flex-wrap: wrap; }
.cta-form input {
  flex: 1; min-width: 180px; font: inherit; font-size: 16px;
  padding: 15px 18px; border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22); background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.cta-form input::placeholder { color: rgba(255, 255, 255, 0.45); }
.cta-form input:focus { outline: none; border-color: var(--orange); }
.light .cta-form input { border-color: var(--line); background: #fff; color: var(--ink); }
.light .cta-form input::placeholder { color: var(--ink-3); }
.cta-form-ok { font-size: 15px; font-weight: 600; color: #34d058; padding: 8px 0; }

/* ── NAV ────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(12, 11, 9, 0.85); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #fff; }
.nav-mark {
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(135deg, var(--orange-2), var(--orange));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 15px; color: #fff;
}
.nav-name { font-family: var(--font-display); font-weight: 700; font-size: 19px; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { font-size: 14.5px; font-weight: 600; color: rgba(255, 255, 255, 0.7); text-decoration: none; }
.nav-links a:hover { color: #fff; }
.nav-cta {
  font-size: 14.5px; font-weight: 700; color: #fff; text-decoration: none;
  background: linear-gradient(135deg, var(--orange-2), var(--orange));
  padding: 10px 20px; border-radius: 11px;
}
@media (max-width: 880px) { .nav-links a { display: none; } }

/* ── HERO ───────────────────────────────── */
.hero {
  background: radial-gradient(1100px 600px at 75% -10%, rgba(255, 106, 0, 0.22), transparent 60%),
              radial-gradient(700px 500px at 10% 110%, rgba(255, 106, 0, 0.1), transparent 60%),
              var(--dark);
  color: #fff;
  padding: 84px 0 0;
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: 48px; align-items: center; padding-bottom: 88px; }
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; padding-bottom: 64px; } }
.hero h1 {
  font-size: clamp(36px, 5.4vw, 58px); font-weight: 800; line-height: 1.06; margin: 0 0 22px;
}
.hero h1 em { font-style: normal; color: var(--orange); }
.hero-lead { font-size: clamp(17px, 2vw, 20px); color: rgba(255, 255, 255, 0.72); max-width: 540px; margin: 0 0 34px; text-wrap: pretty; }
.hero-cta-zone { max-width: 520px; }
.hero-bullets { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 30px; padding: 0; list-style: none; }
.hero-bullets li { display: flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(255, 255, 255, 0.65); }
.hero-bullets b { color: #fff; font-weight: 700; }
.tick { width: 18px; height: 18px; border-radius: 99px; background: rgba(52, 208, 88, 0.15); color: #34d058; display: inline-flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; flex-shrink: 0; }

/* visual do hero: totem + card flutuante */
.hero-visual { position: relative; min-height: 460px; }
.hero-totem {
  width: 290px; margin: 0 auto; background: #050506;
  border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 28px; padding: 10px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6);
  transform: rotate(2deg);
}
.hero-totem-screen { border-radius: 18px; overflow: hidden; background: linear-gradient(150deg, #1a1a1a, #0a0a0a 55%, rgba(255, 106, 0, 0.3)); padding: 26px 18px 30px; text-align: center; }
.ht-mark { width: 40px; height: 40px; border-radius: 12px; background: linear-gradient(135deg, var(--orange-2), var(--orange)); margin: 0 auto 10px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; color: #fff; }
.ht-title { font-family: var(--font-display); font-size: 17px; font-weight: 700; margin: 0 0 4px; color: #fff; }
.ht-sub { font-size: 11.5px; color: rgba(255, 255, 255, 0.55); margin: 0 0 18px; }
.ht-logo-row { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 10px; }
.ht-store { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: #fff; }
.ht-em { font-style: normal; background: linear-gradient(135deg, #ff8a3d, #ffd9b3); -webkit-background-clip: text; background-clip: text; color: transparent; }
.ht-card { position: relative; display: block; text-align: left; background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)); border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 18px; padding: 15px 14px; margin-bottom: 10px; overflow: hidden; }
.ht-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(220px 110px at 100% 0%, rgba(255, 106, 0, 0.22), transparent 70%); pointer-events: none; }
.ht-card-green::before { background: radial-gradient(220px 110px at 100% 0%, rgba(34, 197, 94, 0.2), transparent 70%); }
.ht-card-emoji { font-size: 23px; display: block; margin-bottom: 7px; position: relative; }
.ht-card b { display: block; font-size: 15px; color: #fff; margin-bottom: 3px; position: relative; }
.ht-desc { display: block; font-size: 11px; color: rgba(255, 255, 255, 0.6); margin-bottom: 10px; position: relative; line-height: 1.35; }
.ht-cta { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 800; color: #fff; background: linear-gradient(135deg, var(--orange-2), var(--orange)); padding: 7px 14px; border-radius: 99px; box-shadow: 0 6px 18px rgba(255, 106, 0, 0.4); position: relative; }
.ht-cta-green { background: linear-gradient(135deg, #34d058, #16a34a); box-shadow: 0 6px 18px rgba(34, 197, 94, 0.35); }
.ht-arrow { margin-left: auto; width: 26px; height: 26px; border-radius: 99px; background: linear-gradient(135deg, var(--orange-2), var(--orange)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; flex-shrink: 0; }

.hero-float {
  position: absolute; right: -8px; top: 30px;
  background: #17151200; backdrop-filter: blur(2px);
  animation: floaty 5s ease-in-out infinite;
}
.hero-float-card {
  background: rgba(20, 18, 15, 0.92); border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px; padding: 14px 16px; box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  width: 230px;
}
.hf-label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; color: rgba(255, 255, 255, 0.5); text-transform: uppercase; }
.hf-row { display: flex; align-items: center; gap: 9px; margin-top: 9px; }
.hf-emoji { font-size: 20px; }
.hf-name { font-size: 13px; font-weight: 700; color: #fff; }
.hf-sub { font-size: 11px; color: rgba(255, 255, 255, 0.5); }
.hf-btn { margin-left: auto; font-size: 11px; font-weight: 700; color: #34d058; background: rgba(52, 208, 88, 0.12); border: 1px solid rgba(52, 208, 88, 0.3); padding: 4px 9px; border-radius: 99px; white-space: nowrap; }
.hero-float-2 { position: absolute; left: -16px; bottom: 36px; animation: floaty 6s ease-in-out 0.8s infinite; }
.hf-kpi { background: rgba(20, 18, 15, 0.92); border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 16px; padding: 14px 18px; box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5); }
.hf-kpi-v { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: #fff; }
.hf-kpi-v small { font-size: 13px; color: #34d058; font-weight: 700; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@media (max-width: 960px) {
  .hero-visual { min-height: 0; padding-bottom: 30px; }
  .hero-float { right: 0; } .hero-float-2 { left: 0; }
}
@media (prefers-reduced-motion: reduce) { .hero-float, .hero-float-2 { animation: none; } }

/* faixa de credibilidade */
.hero-strip { border-top: 1px solid rgba(255, 255, 255, 0.08); padding: 18px 0; }
.hero-strip-inner { display: flex; gap: 12px 36px; align-items: center; justify-content: center; flex-wrap: wrap; font-size: 13.5px; color: rgba(255, 255, 255, 0.55); }
.hero-strip-inner b { color: rgba(255, 255, 255, 0.85); }

/* ── DOR / CONTRASTE ───────────────────── */
.pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 44px; }
@media (max-width: 840px) { .pain-grid { grid-template-columns: 1fr; } }
.pain-card { border-radius: var(--radius); padding: 30px 30px 26px; }
.pain-before { background: #f1ece4; border: 1px solid var(--line); }
.pain-after { background: var(--dark); color: #fff; box-shadow: 0 30px 70px rgba(12, 11, 9, 0.25); position: relative; overflow: hidden; }
.pain-after::before { content: ''; position: absolute; inset: 0; background: radial-gradient(420px 200px at 90% 0%, rgba(255, 106, 0, 0.2), transparent 70%); pointer-events: none; }
.pain-tag { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 12px; border-radius: 99px; margin-bottom: 18px; }
.pain-before .pain-tag { background: rgba(22, 19, 15, 0.08); color: var(--ink-2); }
.pain-after .pain-tag { background: rgba(255, 106, 0, 0.18); color: var(--orange-2); position: relative; }
.pain-card h3 { font-size: 22px; margin: 0 0 16px; }
.pain-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.pain-list li { display: flex; gap: 11px; font-size: 15.5px; line-height: 1.45; position: relative; }
.pain-before .pain-list li { color: var(--ink-2); }
.pain-after .pain-list li { color: rgba(255, 255, 255, 0.78); }
.pain-x { color: #c2410c; font-weight: 800; flex-shrink: 0; }
.pain-v { color: #34d058; font-weight: 800; flex-shrink: 0; }

/* ── COMO FUNCIONA ─────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; counter-reset: step; }
@media (max-width: 840px) { .steps { grid-template-columns: 1fr; } }
.step { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; position: relative; }
.step-n {
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(135deg, var(--orange-2), var(--orange)); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 18px; margin-bottom: 18px;
}
.step h3 { font-size: 20px; margin: 0 0 8px; }
.step p { font-size: 15px; color: var(--ink-2); margin: 0; }
.step-glyph { font-size: 26px; position: absolute; top: 26px; right: 24px; }

/* ── DEMO INTERATIVA ───────────────────── */
.demo { background: var(--dark); color: #fff; }
.demo .lead { color: rgba(255, 255, 255, 0.65); }
.demo-grid { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 56px; align-items: center; margin-top: 12px; }
@media (max-width: 920px) { .demo-grid { grid-template-columns: 1fr; gap: 36px; } }
.demo-points { list-style: none; margin: 34px 0 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.demo-points li { display: flex; gap: 14px; }
.demo-points .dp-ico { width: 38px; height: 38px; border-radius: 11px; background: rgba(255, 106, 0, 0.14); border: 1px solid rgba(255, 106, 0, 0.3); display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.demo-points b { display: block; font-size: 16px; margin-bottom: 2px; }
.demo-points span { font-size: 14px; color: rgba(255, 255, 255, 0.6); }
.demo-hint { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--orange-2); margin-top: 28px; }
.demo-hint::before { content: '👇'; }

/* totem do simulador */
.sim {
  /* width:100% + max-width (não width:360px) p/ não impor min-content de 360px à
     coluna 1fr do grid no mobile — senão a faixa não encolhe e estoura à direita. */
  width: 100%; max-width: 360px; margin: 0 auto;
  background: #050506; border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px; padding: 12px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}
.sim-screen {
  /* Altura fixa na tela inicial (hub, a mais alta ~561px): as views trocam por
     display:none/flex e a tela não deve encolher/crescer ao navegar. */
  border-radius: 20px; overflow: hidden; min-height: 561px;
  background: linear-gradient(150deg, #1a1a1a, #0a0a0a 55%, rgba(255, 106, 0, 0.28));
  padding: 26px 20px 28px; position: relative;
  display: flex; flex-direction: column;
}
.sim-view { display: none; flex: 1; flex-direction: column; }
.sim-view.is-on { display: flex; }
.sim-head { text-align: center; margin-bottom: 18px; }
.sim-mark { width: 38px; height: 38px; border-radius: 11px; background: linear-gradient(135deg, var(--orange-2), var(--orange)); margin: 0 auto 8px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; color: #fff; font-size: 14px; }
.sim-title { font-family: var(--font-display); font-size: 19px; font-weight: 700; margin: 0; color: #fff; }
.sim-sub { font-size: 12.5px; color: rgba(255, 255, 255, 0.55); margin: 5px 0 0; }
.sim-opt { appearance: none; cursor: pointer; width: 100%; text-align: left; display: flex; align-items: center; gap: 12px; background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 16px; padding: 16px 14px; color: #fff; margin-bottom: 10px; font: inherit; transition: transform 0.1s; }
.sim-opt:active { transform: scale(0.98); }
.sim-opt-emoji { font-size: 26px; }
.sim-opt b { display: block; font-size: 15px; }
.sim-opt span { font-size: 11.5px; color: rgba(255, 255, 255, 0.55); }
.sim-opt .ht-arrow { margin-left: auto; }
.sim-hub-card { display: block; position: relative; overflow: hidden; }
.sim-hub-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(260px 130px at 100% 0%, rgba(255, 106, 0, 0.2), transparent 70%); pointer-events: none; }
.sim-hub-green::before { background: radial-gradient(260px 130px at 100% 0%, rgba(34, 197, 94, 0.18), transparent 70%); }
.sim-hub-card .sim-opt-emoji { display: block; margin-bottom: 8px; position: relative; }
.sim-hub-card b { display: block; font-size: 17px; margin-bottom: 4px; position: relative; }
.sim-hub-desc { display: block; font-size: 12px; color: rgba(255, 255, 255, 0.6); margin-bottom: 12px; position: relative; line-height: 1.4; }
.sim-cta { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 800; color: #fff; background: linear-gradient(135deg, var(--orange-2), var(--orange)); padding: 9px 18px; border-radius: 99px; box-shadow: 0 8px 22px rgba(255, 106, 0, 0.4); position: relative; }
.sim-cta-green { background: linear-gradient(135deg, #34d058, #16a34a); box-shadow: 0 8px 22px rgba(34, 197, 94, 0.35); }
.sim-faces { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; }
.sim-face { appearance: none; cursor: pointer; border: 1.5px solid rgba(255, 255, 255, 0.1); background: rgba(255, 255, 255, 0.04); border-radius: 14px; padding: 12px 2px 9px; display: flex; flex-direction: column; align-items: center; gap: 5px; font: inherit; transition: transform 0.12s; }
.sim-face:active { transform: scale(0.92); }
.sim-face-emoji { font-size: 30px; line-height: 1; }
.sim-face-label { font-size: 9.5px; font-weight: 700; color: rgba(255, 255, 255, 0.5); }
.sim-face.is-sel { border-color: var(--tone); background: color-mix(in oklab, var(--tone) 16%, transparent); }
.sim-face.is-sel .sim-face-label { color: var(--tone); }
.sim-face.is-dim { opacity: 0.4; }
.sim-chips { display: flex; flex-wrap: wrap; gap: 7px; justify-content: center; margin-top: 16px; }
.sim-chip { appearance: none; cursor: pointer; font: inherit; font-size: 12px; font-weight: 600; padding: 8px 13px; border-radius: 99px; border: 1px solid rgba(255, 255, 255, 0.16); background: rgba(255, 255, 255, 0.05); color: rgba(255, 255, 255, 0.82); }
.sim-chip.is-on { background: rgba(255, 106, 0, 0.22); border-color: var(--orange); color: #fff; }
.sim-send { appearance: none; cursor: pointer; margin-top: 18px; width: 100%; border: 0; border-radius: 14px; padding: 14px; font: inherit; font-size: 15px; font-weight: 800; color: #fff; background: linear-gradient(135deg, var(--orange-2), var(--orange)); box-shadow: 0 8px 26px rgba(255, 106, 0, 0.35); }
.sim-form-field { margin-bottom: 10px; }
.sim-form-field label { display: block; font-size: 11.5px; font-weight: 700; color: rgba(255, 255, 255, 0.6); margin-bottom: 5px; }
.sim-form-field input { width: 100%; font: inherit; font-size: 15px; padding: 12px 14px; border-radius: 12px; border: 1px solid rgba(255, 255, 255, 0.18); background: rgba(255, 255, 255, 0.07); color: #fff; }
.sim-form-field input:focus { outline: none; border-color: var(--orange); }
.sim-thanks { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.sim-thanks-emoji { font-size: 56px; animation: pop 0.5s ease; }
@keyframes pop { 0% { transform: scale(0.4); opacity: 0; } 60% { transform: scale(1.12); } 100% { transform: scale(1); opacity: 1; } }
.sim-thanks h4 { font-family: var(--font-display); font-size: 22px; margin: 12px 0 6px; color: #fff; }
.sim-thanks p { font-size: 13.5px; color: rgba(255, 255, 255, 0.6); margin: 0; max-width: 240px; }
.sim-reset { font-size: 12px; color: rgba(255, 255, 255, 0.4); margin-top: 20px; }
.sim-back { appearance: none; cursor: pointer; background: transparent; border: 0; color: rgba(255, 255, 255, 0.5); font: inherit; font-size: 13px; margin-bottom: 10px; text-align: left; padding: 0; }
.sim-note { text-align: center; font-size: 12.5px; color: rgba(255,255,255,0.45); margin-top: 14px; }

/* ── FEATURES ──────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }
@media (max-width: 960px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .features-grid { grid-template-columns: 1fr; } }
.feat { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; transition: transform 0.15s, box-shadow 0.2s; }
.feat:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(22, 19, 15, 0.09); }
.feat-ico { width: 46px; height: 46px; border-radius: 13px; background: rgba(255, 106, 0, 0.1); border: 1px solid rgba(255, 106, 0, 0.22); display: flex; align-items: center; justify-content: center; font-size: 21px; margin-bottom: 16px; }
.feat h3 { font-size: 18px; margin: 0 0 7px; }
.feat p { font-size: 14.5px; color: var(--ink-2); margin: 0; }
.feat-hl { background: var(--dark); color: #fff; border-color: transparent; position: relative; overflow: hidden; }
.feat-hl::before { content: ''; position: absolute; inset: 0; background: radial-gradient(360px 180px at 90% 0%, rgba(255, 106, 0, 0.22), transparent 70%); pointer-events: none; }
.feat-hl p { color: rgba(255, 255, 255, 0.7); }
.feat-hl .feat-ico { background: rgba(255, 106, 0, 0.16); }

/* ── PRODUTO (screenshots) ─────────────── */
.product-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: 26px; margin-top: 48px; align-items: start; }
@media (max-width: 880px) { .product-grid { grid-template-columns: 1fr; } }
.shot-browser { background: var(--paper-2); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; box-shadow: 0 24px 60px rgba(22, 19, 15, 0.12); }
.shot-browser-bar { display: flex; align-items: center; gap: 6px; padding: 11px 14px; border-bottom: 1px solid var(--line); background: #f4f0e9; }
.shot-dot { width: 10px; height: 10px; border-radius: 99px; background: rgba(22, 19, 15, 0.14); }
.shot-url { margin-left: 10px; flex: 1; font-size: 11.5px; color: var(--ink-3); background: rgba(22, 19, 15, 0.05); border-radius: 7px; padding: 4px 12px; }
.shot-tablet { background: #050506; border-radius: 24px; padding: 10px; box-shadow: 0 24px 60px rgba(22, 19, 15, 0.2); }
.shot-tablet image-slot { border-radius: 15px; }
.shot-cap { font-size: 13px; color: var(--ink-3); text-align: center; margin-top: 12px; }

/* ── CHAT "Falar com a gente" ──────────── */
#ohchat { position: fixed; right: 22px; bottom: 22px; z-index: 90; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; font-family: var(--font-body); }
.ohchat-fab {
  display: inline-flex; align-items: center; gap: 10px;
  border: 0; cursor: pointer; border-radius: 999px;
  padding: 14px 20px 14px 16px;
  background: var(--ink); color: #fff;
  font-family: var(--font-body); font-size: 14.5px; font-weight: 700;
  box-shadow: 0 14px 36px rgba(22, 19, 15, 0.32);
  transition: transform 0.15s, box-shadow 0.2s;
}
.ohchat-fab:hover { transform: translateY(-2px); box-shadow: 0 18px 44px rgba(22, 19, 15, 0.4); }
.ohchat-fab:active { transform: scale(0.97); }
.ohchat-fab-ico {
  width: 30px; height: 30px; border-radius: 99px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--orange-2), var(--orange));
  font-size: 15px;
}
#ohchat.open .ohchat-fab-txt { display: none; }
#ohchat.open .ohchat-fab { padding: 14px 16px; }

.ohchat-panel {
  width: min(372px, calc(100vw - 44px));
  background: var(--paper-2); border: 1px solid var(--line); border-radius: 20px;
  overflow: hidden; box-shadow: 0 30px 80px rgba(22, 19, 15, 0.3);
  display: flex; flex-direction: column;
  animation: ohchat-pop 0.22s ease;
}
.ohchat-panel[hidden] { display: none; }
@keyframes ohchat-pop { from { opacity: 0; transform: translateY(10px) scale(0.97); } to { opacity: 1; transform: none; } }

.ohchat-head {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; background: var(--ink); color: #fff;
}
.ohchat-avatar {
  width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--orange-2), var(--orange));
  font-family: var(--font-display); font-weight: 800; font-size: 14px; letter-spacing: -0.02em;
}
/* Formulário "deixe seu contato" dentro do chat. */
.ohchat-contact { display: flex; flex-direction: column; gap: 7px; align-self: stretch; margin: 4px 0 2px; }
.ohchat-ci { font: inherit; font-size: 13.5px; padding: 9px 11px; border-radius: 10px; border: 1px solid var(--line); background: #fff; color: var(--ink); }
.ohchat-ci:focus { outline: none; border-color: var(--orange); }
.ohchat-ct { resize: none; }
.ohchat-csend { appearance: none; cursor: pointer; font: inherit; font-weight: 700; font-size: 13.5px; padding: 9px; border: 0; border-radius: 10px; color: #fff; background: linear-gradient(135deg, var(--orange-2), var(--orange)); }
.ohchat-csend:disabled { opacity: 0.6; cursor: default; }
.ohchat-cerr { color: #c0392b; font-size: 12px; }
.ohchat-who { flex: 1; display: flex; flex-direction: column; line-height: 1.25; }
.ohchat-who b { font-size: 14.5px; }
.ohchat-who span { font-size: 12px; color: rgba(255, 255, 255, 0.6); display: inline-flex; align-items: center; gap: 6px; }
.ohchat-dot { width: 7px; height: 7px; border-radius: 99px; background: #34d058; display: inline-block; }
.ohchat-close {
  border: 0; background: rgba(255, 255, 255, 0.1); color: #fff; cursor: pointer;
  width: 30px; height: 30px; border-radius: 9px; font-size: 13px;
}
.ohchat-close:hover { background: rgba(255, 255, 255, 0.2); }

.ohchat-msgs {
  padding: 16px; display: flex; flex-direction: column; gap: 8px;
  max-height: 320px; min-height: 120px; overflow-y: auto; background: var(--paper);
}
.ohchat-msg {
  max-width: 85%; padding: 10px 14px; border-radius: 16px;
  font-size: 14px; line-height: 1.45; text-wrap: pretty;
}
.ohchat-bot { align-self: flex-start; background: var(--paper-2); border: 1px solid var(--line); border-bottom-left-radius: 6px; color: var(--ink); }
.ohchat-user { align-self: flex-end; background: var(--ink); color: #fff; border-bottom-right-radius: 6px; }
.ohchat-typing { display: inline-flex; gap: 4px; align-items: center; padding: 14px; }
.ohchat-typing span { width: 6px; height: 6px; border-radius: 99px; background: var(--ink-3); animation: ohchat-blink 1s infinite; }
.ohchat-typing span:nth-child(2) { animation-delay: 0.15s; }
.ohchat-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes ohchat-blink { 0%, 70%, 100% { opacity: 0.3; } 35% { opacity: 1; } }
.ohchat-wa {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #34d058, #16a34a); color: #fff;
  font-size: 14px; font-weight: 700; text-decoration: none;
  padding: 10px 16px; border-radius: 12px; margin-top: 2px;
  box-shadow: 0 8px 22px rgba(34, 197, 94, 0.3);
}
.ohchat-wa:hover { box-shadow: 0 10px 28px rgba(34, 197, 94, 0.45); }

.ohchat-chips { display: flex; flex-wrap: wrap; gap: 7px; padding: 12px 16px; background: var(--paper); border-top: 1px dashed var(--line); }
.ohchat-chip {
  border: 1px solid var(--line); background: var(--paper-2); color: var(--ink);
  font-family: var(--font-body); font-size: 12.5px; font-weight: 600;
  padding: 7px 12px; border-radius: 999px; cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.ohchat-chip:hover { border-color: var(--orange); background: rgba(255, 106, 0, 0.06); }

@media (max-width: 560px) {
  #ohchat { right: 14px; bottom: 14px; }
  .ohchat-fab-txt { display: none; }
  .ohchat-fab { padding: 14px 16px; }
}

/* ── DEPOIMENTOS ───────────────────────── */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }
@media (max-width: 920px) { .quotes { grid-template-columns: 1fr; } }
.quote { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; display: flex; flex-direction: column; }
.quote-stars { color: var(--orange); font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }
.quote p { font-size: 15.5px; line-height: 1.6; color: var(--ink); margin: 0 0 22px; flex: 1; }
.quote p::before { content: '“'; } .quote p::after { content: '”'; }
.quote-who { display: flex; align-items: center; gap: 12px; }
.quote-avatar {
  width: 46px; height: 46px; border-radius: 99px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--orange-2), var(--orange));
  color: #fff; display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 15px; letter-spacing: 0.02em;
}
.quote-who b { display: block; font-size: 14.5px; }
.quote-who span { font-size: 12.5px; color: var(--ink-3); }

/* ── LGPD strip ────────────────────────── */
.trust { background: #f1ece4; border-block: 1px solid var(--line); }
.trust-grid { display: flex; gap: 14px 44px; align-items: center; justify-content: center; flex-wrap: wrap; padding: 30px 0; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 600; color: var(--ink-2); }
.trust-item .tick { background: rgba(31, 138, 91, 0.12); color: var(--green); }

/* ── FAQ ───────────────────────────────── */
.faq-list { max-width: 760px; margin: 44px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--paper-2); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.faq-item summary { cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 19px 22px; font-weight: 700; font-size: 16.5px; font-family: var(--font-display); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 22px; color: var(--orange); font-weight: 400; transition: transform 0.2s; flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 22px 20px; font-size: 15px; color: var(--ink-2); line-height: 1.6; }

/* ── CTA FINAL ─────────────────────────── */
.final {
  background: radial-gradient(900px 500px at 50% -20%, rgba(255, 106, 0, 0.3), transparent 65%), var(--dark);
  color: #fff; text-align: center;
}
.final .h2 { font-size: clamp(32px, 4.6vw, 50px); }
.final .lead { color: rgba(255, 255, 255, 0.68); margin: 0 auto; }
.final-cta { max-width: 480px; margin: 36px auto 0; }
.final-foot { font-size: 13.5px; color: rgba(255, 255, 255, 0.45); margin-top: 26px; }

/* ── PAINEL SHOWCASE (dashboard desenhado c/ mapa) ── */
.panel-showcase {
  margin-top: 48px; background: var(--dark); border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 36px 90px rgba(12, 11, 9, 0.3);
}
.ps-bar { display: flex; align-items: center; gap: 6px; padding: 12px 16px; border-bottom: 1px solid rgba(255, 255, 255, 0.07); }
.ps-dot { width: 10px; height: 10px; border-radius: 99px; background: rgba(255, 255, 255, 0.12); }
.ps-url { margin-left: 10px; flex: 1; font-size: 11.5px; color: rgba(255, 255, 255, 0.4); background: rgba(255, 255, 255, 0.05); border-radius: 7px; padding: 4px 12px; }
.ps-body { padding: 20px; color: #fff; }
.ps-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 14px; }
@media (max-width: 720px) { .ps-kpis { grid-template-columns: repeat(2, 1fr); } }
.ps-kpi { background: rgba(255, 255, 255, 0.045); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 12px; padding: 12px 14px; }
.ps-kpi-l { font-size: 11px; color: rgba(255, 255, 255, 0.5); font-weight: 600; }
.ps-kpi-v { font-family: var(--font-display); font-size: 22px; font-weight: 800; margin-top: 3px; font-variant-numeric: tabular-nums; }
.ps-kpi-v small { font-size: 11.5px; font-weight: 700; color: #34d058; margin-left: 5px; }
.ps-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); gap: 10px; }
@media (max-width: 840px) { .ps-grid { grid-template-columns: 1fr; } }
.ps-card { background: rgba(255, 255, 255, 0.045); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 12px; padding: 14px; min-width: 0; }
.ps-card-t { font-size: 12.5px; font-weight: 700; margin-bottom: 10px; }
.ps-card-t span { font-weight: 500; color: rgba(255, 255, 255, 0.4); font-size: 11px; }
.ps-map { position: relative; border-radius: 9px; overflow: hidden; background: #11100d; }
.ps-map svg { display: block; width: 100%; height: auto; }
.ps-rank { display: flex; flex-direction: column; gap: 8px; }
.ps-rank-row { display: grid; grid-template-columns: 92px 1fr 24px; align-items: center; gap: 9px; font-size: 12px; }
.ps-rank-row > span:first-child { color: rgba(255, 255, 255, 0.65); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ps-track { height: 9px; border-radius: 99px; background: rgba(255, 255, 255, 0.07); overflow: hidden; }
.ps-fill { display: block; height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--orange-2), var(--orange)); }
.ps-rank-row > span:last-child { font-weight: 700; text-align: right; font-variant-numeric: tabular-nums; }
.ps-act { display: flex; align-items: center; gap: 9px; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.07); border-radius: 10px; padding: 8px 10px; margin-bottom: 7px; }
.ps-act-emoji { font-size: 17px; }
.ps-act b { display: block; font-size: 12px; }
.ps-act span { font-size: 10.5px; color: rgba(255, 255, 255, 0.45); }
.ps-act-btn { margin-left: auto; font-size: 10.5px; font-weight: 700; color: #34d058; background: rgba(52, 208, 88, 0.1); border: 1px solid rgba(52, 208, 88, 0.3); padding: 3px 9px; border-radius: 99px; white-space: nowrap; }
.ps-caption { text-align: center; font-size: 13px; color: var(--ink-3); margin-top: 14px; }
.ps-chips { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 14px; }
.ps-chip { font-size: 11.5px; color: rgba(255, 255, 255, 0.6); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 99px; padding: 4px 11px; background: rgba(255, 255, 255, 0.02); }
.ps-chip b { color: #fff; font-variant-numeric: tabular-nums; }
.ps-kpi-hint { font-size: 10.5px; color: rgba(255, 255, 255, 0.4); margin-top: 3px; }
.ps-mini-chart { display: block; width: 100%; height: auto; }
.ps-btns { margin-left: auto; display: flex; gap: 5px; flex-shrink: 0; }
.ps-btn { font-size: 10.5px; font-weight: 700; padding: 4px 10px; border-radius: 8px; white-space: nowrap; }
.ps-btn-o { color: var(--orange-2); border: 1px solid rgba(255, 106, 0, 0.5); }
.ps-btn-g { color: rgba(255, 255, 255, 0.6); border: 1px solid rgba(255, 255, 255, 0.18); }
.ps-fill-dim { display: block; height: 100%; border-radius: 99px; background: rgba(255, 255, 255, 0.16); }
.ps-deonde { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: 16px; align-items: start; }
.ps-deonde .ps-rank-row, .mapsec-body .ps-rank-row { grid-template-columns: 132px 1fr 26px; }
@media (max-width: 840px) { .ps-deonde { grid-template-columns: 1fr; } }
.ps-seg-row { display: flex; gap: 8px; flex-wrap: wrap; }
.ps-map-wrap { position: relative; border-radius: 10px; overflow: hidden; background: #141210; border: 1px solid rgba(255, 255, 255, 0.07); }
.ps-map-wrap svg { display: block; width: 100%; height: auto; }
.ps-map-badge { position: absolute; top: 8px; left: 8px; font-size: 10.5px; font-weight: 700; color: #fff; background: rgba(11, 11, 12, 0.8); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 99px; padding: 3px 9px; }
.ps-map-cta { position: absolute; left: 0; right: 0; bottom: 0; display: flex; align-items: center; justify-content: center; gap: 5px; padding: 9px; font-size: 12px; font-weight: 700; color: #fff; background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent); }
.ps-map-cta b { color: var(--orange-2); }

/* ── SEÇÃO MAPA (marketing local) ───────── */
.mapsec-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); gap: 52px; align-items: center; }
@media (max-width: 920px) { .mapsec-grid { grid-template-columns: 1fr; gap: 36px; } }
.mapsec-points { list-style: none; margin: 30px 0 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.mapsec-points li { display: flex; gap: 14px; }
.mapsec-points .dp-ico { width: 38px; height: 38px; border-radius: 11px; background: rgba(255, 106, 0, 0.1); border: 1px solid rgba(255, 106, 0, 0.25); display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.mapsec-points b { display: block; font-size: 16px; margin-bottom: 2px; }
.mapsec-points span { font-size: 14.5px; color: var(--ink-2); }
.mapsec-visual { position: relative; }
.mapsec-card {
  background: var(--dark); border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(12, 11, 9, 0.3);
  color: #fff; padding: 16px;
}
.mapsec-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
.mapsec-title { font-size: 13px; font-weight: 700; }
.mapsec-title span { display: block; font-weight: 500; font-size: 11px; color: rgba(255, 255, 255, 0.4); }
.mapsec-pills { display: inline-flex; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 8px; padding: 2px; gap: 2px; }
.mapsec-pill { font-size: 11px; font-weight: 600; color: rgba(255, 255, 255, 0.55); padding: 4px 10px; border-radius: 6px; }
.mapsec-pill.on { background: rgba(255, 255, 255, 0.14); color: #fff; }
.mapsec-body { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 14px; align-items: center; }
@media (max-width: 560px) { .mapsec-body { grid-template-columns: 1fr; } }
.mapsec-float {
  position: absolute; right: -10px; bottom: -16px;
  background: var(--paper-2); border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 18px 50px rgba(12, 11, 9, 0.22); padding: 13px 16px; width: 215px;
}
@media (max-width: 920px) { .mapsec-float { right: 6px; } }
.mapsec-float-l { font-size: 10.5px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 7px; }
.mapsec-float-row { display: flex; align-items: center; justify-content: space-between; font-size: 12.5px; padding: 3px 0; }
.mapsec-float-row b { font-variant-numeric: tabular-nums; }
.mapsec-float-row .up { color: var(--green); font-weight: 700; font-size: 11px; }

/* ── JORNADA (animação caixa → totem → saída) ─ */
.journey { position: relative; max-width: 880px; margin: 56px auto 0; }
.journey-line { position: absolute; left: 8%; right: 8%; top: 32px; border-top: 2px dashed rgba(22, 19, 15, 0.16); }
.journey-track { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.journey-stop { text-align: center; position: relative; padding: 0 8px; }
.journey-ico { width: 64px; height: 64px; border-radius: 18px; background: #fff; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-size: 26px; margin: 0 auto 12px; position: relative; z-index: 2; box-shadow: 0 8px 22px rgba(22, 19, 15, 0.08); }
.journey-totem-ico { background: var(--dark); border-color: transparent; }
.journey-stop b { display: block; font-size: 14.5px; font-family: var(--font-display); }
.journey-stop span { font-size: 12px; color: var(--ink-3); display: block; margin-top: 2px; text-wrap: pretty; }
.jt-screen { width: 32px; height: 44px; border-radius: 6px; background: #1c1916; border: 1.5px solid rgba(255, 255, 255, 0.22); position: relative; overflow: hidden; }
.jt-line { position: absolute; left: 5px; right: 5px; height: 3px; border-radius: 2px; background: rgba(255, 255, 255, 0.3); transform: scaleX(0); transform-origin: left; }
.jt-l1 { top: 8px; animation: jf1 9s linear infinite; }
.jt-l2 { top: 15px; animation: jf2 9s linear infinite; }
.jt-l3 { top: 22px; background: var(--orange); animation: jf3 9s linear infinite; }
.jt-check { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #34d058; font-weight: 800; font-size: 16px; opacity: 0; animation: jcheck 9s linear infinite; }
@keyframes jf1 { 0%, 48% { transform: scaleX(0); } 53%, 92% { transform: scaleX(1); } 96%, 100% { transform: scaleX(0); } }
@keyframes jf2 { 0%, 54% { transform: scaleX(0); } 59%, 92% { transform: scaleX(1); } 96%, 100% { transform: scaleX(0); } }
@keyframes jf3 { 0%, 60% { transform: scaleX(0); } 65%, 92% { transform: scaleX(1); } 96%, 100% { transform: scaleX(0); } }
@keyframes jcheck { 0%, 66% { opacity: 0; } 70%, 88% { opacity: 1; } 93%, 100% { opacity: 0; } }
/* scaleX(-1): o emoji 🚶 aponta p/ a esquerda por padrão; espelhamos p/ "andar" no
   sentido do movimento (esquerda → direita). translateX(-50%) mantém a centralização. */
.journey-walker { position: absolute; top: 2px; left: 8%; font-size: 30px; z-index: 3; transform: translateX(-50%) scaleX(-1); animation: jwalk 9s ease-in-out infinite; }
@keyframes jwalk {
  0% { left: 6%; opacity: 0; }
  5% { opacity: 1; }
  18% { left: 13%; }
  26% { left: 13%; }
  42% { left: 38%; }
  50% { left: 38%; }
  58% { left: 62%; }
  78% { left: 62%; }
  95% { left: 90%; opacity: 1; }
  100% { left: 93%; opacity: 0; }
}
.journey-chip { position: absolute; left: 62.5%; transform: translateX(-50%); top: -22px; font-size: 12.5px; font-weight: 800; color: var(--green); background: rgba(31, 138, 91, 0.1); border: 1px solid rgba(31, 138, 91, 0.3); padding: 5px 12px; border-radius: 99px; opacity: 0; animation: jchip 9s ease-in-out infinite; z-index: 4; white-space: nowrap; }
@keyframes jchip { 0%, 68% { opacity: 0; translate: 0 10px; } 74% { opacity: 1; translate: 0 0; } 88% { opacity: 1; translate: 0 -5px; } 94%, 100% { opacity: 0; translate: 0 -10px; } }
@media (max-width: 720px) {
  .journey-track { grid-template-columns: repeat(2, 1fr); gap: 26px 8px; }
  .journey-line, .journey-walker, .journey-chip { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .journey-walker, .journey-chip { animation: none; opacity: 1; }
  .jt-line, .jt-l3 { animation: none; transform: scaleX(1); }
  .jt-check { animation: none; opacity: 0; }
}

/* ── FOOTER ────────────────────────────── */
.footer { background: var(--dark); color: rgba(255, 255, 255, 0.5); border-top: 1px solid rgba(255, 255, 255, 0.07); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 30px 0; font-size: 13.5px; }
.footer a { color: rgba(255, 255, 255, 0.65); text-decoration: none; margin-left: 22px; }
.footer a:hover { color: #fff; }
