:root {
  --bg: #020811;
  --panel: rgba(5, 18, 31, 0.78);
  --text: #f6fbff;
  --soft: #bbd1df;
  --muted: #8faabd;
  --cyan: #16d9ff;
  --lime: #9dff1c;
  --yellow: #ffd43b;
  --red: #ff3f3f;
  --purple: #a783ff;
  --line: rgba(47, 196, 255, 0.28);
  --line-strong: rgba(47, 221, 255, 0.6);
  --shadow: 0 0 36px rgba(0, 205, 255, 0.2);
  --font: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --tech: Orbitron, Rajdhani, var(--font);
  --condensed: Rajdhani, var(--font);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  font-family: var(--font);
  color: var(--text);
  background: linear-gradient(180deg, rgba(2, 8, 17, 0.58), rgba(2, 8, 17, 0.98) 36%, #020811 100%), #020811;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.28;
  background-image: linear-gradient(rgba(22, 217, 255, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(22, 217, 255, 0.07) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 78%);
}

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

.container { width: min(1180px, calc(100% - 44px)); margin-inline: auto; }

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(1, 6, 13, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(45, 180, 255, 0.18);
}

.nav-inner {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: white;
  font-family: var(--tech);
  font-weight: 900;
  border: 1px solid var(--cyan);
  background: radial-gradient(circle, rgba(22, 217, 255, 0.34), rgba(3, 17, 30, 0.92) 62%);
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0 50%);
  box-shadow: 0 0 20px rgba(22, 217, 255, 0.36);
}

.brand-text { font-family: var(--tech); font-weight: 800; line-height: 1; text-transform: uppercase; }
.brand-title { display: block; font-size: 1.02rem; }
.brand-company { display: block; margin-top: 4px; color: var(--cyan); font-size: 0.58rem; letter-spacing: 0.42em; transition: color 0.2s, text-shadow 0.2s; }
.brand-company:hover { color: var(--lime); text-shadow: 0 0 12px rgba(157, 255, 28, 0.35); }

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.6vw, 26px);
  color: #d9ecf8;
  font-family: var(--condensed);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links a { position: relative; opacity: 0.88; transition: color 0.2s ease, opacity 0.2s ease; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -9px; height: 2px; opacity: 0; background: var(--cyan); box-shadow: 0 0 14px var(--cyan); transition: opacity 0.2s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--cyan); opacity: 1; }
.nav-links a:hover::after, .nav-links a.active::after { opacity: 1; }

