/* =========================================================
   Rumbo · Mini flete CABA · landing-v2
   Operational clarity · direct-response · poster type.
   ========================================================= */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
input, textarea, button, select { font-family: inherit; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--bg);
  padding: 12px 18px; z-index: 200;
}
.skip-link:focus { left: 12px; top: 12px; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.hp {
  position: absolute; left: -9999px;
  width: 1px; height: 1px; opacity: 0;
}

/* ---------- Tokens ---------- */
:root {
  --bg:          #FAFAF7;
  --surface:     #F2EFE6;
  --surface-2:   #EAE5D5;
  --hair:        #D9D3BF;
  --hair-soft:   #EAE4D0;
  --ink:         #141110;
  --ink-soft:    #3A332C;
  --ink-mute:    #7D746A;
  --accent:      #E04818;
  --accent-dk:   #B03410;
  --accent-soft: #F7D9CE;
  --wa:          #25D366;
  --wa-dk:       #1DA851;
  --ok:          #16803C;

  --font-display: 'Cabinet Grotesk', 'Satoshi', system-ui, sans-serif;
  --font-body:    'Satoshi', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

  --container: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
  --section-py: clamp(72px, 10vw, 140px);

  --radius: 8px;
  --radius-lg: 18px;

  --ease-spring: cubic-bezier(.16, 1, .3, 1);
}

/* ---------- Utility ---------- */
.section { padding-block: var(--section-py); }
.section-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.section-head { margin-bottom: clamp(36px, 5vw, 64px); max-width: 820px; }
.section-kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 14px 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section-kicker::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--ink);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 4.4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.028em;
  color: var(--ink);
  margin: 0;
}
.section-title em {
  font-style: normal;
  color: var(--accent);
  font-weight: 800;
}

/* ---------- Top Bar ---------- */
.bar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 14px clamp(16px, 3vw, 28px);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border-bottom: 1px solid var(--hair-soft);
}
.bar-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.bar-mark {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  position: relative;
  flex-shrink: 0;
}
.bar-mark::after {
  content: '';
  position: absolute;
  inset: 4px;
  background: var(--accent);
  border-radius: 50%;
}
.bar-word { line-height: 1; }
.bar-meta {
  display: flex;
  align-items: center;
  gap: 18px;
}
.bar-meta-item {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--ink-mute);
  letter-spacing: -0.005em;
}
.bar-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--wa);
  color: #fff;
  font-weight: 700;
  font-size: 14.5px;
  border-radius: 999px;
  transition: transform 180ms var(--ease-spring), background 180ms ease;
}
.bar-cta:hover { background: var(--wa-dk); transform: translateY(-1px); }
.bar-cta:active { transform: translateY(0); }
.bar-cta-icon { width: 18px; height: 18px; }

@media (max-width: 720px) {
  .bar-meta-hide-sm { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  padding-block: clamp(56px, 9vw, 120px) clamp(40px, 6vw, 88px);
  position: relative;
}
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  grid-template-rows: auto auto auto auto;
  column-gap: clamp(32px, 5vw, 80px);
  row-gap: clamp(28px, 4vw, 44px);
  align-items: start;
}

.eyebrow {
  grid-column: 1 / -1;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent);
  animation: pulse 2.2s var(--ease-spring) infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 55%, transparent); }
  70%  { box-shadow: 0 0 0 12px color-mix(in srgb, var(--accent) 0%, transparent); }
  100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 0%, transparent); }
}

