@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@500;600&family=Plus+Jakarta+Sans:wght@500;600;700;800;900&display=swap');

:root {
  --navy: #081422;
  --navy-surface: #0c1d30;
  --navy2: #13324F;
  --navy3: #0F2C47;
  --blue: #2F80ED;
  --cyan: #2AC4DE;
  --cyan-hover: #4de1fa;
  --cyan-glow: rgba(42, 196, 222, 0.35);
  --cyan-dim: rgba(42, 196, 222, 0.12);
  --warn: #FF7A7A;
  --warn-dim: rgba(255, 122, 122, 0.12);
  --ink: #EAF2FA;
  --muted: #9FB4C9;
  --dim: #6F879E;
  --line: rgba(255, 255, 255, 0.08);
  --line2: rgba(255, 255, 255, 0.14);
  --line-cyan: rgba(42, 196, 222, 0.28);
  --card: rgba(15, 36, 60, 0.65);
  --card-hover: rgba(19, 46, 76, 0.85);
  --max: 1160px;
  --r: 16px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-head: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  background-image: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(42, 196, 222, 0.14), transparent 70%),
    radial-gradient(circle at 100% 40%, rgba(31, 169, 194, 0.06), transparent 50%),
    radial-gradient(circle at 0% 80%, rgba(19, 50, 79, 0.25), transparent 50%);
  background-attachment: fixed;
}

/* El idioma se marca en <html> para que un script en el <head> lo fije antes del pintado */
.lang-es .en { display: none !important; }
.lang-en .es { display: none !important; }

/* Texto de ancho fijo entre idiomas para eliminar layout shift */
.tf { display: inline-grid; vertical-align: middle; }
.tf > span { grid-area: 1/1; white-space: nowrap; text-align: center; }
.lang-es .tf > .en,
.lang-en .tf > .es { display: block !important; visibility: hidden !important; }

img, svg { max-width: 100%; }
a { color: var(--cyan); text-decoration: none; transition: color .2s, border-color .2s; }
a:hover { color: var(--cyan-hover); }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; position: relative; }

/* ---------- HEADER ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 20, 34, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: background .2s, border-color .2s;
}
.navbar { display: flex; align-items: center; gap: 20px; padding: 14px 0; }
.brand { display: flex; align-items: center; flex: none; transition: transform .2s ease; }
.brand:hover { transform: scale(1.02); }
.brand svg { height: 42px; width: auto; display: block; }
nav.main { margin-left: auto; display: flex; align-items: center; gap: 6px; }
nav.main a {
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 9px;
  white-space: nowrap;
  transition: all .2s;
}
nav.main a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}
nav.main a.active {
  color: var(--cyan);
  background: rgba(42, 196, 222, 0.08);
}
.drop { position: relative; }
.drop > button {
  background: none;
  border: none;
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background .2s;
}
.drop > button:hover { background: rgba(255, 255, 255, 0.07); }
.drop-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 275px;
  background: rgba(14, 33, 54, 0.95);
  backdrop-filter: blur(18px);
  border: 1px solid var(--line-cyan);
  border-radius: 14px;
  padding: 8px;
  display: none;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55), 0 0 20px rgba(42, 196, 222, 0.12);
  animation: dropFadeIn .18s ease-out;
}
@keyframes dropFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.drop:hover .drop-menu, .drop:focus-within .drop-menu { display: block; }
.drop-menu a { display: block; padding: 11px 14px; border-radius: 9px; font-size: 13.5px; }
.drop-menu a:hover { background: rgba(42, 196, 222, 0.12); color: var(--cyan); }
.lang {
  display: flex;
  border: 1px solid var(--line2);
  border-radius: 999px;
  overflow: hidden;
  flex: none;
  margin-left: 8px;
  background: rgba(255, 255, 255, 0.04);
}
.lang button {
  background: none;
  border: none;
  color: var(--muted);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 13px;
  cursor: pointer;
  transition: all .2s;
}
.lang button.on {
  background: var(--cyan);
  color: #061c2c;
  box-shadow: 0 0 12px rgba(42, 196, 222, 0.4);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 11px;
  font-weight: 700;
  font-size: 14.5px;
  border: none;
  cursor: pointer;
  font-family: var(--font-head);
  letter-spacing: -0.01em;
  transition: all .25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, #2AC4DE 0%, #1ca3ba 100%);
  color: #051928;
  box-shadow: 0 4px 20px rgba(42, 196, 222, 0.38), inset 0 1px 1px rgba(255, 255, 255, 0.45);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #4ce0fa 0%, #22b7d1 100%);
  color: #03131f;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(42, 196, 222, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.7);
}
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  border: 1px solid var(--line2);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(42, 196, 222, 0.45);
  color: #fff;
  transform: translateY(-2px);
}
.nav-cta { flex: none; margin-left: 10px; padding: 8px 18px; font-size: 13.5px; }
.burger {
  display: none;
  margin-left: auto;
  background: none;
  border: 1px solid var(--line2);
  border-radius: 9px;
  color: var(--ink);
  padding: 8px 12px;
  cursor: pointer;
  font-size: 19px;
  line-height: 1;
}

/* ---------- SECTIONS & AMBIENT ---------- */
section { position: relative; }
.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 88px;
}
/* Aura difusa ambiental detrás del Hero */
.hero::after {
  content: '';
  position: absolute;
  top: -150px;
  right: 5%;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42, 196, 222, 0.16) 0%, rgba(19, 50, 79, 0.08) 50%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  animation: heroPulse 9s ease-in-out infinite alternate;
}
@keyframes heroPulse {
  0% { transform: scale(1) translate(0, 0); opacity: 0.7; }
  100% { transform: scale(1.15) translate(-40px, 30px); opacity: 1; }
}

