:root {
  --bg: #0b1427;
  --panel: rgba(11, 23, 48, 0.88);
  --text: #f1f5f9;
  --soft: #94a3b8;
  --muted: #64748b;
  --cyan: #3b82f6;
  --lime: #60a5fa;
  --yellow: #f59e0b;
  --red: #ef4444;
  --purple: #818cf8;
  --line: rgba(59, 130, 246, 0.15);
  --line-strong: rgba(59, 130, 246, 0.38);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  --font: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --tech: Rajdhani, var(--font);
  --condensed: Rajdhani, var(--font);
  --hero-image: url("hero.png");
}

@supports (background-image: image-set(url("hero-900.webp") type("image/webp"))) {
  :root {
    --hero-image: image-set(url("hero-900.webp") type("image/webp"), url("hero.png") type("image/png"));
  }
}

@supports (background-image: image-set(url("hero-1535.webp") type("image/webp"))) {
  @media (min-width: 821px) {
    :root {
      --hero-image: image-set(url("hero-1535.webp") type("image/webp"), url("hero.png") type("image/png"));
    }
  }
}

* { 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(11, 20, 39, 0.6), rgba(11, 20, 39, 0.98) 36%, #0b1427 100%), #0b1427;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.14;
  background-image: linear-gradient(rgba(59, 130, 246, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(59, 130, 246, 0.08) 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(9, 17, 34, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(59, 130, 246, 0.14);
}

.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: Orbitron, sans-serif;
  font-weight: 900;
  border: 1px solid rgba(59, 130, 246, 0.5);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.6), rgba(11, 20, 39, 0.9));
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(37, 99, 235, 0.2);
}

.brand-text { font-family: Orbitron, sans-serif; font-weight: 800; line-height: 1; text-transform: uppercase; }
.brand-text > span { display: block; font-size: 1.02rem; }
.brand-text small { display: block; margin-top: 4px; color: var(--cyan); font-size: 0.58rem; letter-spacing: 0.28em; }
.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, opacity 0.2s; }
.brand-company:hover { color: var(--lime); opacity: 0.85; }

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

.nav-links a { position: relative; opacity: 0.82; 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); 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: 6px;
  color: #0b1427;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  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, background 0.2s ease;
}

.btn::after { content: "\2192"; font-size: 1rem; line-height: 1; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(0, 0, 0, 0.28); background: #f0f6ff; }
.btn.secondary { color: var(--text); background: rgba(11, 20, 39, 0.45); border: 1px solid rgba(200, 220, 255, 0.32); box-shadow: none; }
.btn.secondary:hover { border-color: var(--cyan); box-shadow: 0 2px 14px rgba(59, 130, 246, 0.12); }
.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; }

/* ── RAIL DE SCROLL ── */
.scroll-rail {
  position: fixed;
  top: 50%;
  right: max(34px, calc(env(safe-area-inset-right) + 24px));
  z-index: 45;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  transform: translateY(-50%);
  pointer-events: none;
}

.scroll-rail-button,
.scroll-rail-dot {
  pointer-events: auto;
  border: 0;
  cursor: pointer;
}

.scroll-rail-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #0b1427;
  border-radius: 50%;
  background: rgba(246, 251, 255, 0.94);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(59, 130, 246, 0.1);
}

.scroll-rail-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scroll-rail-button:disabled {
  opacity: 0.34;
}

.scroll-rail-dots {
  display: grid;
  gap: 8px;
  justify-items: center;
  padding: 2px 0;
}

.scroll-rail-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(220, 232, 248, 0.7);
  box-shadow: 0 0 0 1px rgba(11, 20, 39, 0.2);
  transition: transform 0.18s ease, background 0.18s ease;
}

.scroll-rail-dot.active {
  width: 12px;
  height: 12px;
  background: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
}

.scroll-rail.near-top .scroll-rail-prev {
  opacity: 0.2;
}