/* ── BOTONES ── */
.btn {
  border: 0;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 20px;
  border-radius: 4px;
  color: #02140d;
  background: linear-gradient(135deg, var(--lime), #76f216);
  box-shadow: 0 0 24px rgba(157, 255, 28, 0.25);
  font-family: var(--condensed);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn::after { content: "\2192"; font-size: 1rem; line-height: 1; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 0 34px rgba(157, 255, 28, 0.4); }
.btn.secondary { color: var(--text); background: rgba(2, 10, 19, 0.45); border: 1px solid rgba(211, 240, 255, 0.48); box-shadow: none; }
.btn.secondary:hover { border-color: var(--cyan); box-shadow: 0 0 24px rgba(22, 217, 255, 0.16); }
.btn.no-arrow::after { content: none; }

.mobile-menu { display: none; width: 42px; height: 42px; place-items: center; color: var(--text); background: transparent; border: 1px solid var(--line); border-radius: 4px; cursor: pointer; }

/* ── TIPOGRAFÍA ── */
h1, h2, h3 { font-family: var(--tech); line-height: 1.12; }
.eyebrow { color: var(--cyan); font-family: var(--condensed); font-size: 0.78rem; font-weight: 800; text-transform: uppercase; }
.gradient-text { color: transparent; background: linear-gradient(90deg, var(--cyan) 0%, #28f7ff 45%, #66ffad 100%); -webkit-background-clip: text; background-clip: text; }
.neon-lime { color: var(--lime); text-shadow: 0 0 18px rgba(157, 255, 28, 0.42); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: calc(100svh - 66px);
  display: grid;
  align-items: stretch;
  overflow: hidden;
  border-bottom: 1px solid rgba(47, 196, 255, 0.15);
  background: linear-gradient(90deg, rgba(2, 7, 15, 0.96) 0%, rgba(2, 7, 15, 0.72) 29%, rgba(2, 7, 15, 0.2) 63%, rgba(2, 7, 15, 0.76) 100%), url("hero.png") center right / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.55;
  background:
    linear-gradient(100deg, transparent 0 45%, rgba(22, 217, 255, 0.12) 48%, rgba(157, 255, 28, 0.18) 50%, rgba(22, 217, 255, 0.1) 52%, transparent 56%);
  background-size: 260% 100%;
  mask-image: linear-gradient(90deg, transparent 0 34%, black 52%, black 100%);
  mix-blend-mode: screen;
  animation: heroScan 5.8s ease-in-out infinite;
}

.hero::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(180deg, transparent 72%, rgba(2, 8, 17, 0.92) 100%); }
.hero-content { position: relative; z-index: 3; min-height: calc(100svh - 66px); display: grid; grid-template-rows: minmax(0, 1fr) auto; padding-top: clamp(34px, 6vh, 60px); }
.hero-copy { width: min(520px, 100%); align-self: start; padding-top: clamp(22px, 5vh, 54px); padding-bottom: clamp(20px, 4vh, 48px); }
.hero h1 { margin-top: 0; font-size: clamp(2rem, 3.8vw, 3.62rem); font-weight: 900; text-transform: uppercase; }
.hero p { width: min(430px, 100%); margin: 18px 0 24px; color: #d9e7f1; font-size: 1.02rem; line-height: 1.62; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.neon-ring {
  position: absolute;
  z-index: 2;
  top: 9%;
  right: 13%;
  width: min(39vw, 540px);
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.72;
  transform: rotateX(12deg) rotateZ(-7deg);
  border: 1px solid rgba(22, 217, 255, 0.18);
  box-shadow: 0 0 30px rgba(22, 217, 255, 0.12), inset 0 0 38px rgba(22, 217, 255, 0.08);
  animation: ringPulse 4.8s ease-in-out infinite;
}

.neon-ring::before,
.neon-ring::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: conic-gradient(from 0deg, transparent 0 15%, rgba(22, 217, 255, 0.78) 18%, transparent 23% 52%, rgba(157, 255, 28, 0.62) 56%, transparent 61% 100%);
  mask: radial-gradient(circle, transparent 0 63%, black 64% 66%, transparent 67% 100%);
  filter: drop-shadow(0 0 12px rgba(22, 217, 255, 0.62));
  animation: ringSpin 10s linear infinite;
}

.neon-ring::after {
  inset: 7%;
  opacity: 0.58;
  animation-duration: 14s;
  animation-direction: reverse;
}

.car-scan {
  position: absolute;
  z-index: 2;
  left: 43%;
  right: 3%;
  bottom: 17%;
  height: 30%;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.72;
  mask-image: linear-gradient(90deg, transparent 0%, black 16%, black 92%, transparent 100%);
  mix-blend-mode: screen;
}

.car-scan::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 18%;
  left: -22%;
  background: linear-gradient(90deg, transparent, rgba(22, 217, 255, 0.1), rgba(22, 217, 255, 0.42), rgba(157, 255, 28, 0.16), transparent);
  box-shadow: 0 0 26px rgba(22, 217, 255, 0.36);
  transform: skewX(-16deg);
  animation: carSweep 4.6s ease-in-out infinite;
}

.car-scan::after {
  content: "";
  position: absolute;
  inset: 12% 0;
  background: repeating-linear-gradient(0deg, transparent 0 16px, rgba(22, 217, 255, 0.16) 17px, transparent 18px);
  animation: scanLines 2.8s linear infinite;
}

@keyframes heroScan {
  0%, 18% { background-position: 120% 0; opacity: 0; }
  32%, 72% { opacity: 0.55; }
  100% { background-position: -80% 0; opacity: 0; }
}

@keyframes ringSpin { to { transform: rotate(360deg); } }
@keyframes ringPulse { 0%, 100% { opacity: 0.58; filter: saturate(1); } 50% { opacity: 0.86; filter: saturate(1.28); } }
@keyframes carSweep { 0%, 24% { left: -24%; opacity: 0; } 36%, 70% { opacity: 0.8; } 100% { left: 108%; opacity: 0; } }
@keyframes scanLines { to { transform: translateY(18px); } }

/* ── STAT STRIP ── */
.stat-strip { position: relative; z-index: 3; display: grid; grid-template-columns: repeat(4, 1fr); margin-bottom: 24px; border: 1px solid rgba(22, 217, 255, 0.36); background: linear-gradient(180deg, rgba(3, 18, 32, 0.82), rgba(3, 12, 22, 0.92)); clip-path: polygon(18px 0, calc(100% - 18px) 0, 100% 18px, 100% calc(100% - 18px), calc(100% - 18px) 100%, 18px 100%, 0 calc(100% - 18px), 0 18px); box-shadow: 0 0 28px rgba(22, 217, 255, 0.14); }
.stat { min-height: 96px; display: grid; grid-template-columns: 54px 1fr; gap: 16px; align-items: center; padding: 18px 30px; border-right: 1px solid rgba(47, 196, 255, 0.22); }
.stat:last-child { border-right: 0; }
.stat img { width: 48px; height: 48px; object-fit: contain; filter: drop-shadow(0 0 12px rgba(22, 217, 255, 0.35)); }
.stat strong { display: block; color: var(--cyan); font-family: var(--tech); font-size: clamp(1.5rem, 2.5vw, 2.2rem); font-weight: 900; }
.stat span span { display: block; margin-top: 3px; color: #dceaf4; font-size: 0.9rem; line-height: 1.4; }

/* ── SECCIONES ── */
section { border-bottom: 1px solid rgba(47, 196, 255, 0.14); }
.risk-section { padding: 34px 0 12px; background: linear-gradient(180deg, rgba(4, 16, 28, 0.64), rgba(2, 9, 18, 0.9)); }
.risk-grid { display: grid; grid-template-columns: 310px 1fr; gap: 34px; align-items: center; }
.section-copy h2 { margin: 12px 0 16px; font-size: clamp(1.7rem, 2.7vw, 2.55rem); font-weight: 700; }
.section-copy p { color: var(--muted); line-height: 1.72; font-size: 0.98rem; }
.risk-visual { position: relative; min-height: 290px; display: grid; align-items: center; overflow: hidden; }
.risk-visual img { width: 100%; object-fit: contain; filter: drop-shadow(0 0 22px rgba(22, 217, 255, 0.16)); }
.hint { margin-top: -18px; text-align: center; color: #b9d0df; font-family: var(--condensed); font-size: 0.74rem; font-weight: 700; text-transform: uppercase; }

/* ── SCANNER ── */
.scanner-section { padding: 32px 0 34px; background: linear-gradient(180deg, rgba(2, 10, 19, 0.94), rgba(4, 13, 23, 0.9)); }
.scan-panel { display: grid; grid-template-columns: 0.9fr 0.98fr 0.84fr; gap: 22px; align-items: stretch; }
.panel { position: relative; min-height: 220px; padding: 30px; border: 1px solid rgba(99, 190, 255, 0.32); background: linear-gradient(180deg, rgba(6, 21, 35, 0.78), rgba(2, 10, 18, 0.88)); box-shadow: inset 0 0 30px rgba(22, 217, 255, 0.04); clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px); }
.panel h2 { margin-top: 10px; font-size: clamp(1.6rem, 2.4vw, 2.15rem); font-weight: 700; }
.panel h3 { color: var(--cyan); font-family: var(--condensed); font-size: 1rem; font-weight: 800; text-transform: uppercase; }
.panel p { color: var(--muted); line-height: 1.65; }
.plate-row { display: grid; grid-template-columns: 1fr auto; gap: 8px; margin-top: 28px; }
.plate-wrap { min-width: 0; display: flex; overflow: hidden; border: 1px solid rgba(222, 244, 255, 0.35); border-radius: 4px; background: #e9edf0; }
.eu-flag { width: 34px; display: grid; place-items: center; color: #ffcc00; background: #06339b; font-size: 0.55rem; line-height: 1; }
.plate-wrap input { width: 100%; min-width: 0; padding: 10px 13px; color: #8a8f95; border: 0; background: #e7eaed; font-size: 1.15rem; font-weight: 800; text-transform: uppercase; outline: none; }
.checks { display: grid; gap: 16px; margin-top: 24px; }
.check { display: grid; grid-template-columns: 24px 1fr 24px; align-items: center; gap: 10px; color: #d6e6f0; font-size: 0.92rem; }
.check-icon { color: var(--cyan); font-weight: 900; }
.status { justify-self: end; color: var(--lime); font-weight: 900; }
.meter { height: 122px; display: grid; place-items: end center; position: relative; margin: 22px 0 8px; }
.arc { width: 150px; height: 78px; border-radius: 150px 150px 0 0; background: conic-gradient(from 270deg, #ff8b20 0 38deg, #ff3f3f 38deg 92deg, #611521 92deg 180deg, transparent 180deg 360deg); box-shadow: 0 0 26px rgba(255, 63, 63, 0.24); }
.arc::after { content: ""; position: absolute; width: 112px; height: 58px; bottom: 0; border-radius: 112px 112px 0 0; background: #06111d; }
.meter strong { position: absolute; bottom: 20px; color: var(--red); font-family: var(--tech); font-size: 1.75rem; font-weight: 900; text-shadow: 0 0 18px rgba(255, 63, 63, 0.5); }

/* ── COBERTURAS ── */
.coverage-section { padding: 34px 0 42px; background: linear-gradient(180deg, rgba(3, 12, 22, 0.96), rgba(2, 8, 17, 0.96)); }
.section-head { margin-bottom: 28px; text-align: center; }
.section-head h2 { margin-top: 8px; font-size: clamp(1.65rem, 2.9vw, 2.6rem); font-weight: 700; }
.coverage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.coverage-card { min-height: 178px; padding: 20px 16px; text-align: center; border: 1px solid rgba(91, 174, 234, 0.24); background: linear-gradient(180deg, rgba(8, 25, 40, 0.64), rgba(4, 13, 23, 0.82)); border-radius: 6px; transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease; }
.coverage-card:hover { transform: translateY(-5px); border-color: var(--line-strong); box-shadow: var(--shadow); }
.coverage-card img { width: 42px; height: 42px; margin: 0 auto 12px; object-fit: contain; filter: drop-shadow(0 0 12px rgba(22, 217, 255, 0.28)); }
.coverage-card h3 { margin-bottom: 8px; font-family: var(--condensed); font-size: 0.86rem; font-weight: 800; text-transform: uppercase; }
.coverage-card p { color: var(--muted); font-size: 0.8rem; line-height: 1.45; }
.coverage-card .limit { display: inline-flex; margin-top: 12px; padding: 4px 9px; color: var(--lime); border: 1px solid rgba(157, 255, 28, 0.28); border-radius: 999px; background: rgba(157, 255, 28, 0.08); font-family: var(--condensed); font-size: 0.78rem; font-weight: 900; text-transform: uppercase; }
.preventive-title { margin: 30px 0 16px; color: var(--cyan); font-family: var(--condensed); font-size: 1rem; font-weight: 900; text-align: center; text-transform: uppercase; }

/* ── PLANES ── */
.plans-section { padding: 34px 0 44px; background: radial-gradient(circle at 50% 50%, rgba(22, 217, 255, 0.06), transparent 32%), #020811; }
.plans-top { display: grid; grid-template-columns: 1fr auto 1fr; align-items: end; gap: 20px; margin-bottom: 24px; }
.plans-top .section-head { grid-column: 2; margin-bottom: 0; }
.toggle-wrap { grid-column: 3; justify-self: end; display: flex; align-items: center; gap: 8px; color: var(--soft); font-size: 0.78rem; }
.toggle-label { opacity: 0.65; }
.toggle-label.active { opacity: 1; color: var(--text); }
.toggle-switch { position: relative; width: 42px; height: 20px; border: 1px solid var(--line); border-radius: 999px; background: rgba(22, 217, 255, 0.12); cursor: pointer; }
.toggle-knob { position: absolute; top: 3px; left: 4px; width: 12px; height: 12px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 8px var(--cyan); transition: transform 0.25s ease; }
.toggle-switch.on .toggle-knob { transform: translateX(20px); }
.save-badge { padding: 2px 7px; border-radius: 999px; color: var(--lime); background: rgba(157, 255, 28, 0.12); font-size: 0.66rem; font-weight: 800; }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: stretch; }
.plan { position: relative; min-height: 310px; padding: 28px 28px 24px; overflow: hidden; border: 1px solid rgba(92, 172, 236, 0.28); border-radius: 8px; background: linear-gradient(135deg, rgba(18, 39, 58, 0.92), rgba(7, 15, 28, 0.94)); box-shadow: 0 0 28px rgba(0, 0, 0, 0.18); }
.plan.featured { border-color: var(--cyan); box-shadow: 0 0 32px rgba(22, 217, 255, 0.22); }
.plan.black { background: linear-gradient(135deg, rgba(21, 27, 55, 0.96), rgba(9, 11, 25, 0.96)); }
.plan-art { position: absolute; right: 14px; top: 56px; width: 142px; height: 120px; object-fit: cover; opacity: 0.52; border-radius: 8px; filter: drop-shadow(0 0 20px rgba(22, 217, 255, 0.35)); mask-image: linear-gradient(to left, black 45%, transparent 100%); }
.plan > *:not(.plan-art) { position: relative; z-index: 2; }
.badge { position: absolute; top: 18px; right: 24px; padding: 7px 10px; color: #001018; background: var(--cyan); border-radius: 4px; font-family: var(--condensed); font-size: 0.66rem; font-weight: 900; text-transform: uppercase; }
.plan h3 { color: var(--cyan); font-family: var(--condensed); font-size: 1.16rem; font-weight: 800; text-transform: uppercase; }
.plan.black h3 { color: var(--purple); }
.plan p { margin-top: 6px; width: min(240px, 100%); color: var(--muted); font-size: 0.84rem; line-height: 1.45; }
.price { margin: 22px 0 18px; color: #8ddcff; font-family: var(--tech); font-size: 2.1rem; font-weight: 900; }
.price span { margin-left: 5px; color: var(--soft); font-family: var(--font); font-size: 0.78rem; font-weight: 500; }
.plan ul { display: grid; gap: 8px; margin-bottom: 24px; list-style: none; color: #d3e3ef; font-size: 0.84rem; }
.plan li::before { content: "\2713"; margin-right: 8px; color: var(--cyan); }

/* ── CONTRATACIÓN ── */
.contract-section { padding: 42px 0 52px; background: radial-gradient(circle at 50% 0%, rgba(22, 217, 255, 0.08), transparent 34%), #020811; }
.contract-layout { display: grid; grid-template-columns: 320px 1fr; gap: 26px; align-items: start; }
.offer-card { position: sticky; top: 88px; overflow: hidden; border: 1px solid rgba(22, 217, 255, 0.36); border-radius: 8px; background: linear-gradient(180deg, rgba(8, 26, 45, 0.92), rgba(3, 12, 23, 0.96)); box-shadow: var(--shadow); }
.offer-card::before { content: ""; display: block; height: 136px; background: linear-gradient(180deg, rgba(2, 7, 15, 0.08), rgba(2, 7, 15, 0.72)), url("hero.png") center / cover no-repeat; }
.offer-body { padding: 24px; }
.offer-body h2 { margin: 10px 0 14px; font-size: 1.55rem; font-weight: 800; text-transform: uppercase; }
.single-price { display: grid; place-items: center; width: 168px; height: 168px; margin: 22px auto; color: #06132a; background: #f8fbff; border: 10px solid #0f62d9; border-radius: 50%; box-shadow: 0 0 24px rgba(22, 217, 255, 0.24); text-align: center; }
.single-price strong { display: block; color: #071845; font-family: var(--tech); font-size: 2.35rem; line-height: 1; }
.single-price span { color: #071845; font-family: var(--condensed); font-size: 1.2rem; font-weight: 900; text-transform: uppercase; }
.offer-list { display: grid; gap: 11px; margin: 20px 0 0; list-style: none; color: #dbeaf4; font-size: 0.9rem; }
.offer-list li { display: grid; grid-template-columns: 22px 1fr; gap: 9px; align-items: start; }
.offer-list li::before { content: "\2713"; color: var(--lime); font-weight: 900; }
.form-card { padding: 28px; border: 1px solid rgba(99, 190, 255, 0.32); border-radius: 8px; background: linear-gradient(180deg, rgba(7, 23, 38, 0.82), rgba(3, 12, 23, 0.92)); box-shadow: inset 0 0 36px rgba(22, 217, 255, 0.05); }
.form-card h2 { margin-bottom: 8px; font-size: clamp(1.55rem, 2.4vw, 2.25rem); font-weight: 800; }
.form-card > p { margin-bottom: 24px; color: var(--muted); line-height: 1.6; }
.form-section { padding: 22px 0; border-top: 1px solid rgba(47, 196, 255, 0.2); }
.form-section:first-of-type { border-top: 0; padding-top: 0; }
.form-section h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; color: var(--cyan); font-family: var(--condensed); font-size: 1.08rem; font-weight: 900; text-transform: uppercase; }
.section-dot { width: 26px; height: 26px; display: grid; place-items: center; color: #001018; background: var(--cyan); border-radius: 50%; font-family: var(--tech); font-size: 0.82rem; }
.form-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px 18px; }
.form-grid.two { grid-template-columns: repeat(2, 1fr); }
.form-grid .full { grid-column: 1 / -1; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field.wide { grid-column: span 2; }
.field label { color: #d8e8f2; font-size: 0.82rem; font-weight: 800; }
.field label span { color: var(--cyan); }
.field input, .field select { width: 100%; min-height: 42px; padding: 10px 12px; color: var(--text); border: 1px solid rgba(185, 221, 255, 0.38); border-radius: 4px; background: rgba(205, 219, 255, 0.12); outline: none; }
.field input::placeholder { color: rgba(216, 232, 242, 0.62); }
.field select option { color: #071845; background: #f6fbff; }
.field input:focus, .field select:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(22, 217, 255, 0.12); }
.form-note { margin-top: 12px; color: var(--muted); font-size: 0.78rem; line-height: 1.55; }
.form-feedback { min-height: 22px; margin-top: 12px; color: var(--cyan); font-size: 0.86rem; font-weight: 800; }
.form-feedback.error { color: #ff8b8b; }
.form-feedback.success { color: var(--lime); }
.bot-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.split-box { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.consent-list { display: grid; gap: 15px; margin-top: 18px; }
.consent { padding: 14px; border: 1px solid rgba(47, 196, 255, 0.18); border-radius: 6px; background: rgba(2, 10, 19, 0.38); }
.consent p { margin-bottom: 10px; color: #d8e8f2; font-size: 0.86rem; line-height: 1.45; }
.radio-row { display: flex; gap: 24px; color: var(--soft); }
.radio-row label { display: inline-flex; align-items: center; gap: 7px; }
.submit-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-top: 20px; border-top: 1px solid rgba(47, 196, 255, 0.2); }
.contact-pill { color: var(--cyan); font-weight: 800; }

/* ── CTA BAND ── */
.cta-band { padding: 42px 0 52px; background: linear-gradient(180deg, rgba(3, 11, 20, 0.96), #020811); }
.cta-grid { display: grid; grid-template-columns: 0.78fr 1fr 0.88fr; align-items: center; gap: 28px; min-height: 170px; }
.cta-image { align-self: stretch; min-height: 170px; background: linear-gradient(90deg, transparent 0%, rgba(2, 8, 17, 0.1) 42%, #020811 100%), url("hero.png") center / cover no-repeat; }
.cta-text h2 { margin-bottom: 14px; font-size: clamp(1.35rem, 2.1vw, 2rem); font-weight: 700; }
.cta-text p { margin-bottom: 18px; color: var(--muted); line-height: 1.55; }
.benefits { display: grid; gap: 16px; }
.benefit { display: grid; grid-template-columns: 42px 1fr; gap: 12px; align-items: center; color: #d8e8f2; }
.benefit img { width: 38px; height: 38px; object-fit: contain; filter: drop-shadow(0 0 10px rgba(22, 217, 255, 0.26)); }
.benefit strong { display: block; color: var(--text); font-size: 0.92rem; }
.benefit span span { display: block; color: var(--muted); font-size: 0.84rem; line-height: 1.35; }

/* ── FOOTER ── */
footer { padding: 24px 0; color: var(--muted); background: #01060d; }
.footer-inner { display: grid; grid-template-columns: auto 1fr auto; gap: 26px; align-items: center; }
.footer-links { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; font-family: var(--condensed); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; }
.footer-links a:hover { color: var(--cyan); }
.social-links { display: flex; gap: 12px; }
.social-links a { width: 28px; height: 28px; display: grid; place-items: center; color: #d6e6f0; opacity: 0.82; }
.social-links a:hover { color: var(--cyan); opacity: 1; }
.footer-copy { position: relative; z-index: 1; grid-column: 1 / -1; text-align: center; color: #6f8798; font-size: 0.74rem; }
.company-link { color: var(--cyan); font-weight: 700; transition: color 0.2s, text-shadow 0.2s; }
.company-link:hover { color: var(--lime); text-shadow: 0 0 10px rgba(157, 255, 28, 0.22); }
.footer-legal {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 10px;
  border-top: 1px solid rgba(47, 196, 255, 0.1);
}
.legal-link { color: #6f8798; font-family: var(--condensed); font-size: 0.74rem; font-weight: 700; text-transform: uppercase; transition: color 0.2s; }
.legal-link:hover { color: var(--cyan); }

/* ── PÁGINA LEGAL ── */
.legal-page { padding: clamp(36px, 6vw, 72px) 0 60px; }
.legal-page-head {
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(22, 217, 255, 0.2);
}
.legal-page-head h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; text-transform: uppercase; }
.legal-page-head .update { display: block; margin-top: 8px; color: var(--muted); font-size: 0.82rem; }
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--cyan);
  font-family: var(--condensed);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.legal-back:hover { opacity: 1; }
.legal-content { color: #c8dce9; font-size: 0.94rem; line-height: 1.8; }
.legal-content h2 { margin: 32px 0 10px; color: var(--cyan); font-family: var(--condensed); font-size: 1rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.05em; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { margin-bottom: 14px; }
.legal-content ul { margin: 0 0 14px 22px; }
.legal-content li { margin-bottom: 6px; }
.legal-content strong { color: var(--text); }

/* ── PÁGINA SOBRE NOSOTROS ── */
.about-hero {
  padding: clamp(58px, 8vw, 92px) 0 58px;
  text-align: center;
  background: linear-gradient(180deg, rgba(4, 16, 28, 0.9), rgba(2, 9, 18, 0.96));
  border-bottom: 1px solid var(--line);
}
.about-hero h1 { max-width: 100%; margin: 10px auto 12px; color: var(--text); font-size: clamp(1.18rem, 5.8vw, 4.25rem); font-weight: 900; line-height: 1; text-transform: uppercase; white-space: nowrap; text-shadow: 0 0 28px rgba(22, 217, 255, 0.18); }
.about-wordmark { letter-spacing: 0; }
.fbi-initial { display: inline-block; text-shadow: 0 0 18px currentColor; }
.fbi-initial--f { color: var(--cyan); }
.fbi-initial--b { color: var(--lime); }
.fbi-initial--i { color: var(--yellow); }
.about-kicker { margin: 0 auto; color: var(--soft); font-family: var(--condensed); font-size: clamp(0.95rem, 1.8vw, 1.15rem); font-weight: 800; text-transform: uppercase; }
.about-subbrand { margin: 0 auto 12px; color: var(--text); font-family: var(--condensed); font-size: clamp(1.35rem, 3vw, 2rem); font-weight: 700; line-height: 1.1; }
.fbi-acronym { display: inline-flex; gap: 0.03em; font-family: var(--tech); font-weight: 900; vertical-align: baseline; }
.about-tagline { margin: 0 auto 22px; color: var(--cyan); font-family: var(--tech); font-size: clamp(1rem, 2.2vw, 1.45rem); font-weight: 800; line-height: 1.25; text-transform: uppercase; }
.about-tagline span { color: var(--lime); }
.about-lead { font-size: clamp(0.98rem, 1.5vw, 1.15rem); color: var(--muted); max-width: 620px; margin: 0 auto; line-height: 1.7; }

.about-section { padding: 52px 0; }
.about-section + .about-section { border-top: 1px solid var(--line); }
.about-section--alt { background: rgba(4, 16, 28, 0.55); }
.about-section h2 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); font-weight: 800; margin-bottom: 22px; }
.about-section .eyebrow { margin-bottom: 10px; }
.about-section p { color: var(--muted); line-height: 1.75; margin-bottom: 16px; }

.about-historia { display: grid; grid-template-columns: 1fr 0.45fr; gap: 52px; align-items: start; }
.about-text p:last-child { margin-bottom: 0; }

.about-stat-col { display: flex; flex-direction: column; gap: 24px; padding-top: 8px; }
.about-stat { padding: 22px 24px; background: var(--panel); border: 1px solid var(--line); border-radius: 12px; }
.about-stat strong { display: block; font-family: var(--tech); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900; background: linear-gradient(90deg, var(--cyan), var(--lime)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1.1; margin-bottom: 6px; }
.about-stat span { font-size: 0.86rem; color: var(--muted); line-height: 1.4; }

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 32px; }
.value-card { background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 26px 20px; transition: border-color 0.25s; }
.value-card:hover { border-color: rgba(22, 217, 255, 0.5); }
.value-card img { width: 36px; height: 36px; object-fit: contain; filter: drop-shadow(0 0 8px rgba(22,217,255,0.3)); margin-bottom: 14px; }
.value-card h3 { font-family: var(--tech); font-size: 0.95rem; font-weight: 700; color: var(--cyan); margin-bottom: 8px; }
.value-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.55; margin: 0; }

.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 36px; position: relative; }
.timeline::before { content: ''; position: absolute; top: 20px; left: calc(12.5% - 6px); right: calc(12.5% - 6px); height: 2px; background: linear-gradient(90deg, var(--cyan), var(--lime)); opacity: 0.35; pointer-events: none; }
.timeline-item { position: relative; padding-top: 48px; }
.timeline-dot { position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 24px; height: 24px; border-radius: 50%; background: var(--bg); border: 2px solid var(--cyan); box-shadow: 0 0 14px rgba(22,217,255,0.45); }
.timeline-date { font-family: var(--tech); font-size: 0.72rem; font-weight: 700; color: var(--cyan); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 8px; }
.timeline-item h3 { font-family: var(--tech); font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.timeline-item p { font-size: 0.86rem; color: var(--muted); line-height: 1.5; }

.about-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.contact-items { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.contact-item { display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: center; }
.contact-item img { width: 38px; height: 38px; object-fit: contain; filter: drop-shadow(0 0 10px rgba(22,217,255,0.28)); }
.contact-item strong { display: block; font-size: 0.82rem; color: var(--muted); text-transform: uppercase; font-family: var(--condensed); font-weight: 700; letter-spacing: 0.04em; margin-bottom: 3px; }
.contact-item a { color: var(--text); font-size: 1rem; font-weight: 600; transition: color 0.2s; }
.contact-item a:hover { color: var(--cyan); }

.about-cta-box { background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 36px 32px; }
.about-cta-box h2 { font-size: clamp(1.1rem, 2vw, 1.5rem); margin-bottom: 14px; }
.about-cta-box p { color: var(--muted); line-height: 1.65; margin-bottom: 24px; }
.about-cta-box strong { color: var(--lime); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .nav-links { gap: 12px; font-size: 0.72rem; }
  .nav .btn { padding-inline: 16px; }
  .stat { padding: 16px; }
  .coverage-grid { grid-template-columns: repeat(2, 1fr); }
  .scan-panel, .risk-grid, .cta-grid { grid-template-columns: 1fr; }
  .contract-layout { grid-template-columns: 1fr; }
  .offer-card { position: static; }
  .cta-image { min-height: 260px; }
  .plans-top { grid-template-columns: 1fr; text-align: center; }
  .plans-top .section-head, .toggle-wrap { grid-column: auto; justify-self: center; }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}
.shake { animation: shake 0.4s ease; border-color: #ff3f3f !important; }

@media (max-width: 820px) {
  .container { width: min(100% - 28px, 1120px); }
  .nav-links, .nav .btn { display: none; }
  .mobile-menu { display: grid; }
  .nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 16px 24px 24px;
    gap: 18px;
    z-index: 100;
  }
  .nav-open .nav-links a { font-size: 1rem; }
  .hero { min-height: auto; background-position: 62% center; }
  .neon-ring, .car-scan { display: none; }
  .hero-content { min-height: calc(100svh - 66px); padding-top: 42px; }
  .hero-copy { padding-bottom: 24px; }
  .hero h1 { font-size: clamp(2rem, 9vw, 3.2rem); }
  .stat-strip { grid-template-columns: 1fr 1fr; margin-bottom: 18px; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(47, 196, 255, 0.22); }
  .plans { grid-template-columns: 1fr; }
  .form-grid, .form-grid.two, .split-box { grid-template-columns: 1fr; }
  .field.wide { grid-column: 1 / -1; }
  .footer-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .about-historia { grid-template-columns: 1fr; gap: 32px; }
  .about-stat-col { flex-direction: row; flex-wrap: wrap; }
  .about-stat { flex: 1 1 180px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .timeline::before { display: none; }
  .about-contact-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-height: 720px) and (min-width: 821px) {
  .hero-content { padding-top: 26px; }
  .hero-copy { padding-top: 18px; padding-bottom: 16px; }
  .hero h1 { font-size: clamp(1.85rem, 3.25vw, 2.95rem); }
  .hero p { margin: 14px 0 18px; line-height: 1.52; }
  .btn { min-height: 38px; padding: 10px 20px; }
  .stat { min-height: 76px; padding: 12px 22px; }
  .stat img { width: 40px; height: 40px; }
  .stat strong { font-size: clamp(1.25rem, 2vw, 1.75rem); }
  .stat span span { font-size: 0.82rem; }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before, .neon-ring, .neon-ring::before, .neon-ring::after, .car-scan::before, .car-scan::after { animation: none; }
}

/* ── FAQ ── */
.faq-section {
  padding: clamp(60px, 8vw, 100px) 0;
}

.faq-section .section-head {
  text-align: center;
  margin-bottom: 48px;
}

.faq-section .section-head h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-family: var(--tech);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  max-width: 640px;
  margin: 12px auto 0;
}

.faq-grid {
  display: grid;
  gap: 10px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color 0.22s;
}

.faq-item[open] {
  border-color: rgba(47, 221, 255, 0.5);
}

.faq-question {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  font-family: var(--condensed);
  font-size: clamp(0.93rem, 1.6vw, 1.05rem);
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  user-select: none;
  transition: color 0.2s;
}

.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; }

.faq-question::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--cyan);
  transition: transform 0.22s;
  line-height: 1;
  font-family: var(--font);
}

.faq-item[open] > .faq-question {
  color: var(--cyan);
}

.faq-item[open] > .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 4px 24px 22px;
  color: var(--soft);
  font-size: 0.91rem;
  line-height: 1.72;
  border-top: 1px solid var(--line);
}

.faq-answer p { margin-top: 14px; }
.faq-answer p:first-child { margin-top: 0; }

.faq-answer strong {
  color: var(--cyan);
  font-weight: 600;
}

@media (max-width: 560px) {
  .faq-question { padding: 16px 18px; font-size: 0.9rem; }
  .faq-answer { padding: 4px 18px 18px; }
}

@media (max-width: 560px) {
  .brand-title { font-size: 0.88rem; }
  .brand-company { font-size: 0.5rem; }
  .hero-actions, .plate-row { grid-template-columns: 1fr; flex-direction: column; }
  .hero-actions .btn, .plate-row .btn, .plan .btn { width: 100%; }
  .stat-strip, .coverage-grid { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid rgba(47, 196, 255, 0.22); }
  .stat:last-child { border-bottom: 0; }
  .panel, .plan { padding: 24px 20px; }
  .form-card { padding: 24px 18px; }
  .submit-row { align-items: stretch; flex-direction: column; }
  .submit-row .btn { width: 100%; }
  .risk-visual { min-height: 210px; }
  .values-grid, .timeline { grid-template-columns: 1fr; }
  .timeline::before { display: none; }
}
