﻿:root {
  --brand-blue: #075C9E;
  --brand-blue-dark: #083F73;
  --brand-orange: #FF7A1A;
  --brand-orange-dark: #F05A14;
  --yellow: var(--brand-orange);
  --yellow-deep: var(--brand-orange-dark);
  --ink: var(--brand-blue-dark);
  --ink-soft: #0B4F82;
  --charcoal: #062F56;
  --muted: #526578;
  --line: #DCE7F0;
  --surface: #F4F8FB;
  --white: #FFFFFF;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 18px 40px rgba(8, 63, 115, .08);
  --font-head: 'Sora', sans-serif;
  --font-body: 'Figtree', sans-serif;
  --header-h: 72px;
  /* Emil Kowalski / animations.dev curves */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
  --ease: var(--ease-out);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  position: relative;
}

body.nav-open { overflow: hidden; }

img,
svg,
video,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  margin: 0 0 .45em;
  line-height: 1.15;
  letter-spacing: -.02em;
  overflow-wrap: anywhere;
}

p {
  margin: 0 0 1em;
  color: var(--muted);
  overflow-wrap: break-word;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: max(16px, env(safe-area-inset-left));
  padding-right: max(16px, env(safe-area-inset-right));
}

section,
header,
footer,
.topbar,
.promo-banner,
.pricing,
.hero {
  max-width: 100%;
  overflow-x: clip;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .88rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition:
    transform 160ms var(--ease-out),
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--yellow); color: var(--ink); }
.btn-primary:hover { background: var(--yellow-deep); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-ghost {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border-color: rgba(255,255,255,.28);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: var(--white); color: var(--ink); }
.btn-dark { background: var(--ink); color: var(--yellow); border-color: var(--ink); }
.btn-dark:hover { background: var(--charcoal); color: var(--yellow); }
.btn-light {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}
.btn-light:hover { background: var(--yellow); border-color: var(--yellow); }
.btn-ghost-ink {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost-ink:hover { background: var(--surface); border-color: var(--ink); }

.pretitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .02em;
  font-size: .84rem;
  margin-bottom: .85em;
}

.pretitle::before {
  content: '';
  width: 18px;
  height: 3px;
  border-radius: 2px;
  background: var(--yellow);
  flex-shrink: 0;
}

.why-us .pretitle,
.promo-banner .pretitle,
.quality .pretitle {
  color: rgba(255,255,255,.88);
}

.section-head .pretitle { justify-content: center; }

.section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 52px;
}

.section-sub { margin-top: .35em; }

/* Reveal: entrada suave sin romper layout */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 480ms var(--ease-out),
    transform 480ms var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.brand img,
.brand .brand-logo {
  width: clamp(168px, 17vw, 220px);
  height: auto;
  max-height: 62px;
  border-radius: 0;
  object-fit: contain;
  object-position: left center;
}

.brand-drawer img,
.brand-drawer .brand-logo {
  width: 188px;
  max-height: 60px;
}

.site-footer .brand img,
.site-footer .brand .brand-logo {
  width: min(230px, 100%);
  max-height: 74px;
}

/* Top bar */
.topbar {
  background: var(--ink);
  color: #C8C8C8;
  font-size: .8rem;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 24px;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar-social { display: flex; gap: 14px; }
.topbar-social a:hover { color: var(--yellow); }
.topbar-contact { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-contact a:hover { color: var(--yellow); }
.topbar-contact i { margin-right: 6px; color: var(--yellow); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 155;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: var(--header-h);
  padding: 8px 24px;
}

.main-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .88rem;
}

.nav-links a {
  position: relative;
  padding: 6px 0;
  color: var(--ink-soft);
  transition: color .2s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width .25s var(--ease);
}

.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }

.nav-drawer-head,
.nav-drawer-foot,
.nav-drawer-mid,
.nav-close { display: none; }

.header-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: var(--ink);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 12px 11px;
  margin-left: auto;
  flex-direction: column;
  justify-content: space-between;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8,63,115,.55);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms var(--ease-out);
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - 110px);
  display: flex;
  align-items: center;
  padding: 72px 0 88px;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(5,37,68,.92) 0%, rgba(5,37,68,.72) 48%, rgba(5,37,68,.55) 100%),
    linear-gradient(180deg, rgba(5,37,68,.25) 0%, rgba(5,37,68,.65) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,122,26,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,122,26,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 70% 40%, black 20%, transparent 75%);
  opacity: .55;
}

.hero-glow {
  position: absolute;
  width: min(55vw, 480px);
  height: min(55vw, 480px);
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(255,122,26,.18) 0%, transparent 68%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: center;
}