/* ── 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, #60a5fa 0%, #93c5fd 50%, #e0f2fe 100%); -webkit-background-clip: text; background-clip: text; }
.neon-lime { color: var(--lime); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: calc(100svh - 66px);
  display: grid;
  align-items: stretch;
  overflow: hidden;
  border-bottom: 1px solid rgba(59, 130, 246, 0.12);
  background-color: #0b1427;
  background-image: linear-gradient(90deg, rgba(9, 17, 33, 0.96) 0%, rgba(9, 17, 33, 0.74) 29%, rgba(9, 17, 33, 0.2) 63%, rgba(9, 17, 33, 0.78) 100%), var(--hero-image);
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 60%, rgba(11, 20, 39, 0.7) 100%);
}

.hero::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(180deg, transparent 72%, rgba(11, 20, 39, 0.95) 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: #c8d8e8; font-size: 1.02rem; line-height: 1.62; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.neon-ring { display: none; }
.car-scan { display: none; }

/* ── STAT STRIP ── */
.stat-strip { position: relative; z-index: 3; display: grid; grid-template-columns: repeat(4, 1fr); margin-bottom: 24px; border: 1px solid rgba(59, 130, 246, 0.25); background: linear-gradient(180deg, rgba(11, 23, 46, 0.88), rgba(9, 18, 36, 0.95)); border-radius: 10px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25); }
.stat { min-height: 96px; display: grid; grid-template-columns: 54px 1fr; gap: 16px; align-items: center; padding: 18px 30px; border-right: 1px solid rgba(59, 130, 246, 0.16); }
.stat:last-child { border-right: 0; }
.stat img { width: 48px; height: 48px; object-fit: contain; filter: drop-shadow(0 2px 6px rgba(37, 99, 235, 0.2)); }
.stat > span { min-width: 0; }
.stat strong { display: block; color: #93c5fd; 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: #c4d8ea; font-size: 0.9rem; line-height: 1.4; overflow-wrap: anywhere; }

/* ── SECCIONES ── */
section { border-bottom: 1px solid rgba(59, 130, 246, 0.1); }
.risk-section { padding: 34px 0 12px; background: linear-gradient(180deg, rgba(10, 19, 38, 0.7), rgba(9, 16, 32, 0.92)); }
.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 4px 16px rgba(37, 99, 235, 0.1)); }
.hint { margin-top: -18px; text-align: center; color: #aac0d4; 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(9, 17, 34, 0.96), rgba(10, 19, 38, 0.92)); }
.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(59, 130, 246, 0.2); background: linear-gradient(180deg, rgba(12, 26, 50, 0.82), rgba(9, 18, 36, 0.9)); box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); border-radius: 10px; }
.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: #c4d6e6; 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, #f59e0b 0 38deg, #ef4444 38deg 92deg, #7f1d1d 92deg 180deg, transparent 180deg 360deg); box-shadow: 0 4px 16px rgba(239, 68, 68, 0.15); }
.arc::after { content: ""; position: absolute; width: 112px; height: 58px; bottom: 0; border-radius: 112px 112px 0 0; background: #09121e; }
.meter strong { position: absolute; bottom: 20px; color: #ef4444; font-family: var(--tech); font-size: 1.75rem; font-weight: 900; }

/* ── COBERTURAS ── */
.coverage-section { padding: 34px 0 42px; background: linear-gradient(180deg, rgba(9, 18, 36, 0.98), rgba(11, 20, 39, 0.98)); }
.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(59, 130, 246, 0.16); background: linear-gradient(180deg, rgba(13, 28, 55, 0.7), rgba(9, 18, 36, 0.88)); border-radius: 8px; transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease; }
.coverage-card:hover { transform: translateY(-4px); border-color: rgba(96, 165, 250, 0.4); box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3); }
.coverage-card img { width: 42px; height: 42px; margin: 0 auto 12px; object-fit: contain; filter: drop-shadow(0 2px 6px rgba(37, 99, 235, 0.2)); }
.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: #93c5fd; border: 1px solid rgba(59, 130, 246, 0.28); border-radius: 999px; background: rgba(37, 99, 235, 0.1); 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: #0b1427; }
.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(59, 130, 246, 0.1); cursor: pointer; }
.toggle-knob { position: absolute; top: 3px; left: 4px; width: 12px; height: 12px; border-radius: 50%; background: var(--cyan); transition: transform 0.25s ease; }
.toggle-switch.on .toggle-knob { transform: translateX(20px); }
.save-badge { padding: 2px 7px; border-radius: 999px; color: #93c5fd; background: rgba(37, 99, 235, 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(59, 130, 246, 0.2); border-radius: 10px; background: linear-gradient(135deg, rgba(17, 36, 66, 0.94), rgba(10, 18, 34, 0.96)); box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2); }
.plan.featured { border-color: rgba(59, 130, 246, 0.5); box-shadow: 0 4px 32px rgba(37, 99, 235, 0.15); }
.plan.black { background: linear-gradient(135deg, rgba(18, 22, 50, 0.96), rgba(9, 10, 24, 0.96)); }
.plan-art { position: absolute; right: 14px; top: 56px; width: 142px; height: 120px; object-fit: cover; opacity: 0.38; border-radius: 8px; 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: #f1f5f9; background: #2563eb; border-radius: 4px; font-family: var(--condensed); font-size: 0.66rem; font-weight: 900; text-transform: uppercase; }
.plan h3 { color: #93c5fd; 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: #93c5fd; 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: #c8d9ec; font-size: 0.84rem; }
.plan li::before { content: "\2713"; margin-right: 8px; color: #93c5fd; }

/* ── CONTRATACIÓN ── */
.contract-section { padding: 42px 0 52px; background: #0b1427; }
.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(59, 130, 246, 0.28); border-radius: 10px; background: linear-gradient(180deg, rgba(12, 26, 52, 0.95), rgba(9, 18, 36, 0.98)); box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25); }
.offer-card::before { content: ""; display: block; height: 136px; background: linear-gradient(180deg, rgba(9, 17, 33, 0.1), rgba(9, 17, 33, 0.74)), var(--hero-image) 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: #0f1d3a; background: #f8fbff; border: 10px solid #1d4ed8; border-radius: 50%; box-shadow: 0 4px 20px rgba(37, 99, 235, 0.2); text-align: center; }
.single-price strong { display: block; color: #0f1d3a; font-family: var(--tech); font-size: 2.35rem; line-height: 1; }
.single-price span { color: #0f1d3a; 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: #d0e2f2; 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: #93c5fd; font-weight: 900; }
.form-card { padding: 28px; border: 1px solid rgba(59, 130, 246, 0.18); border-radius: 10px; background: linear-gradient(180deg, rgba(12, 26, 50, 0.86), rgba(9, 18, 36, 0.94)); }
.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(59, 130, 246, 0.14); }
.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: #f1f5f9; background: #2563eb; 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: #ccdae8; 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(180, 210, 240, 0.28); border-radius: 4px; background: rgba(180, 210, 255, 0.07); outline: none; }
.field input::placeholder { color: rgba(200, 220, 240, 0.5); }
.field select option { color: #0f1d3a; background: #f6fbff; }
.field input:focus, .field select:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1); }
.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: #fca5a5; }
.form-feedback.success { color: #93c5fd; }
.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(59, 130, 246, 0.14); border-radius: 6px; background: rgba(9, 17, 34, 0.38); }
.consent p { margin-bottom: 10px; color: #ccdae8; 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(59, 130, 246, 0.14); }
.contact-pill { color: var(--cyan); font-weight: 800; }

/* ── CTA BAND ── */
.cta-band { padding: 42px 0 52px; background: linear-gradient(180deg, rgba(9, 17, 34, 0.96), #0b1427); }
.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(11, 20, 39, 0.1) 42%, #0b1427 100%), var(--hero-image) 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: #ccdae8; }
.benefit img { width: 38px; height: 38px; object-fit: contain; filter: drop-shadow(0 2px 6px rgba(37, 99, 235, 0.15)); }
.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: #08111e; }
.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: #c0d0e0; opacity: 0.75; }
.social-links a:hover { color: var(--cyan); opacity: 1; }
.footer-copy { position: relative; z-index: 1; grid-column: 1 / -1; text-align: center; color: #4e6478; font-size: 0.74rem; }
.company-link { color: var(--cyan); font-weight: 700; transition: color 0.2s; }
.company-link:hover { color: var(--lime); }
.footer-legal {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 10px;
  border-top: 1px solid rgba(59, 130, 246, 0.08);
}
.legal-link { color: #4e6478; 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(59, 130, 246, 0.16);
}
.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: #b8ceda; 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(10, 20, 42, 0.94), rgba(9, 17, 34, 0.98));
  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; }
.about-wordmark { letter-spacing: 0; }
.fbi-initial { display: inline-block; }
.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(10, 20, 42, 0.5); }
.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, #60a5fa, #93c5fd); -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(59, 130, 246, 0.4); }
.value-card img { width: 36px; height: 36px; object-fit: contain; filter: drop-shadow(0 2px 6px rgba(37, 99, 235, 0.18)); margin-bottom: 14px; }
.value-card h3 { font-family: var(--tech); font-size: 0.95rem; font-weight: 700; color: #93c5fd; 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, #3b82f6, #93c5fd); opacity: 0.28; 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 #3b82f6; box-shadow: 0 2px 10px rgba(59, 130, 246, 0.25); }
.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 2px 6px rgba(37, 99, 235, 0.15)); }
.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: #93c5fd; }

/* ── 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: #ef4444 !important; }

@media (max-width: 820px) {
  .container { width: min(100% - 28px, 1120px); }
  .nav-links { display: none; }
  .brand { min-width: 0; }
  .brand-text { min-width: 0; overflow: hidden; }
  .brand-text > span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .nav .btn { min-height: 36px; padding: 9px 12px; font-size: 0.7rem; }
  .nav .btn::after { content: 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: 58% center; }
  .hero::before { display: none; }
  .hero-content { min-height: auto; grid-template-rows: auto auto; padding-top: 32px; padding-bottom: 18px; }
  .hero-copy { padding-top: 10px; padding-bottom: 18px; }
  .hero h1 { max-width: 100%; font-size: clamp(1.9rem, 7vw, 2.55rem); overflow-wrap: anywhere; }
  .hero h1 .gradient-text { overflow-wrap: anywhere; }
  .hero p { margin: 15px 0 20px; font-size: 0.98rem; line-height: 1.55; }
  .stat-strip { grid-template-columns: 1fr 1fr; margin-top: 12px; margin-bottom: 0; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(59, 130, 246, 0.16); }
  .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) {
  * { animation: none !important; transition-duration: 0.01ms !important; }
}

/* ── 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(96, 165, 250, 0.4);
}

.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: #93c5fd;
}

.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: #93c5fd;
  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) {
  .container { width: min(100% - 24px, 1120px); }
  .scroll-rail { right: max(24px, calc(env(safe-area-inset-right) + 18px)); gap: 8px; transform: translateY(-50%) scale(0.88); transform-origin: right center; }
  .nav-inner { min-height: 58px; gap: 10px; }
  .brand { gap: 9px; }
  .brand-mark { width: 34px; height: 34px; }
  .brand-text > span { font-size: 0.78rem; }
  .brand-text small { display: none; }
  .brand-company { display: none; }
  .nav .btn { display: none; }
  .mobile-menu { width: 38px; height: 38px; }
  .brand-title { font-size: 0.88rem; }
  .brand-company { font-size: 0.5rem; }
  .hero { background-position: 61% center; }
  .hero-content { padding-top: 24px; }
  .hero-copy { width: 100%; min-width: 0; }
  .hero h1 { font-size: clamp(1.55rem, 7.4vw, 2rem); line-height: 1.08; }
  .hero p { font-size: 0.92rem; }
  .hero-actions { display: grid; gap: 10px; width: 100%; max-width: 100%; padding-right: 0; }
  .hero-actions, .plate-row { grid-template-columns: 1fr; flex-direction: column; }
  .hero-actions .btn, .plate-row .btn, .plan .btn { width: 100%; max-width: 100%; min-width: 0; min-height: 46px; padding-inline: 14px; gap: 8px; overflow: hidden; white-space: nowrap; }
  .hero-actions .btn::after { flex: 0 0 auto; }
  .stat-strip, .coverage-grid { grid-template-columns: 1fr; }
  .stat { min-height: auto; grid-template-columns: 38px minmax(0, 1fr); gap: 12px; padding: 16px 18px; border-right: 0; border-bottom: 1px solid rgba(59, 130, 246, 0.16); }
  .stat img { width: 34px; height: 34px; }
  .stat strong { font-size: clamp(1.35rem, 7vw, 1.75rem); line-height: 1; }
  .stat span span { font-size: 0.86rem; line-height: 1.35; }
  .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-section { padding: 22px 0 28px; }
  .risk-grid { gap: 12px; align-items: start; }
  .section-copy .btn { margin-top: 16px !important; }
  .risk-visual { min-height: 0; align-items: start; padding: 0; border: 1px solid rgba(59, 130, 246, 0.16); background: linear-gradient(180deg, rgba(10, 22, 45, 0.9), rgba(9, 17, 34, 0.98)); overflow: hidden; }
  .risk-visual picture { display: block; width: 100%; overflow: hidden; }
  .risk-visual img { width: 100%; height: clamp(214px, 64vw, 286px); object-fit: cover; object-position: center 58%; filter: saturate(1.04) contrast(1.02); }
  .hint { margin: 0; padding: 12px 14px 14px; background: linear-gradient(180deg, rgba(9, 17, 34, 0.42), rgba(9, 17, 34, 0.94)); color: #c4d8e8; font-size: 0.68rem; line-height: 1.35; }
  .values-grid, .timeline { grid-template-columns: 1fr; }
  .timeline::before { display: none; }
}

@media (max-width: 360px) {
  .container { width: min(100% - 20px, 1120px); }
  .brand-text > span { max-width: 168px; font-size: 0.7rem; }
  .hero h1 { font-size: clamp(1.38rem, 7.2vw, 1.62rem); }
  .hero p { font-size: 0.88rem; line-height: 1.5; }
  .btn { min-height: 42px; padding: 11px 13px; font-size: 0.7rem; }
  .hero-actions .btn { min-height: 44px; }
  .risk-visual img { height: 216px; }
  .stat { grid-template-columns: 34px minmax(0, 1fr); padding: 15px 16px; }
  .stat img { width: 30px; height: 30px; }
  .stat span span { font-size: 0.82rem; }
}
