/* ────────────────────────────────────────────────────────────────
   POMPITA · Sistema visual "Constelación Glass"
   Tipografía: Geist + Geist Mono
   Paleta: cielo / hielo, light mode, glassmorphism sobrio
   ──────────────────────────────────────────────────────────────── */

:root{
  /* Backgrounds */
  --bg-0:#f5f8fe;
  --bg-1:#ffffff;
  --bg-2:#eef3fb;
  --surface:#ffffff;
  --surface-hi:#f3f6fc;
  --surface-soft:#eaf0fa;

  /* Lines */
  --line:rgba(10,30,80,0.08);
  --line-2:rgba(10,30,80,0.16);
  --line-soft:rgba(10,30,80,0.05);

  /* Text */
  --text:#0a1a3a;
  --muted:#5a6485;
  --dim:#98a0b8;

  /* Brand accents (todos comparten saturación) */
  --ice:#1a3d8f;
  --ice-2:#2e6fd9;
  --ice-soft:#dce8fb;
  --blue:#1a3d8f;
  --sky:#7ec8ff;
  --emerald:#0b9d63;
  --emerald-2:#13b377;
  --emerald-soft:#dbf5e8;
  --violet:#6b4ad9;
  --violet-soft:#e8e2fb;
  --rose:#d4537a;
  --gold:#c89a3a;
  --navy:#1a3d8f;

  /* Shadows */
  --shadow-sm:0 1px 2px rgba(10,30,80,0.04),0 1px 1px rgba(10,30,80,0.03);
  --shadow-md:0 4px 12px rgba(10,30,80,0.06),0 1px 3px rgba(10,30,80,0.04);
  --shadow-lg:0 20px 50px rgba(10,30,80,0.10),0 6px 16px rgba(10,30,80,0.06);
  --shadow-xl:0 30px 80px rgba(10,30,80,0.18),0 10px 24px rgba(10,30,80,0.10);
}