.brand-mark {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  color: var(--yellow);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-text h1 {
  font-size: clamp(2.25rem, 4.6vw, 3.55rem);
  color: var(--white);
  max-width: 11ch;
}

.hero-text h1 em {
  font-style: normal;
  color: var(--yellow);
}

.hero-lead {
  color: #BDBDBD;
  font-size: 1.05rem;
  max-width: 38ch;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 600;
  color: #CFCFCF;
}

.hero-trust i { color: var(--yellow); }

.hero-panel { display: flex; justify-content: flex-end; }

.hero-panel-card {
  width: min(100%, 360px);
  padding: 28px 24px 24px;
  background: rgba(18, 18, 18, .72);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}

.hero-panel-label {
  display: block;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #A0A0A0;
  margin-bottom: 8px;
}

.speedo {
  position: relative;
  margin: 4px 0 8px;
}

.speedo-svg {
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
  display: block;
  overflow: visible;
}

.speedo-track { stroke: rgba(255,255,255,.14); }
.speedo-fill {
  stroke: var(--yellow);
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
}
.speedo.is-on .speedo-fill {
  animation: speedoArc 2.8s var(--ease-in-out) infinite;
}

.speedo-needle {
  stroke: var(--white);
  stroke-width: 3;
  transform-origin: 100px 110px;
  transform: rotate(-90deg);
}
.speedo.is-on .speedo-needle {
  animation: speedoNeedle 2.8s var(--ease-in-out) infinite;
}

.speedo-hub { fill: var(--yellow); }

@keyframes speedoArc {
  0% { stroke-dashoffset: 88; }
  18% { stroke-dashoffset: 12; }
  35% { stroke-dashoffset: 22; }
  52% { stroke-dashoffset: 8; }
  70% { stroke-dashoffset: 18; }
  85% { stroke-dashoffset: 10; }
  100% { stroke-dashoffset: 88; }
}

@keyframes speedoNeedle {
  0% { transform: rotate(-78deg); }
  18% { transform: rotate(72deg); }
  35% { transform: rotate(48deg); }
  52% { transform: rotate(82deg); }
  70% { transform: rotate(58deg); }
  85% { transform: rotate(76deg); }
  100% { transform: rotate(-78deg); }
}

.speedo-readout {
  text-align: center;
  margin-top: -6px;
  margin-bottom: 10px;
}

.speedo-readout strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.85rem;
  color: var(--white);
  line-height: 1;
}

.speedo-readout strong small {
  font-size: .55em;
  color: var(--yellow);
  font-weight: 700;
}

.speedo-readout > span {
  display: block;
  margin-top: 6px;
  font-size: .75rem;
  color: #9A9A9A;
  font-family: var(--font-head);
  font-weight: 600;
}

.hero-panel-card > p {
  color: #A8A8A8;
  font-size: .9rem;
  margin-bottom: 14px;
}

.hero-meter-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 600;
  color: #9A9A9A;
  margin-bottom: 14px;
}

.speedo-wa {
  width: 100%;
}

/* Promo */
.promo-banner {
  background:
    linear-gradient(120deg, rgba(8,63,115,.92), rgba(8,63,115,.78)),
    radial-gradient(circle at 15% 50%, rgba(255,122,26,.35), transparent 42%),
    var(--ink);
  color: var(--white);
  padding: 48px 0;
  border-top: 3px solid var(--yellow);
}

.promo-inner {
  display: grid;
  grid-template-columns: 1.2fr auto 1fr;
  align-items: center;
  gap: 36px;
}

.promo-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}

.promo-label {
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
  color: var(--yellow);
  margin: 0;
}

.promo-speed {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  margin: 4px 0;
  line-height: 1;
  color: var(--white);
}

.promo-speed span {
  font-size: .38em;
  font-weight: 700;
  color: #CFCFCF;
}

.promo-highlight {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 4px 0 0;
  color: var(--yellow);
}

.promo-price {
  text-align: center;
  padding: 8px 36px;
  border-left: 1px solid rgba(255,255,255,.18);
  border-right: 1px solid rgba(255,255,255,.18);
}

.promo-price-value {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--white);
}

.promo-price-value small { font-size: .45em; color: var(--yellow); }
.promo-price-note { font-size: .82rem; color: #A8A8A8; }

.promo-extra p {
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  margin-bottom: 14px;
}

.promo-extra p i { color: var(--yellow); margin-right: 8px; }
.promo-extra .btn-primary { margin-bottom: 10px; }
.promo-extra small {
  display: block;
  color: #8E8E8E;
  font-size: .72rem;
  max-width: 300px;
  line-height: 1.45;
}

/* Pricing — estilo ISP (Win / Movistar) */
.pricing {
  position: relative;
  padding: 100px 0 72px;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(255,122,26,.18), transparent 55%),
    linear-gradient(180deg, #F7F7F4 0%, #FFFFFF 45%, #F3F3EF 100%);
  overflow: hidden;
}

.pricing-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  right: -120px;
  bottom: -80px;
  background: radial-gradient(circle, rgba(255,122,26,.2), transparent 70%);
  pointer-events: none;
}

.plan-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 40px;
  padding: 6px;
  width: fit-content;
  max-width: 100%;
  background: var(--ink);
  border-radius: 999px;
}