.hero-title {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(52px, 10vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: var(--ink);
  margin: 0;
}
.hero-title .line { display: block; }
.hero-title em {
  font-style: normal;
  color: var(--accent);
  position: relative;
}

.hero-lede {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  align-self: end;
  max-width: 46ch;
}
.hero-lede p {
  margin: 0;
  font-size: clamp(16.5px, 1.3vw, 20px);
  color: var(--ink-soft);
  line-height: 1.5;
}

/* price block */
.price {
  grid-column: 1 / 2;
  grid-row: 3 / 4;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 24px;
  row-gap: 8px;
  align-items: end;
  padding: clamp(20px, 2vw, 28px) clamp(22px, 2.4vw, 32px);
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.price::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--accent);
}
.price-label {
  grid-column: 1 / -1;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.price-stack {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.price-amount {
  margin: 0;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(48px, 6.5vw, 88px);
  letter-spacing: -0.035em;
  color: var(--ink);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.price-currency {
  color: var(--accent);
  font-weight: 500;
  margin-right: 4px;
}
.price-unit {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(14px, 1vw, 17px);
  color: var(--ink-soft);
  letter-spacing: -0.01em;
}
.price-anchor {
  grid-column: 2 / -1;
  grid-row: 2 / 3;
  margin: 0;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-mute);
}
.price-strike {
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}
.price-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .02em;
  font-size: 11px;
}

/* hero cta */
.hero-cta {
  grid-column: 2 / 3;
  grid-row: 3 / 4;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-self: end;
}

/* trust */
.trust {
  grid-column: 1 / -1;
  grid-row: 4 / 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  margin: 0;
  margin-top: clamp(20px, 3vw, 40px);
}
.trust li {
  padding: 20px 20px;
  font-size: 14.5px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 12px;
  border-right: 1px solid var(--hair-soft);
}
.trust li:last-child { border-right: 0; }
.trust-n {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-mute);
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--hair);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.005em;
  transition: transform 220ms var(--ease-spring), background 180ms ease, color 180ms ease, box-shadow 220ms var(--ease-spring);
  will-change: transform;
  position: relative;
}
.btn:active { transform: translateY(1px) scale(.985); }

.btn-wa {
  background: var(--wa);
  color: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,.04), 0 8px 20px -10px color-mix(in srgb, var(--wa) 50%, transparent);
}
.btn-wa:hover {
  background: var(--wa-dk);
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(0,0,0,.04), 0 14px 28px -10px color-mix(in srgb, var(--wa) 60%, transparent);
}
.btn-wa-icon { width: 20px; height: 20px; }
.btn-wa-arrow {
  font-size: 18px;
  transition: transform 220ms var(--ease-spring);
}
.btn-wa:hover .btn-wa-arrow { transform: translateX(4px); }

.btn-wa-xl {
  padding: 22px 32px;
  font-size: 19px;
  border-radius: 999px;
}
.btn-wa-xl .btn-wa-icon { width: 24px; height: 24px; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 14px 22px;
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-2px);
}

.btn-ink {
  background: var(--ink);
  color: var(--bg);
}
.btn-ink:hover {
  background: var(--accent);
  transform: translateY(-2px);
}
.btn-arrow {
  font-size: 18px;
  transition: transform 220ms var(--ease-spring);
}
.btn-ink:hover .btn-arrow { transform: translateX(4px); }

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--hair);
  padding-block: 20px;
  font-family: var(--font-display);
  font-weight: 500;
  background: var(--bg);
}
.marquee-track {
  display: flex;
  gap: 24px;
  animation: marquee 38s linear infinite;
  white-space: nowrap;
  font-size: clamp(24px, 3vw, 42px);
  letter-spacing: -0.02em;
  color: var(--ink);
  width: max-content;
}
.marquee-track span {
  display: inline-block;
}
.marquee-dot {
  color: var(--accent);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ---------- Scope (sí / no) ---------- */
.scope {
  background: var(--bg);
}
.scope-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--hair);
}
.scope-col {
  padding: clamp(28px, 4vw, 52px) clamp(20px, 3vw, 40px);
}
.scope-col + .scope-col {
  border-left: 1px solid var(--hair-soft);
}
.scope-col-head {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -0.02em;
  margin: 0 0 24px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.scope-mark {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 800;
  font-size: 12px;
  border: 1px solid currentColor;
}
.scope-mark-yes {
  color: var(--ok);
}
.scope-mark-yes::after { content: '✓'; font-family: system-ui; }
.scope-mark-no {
  color: var(--ink-mute);
}
.scope-mark-no::after { content: '✗'; font-family: system-ui; }

.scope-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.scope-list li {
  padding: 14px 0;
  font-size: 15.5px;
  color: var(--ink);
  border-top: 1px dashed var(--hair-soft);
  position: relative;
  padding-left: 24px;
}
.scope-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 21px;
  width: 12px;
  height: 1px;
  background: var(--ink-mute);
}
.scope-list li:first-child { border-top: 0; }
.scope-no .scope-list li {
  color: var(--ink-mute);
  text-decoration: line-through;
  text-decoration-color: var(--hair);
  text-decoration-thickness: 1px;
}
.scope-no .scope-list li::before { background: var(--hair); }