/* ── Reset + base ─────────────────────────── */
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  background:var(--bg-0);
  color:var(--text);
  font-family:'Geist',system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  -webkit-font-smoothing:antialiased;
  letter-spacing:-0.005em;
  width:100%;
  max-width:1440px;
  margin:0 auto;
  overflow-x:hidden;
  background-image:
    radial-gradient(1200px 600px at 70% -10%,rgba(46,111,217,0.10),transparent 65%),
    radial-gradient(900px 500px at -10% 30%,rgba(107,74,217,0.05),transparent 70%),
    radial-gradient(800px 600px at 90% 60%,rgba(11,157,99,0.04),transparent 70%);
  background-repeat:no-repeat;
  background-attachment:fixed;
}
a{color:inherit;text-decoration:none}
button{font-family:inherit}
img{max-width:100%;display:block}
.mono{font-family:'Geist Mono',monospace;font-feature-settings:'tnum' 1}
.container{max-width:1320px;margin:0 auto;padding:0 60px}
.text-grad{background:linear-gradient(135deg,#1a3d8f 0%,#2e6fd9 50%,#6b4ad9 100%);background-clip:text;-webkit-background-clip:text;-webkit-text-fill-color:transparent}
.text-grad-cool{background:linear-gradient(135deg,#1a3d8f,#2e6fd9);background-clip:text;-webkit-background-clip:text;-webkit-text-fill-color:transparent}

/* Soft bubble pattern */
.stars{position:absolute;inset:0;overflow:hidden;pointer-events:none;z-index:0}
.stars::before,.stars::after{
  content:"";position:absolute;inset:0;background-repeat:repeat;opacity:0.45;
  background-image:
    radial-gradient(3px 3px at 20% 30%,rgba(46,111,217,0.18),transparent 60%),
    radial-gradient(2px 2px at 70% 60%,rgba(46,111,217,0.14),transparent 60%),
    radial-gradient(2.5px 2.5px at 40% 80%,rgba(126,200,255,0.20),transparent 60%),
    radial-gradient(1.5px 1.5px at 90% 20%,rgba(26,61,143,0.12),transparent 60%),
    radial-gradient(3px 3px at 15% 75%,rgba(107,74,217,0.10),transparent 60%);
  background-size:560px 400px;
}
.stars::after{background-size:340px 260px;opacity:0.3;transform:translate(60px,40px)}

/* Floating orbs */
.orb{position:absolute;border-radius:50%;pointer-events:none}
.orb-1{width:140px;height:140px;background:radial-gradient(circle at 30% 30%,#fff,#a8d4ff 35%,#2e6fd9 75%,#1a3d8f);box-shadow:0 20px 40px rgba(26,61,143,0.18),inset 0 0 16px rgba(255,255,255,0.6);opacity:0.85}
.orb-2{width:60px;height:60px;background:radial-gradient(circle at 30% 30%,#fff,#cfeeff 40%,#7ec8ff 80%,#2e6fd9);box-shadow:0 10px 22px rgba(46,111,217,0.18),inset 0 0 8px rgba(255,255,255,0.6);opacity:0.9}
.orb-3{width:24px;height:24px;background:radial-gradient(circle at 30% 30%,#fff,#a8d4ff 55%,#2e6fd9);box-shadow:0 4px 10px rgba(46,111,217,0.25),inset 0 0 4px rgba(255,255,255,0.7)}
.orb-violet{background:radial-gradient(circle at 30% 30%,#fff,#c8b8f6 35%,#6b4ad9 75%,#3d1e91)}
.orb-emerald{background:radial-gradient(circle at 30% 30%,#fff,#a8e6c8 35%,#0b9d63 75%,#085a3a)}

/* ── Navegación ───────────────────────────── */
nav.main{
  position:relative;z-index:5;
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 60px;
  background:rgba(255,255,255,0.85);backdrop-filter:blur(20px);
  border-bottom:1px solid var(--line);
}
.brand{display:flex;align-items:center;gap:12px}
.brand-logo{height:180px;width:auto;display:block}
.brand-logo.foot{height:150px}
nav.main ul{list-style:none;display:flex;gap:4px;padding:0;margin:0}
nav.main ul a{display:inline-block;padding:8px 14px;border-radius:8px;font-size:14px;font-weight:500;color:var(--text);opacity:0.7;transition:background .15s,opacity .15s}
nav.main ul a:hover{background:var(--surface-soft);opacity:1}
nav.main ul a.active{background:var(--ice-soft);opacity:1;color:var(--ice)}
.nav-cta{display:flex;align-items:center;gap:10px}

/* ── Botones ──────────────────────────────── */
.btn{
  display:inline-flex;align-items:center;gap:8px;padding:10px 16px;
  font-size:14px;font-weight:500;cursor:pointer;border-radius:10px;border:1px solid transparent;font-family:inherit;
  transition:transform .15s,box-shadow .15s,filter .15s,background .15s;
  text-decoration:none;
}
.btn-glass{background:var(--surface);border-color:var(--line-2);color:var(--text);box-shadow:var(--shadow-sm)}
.btn-glass:hover{background:#fff;box-shadow:var(--shadow-md)}
.btn-ice{background:linear-gradient(180deg,#2e6fd9,#1a3d8f);color:#fff;border:1px solid rgba(26,61,143,0.6);box-shadow:0 6px 18px rgba(26,61,143,0.25),inset 0 1px 0 rgba(255,255,255,0.25)}
.btn-ice:hover{filter:brightness(1.06);box-shadow:0 8px 24px rgba(26,61,143,0.3)}
.btn-outline-ice{background:var(--surface);color:var(--ice);border-color:var(--ice)}
.btn-outline-ice:hover{background:var(--ice-soft)}
.btn-emerald{background:linear-gradient(180deg,#13b377,#0b9d63);color:#fff;border:1px solid rgba(11,157,99,0.5);box-shadow:0 6px 18px rgba(11,157,99,0.25),inset 0 1px 0 rgba(255,255,255,0.3)}
.btn-emerald:hover{filter:brightness(1.06)}
.btn-violet{background:linear-gradient(180deg,#7d5be6,#6b4ad9);color:#fff;border:1px solid rgba(107,74,217,0.5);box-shadow:0 6px 18px rgba(107,74,217,0.25),inset 0 1px 0 rgba(255,255,255,0.25)}
.btn-violet:hover{filter:brightness(1.06)}
.btn-lg{padding:14px 22px;font-size:15px}
.btn-block{width:100%;justify-content:center}

/* ── Badges & Eyebrows ────────────────────── */
.badge{display:inline-flex;align-items:center;gap:10px;padding:6px 14px 6px 8px;border-radius:999px;background:var(--surface);border:1px solid var(--line);font-size:13px;color:var(--ice);box-shadow:var(--shadow-sm)}
.badge .pip{display:inline-flex;align-items:center;gap:6px;padding:3px 9px;border-radius:999px;background:var(--emerald-soft);color:var(--emerald);font-family:'Geist Mono',monospace;font-size:11px;letter-spacing:0.08em;font-weight:500}
.badge .pip::before{content:"";width:6px;height:6px;border-radius:50%;background:var(--emerald);box-shadow:0 0 8px rgba(11,157,99,0.6)}
.eyebrow{display:inline-flex;align-items:center;gap:10px;font-family:'Geist Mono',monospace;font-size:11px;color:var(--ice);letter-spacing:0.18em;text-transform:uppercase;padding:6px 12px;border:1px solid var(--line-2);border-radius:999px;background:var(--surface);box-shadow:var(--shadow-sm)}

/* ── Layouts de página ────────────────────── */
.page-hero{padding:80px 0 60px;position:relative;overflow:hidden}
.page-hero-inner{padding:0 60px;position:relative;z-index:2;max-width:1100px}
.page-hero h1{font-size:84px;font-weight:600;line-height:0.96;letter-spacing:-0.035em;margin:24px 0 24px;color:var(--text)}
.page-hero .lede{font-size:18px;color:var(--muted);line-height:1.6;max-width:620px;margin:0}
.page-hero .crumbs{font-family:'Geist Mono',monospace;font-size:11px;letter-spacing:0.18em;text-transform:uppercase;color:var(--muted);margin-bottom:0;display:flex;align-items:center;gap:10px}
.page-hero .crumbs a{color:var(--ice)}
.page-hero .crumbs .sep{color:var(--dim)}

section.block{padding:120px 0;position:relative}
.sec-head{display:flex;justify-content:space-between;align-items:flex-end;gap:64px;margin-bottom:56px;padding:0 60px}
.sec-head.center{flex-direction:column;align-items:center;text-align:center;gap:18px}
h2.sec-title{font-size:56px;font-weight:600;letter-spacing:-0.03em;line-height:1.02;margin:18px 0 0;max-width:740px;color:var(--text)}
.sec-lede{font-size:16px;color:var(--muted);max-width:380px;line-height:1.6;margin:0}
.sec-head.center .sec-lede{max-width:580px}

/* ── Footer ───────────────────────────────── */
footer.site{margin-top:80px;border-top:1px solid var(--line);background:#fff;padding:80px 60px 32px}
.foot-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:64px;margin-bottom:64px}
.foot-col h5{font-size:11px;text-transform:uppercase;letter-spacing:0.18em;color:var(--ice);margin:0 0 18px;font-family:'Geist Mono',monospace;font-weight:500}
.foot-col ul{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:12px}
.foot-col a{font-size:14px;color:var(--text)}
.foot-col a:hover{color:var(--ice)}
.foot-brand p{font-size:14px;color:var(--muted);line-height:1.6;margin:18px 0 0;max-width:300px}
.foot-bot{padding-top:24px;border-top:1px solid var(--line);display:flex;justify-content:space-between;align-items:center;font-size:12px;color:var(--dim);font-family:'Geist Mono',monospace;letter-spacing:0.04em}
.foot-bot .legal{display:flex;gap:24px}
.foot-bot a:hover{color:var(--ice)}

/* ── Cursor personalizado ─────────────────── */
@media (hover:hover) and (pointer:fine){
  body{cursor:none}
  a,button,.btn,input,select,textarea,label{cursor:none}
  .cur-dot,.cur-ring{position:fixed;top:0;left:0;pointer-events:none;z-index:9999;border-radius:50%;will-change:transform}
  .cur-dot{width:8px;height:8px;background:radial-gradient(circle at 30% 30%,#fff,#7ec8ff 55%,#1a3d8f);box-shadow:0 0 12px rgba(46,111,217,0.55),inset 0 0 2px rgba(255,255,255,0.7);transform:translate(-50%,-50%);transition:width .18s,height .18s,opacity .2s}
  .cur-ring{width:38px;height:38px;border:1.5px solid rgba(46,111,217,0.45);background:radial-gradient(circle,rgba(46,111,217,0.06),transparent 70%);transform:translate(-50%,-50%);transition:width .25s cubic-bezier(.2,.8,.2,1),height .25s cubic-bezier(.2,.8,.2,1),border-color .2s,background .2s,opacity .2s}
  body.cur-hover .cur-ring{width:62px;height:62px;border-color:rgba(46,111,217,0.8);background:radial-gradient(circle,rgba(46,111,217,0.10),transparent 70%)}
  body.cur-hover .cur-dot{width:6px;height:6px}
  body.cur-text .cur-ring{width:4px;height:24px;border-radius:2px;border-color:rgba(46,111,217,0.7);background:transparent}
  body.cur-text .cur-dot{opacity:0}
  body.cur-down .cur-ring{width:50px;height:50px;border-color:rgba(46,111,217,0.95);background:radial-gradient(circle,rgba(46,111,217,0.18),transparent 70%)}
  body.cur-down .cur-dot{width:12px;height:12px}
  body.cur-out .cur-dot,body.cur-out .cur-ring{opacity:0}
}

/* ── Cards genéricas ──────────────────────── */
.card{
  position:relative;border:1px solid var(--line);border-radius:24px;
  background:#fff;box-shadow:var(--shadow-md);
  padding:28px;overflow:hidden;
  transition:transform .25s cubic-bezier(.2,.8,.2,1),box-shadow .25s;
}
.card:hover{box-shadow:var(--shadow-lg);transform:translateY(-3px)}
.card .icn{
  width:42px;height:42px;border-radius:12px;background:var(--ice-soft);
  display:flex;align-items:center;justify-content:center;color:var(--ice);
  border:1px solid rgba(26,61,143,0.18);
}
.card h3{font-size:24px;font-weight:600;letter-spacing:-0.015em;margin:18px 0 6px;color:var(--text)}
.card p{font-size:14px;color:var(--muted);line-height:1.6;margin:0;max-width:360px}

/* ── Form fields ──────────────────────────── */
.field{margin-bottom:16px}
.field label{display:block;font-size:11px;color:var(--muted);letter-spacing:0.14em;text-transform:uppercase;margin-bottom:8px;font-family:'Geist Mono',monospace;font-weight:500}
.field input,.field select,.field textarea{
  width:100%;background:var(--bg-2);border:1px solid var(--line);border-radius:12px;
  padding:13px 16px;font-size:15px;color:var(--text);font-family:inherit;outline:none;
  transition:border-color .15s,box-shadow .15s,background .15s;
}
.field input::placeholder,.field textarea::placeholder{color:var(--dim)}
.field input:focus,.field select:focus,.field textarea:focus{border-color:var(--ice);background:#fff;box-shadow:0 0 0 3px rgba(26,61,143,0.12)}
.field-row{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.field-row-3{display:grid;grid-template-columns:1fr 1fr 1fr;gap:14px}
.check{display:flex;gap:10px;align-items:flex-start;font-size:13px;color:var(--muted);margin:8px 0 20px}
.check input{width:18px;height:18px;margin-top:2px;accent-color:var(--ice)}

/* ── Reveal on scroll ─────────────────────── */
[data-reveal]{opacity:0;transform:translateY(20px);transition:opacity .8s cubic-bezier(.2,.8,.2,1),transform .8s cubic-bezier(.2,.8,.2,1)}
[data-reveal].in{opacity:1;transform:none}
[data-reveal-delay="1"]{transition-delay:.08s}
[data-reveal-delay="2"]{transition-delay:.16s}
[data-reveal-delay="3"]{transition-delay:.24s}
[data-reveal-delay="4"]{transition-delay:.32s}

/* ── Tweaks Panel ─────────────────────────── */
.tweaks-panel{
  position:fixed;right:24px;bottom:24px;width:340px;
  background:rgba(255,255,255,0.96);backdrop-filter:blur(20px);
  border:1px solid var(--line-2);border-radius:20px;
  box-shadow:var(--shadow-xl);
  padding:20px;z-index:9998;
  font-family:'Geist',sans-serif;color:var(--text);
  max-height:calc(100vh - 48px);overflow-y:auto;
  display:none;
}
.tweaks-panel.open{display:block;animation:tweaksIn .25s cubic-bezier(.2,.8,.2,1)}
@keyframes tweaksIn{from{opacity:0;transform:translateY(8px) scale(.98)}to{opacity:1;transform:none}}
.tweaks-panel header{display:flex;justify-content:space-between;align-items:center;margin-bottom:6px}
.tweaks-panel header h4{margin:0;font-size:15px;font-weight:600;letter-spacing:-0.01em}
.tweaks-panel header .sub{font-size:11px;color:var(--muted);font-family:'Geist Mono',monospace;letter-spacing:0.08em;text-transform:uppercase;margin-bottom:14px}
.tweaks-panel .tw-close{background:transparent;border:0;color:var(--muted);font-size:18px;cursor:pointer;padding:4px;line-height:1;border-radius:6px}
.tweaks-panel .tw-close:hover{background:var(--surface-soft);color:var(--text)}
.tweaks-panel .tw-section{padding:14px 0;border-top:1px solid var(--line)}
.tweaks-panel .tw-section:first-of-type{border-top:0}
.tweaks-panel .tw-label{font-size:10px;letter-spacing:0.14em;text-transform:uppercase;color:var(--muted);font-family:'Geist Mono',monospace;margin-bottom:10px;font-weight:500}
.tweaks-panel .tw-radio{display:grid;grid-template-columns:1fr 1fr 1fr;gap:6px;background:var(--bg-2);border:1px solid var(--line);border-radius:10px;padding:4px}
.tweaks-panel .tw-radio button{background:transparent;border:0;color:var(--muted);font-family:inherit;font-size:12px;padding:8px 8px;border-radius:7px;cursor:pointer;font-weight:500;transition:background .15s,color .15s}
.tweaks-panel .tw-radio button.on{background:#fff;color:var(--ice);box-shadow:var(--shadow-sm)}
.tweaks-panel .tw-prices{display:grid;grid-template-columns:1fr 1fr;gap:8px}
.tweaks-panel .tw-price{display:flex;flex-direction:column;gap:4px}
.tweaks-panel .tw-price label{font-size:11px;color:var(--muted)}
.tweaks-panel .tw-price input{font-family:'Geist Mono',monospace;font-size:14px;font-weight:500;background:var(--bg-2);border:1px solid var(--line);border-radius:8px;padding:8px 10px;color:var(--text);width:100%;outline:none}
.tweaks-panel .tw-price input:focus{border-color:var(--ice);background:#fff}
.tweaks-panel .tw-foot{margin-top:14px;padding-top:14px;border-top:1px solid var(--line);font-size:11px;color:var(--muted);font-family:'Geist Mono',monospace;letter-spacing:0.04em;line-height:1.5}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE · adaptación a tablet y móvil
   El diseño base es 1440px; aquí lo reflujamos para pantallas pequeñas
   ════════════════════════════════════════════════════════════════ */

/* Menú hamburguesa (oculto en escritorio) */
.nav-burger{display:none}
.nav-toggle{position:absolute;width:0;height:0;opacity:0;pointer-events:none}

/* ── Tablet ────────────────────────────────── */
/* Nota: las reglas llevan prefijo `html` para ganar especificidad a los
   estilos en línea de cada página, que se cargan después de esta hoja. */
@media (max-width:1100px){
  .brand-logo{height:120px}
  html .planes{grid-template-columns:repeat(2,1fr)}
  html .term-grid{grid-template-columns:repeat(3,1fr)}
  html .catalog-grid,html .tv-grid,html .b2b-plans,html .team-grid,html .zones-grid,html .ch-grid,html .ql-grid,html .testi-grid,
  html .vert-grid,html .steps,html .nums{grid-template-columns:repeat(2,1fr)}
  html .statbar{grid-template-columns:repeat(2,1fr);row-gap:28px}
  html .sec-head{gap:32px}
}

/* ── Navegación colapsable ─────────────────── */
@media (max-width:1024px){
  nav.main{flex-wrap:wrap;padding:10px 20px;row-gap:0}
  .nav-burger{
    display:flex;flex-direction:column;align-items:center;justify-content:center;gap:5px;
    width:46px;height:46px;margin-left:auto;flex:0 0 auto;cursor:pointer;
    border:1px solid var(--line-2);border-radius:12px;background:var(--surface);box-shadow:var(--shadow-sm);
  }
  .nav-burger span{display:block;width:20px;height:2px;background:var(--text);border-radius:2px;transition:transform .25s,opacity .2s}
  nav.main ul{order:10;flex-basis:100%;flex-direction:column;gap:2px;max-height:0;overflow:hidden;transition:max-height .3s ease}
  nav.main ul a{display:block;padding:13px 14px;border-radius:10px;font-size:16px;opacity:1}
  nav.main .nav-cta{order:11;flex-basis:100%;max-height:0;overflow:hidden;transition:max-height .3s ease;flex-wrap:wrap;gap:10px}
  nav.main .nav-cta .btn{width:100%;justify-content:center;padding:13px 16px}
  .nav-toggle:checked ~ ul{max-height:600px;margin-top:10px}
  .nav-toggle:checked ~ .nav-cta{max-height:200px;margin-top:8px;padding-bottom:8px}
  .nav-toggle:checked ~ .nav-burger span:nth-child(1){transform:translateY(7px) rotate(45deg)}
  .nav-toggle:checked ~ .nav-burger span:nth-child(2){opacity:0}
  .nav-toggle:checked ~ .nav-burger span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
}

/* ── Reflujo de 2 columnas a 1 + tablas con scroll ── */
@media (max-width:900px){
  html .hero-grid,html .constel-wrap,html .empresas,html .contact-grid,html .svc-hero,html .svc-hero.flip,html .story,
  html .check-grid,html .speeds,html .builder,html .form-section,html .loc-wrap,html .contact-b2b{grid-template-columns:1fr;gap:40px}
  html .vs-savings{grid-template-columns:1fr;gap:24px;text-align:center}
  html .vs-wrap,html .full-table{overflow-x:auto;-webkit-overflow-scrolling:touch}
  html .vs-grid{min-width:720px}
  html .ft-row{min-width:640px}
}

/* ── Móvil: todo a una columna ─────────────── */
@media (max-width:760px){
  html .planes,html .term-grid,html .catalog-grid,html .tv-grid,html .b2b-plans,html .vert-grid,html .steps,html .testi-grid,
  html .team-grid,html .nums,html .zones-grid,html .ch-grid,html .ql-grid,html .svc-grid,html .mani-list,html .pillars,html .faq{grid-template-columns:1fr}
  html .svc-grid{grid-template-rows:auto}
  html .statbar{grid-template-columns:repeat(2,1fr)}
  html .vtv-specs{grid-template-columns:1fr 1fr}
  html .vuela-stats{grid-template-columns:repeat(2,1fr);gap:22px}

  /* Padding lateral reducido */
  html .container,html .sec-head,html .page-hero-inner,
  html .hero-grid,html .svc-grid,html .planes,html .vs-wrap,html .constel-wrap,html .term-grid,html .contact-grid,
  html .catalog-grid,html .tv-grid,html .faq,html .svc-hero,html .story,html .mani,html .team-grid,html .nums,html .zones-grid,
  html .speeds,html .ch-grid,html .ql-grid,html .b2b-plans,html .vert-grid,html .steps,html .testi-grid{padding-left:20px;padding-right:20px}
  html .statbar,html .empresas,html .cob-banner,html .builder,html .full-table,html .contact-b2b,html .form-section,html .loc-wrap{margin-left:20px;margin-right:20px}

  html section.block,html .svc-section,html .vs-block,html .constel,html .contact-block{padding-top:72px;padding-bottom:72px}
  html .empresas,html .builder,html .form-section,html .contact-b2b{padding:32px}
  html .vuela-grid{padding:32px}

  /* Tipografía a escala móvil */
  html .page-hero h1{font-size:44px}
  html h1.hero-title{font-size:44px}
  html h2.sec-title{font-size:34px}
  html .constel-text h2,html .story h2{font-size:40px}
  html .ci h2{font-size:40px}
  html .svc-hero h2{font-size:42px}
  html .empresas h2,html .check-grid h2,html .speeds h2,html .contact-b2b h2,html .form-section h2{font-size:32px}
  html .builder h3{font-size:26px}
  html .ty-wrap h1{font-size:38px}
  html .vs-savings h3{font-size:24px}
  html .fiber-gauge .num{font-size:64px}
  html .mobile-phone .sc-mid .h{font-size:48px}
  html .plan-price .num,html .b2b-price .num,html .num-card .v{font-size:46px}
  html .b-summary .b-total .num{font-size:52px}

  /* Cabeceras de sección apiladas */
  html .sec-head{flex-direction:column;align-items:flex-start;gap:16px}
  html .sec-head.center{align-items:center}

  /* Footer */
  html .foot-grid{grid-template-columns:1fr 1fr;gap:28px}
  html .foot-bot{flex-direction:column;gap:14px;text-align:center}
  html .foot-bot .legal{flex-wrap:wrap;justify-content:center;gap:16px}
  .brand-logo{height:96px}
}

/* ── Móvil pequeño ─────────────────────────── */
@media (max-width:480px){
  html .statbar,html .vtv-specs,html .vuela-stats,html .foot-grid{grid-template-columns:1fr}
  nav.main{padding:8px 16px}
  .brand-logo{height:84px}
  html .container,html .page-hero-inner,html .sec-head{padding-left:16px;padding-right:16px}
  html .empresas,html .builder,html .form-section,html .contact-b2b,html .vuela-grid{padding:24px}
}