.plan-tab {
  border: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .86rem;
  padding: 12px 22px;
  border-radius: 999px;
  background: transparent;
  color: rgba(255,255,255,.7);
  transition: background 180ms var(--ease-out), color 180ms ease, transform 160ms var(--ease-out);
}

.plan-tab:hover { color: var(--white); }
.plan-tab:active { transform: scale(0.97); }
.plan-tab.is-active {
  background: var(--yellow);
  color: var(--ink);
}

.plan-panel[hidden] { display: none; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px 22px 22px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(8,63,115,.06);
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), border-color 220ms ease;
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(8,63,115,.12);
  border-color: rgba(0,0,0,.14);
}

.plan-card-head { margin-bottom: 18px; }

.plan-chip {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-head);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(8,63,115,.06);
  color: var(--ink);
  margin-bottom: 14px;
}

.plan-chip--gamer { background: rgba(255,122,26,.35); }

.plan-speed {
  margin: 0;
  line-height: .95;
  color: var(--ink);
}

.plan-speed strong {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 3.2vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -.04em;
}

.plan-speed span {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  color: var(--muted);
  margin-left: 4px;
}

.plan-sym {
  margin: 8px 0 0;
  font-size: .84rem;
  color: var(--muted);
}

.plan-price-block {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2px;
  padding: 14px 0 16px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 16px;
  font-family: var(--font-head);
  color: var(--ink);
}

.plan-currency {
  font-size: 1rem;
  font-weight: 700;
  margin-top: .55em;
}

.plan-amount {
  font-size: 2.55rem;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
}

.plan-cents {
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: .35em;
}

.plan-period {
  width: 100%;
  font-size: .78rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: 4px;
}

.plan-features {
  flex: 1;
  margin-bottom: 18px;
}

.plan-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: .9rem;
  color: #444;
}

.plan-features i {
  color: var(--yellow-deep);
  margin-top: 4px;
  font-size: .75rem;
}

.plan-card .btn { width: 100%; }

.plan-card--hit {
  background: linear-gradient(165deg, #07365F 0%, #083F73 100%);
  border-color: var(--yellow);
  box-shadow: 0 20px 50px rgba(8,63,115,.28);
  color: var(--white);
  z-index: 1;
}

.plan-card--hit:hover {
  transform: translateY(-6px);
}

.plan-card--hit .plan-chip {
  background: rgba(255,122,26,.18);
  color: var(--yellow);
}

.plan-card--hit .plan-speed,
.plan-card--hit .plan-price-block { color: var(--white); }

.plan-card--hit .plan-speed span,
.plan-card--hit .plan-sym,
.plan-card--hit .plan-period,
.plan-card--hit .plan-features li { color: #B8B8B8; }

.plan-card--hit .plan-price-block {
  border-color: rgba(255,255,255,.12);
}

.plan-card--hit .plan-features i { color: var(--yellow); }

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-head);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(0,0,0,.18);
}

.plan-perks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 36px;
}

.plan-perks li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 12px;
  border-radius: 12px;
  background: rgba(8,63,115,.04);
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink);
}

.plan-perks i { color: var(--yellow-deep); }

/* Quick services */
.quick-services {
  padding: 88px 0;
  background: var(--ink);
  color: var(--white);
}

.section-head--light .pretitle { color: rgba(255,255,255,.88); }
.section-head--light h2 { color: var(--white); }
.section-head--light .section-sub { color: #B0B0B0; }

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.quick-card {
  border-radius: 18px;
  overflow: hidden;
  background: #0B4F82;
  border: 1px solid rgba(255,255,255,.08);
  transition: transform 220ms var(--ease-out), border-color 220ms ease;
}

.quick-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,122,26,.35);
}

.quick-media {
  height: 160px;
  overflow: hidden;
}

.quick-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease-out);
}

.quick-card:hover .quick-media img { transform: scale(1.06); }

.quick-body { padding: 22px 22px 26px; }

.quick-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: rgba(255,122,26,.14);
  border-radius: 10px;
  margin-bottom: 14px;
  color: var(--yellow);
  font-size: 1.05rem;
}

.quick-card h3 { color: var(--white); font-size: 1.15rem; }
.quick-card p { color: #B0B0B0; margin: 0; }

/* Fiber photo cards */
.fiber {
  padding: 96px 0;
  background: #052A4B;
  color: var(--white);
}

.fiber-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.fiber-card {
  position: relative;
  min-height: 340px;
  border-radius: 18px;
  overflow: hidden;
  isolation: isolate;
}

.fiber-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease-out);
}

.fiber-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.82) 75%);
  z-index: 1;
}

.fiber-card:hover img { transform: scale(1.05); }

.fiber-card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 24px;
}

.fiber-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--yellow);
  color: var(--ink);
  margin-bottom: 14px;
}

.fiber-card h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.fiber-card p {
  color: #D0D0D0;
  margin: 0;
  font-size: .92rem;
}
/* Why us */
.why-us {
  background: var(--ink);
  color: var(--white);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  right: -80px;
  top: -80px;
  background: radial-gradient(circle, rgba(255,122,26,.12), transparent 70%);
  pointer-events: none;
}