.hero .netbg {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
  animation: netFade 12s ease-in-out infinite alternate;
}
@keyframes netFade {
  0% { opacity: 0.35; transform: scale(1); }
  100% { opacity: 0.55; transform: scale(1.02); }
}

.hero .wrap { position: relative; z-index: 1; }

/* Live Status Radar Badge */
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px 7px 12px;
  border-radius: 999px;
  background: rgba(42, 196, 222, 0.08);
  border: 1px solid rgba(42, 196, 222, 0.32);
  box-shadow: 0 0 20px rgba(42, 196, 222, 0.15), inset 0 0 12px rgba(42, 196, 222, 0.06);
  color: var(--cyan);
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  margin-bottom: 24px;
}
.live-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}
.live-dot::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0.6;
  animation: radarPulse 2s cubic-bezier(0.24, 0, 0.38, 1) infinite;
}
@keyframes radarPulse {
  0% { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(2.8); opacity: 0; }
}

h1 {
  font-family: var(--font-head);
  font-size: clamp(36px, 5.8vw, 62px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 12px 0 0;
  max-width: 20ch;
}
.hero h1 {
  position: relative;
  padding-left: 24px;
  margin-left: -2px;
  background: linear-gradient(180deg, #FFFFFF 40%, #c4ebf5 85%, #2AC4DE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero h1::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 5px;
  border-radius: 4px;
  background: linear-gradient(180deg, #2AC4DE 0%, #13456e 100%);
  box-shadow: 0 0 16px rgba(42, 196, 222, 0.7);
}

.lede {
  font-size: clamp(16.5px, 2.1vw, 19.5px);
  color: var(--muted);
  max-width: 62ch;
  margin-top: 24px;
  line-height: 1.65;
}
.punch {
  font-family: var(--font-head);
  font-size: clamp(17.5px, 2.2vw, 21.5px);
  font-weight: 700;
  color: #fff;
  max-width: 58ch;
  margin-top: 20px;
  letter-spacing: -0.015em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.punch::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  flex: none;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.8vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
}
h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.sec { padding: 84px 0; }
.sec-head { margin-bottom: 44px; max-width: 72ch; }
.sec-head p { color: var(--muted); margin-top: 14px; font-size: 17px; line-height: 1.6; }

/* ---------- STATS / TELEMETRY ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
}
.stat {
  position: relative;
  background: var(--card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px 24px;
  text-align: left;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(42, 196, 222, 0.6), transparent);
  opacity: 0.6;
}
.stat:hover {
  transform: translateY(-3px);
  border-color: var(--line-cyan);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 24px rgba(42, 196, 222, 0.15);
}
.stat b {
  display: block;
  font-family: var(--font-head);
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #FFFFFF 30%, #2AC4DE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  margin-top: 10px;
}

/* ---------- CARDS & SPOTLIGHT HOVER ---------- */
.grid { display: grid; gap: 20px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }

.card {
  position: relative;
  background: var(--card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 30px;
  transition: border-color .22s, transform .22s, box-shadow .22s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Efecto Spotlight dinámico de linterna interactiva */
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at var(--mouse-x, -999px) var(--mouse-y, -999px), rgba(42, 196, 222, 0.13), transparent 75%);
  pointer-events: none;
  border-radius: inherit;
  opacity: 0;
  transition: opacity .35s;
  z-index: 1;
}
.card:hover::before { opacity: 1; }

.card > * { position: relative; z-index: 2; }

a.card:hover {
  border-color: rgba(42, 196, 222, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45), 0 0 28px rgba(42, 196, 222, 0.12);
}

.card .ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(42, 196, 222, 0.1);
  border: 1px solid rgba(42, 196, 222, 0.3);
  box-shadow: 0 0 16px rgba(42, 196, 222, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.card:hover .ico {
  transform: scale(1.08);
  background: rgba(42, 196, 222, 0.18);
  box-shadow: 0 0 22px rgba(42, 196, 222, 0.35);
}
.card .ico svg {
  width: 24px;
  height: 24px;
  stroke: var(--cyan);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.card p { color: var(--muted); font-size: 15px; margin-top: 12px; line-height: 1.6; flex-grow: 1; }
.card .more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 22px;
  color: var(--cyan);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.2px;
  transition: transform .2s ease;
}
.card:hover .more { transform: translateX(4px); }

/* ---------- BENTO GRID FOR SERVICES ---------- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.bento-col-7 { grid-column: span 7; }
.bento-col-5 { grid-column: span 5; }
.bento-col-4 { grid-column: span 4; }
.bento-col-8 { grid-column: span 8; }
.bento-col-6 { grid-column: span 6; }
.bento-col-12 { grid-column: span 12; }

.bento-card-featured {
  background: linear-gradient(145deg, rgba(19, 50, 79, 0.7) 0%, rgba(12, 29, 48, 0.85) 100%);
  border: 1px solid rgba(42, 196, 222, 0.3);
}
.bento-card-featured::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(42, 196, 222, 0.12) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}
.card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(42, 196, 222, 0.12);
  border: 1px solid rgba(42, 196, 222, 0.35);
  color: var(--cyan);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 18px;
}
.tech-tag {
  display: inline-block;
  padding: 4px 9px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
}
.card:hover .tech-tag {
  border-color: rgba(42, 196, 222, 0.2);
  color: #c9e9f5;
}

ul.ticks { list-style: none; margin-top: 16px; }
ul.ticks li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 15px;
}
ul.ticks li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}

/* ---------- COMPARATIVA ELEVADA ---------- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.compare-box {
  background: var(--card);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.compare-box.bad-box {
  border-color: rgba(255, 122, 122, 0.2);
  background: rgba(25, 15, 22, 0.5);
}
.compare-box.good-box {
  border-color: rgba(42, 196, 222, 0.35);
  background: rgba(14, 38, 62, 0.6);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 24px rgba(42, 196, 222, 0.1);
}
.col-head {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 10px;
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.col-bad {
  background: var(--warn-dim);
  border: 1px solid rgba(255, 122, 122, 0.35);
  color: var(--warn);
}
.col-good {
  background: var(--cyan-dim);
  border: 1px solid rgba(42, 196, 222, 0.5);
  color: var(--cyan);
  box-shadow: 0 0 14px rgba(42, 196, 222, 0.2);
}
.compare ul { list-style: none; margin-top: 20px; }
.compare li {
  position: relative;
  padding: 14px 0 14px 34px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  line-height: 1.5;
}
.compare li:last-child { border-bottom: none; }
.compare .bad li { color: var(--muted); }
.compare .good li { color: var(--ink); font-weight: 500; }
.compare li::before {
  position: absolute;
  left: 2px;
  top: 13px;
  font-weight: 800;
  font-size: 16px;
}
.compare .bad li::before { content: "\2715"; color: var(--warn); }
.compare .good li::before { content: "\2713"; color: var(--cyan); text-shadow: 0 0 10px var(--cyan); }

/* ---------- BANDS ---------- */
.band {
  position: relative;
  background: linear-gradient(135deg, rgba(42, 196, 222, 0.14) 0%, rgba(19, 50, 79, 0.5) 50%, rgba(12, 29, 48, 0.8) 100%);
  border: 1px solid rgba(42, 196, 222, 0.32);
  border-radius: 20px;
  padding: 44px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(42, 196, 222, 0.12);
}
.cta-band {
  background: linear-gradient(135deg, #2AC4DE 0%, #1c9cb2 100%);
  border-radius: 20px;
  padding: 48px;
  color: #051a2a;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
  justify-content: space-between;
  box-shadow: 0 20px 50px rgba(42, 196, 222, 0.35);
}
.cta-band h2 { color: #041624; max-width: 22ch; }
.cta-band p { color: #0a334a; font-weight: 600; margin-top: 10px; font-size: 17px; }
.cta-band .btn {
  background: #061c2c;
  color: var(--cyan);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}
.cta-band .btn:hover {
  background: #0b2b42;
  color: #fff;
  transform: translateY(-2px);
}

/* ---------- FORM ---------- */
.form {
  background: var(--card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line2);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 11px;
  border: 1px solid var(--line2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  font-family: var(--font);
  font-size: 15px;
  outline: none;
  transition: all .2s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--cyan);
  background: rgba(42, 196, 222, 0.06);
  box-shadow: 0 0 16px rgba(42, 196, 222, 0.2);
}
.field select option { background: #102740; color: var(--ink); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-msg {
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 22px;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 600;
}
.form-msg.ok {
  background: rgba(42, 196, 222, 0.14);
  border: 1px solid rgba(42, 196, 222, 0.5);
  color: #c9f5ff;
  box-shadow: 0 0 20px rgba(42, 196, 222, 0.15);
}
.form-msg.err {
  background: rgba(255, 122, 122, 0.14);
  border: 1px solid rgba(255, 122, 122, 0.45);
  color: #ffd2d2;
}
.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.contact-line:last-child { border-bottom: none; }
.contact-line .ico {
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 11px;
  background: rgba(42, 196, 222, 0.12);
  border: 1px solid rgba(42, 196, 222, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-line .ico svg {
  width: 20px;
  height: 20px;
  stroke: var(--cyan);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-line b {
  display: block;
  font-family: var(--font-head);
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.contact-line span, .contact-line a { font-size: 16.5px; color: var(--ink); font-weight: 600; }

/* ---------- LEGAL ---------- */
.legal { max-width: 82ch; }
.legal h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--cyan);
  margin: 36px 0 14px;
  letter-spacing: -0.01em;
}
.legal h2:first-child { margin-top: 0; }
.legal p { color: var(--ink); font-size: 16px; line-height: 1.75; margin-bottom: 16px; }

/* ---------- FOOTER ---------- */
footer {
  border-top: 1px solid var(--line);
  background: #06111d;
  padding: 60px 0 30px;
  margin-top: 30px;
  position: relative;
}
.fgrid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
footer h4 {
  font-family: var(--font-head);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--muted);
  margin-bottom: 16px;
  font-weight: 700;
}
footer a { display: block; color: var(--ink); font-size: 14.5px; padding: 6px 0; }
footer a:hover { color: var(--cyan); }
footer .brand svg { height: 42px; }
footer p { color: var(--dim); font-size: 14px; margin-top: 16px; max-width: 38ch; line-height: 1.6; }
.fbottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  color: var(--dim);
  font-size: 13.5px;
}

/* ---------- HERO SPLIT CON IMAGEN / VISUAL ---------- */
.hero-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
}
.hero-visual {
  position: relative;
  perspective: 1000px;
}
.hero-img-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line-cyan);
  background: rgba(14, 33, 54, 0.7);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 35px rgba(42, 196, 222, 0.18);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.hero-img-card:hover {
  transform: translateY(-4px);
  border-color: rgba(42, 196, 222, 0.6);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7), 0 0 45px rgba(42, 196, 222, 0.28);
}
.hero-img-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.hero-img-card:hover img {
  transform: scale(1.03);
}
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(8, 20, 34, 0.88) 100%);
  pointer-events: none;
}
.hero-img-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(10, 24, 40, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-cyan);
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}
.hero-img-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}