.scope-note {
  margin-top: clamp(20px, 3vw, 32px);
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 62ch;
}

@media (max-width: 680px) {
  .scope-grid { grid-template-columns: 1fr; }
  .scope-col + .scope-col { border-left: 0; border-top: 1px solid var(--hair); }
}

/* ---------- How ---------- */
.how {
  background: var(--surface);
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink);
}
.how-step {
  padding: clamp(32px, 4vw, 52px) clamp(20px, 2.5vw, 36px);
  border-right: 1px solid var(--hair);
  position: relative;
}
.how-step:last-child { border-right: 0; }
.how-n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(64px, 8vw, 120px);
  color: var(--ink);
  line-height: 0.9;
  letter-spacing: -0.05em;
  margin: 0 0 24px 0;
  position: relative;
  display: inline-block;
}
.how-n::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}
.how-t {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 1.6vw, 24px);
  margin: 0 0 10px 0;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.how-b {
  margin: 0;
  font-size: 15.5px;
  color: var(--ink-soft);
  max-width: 38ch;
  line-height: 1.55;
}

@media (max-width: 840px) {
  .how-steps { grid-template-columns: 1fr; }
  .how-step {
    border-right: 0;
    border-bottom: 1px solid var(--hair);
  }
  .how-step:last-child { border-bottom: 0; }
}

/* ---------- Why / Bento ---------- */
.why { background: var(--bg); }
.bento {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}
.bento-tile {
  padding: clamp(22px, 2.6vw, 32px);
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 300px;
  position: relative;
  overflow: hidden;
  transition: transform 380ms var(--ease-spring), border-color 220ms ease;
}
.bento-tile:hover {
  transform: translateY(-3px);
  border-color: var(--ink-mute);
}
.bento-tile-lg {
  grid-column: span 2;
  grid-row: span 1;
}
.bento-tile-wide {
  grid-column: span 3;
}
.bento-label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}
.bento-body {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 0;
  margin-top: auto;
  line-height: 1.5;
}
.bento-body em { font-style: normal; color: var(--ink); font-weight: 500; }

.bento-vis {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
  min-height: 140px;
}

/* price vis */
.bento-vis-price {
  align-items: stretch;
  justify-content: stretch;
}
.price-rows {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.price-row {
  display: flex;
  justify-content: space-between;
  padding: 13px 0;
  border-top: 1px dashed var(--hair);
  font-family: var(--font-mono);
  font-size: 14.5px;
}
.price-row:first-child { border-top: 0; }
.price-row-k { color: var(--ink-mute); }
.price-row-v {
  color: var(--ink);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.price-row-flash {
  position: relative;
}
.price-row-flash .price-row-v {
  color: var(--accent);
  animation: blink 2.5s var(--ease-spring) infinite;
}
@keyframes blink {
  0%, 40%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* chat vis */
.bento-vis-chat {
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  padding-top: 0;
}
.chat-bubble {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13.5px;
  line-height: 1.45;
  max-width: 85%;
  position: relative;
}
.chat-bubble .chat-time {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-mute);
  margin-bottom: 2px;
}
.chat-in {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--hair-soft);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.chat-out {
  background: #DCF8C6;
  color: var(--ink);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.chat-dots {
  display: inline-flex;
  gap: 3px;
  margin-left: 6px;
  vertical-align: middle;
}
.chat-dots i {
  width: 4px;
  height: 4px;
  background: var(--ink-mute);
  border-radius: 50%;
  animation: typing 1.2s var(--ease-spring) infinite;
}
.chat-dots i:nth-child(2) { animation-delay: .15s; }
.chat-dots i:nth-child(3) { animation-delay: .3s; }
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: .4; }
  30% { transform: translateY(-3px); opacity: 1; }
}

/* clock vis */
.bento-vis-clock {
  flex-direction: column;
  gap: 12px;
}
.clock {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.clock-face {
  width: 110px;
  height: 110px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  position: relative;
  background: var(--surface);
}
.clock-mark {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-mute);
  font-weight: 500;
}
.clock-mark-12 { top: 6px; left: 50%; transform: translateX(-50%); }
.clock-mark-3  { right: 8px; top: 50%; transform: translateY(-50%); }
.clock-mark-6  { bottom: 6px; left: 50%; transform: translateX(-50%); }
.clock-mark-9  { left: 8px; top: 50%; transform: translateY(-50%); }
.clock-hand {
  position: absolute;
  left: 50%;
  bottom: 50%;
  transform-origin: 50% 100%;
  background: var(--ink);
  border-radius: 4px;
}
.clock-hand-h {
  width: 3px;
  height: 28px;
  transform: translateX(-50%) rotate(-60deg); /* ~10 o'clock */
}
.clock-hand-m {
  width: 2px;
  height: 38px;
  transform: translateX(-50%) rotate(0deg);    /* top */
  background: var(--accent);
  animation: tick 60s steps(60) infinite;
}
@keyframes tick {
  from { transform: translateX(-50%) rotate(0deg); }
  to   { transform: translateX(-50%) rotate(360deg); }
}
.clock-center {
  position: absolute;
  left: 50%; top: 50%;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  transform: translate(-50%, -50%);
}
.clock-label {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--ink-mute);
  margin: 0;
  text-align: center;
}