.why-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 48px;
  align-items: center;
}

.why-us .pretitle { color: rgba(255,255,255,.88); }
.why-us h2 { font-size: clamp(1.7rem, 3vw, 2.35rem); color: var(--white); }
.why-us > .container p,
.why-text > p { color: #B8B8B8; }

.why-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin: 24px 0 28px;
}

.why-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: .86rem;
  font-weight: 600;
  color: #E2E2E2;
}

.why-points i { color: var(--yellow); }

.why-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-photo-wrap {
  position: relative;
  width: min(100%, 420px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,.45);
}

.why-photo-wrap img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.why-float {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(12,12,12,.78);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  color: var(--white);
}

.why-float strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.45rem;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 4px;
}

.why-float span {
  font-size: .78rem;
  color: #C8C8C8;
}

/* Solutions — media tiles telecom style */
.solutions {
  padding: 96px 0;
  background:
    radial-gradient(ellipse 70% 40% at 50% 0%, rgba(255,122,26,.1), transparent 55%),
    var(--white);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.solution-card {
  position: relative;
  min-height: 360px;
  border-radius: 18px;
  overflow: hidden;
  isolation: isolate;
}

.solution-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease-out);
}

.solution-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.1) 20%, rgba(0,0,0,.85) 100%);
  z-index: 1;
}

.solution-card:hover img { transform: scale(1.06); }

.solution-overlay {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 26px;
  color: var(--white);
}

.solution-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-head);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.solution-overlay h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.solution-overlay p {
  color: #D4D4D4;
  margin-bottom: 16px;
  font-size: .92rem;
}

.solution-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .86rem;
  color: var(--yellow);
  transition: gap 180ms var(--ease-out);
}

.solution-card:hover .solution-link { gap: 12px; }
/* Stats */
.stats {
  padding: 64px 0;
  background: var(--yellow);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  text-align: center;
}

.stat-value {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 2px;
}

.stat-number,
.stat-suffix {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--ink);
}

.stat-number { font-size: 3.4rem; }
.stat-suffix { font-size: 2rem; }

.stat-card p {
  color: var(--ink);
  font-weight: 600;
  margin: 4px 0 18px;
}

/* Testimonials */
.testimonials {
  padding: 100px 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(255,122,26,.08), transparent 60%),
    var(--white);
}

.testimonial-stage {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 52px;
}

.testimonial-viewport {
  overflow: hidden;
  border-radius: 20px;
}

.testimonial-track {
  display: flex;
  transition: transform 420ms var(--ease-out);
  will-change: transform;
}

.testimonial-slide {
  min-width: 100%;
  margin: 0;
  padding: 36px 36px 32px;
  background: var(--ink);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 24px 50px rgba(8,63,115,.12);
}

.testimonial-slide .stars {
  display: flex;
  gap: 4px;
  color: var(--yellow);
  font-size: .85rem;
  margin-bottom: 18px;
}

.testimonial-slide p {
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  margin: 0 0 28px;
  line-height: 1.4;
  letter-spacing: -.01em;
}

.testimonial-slide footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-slide .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .82rem;
}

.testimonial-slide footer strong {
  display: block;
  font-family: var(--font-head);
  font-size: .92rem;
  color: var(--white);
}

.testimonial-slide footer small {
  color: #A0A0A0;
  font-size: .8rem;
}

.testi-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-70%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 2;
  transition: transform 160ms var(--ease-out), background 160ms ease, border-color 160ms ease;
}

.testi-nav:hover { border-color: var(--ink); }
.testi-nav:active { transform: translateY(-70%) scale(0.96); }
.testi-prev { left: 0; }
.testi-next { right: 0; }

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.testimonial-dots button {
  width: 28px;
  height: 4px;
  border: none;
  border-radius: 2px;
  background: #D5D5D0;
  cursor: pointer;
  padding: 0;
  transition: background 180ms ease, width 220ms var(--ease-out);
}

.testimonial-dots button.active {
  background: var(--ink);
  width: 40px;
}

/* Quality */
.quality {
  position: relative;
  padding: 108px 0;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}

.quality-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.quality-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .28;
  filter: saturate(1.1) contrast(1.05);
}

.quality-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,37,68,.92) 0%, rgba(5,37,68,.75) 55%, rgba(5,37,68,.55) 100%),
    linear-gradient(180deg, rgba(5,37,68,.2), rgba(5,37,68,.7));
}

.quality-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 52px;
  align-items: center;
}

.quality-text h2 { color: var(--white); }
.quality-lead {
  color: #B8B8B8;
  max-width: 40ch;
  margin-bottom: 8px;
}

.progress-item { margin-top: 22px; }

.progress-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
  font-family: var(--font-head);
  font-size: .84rem;
  font-weight: 600;
}