/* Band split con imagen */
.band-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 40px;
}

/* ---------- RESPONSIVE ---------- */
@media(max-width: 980px) {
  .hero-split, .band-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .bento-col-7, .bento-col-5, .bento-col-8, .bento-col-4, .bento-col-6 {
    grid-column: span 12;
  }
  .g3 { grid-template-columns: repeat(2, 1fr); }
  .fgrid { grid-template-columns: 1fr 1fr; }
}

@media(max-width: 820px) {
  .burger { display: block; }
  nav.main {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 26, 44, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line-cyan);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px;
    display: none;
    margin-left: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  }
  nav.main.open { display: flex; }
  nav.main a { padding: 12px 16px; }
  .drop > button { width: 100%; justify-content: space-between; }
  .drop-menu {
    position: static;
    display: block;
    border: none;
    background: transparent;
    box-shadow: none;
    padding: 0 0 0 14px;
    min-width: 0;
  }
  .lang { margin: 12px 0 0; }
  .nav-cta { margin: 10px 0 0; text-align: center; }
  .stats { grid-template-columns: 1fr; }
  .g2, .g3 { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; }
  .fgrid { grid-template-columns: 1fr; }
  .hero { padding: 68px 0 60px; }
  .sec { padding: 60px 0; }
  h1 { max-width: none; }
  .cta-band { padding: 32px 24px; }
  .band { padding: 30px 22px; }
}