/* van vis */
.bento-vis-van {
  padding: 8px 0;
}
.van-svg {
  width: 100%;
  max-width: 420px;
  color: var(--ink);
}
.bento-kv {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--ink-soft);
}
.bento-kv-sep { color: var(--accent); }

@media (max-width: 980px) {
  .bento { grid-template-columns: 1fr 1fr; }
  .bento-tile-lg, .bento-tile-wide { grid-column: span 2; }
}
@media (max-width: 620px) {
  .bento { grid-template-columns: 1fr; }
  .bento-tile-lg, .bento-tile-wide { grid-column: span 1; }
  .bento-tile { min-height: 240px; }
}

/* ---------- Zone ---------- */
.zone { background: var(--surface); }
.zone-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.zone-map {
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  padding: clamp(16px, 2vw, 28px);
  background: var(--bg);
  display: flex;
  justify-content: center;
  position: relative;
}
.caba-svg {
  width: 100%;
  max-width: 360px;
  height: auto;
  color: var(--ink);
}
.zone-dots circle {
  fill: var(--accent);
  transition: fill 200ms ease, r 200ms var(--ease-spring);
}
.zone-dots circle:hover { fill: var(--ink); }
.zone-h {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 34px);
  letter-spacing: -0.025em;
  margin: 0 0 16px 0;
  color: var(--ink);
}
.zone-p {
  font-size: 16px;
  color: var(--ink-soft);
  margin: 0 0 28px 0;
  line-height: 1.6;
}
.zone-facts {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--hair);
}
.zone-fact {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--hair);
}
.zone-fact dt {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .03em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.zone-fact dd {
  margin: 0;
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
  text-align: right;
}

@media (max-width: 820px) {
  .zone-grid { grid-template-columns: 1fr; }
}

/* ---------- Form ---------- */
.form-section { background: var(--bg); }
.form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.form-head {}
.form-intro {
  margin-top: 18px;
  font-size: 15.5px;
  color: var(--ink-soft);
  max-width: 38ch;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  background: var(--surface);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.field input,
.field textarea {
  padding: 12px 14px;
  border: 1px solid var(--hair);
  background: var(--bg);
  color: var(--ink);
  font-size: 15.5px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  transition: border-color 180ms ease, background 180ms ease;
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--ink-mute);
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ink);
  background: #fff;
}

.form-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 4px;
}
.form-actions .btn-ink {
  width: 100%;
  justify-content: space-between;
}
.form-alt {
  margin: 0;
  font-size: 14px;
  color: var(--ink-mute);
}
.form-alt-link {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 3px;
}

.form-status {
  margin: 0;
  font-size: 14px;
  min-height: 20px;
  color: var(--ink-mute);
  font-family: var(--font-mono);
}
.form-status.is-success {
  color: var(--ok);
}
.form-status.is-error {
  color: var(--accent-dk);
}