.progress-label span { color: #E8E8E8; }
.progress-label b { color: var(--yellow); font-size: .9rem; }

.progress-bar {
  background: rgba(255,255,255,.12);
  border-radius: 999px;
  height: 8px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--yellow-deep), var(--yellow));
  border-radius: 999px;
  transition: width 1.1s var(--ease-out);
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.quality-card {
  background: rgba(255,255,255,.06);
  color: var(--white);
  padding: 28px 20px;
  text-align: center;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  transition: transform 200ms var(--ease-out), background 200ms ease, border-color 200ms ease;
}

.quality-card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,.1);
  border-color: rgba(255,122,26,.35);
}

.quality-card i {
  font-size: 1.45rem;
  color: var(--yellow);
  margin-bottom: 10px;
}

.quality-card p {
  color: var(--white);
  margin: 0;
  font-weight: 600;
  font-family: var(--font-head);
  font-size: .9rem;
}

/* Contact */
.contact {
  padding: 96px 0;
  background: var(--white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-list { margin-top: 28px; }

.contact-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-list i {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-list strong {
  display: block;
  font-family: var(--font-head);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 2px;
}

.contact-list a,
.contact-list span {
  color: var(--muted);
  font-size: .95rem;
}

.contact-list a:hover { color: var(--ink); }

.contact-form {
  position: relative;
  background: linear-gradient(180deg, var(--white) 0%, var(--surface) 100%);
  padding: 36px 32px 32px;
  border-radius: 20px;
  box-shadow: 0 24px 60px -20px rgba(8,63,115,.22), 0 2px 0 rgba(255,122,26,.9) inset;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(255,122,26,.35) 0%, rgba(255,122,26,0) 70%);
  pointer-events: none;
}

.contact-form-badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ink);
  color: var(--yellow);
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 4px;
}

.contact-form h3 {
  font-size: 1.3rem;
  margin-bottom: 2px;
}

.contact-form > label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink);
}

.contact-form > label > span {
  display: block;
}

.contact-form-badge,
.contact-form h3 {
  position: relative;
  z-index: 1;
}

.contact-form input,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  padding: 14px 16px;
  border: 2px solid #C8C8C2;
  border-radius: 12px;
  background: #F3F3F0;
  color: var(--ink);
  outline: none;
  width: 100%;
  box-shadow: inset 0 1px 2px rgba(8,63,115,.04);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.interest-field {
  margin: 0;
  padding: 0;
  border: none;
  min-width: 0;
}

.interest-field legend {
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0;
  margin-bottom: 8px;
}

.interest-chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.interest-chip {
  display: block;
  margin: 0;
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
  font-size: inherit;
  font-weight: 400;
}

.interest-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
}

.interest-chip span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 10px 12px;
  border: 2px solid #C8C8C2;
  border-radius: 12px;
  background: #F3F3F0;
  font-family: var(--font-body);
  font-size: .86rem;
  font-weight: 600;
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms var(--ease-out);
}

.interest-chip span i {
  color: var(--yellow-deep);
  font-size: .85rem;
  width: 16px;
  text-align: center;
}

.interest-chip:active span { transform: scale(0.98); }

.interest-chip input:checked + span {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(8,63,115,.18);
}

.interest-chip input:checked + span i { color: var(--yellow); }

.interest-chip input:focus-visible + span {
  box-shadow: 0 0 0 4px rgba(255,122,26,.28);
}

.interest-field.has-error .interest-chip span {
  border-color: #E0483C;
}

.contact-form input:hover,
.contact-form textarea:hover,
.interest-chip:hover span {
  border-color: #9F9F98;
  background: #EEEEEA;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--ink);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255,122,26,.35);
}

.contact-form textarea { resize: vertical; min-height: 88px; }

.contact-form .btn {
  width: 100%;
  margin-top: 6px;
  gap: 10px;
  min-height: 52px;
  box-shadow: 0 12px 28px -10px rgba(255,122,26,.55);
}

.contact-form .btn:hover { transform: translateY(-2px); }

/* Support CTA */
.support-cta {
  background: var(--yellow);
  padding: 52px 0;
  text-align: center;
}

.support-inner p {
  color: var(--ink);
  margin-bottom: 4px;
  font-weight: 600;
}

.support-phone {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 18px;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: #B0B0B0;
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 36px;
  padding-bottom: 48px;
  border-bottom: 1px solid #2A2A2A;
}

.footer-col h4 {
  color: var(--white);
  font-size: .92rem;
  margin-bottom: 18px;
}

.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a:hover { color: var(--yellow); }

.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p {
  color: #B0B0B0;
  margin-bottom: 8px;
  font-size: .92rem;
}

.footer-brand i {
  color: var(--yellow);
  margin-right: 8px;
  width: 16px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, color .2s ease;
}

.footer-social a:hover {
  background: var(--yellow);
  color: var(--ink);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-form input {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid #333;
  background: #07365F;
  color: var(--white);
  font-family: var(--font-body);
}

.newsletter-form input::placeholder { color: #7A7A7A; }
.newsletter-form input:focus {
  outline: none;
  border-color: var(--yellow);
}

.footer-bottom { padding: 18px 0; }

.footer-bottom-inner {
  text-align: center;
  font-size: .82rem;
  color: #777;
}

.footer-bottom p { margin: 0; color: #777; }

/* Floating */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
  transition: transform .2s ease;
}

.whatsapp-float:hover { transform: scale(1.06); }

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 92px;
  z-index: 200;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: var(--yellow);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover { transform: translateY(-2px); }

/* Responsive - mobile first stability (no overflow on zoom) */
.pricing-grid > *,
.hero-inner > *,
.promo-inner > *,
.quick-grid > *,
.fiber-grid > *,
.solutions-grid > *,
.footer-grid > *,
.contact-inner > *,
.why-inner > *,
.quality-inner > * {
  min-width: 0;
  max-width: 100%;
}

@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-perks { grid-template-columns: repeat(2, 1fr); }
  .promo-inner { grid-template-columns: 1fr; text-align: left; gap: 24px; }
  .promo-price {
    border: none;
    border-top: 1px solid rgba(255,255,255,.18);
    border-bottom: 1px solid rgba(255,255,255,.18);
    padding: 18px 0;
    text-align: left;
    width: 100%;
  }
  .pricing-glow,
  .hero-glow { display: none; }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding: 48px 0 56px;
  }

  .hero-inner,
  .why-inner,
  .quality-inner,
  .contact-inner,
  .solutions-grid,
  .fiber-grid,
  .quick-grid,
  .footer-grid,
  .pricing-grid,
  .plan-perks,
  .stats-grid,
  .quality-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-text h1 {
    max-width: none;
    font-size: clamp(1.85rem, 8vw, 2.5rem);
  }

  .hero-panel,
  .hero-panel-card,
  .why-photo-wrap {
    width: 100%;
    max-width: 100%;
  }

  .why-visual { min-height: auto; }
  .contact { padding: 64px 0; }
  .plan-card--hit { transform: none; }
  .plan-card--hit:hover { transform: translateY(-4px); }
}