@media (max-width: 820px) {
  .form-wrap { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ---------- FAQ ---------- */
.faq { background: var(--surface); }
.faq-list {
  border-top: 1px solid var(--ink);
}
.faq-item {
  border-bottom: 1px solid var(--hair);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-weight: 500;
  transition: color 180ms ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.faq-plus {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
}
.faq-plus::before, .faq-plus::after {
  content: '';
  position: absolute;
  background: var(--ink);
  left: 50%;
  top: 50%;
  transition: transform 280ms var(--ease-spring);
}
.faq-plus::before {
  width: 14px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}
.faq-plus::after {
  width: 1.5px;
  height: 14px;
  transform: translate(-50%, -50%);
}
.faq-item[open] .faq-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.faq-item[open] .faq-q { color: var(--accent); }
.faq-a {
  padding: 0 0 22px 0;
  max-width: 72ch;
  animation: faq-in 320ms var(--ease-spring);
}
.faq-a p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.6;
}
.faq-a strong { color: var(--ink); font-weight: 700; }
@keyframes faq-in {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Close CTA ---------- */
.close {
  background: var(--ink);
  color: var(--bg);
  padding-block: clamp(72px, 10vw, 140px);
}
.close-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
  text-align: center;
}
.close-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 24px 0;
}
.close-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 6.5vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0 0 40px 0;
  color: var(--bg);
}
.close-title em {
  font-style: normal;
  color: var(--accent);
}
.close-meta {
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: color-mix(in srgb, var(--bg) 62%, transparent);
  letter-spacing: .02em;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--hair);
  padding-block: clamp(40px, 5vw, 64px);
  padding-bottom: clamp(100px, 10vw, 80px);
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  margin: 0;
}
.footer-tag {
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-mute);
  align-self: center;
}
.footer-facts {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 12.5px;
}
.footer-facts li {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer-k {
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: .03em;
}
.footer-v {
  color: var(--ink);
  font-weight: 500;
}
.footer-copy {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid var(--hair-soft);
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ink-mute);
  letter-spacing: .02em;
}

@media (max-width: 720px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

/* ---------- Mobile Sticky WhatsApp ---------- */
.wa-sticky {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  padding: 14px 18px;
  background: var(--wa);
  color: #fff;
  border-radius: 999px;
  align-items: center;
  gap: 14px;
  box-shadow: 0 10px 30px -8px color-mix(in srgb, var(--wa) 60%, transparent), 0 2px 0 rgba(0,0,0,.08);
}
.wa-sticky-icon { width: 28px; height: 28px; flex-shrink: 0; }
.wa-sticky-label {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
  min-width: 0;
}
.wa-sticky-label strong {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
}
.wa-sticky-label small {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  opacity: .85;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wa-sticky-arrow { font-size: 20px; flex-shrink: 0; }

@media (max-width: 720px) {
  .wa-sticky { display: inline-flex; }
  .footer { padding-bottom: 100px; }
}

/* ---------- Hero Responsive ---------- */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-title    { grid-column: 1; grid-row: 2; }
  .hero-lede     { grid-column: 1; grid-row: 3; max-width: 58ch; }
  .price         { grid-column: 1; grid-row: 4; }
  .hero-cta      { grid-column: 1; grid-row: 5; flex-direction: row; flex-wrap: wrap; }
  .trust         { grid-column: 1; grid-row: 6; grid-template-columns: repeat(2, 1fr); }
  .trust li:nth-child(2) { border-right: 0; }
  .trust li:nth-child(1),
  .trust li:nth-child(2) { border-bottom: 1px solid var(--hair-soft); }
}
@media (max-width: 560px) {
  .trust { grid-template-columns: 1fr; }
  .trust li { border-right: 0; border-bottom: 1px solid var(--hair-soft); }
  .trust li:last-child { border-bottom: 0; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .price {
    grid-template-columns: 1fr;
  }
  .price-anchor {
    grid-column: 1;
    justify-self: start;
  }
}

/* ---------- Reveals ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms var(--ease-spring), transform 700ms var(--ease-spring);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
  .eyebrow-dot { animation: none; }
  .clock-hand-m { animation: none; }
  .price-row-flash .price-row-v { animation: none; }
  .chat-dots i { animation: none; }
  html { scroll-behavior: auto; }
}