@media (max-width: 720px) {
  .topbar { display: none; }

  .header-inner {
    width: 100%;
    min-height: 60px;
    padding: 8px max(12px, env(safe-area-inset-right)) 8px max(12px, env(safe-area-inset-left));
    gap: 12px;
  }

  .brand {
    min-width: 0;
    max-width: calc(100% - 56px);
  }

  .brand img,
  .brand .brand-logo {
    width: min(172px, calc(100vw - 82px));
    height: auto;
    max-height: 48px;
    flex-shrink: 1;
  }


  .nav-toggle {
    display: flex;
    flex-shrink: 0;
  }

  .header-cta { display: none; }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(310px, 88vw);
    height: 100%;
    height: 100dvh;
    margin: 0;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    transform: translateX(110%);
    transition: transform 320ms var(--ease-drawer);
    z-index: 160;
    box-shadow: -12px 0 40px rgba(0,0,0,.18);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .main-nav.open { transform: translateX(0); }

  .nav-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px;
    border-bottom: 1px solid var(--line);
  }

  .nav-close {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--surface);
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    cursor: pointer;
    color: var(--ink);
    flex-shrink: 0;
  }

  .nav-drawer-mid {
    display: block;
    margin: 8px 12px 0;
    padding: 14px;
    border-radius: 16px;
    background: linear-gradient(165deg, #062F56 0%, #083F73 100%);
    color: var(--white);
    border: 1px solid rgba(255,122,26,.22);
  }

  .nav-speedo {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 8px;
    align-items: center;
    margin-bottom: 12px;
  }

  .nav-speedo-svg {
    width: 100%;
    max-width: 140px;
    overflow: visible;
  }

  .nav-speedo-track { stroke: rgba(255,255,255,.16); }
  .nav-speedo-fill {
    stroke: var(--yellow);
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
  }
  .nav-speedo.is-on .nav-speedo-fill {
    animation: navSpeedoArc 2.8s var(--ease-in-out) infinite;
  }

  .nav-speedo-needle {
    stroke: #fff;
    stroke-width: 2.5;
    transform-origin: 60px 64px;
    transform: rotate(-90deg);
  }
  .nav-speedo.is-on .nav-speedo-needle {
    animation: navSpeedoNeedle 2.8s var(--ease-in-out) infinite;
  }

  @keyframes navSpeedoArc {
    0% { stroke-dashoffset: 88; }
    18% { stroke-dashoffset: 14; }
    40% { stroke-dashoffset: 24; }
    55% { stroke-dashoffset: 10; }
    75% { stroke-dashoffset: 18; }
    100% { stroke-dashoffset: 88; }
  }

  @keyframes navSpeedoNeedle {
    0% { transform: rotate(-78deg); }
    18% { transform: rotate(68deg); }
    40% { transform: rotate(42deg); }
    55% { transform: rotate(78deg); }
    75% { transform: rotate(55deg); }
    100% { transform: rotate(-78deg); }
  }

  .nav-speedo-hub { fill: var(--yellow); }

  .nav-speedo-readout strong {
    display: block;
    font-family: var(--font-head);
    font-size: 1.55rem;
    color: var(--yellow);
    line-height: 1;
  }

  .nav-speedo-readout span {
    font-size: .68rem;
    color: #A8A8A8;
    font-family: var(--font-head);
    font-weight: 600;
  }

  .nav-mid-title {
    margin: 0 0 10px;
    font-family: var(--font-head);
    font-size: .78rem;
    font-weight: 700;
    color: #EAEAEA;
  }

  .nav-wa-plans {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .nav-wa-chip {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 6px;
    border-radius: 10px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    color: #F2F2F2;
    font-family: var(--font-head);
    font-size: .78rem;
    font-weight: 700;
    text-align: center;
    transition: background 160ms ease, border-color 160ms ease, transform 160ms var(--ease-out);
  }

  .nav-wa-chip:active { transform: scale(0.97); }
  .nav-wa-chip.is-hit {
    background: var(--yellow);
    color: var(--ink);
    border-color: var(--yellow);
  }

  .nav-links {
    flex-direction: column;
    gap: 0;
    padding: 8px 12px;
    flex: 0 0 auto;
  }

  .nav-links a {
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    font-size: .92rem;
  }

  .nav-links a::after { display: none; }

  .nav-drawer-foot {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px 16px;
    border-top: 1px solid var(--line);
    padding-bottom: max(14px, env(safe-area-inset-bottom));
    margin-top: auto;
  }

  .nav-drawer-foot .btn {
    width: 100%;
    gap: 8px;
  }

  .nav-foot-link {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: .88rem;
    color: var(--ink);
  }

  .nav-foot-link i {
    color: var(--yellow-deep);
    margin-right: 8px;
  }

  .hero { padding: 36px 0 48px; }
  .hero-lead {
    font-size: .95rem;
    max-width: none;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 48px;
  }

  .hero-trust {
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
  }

  .promo-banner { padding: 32px 0; }
  .promo-speed { font-size: clamp(2rem, 12vw, 2.6rem); }
  .promo-price-value { font-size: clamp(1.8rem, 10vw, 2.1rem); }
  .promo-extra small { max-width: 100%; }
  .promo-extra .btn { width: 100%; }

  .pricing,
  .quick-services,
  .fiber,
  .why-us,
  .solutions,
  .testimonials,
  .quality,
  .contact,
  .support-cta {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .section-head {
    margin-bottom: 28px;
    max-width: 100%;
    padding: 0;
  }

  .section-head h2 {
    font-size: clamp(1.4rem, 7vw, 1.85rem);
  }

  .plan-tabs {
    width: 100%;
    max-width: 100%;
    border-radius: 14px;
    flex-direction: column;
    gap: 4px;
  }

  .plan-tab {
    width: 100%;
    text-align: center;
    padding: 14px 16px;
  }

  .plan-card {
    padding: 22px 16px 16px;
    width: 100%;
  }

  .plan-amount { font-size: clamp(2rem, 10vw, 2.3rem); }
  .plan-speed strong { font-size: clamp(2.1rem, 11vw, 2.5rem); }
  .plan-badge { max-width: calc(100% - 24px); }

  .fiber-card,
  .solution-card {
    min-height: 240px;
    border-radius: 16px;
    width: 100%;
  }

  .quick-card { width: 100%; }
  .quick-media { height: 140px; }

  .why-photo-wrap img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }

  .stats { padding: 40px 0; }
  .stat-number { font-size: clamp(2.2rem, 12vw, 2.6rem); }

  .testimonial-stage {
    padding: 0;
    width: 100%;
    max-width: 100%;
  }

  .testi-nav { display: none; }

  .testimonial-slide {
    padding: 22px 16px;
    border-radius: 16px;
    box-sizing: border-box;
  }

  .testimonial-slide p { font-size: 1.02rem; }

  .quality-inner { gap: 24px; }
  .contact-inner { gap: 24px; width: 100%; }

  .contact-form {
    width: 100%;
    padding: 20px 14px 18px;
    border-radius: 16px;
  }

  .interest-chips { grid-template-columns: 1fr; }

  .interest-chip span {
    min-height: 50px;
    font-size: .9rem;
  }

  .support-phone {
    font-size: clamp(1.35rem, 7vw, 1.55rem);
    overflow-wrap: anywhere;
  }

  .support-inner .btn { width: 100%; }

  .site-footer { padding-top: 48px; }
  .footer-grid { gap: 24px; width: 100%; }
  .footer-col { width: 100%; }
  .footer-brand .brand-text { display: flex !important; }
  .newsletter-form input,
  .newsletter-form .btn { width: 100%; }

  .whatsapp-float {
    bottom: max(14px, env(safe-area-inset-bottom));
    right: max(14px, env(safe-area-inset-right));
    width: 52px;
    height: 52px;
  }

  .back-to-top {
    bottom: max(14px, env(safe-area-inset-bottom));
    right: calc(14px + 52px + 10px);
    width: 42px;
    height: 42px;
  }

  /* Evita que transforms/hover rompan al hacer zoom */
  .plan-card:hover,
  .quick-card:hover,
  .solution-card:hover,
  .fiber-card:hover img,
  .quick-card:hover .quick-media img,
  .solution-card:hover img {
    transform: none;
  }
}

@media (max-width: 420px) {
  .header-inner { gap: 8px; }
  .plan-chip { font-size: .62rem; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .progress-fill,
  .speedo-fill,
  .speedo-needle,
  .nav-speedo-fill,
  .nav-speedo-needle {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .speedo.is-on .speedo-fill,
  .nav-speedo.is-on .nav-speedo-fill { stroke-dashoffset: 8; }
  .speedo.is-on .speedo-needle { transform: rotate(78deg); }
  .nav-speedo.is-on .nav-speedo-needle { transform: rotate(75deg); }
}

/* —— FAQ (oscuro) —— */
.faq {
  position: relative;
  padding: 88px 0;
  background: #083F73;
  color: #fff;
  overflow: hidden;
}

.faq-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 60% at 15% 20%, rgba(255, 122, 26, .16), transparent 55%),
    radial-gradient(ellipse 45% 50% at 90% 80%, rgba(255, 255, 255, .05), transparent 50%);
}

.faq > .container { position: relative; z-index: 1; }

.faq .section-head--light .pretitle { color: rgba(255,255,255,.78); }
.faq .section-head--light h2 { color: #fff; }
.faq .section-head--light .section-sub { color: #A8A8A8; }

.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: start;
}

.faq-item {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  overflow: hidden;
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}

.faq-item[open] {
  background: rgba(255, 122, 26, .09);
  border-color: rgba(255, 122, 26, .5);
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
  grid-column: 1 / -1;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 56px 20px 20px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: -.02em;
  position: relative;
  color: #fff;
  line-height: 1.35;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.faq-item[open] summary::after { content: "–"; }

.faq-answer { padding: 0 20px 20px; }

.faq-answer p {
  margin: 0;
  color: #C8C8C8;
  font-size: 15px;
  line-height: 1.6;
  max-width: 70ch;
}

.faq-answer a {
  color: var(--yellow);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-cta {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 28px;
  border-radius: 18px;
  background: linear-gradient(120deg, #07365F 0%, #052A4B 55%, rgba(255, 122, 26, .1) 100%);
  border: 1px solid rgba(255, 122, 26, .35);
  box-shadow: 0 22px 50px rgba(0,0,0,.28);
}

.faq-cta-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.faq-aside-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

.faq-cta-copy strong {
  font-family: var(--font-head);
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  letter-spacing: -.02em;
  color: var(--yellow);
}

.faq-cta-copy p {
  margin: 0;
  color: #B5B5B5;
  font-size: 14px;
}

.faq-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  flex-shrink: 0;
}

.faq-cta-actions .btn {
  min-height: 46px;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .faq { padding: 64px 0; }
  .faq-list { grid-template-columns: 1fr; }
  .faq-item[open] { grid-column: auto; }
  .faq-cta {
    flex-direction: column;
    align-items: stretch;
    padding: 22px 18px;
  }
  .faq-cta-actions {
    justify-content: stretch;
  }
  .faq-cta-actions .btn { width: 100%; }
}


/* ZENNTEL: ajustes de identidad visual */
.site-header {
  border-bottom-color: rgba(8, 63, 115, .08);
}

.site-header.scrolled {
  box-shadow: 0 10px 30px rgba(8, 63, 115, .10);
}

.hero-shade {
  background:
    linear-gradient(105deg, rgba(4, 34, 62, .94) 0%, rgba(8, 63, 115, .80) 48%, rgba(8, 63, 115, .56) 100%),
    linear-gradient(180deg, rgba(4, 34, 62, .20) 0%, rgba(4, 34, 62, .72) 100%);
}

.hero-grid {
  background-image:
    linear-gradient(rgba(255,122,26,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,122,26,.055) 1px, transparent 1px);
}

.hero-glow {
  background: radial-gradient(circle, rgba(255,122,26,.24) 0%, rgba(7,92,158,.12) 36%, transparent 70%);
}

.hero-panel-card {
  background: rgba(4, 34, 62, .76);
  border-color: rgba(255, 255, 255, .16);
}

.pricing {
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(255,122,26,.15), transparent 55%),
    linear-gradient(180deg, #F4F8FB 0%, #FFFFFF 45%, #EEF5FA 100%);
}

.pricing-glow {
  background: radial-gradient(circle, rgba(7,92,158,.16), transparent 70%);
}

.faq,
.site-footer {
  background-color: #052A4B;
}

.whatsapp-float {
  box-shadow: 0 14px 32px rgba(8,63,115,.24);
}

@media (max-width: 720px) {
  .brand,
  .brand-drawer {
    max-width: calc(100% - 54px);
  }
  .brand-drawer img,
  .brand-drawer .brand-logo {
    width: min(184px, 66vw);
  }
}
