/* ================================================================
   ABTV Mexico - Telecomunicaciones ISP Website
   Design system aligned with NetMonitor landing page
   ================================================================ */

/* ───────── CSS VARIABLES ───────── */
:root {
  --indigo: #4f46e5;
  --indigo-light: rgba(79,70,229,.10);
  --green: #10b981;
  --text: #0f0f1a;
  --muted: #6b7280;
  --line: rgba(15,23,42,.08);
  --max: 1200px;
  --indigo-glow: rgba(79,70,229,.30);
  --bg-alt: #f8fafc;
  --radius: 16px;
}

/* ───────── RESET & BASE ───────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

/* ───────── UTILITY / LAYOUT ───────── */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 28px;
}
.text-center { text-align: center; }

/* ───────── BUTTONS ───────── */
.btn-pri {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: 12px;
  background: var(--indigo); color: #fff;
  font-weight: 700; font-size: 15px;
  box-shadow: 0 8px 26px rgba(79,70,229,.42);
  transition: transform .2s, box-shadow .2s;
  border: none; cursor: pointer;
  font-family: inherit;
}
.btn-pri:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(79,70,229,.48);
}

.btn-out {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.88);
  font-weight: 700; font-size: 15px;
  backdrop-filter: blur(8px);
  transition: background .2s, border-color .2s;
  cursor: pointer;
  font-family: inherit;
}
.btn-out:hover {
  background: rgba(255,255,255,.13);
  border-color: rgba(255,255,255,.35);
}

/* Outline button variant for light backgrounds */
.btn-out-light {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: 12px;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--text);
  font-weight: 700; font-size: 15px;
  transition: border-color .2s, color .2s;
  cursor: pointer;
  font-family: inherit;
}
.btn-out-light:hover {
  border-color: var(--indigo);
  color: var(--indigo);
}

/* ───────── SECTION HEADINGS ───────── */
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; color: var(--indigo);
  letter-spacing: .6px; text-transform: uppercase;
  margin-bottom: 14px;
}
.section-tag::before {
  content: '';
  display: block; width: 16px; height: 2px;
  background: var(--indigo); border-radius: 2px;
}

.section-h2 {
  font-size: 38px; font-weight: 900; letter-spacing: -1.5px;
  line-height: 1.1; margin-bottom: 14px;
}
@media (max-width: 700px) {
  .section-h2 { font-size: 28px; letter-spacing: -.8px; }
}

.section-sub {
  font-size: 17px; color: var(--muted); line-height: 1.72;
  max-width: 54ch; margin-bottom: 48px;
}

/* ───────── NAV ───────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 15px;
}
.logo-img {
  width: 36px; height: 36px; border-radius: 8px;
  object-fit: contain; flex-shrink: 0;
  background: #fff;
}
.brand-sub {
  display: block; font-size: 11px; font-weight: 600;
  color: var(--muted); letter-spacing: .3px;
}
.nav-right {
  display: flex; align-items: center; gap: 8px;
}
.nav-links {
  display: flex; align-items: center; gap: 2px;
}
.nav-links a {
  padding: 8px 14px; border-radius: 8px;
  font-size: 14px; font-weight: 600; color: var(--muted);
  transition: color .15s, background .15s;
}
.nav-links a:hover {
  color: var(--text);
  background: rgba(15,23,42,.05);
}
.nav-login {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 600; font-size: 14px; color: var(--text);
  transition: border-color .15s, background .15s;
}
.nav-login:hover {
  border-color: var(--indigo);
  background: var(--indigo-light);
  color: var(--indigo);
}
.nav-login svg { width: 16px; height: 16px; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 20px; border-radius: 10px;
  background: var(--indigo); color: #fff;
  font-weight: 700; font-size: 14px;
  box-shadow: 0 4px 14px rgba(79,70,229,.30);
  transition: transform .15s, box-shadow .15s;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(79,70,229,.38);
}

/* Hamburger */
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; border-radius: 8px;
  align-items: center; justify-content: center;
  transition: background .15s;
}
.hamburger:hover { background: rgba(15,23,42,.05); }
.hamburger svg { width: 22px; height: 22px; color: var(--text); }

/* ───────── MOBILE MENU ───────── */
.mobile-menu {
  display: none;
  position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 99;
  padding: 24px;
  flex-direction: column; gap: 4px;
  animation: slideDown .2s ease-out;
}
.mobile-menu.open { display: flex; }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mobile-menu a {
  padding: 14px 16px; border-radius: 10px;
  font-size: 16px; font-weight: 600; color: var(--text);
  transition: background .15s;
}
.mobile-menu a:hover { background: rgba(15,23,42,.05); }
.mobile-menu .nav-login {
  margin-top: 8px; justify-content: center;
  padding: 14px; font-size: 16px;
}
.mobile-menu .nav-cta {
  margin-top: 4px; justify-content: center;
  padding: 14px; font-size: 16px; border-radius: 12px;
}

@media (max-width: 768px) {
  .nav-links, .nav-right > .nav-login, .nav-right > .nav-cta { display: none; }
  .hamburger { display: flex; }
}

/* ───────── HERO ───────── */
.hero-wrap {
  background: linear-gradient(135deg, #08080f 0%, #0e0b28 55%, #091524 100%);
  position: relative; overflow: hidden;
}
.hero-wrap::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(900px 600px at 15% 60%, rgba(79,70,229,.22), transparent 60%),
    radial-gradient(500px 350px at 85% 20%, rgba(124,58,237,.14), transparent 60%),
    radial-gradient(400px 280px at 70% 85%, rgba(16,185,129,.09), transparent 60%);
}
.hero-inner {
  max-width: var(--max); margin: 0 auto; padding: 96px 28px 80px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
  position: relative; z-index: 1;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding: 64px 24px 52px; gap: 40px; }
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  border: 1px solid rgba(79,70,229,.38);
  background: rgba(79,70,229,.14);
  font-size: 12px; font-weight: 700; color: rgba(255,255,255,.88);
  letter-spacing: .5px; text-transform: uppercase;
  margin-bottom: 24px;
}

.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(16,185,129,.45); }
  50%     { box-shadow: 0 0 0 7px rgba(16,185,129,0); }
}

.hero-h1 {
  font-size: 58px; font-weight: 900; line-height: 1.02;
  letter-spacing: -2.2px; color: #fff; margin-bottom: 20px;
}
.hero-h1 .hl { color: #818cf8; }
@media (max-width: 900px) { .hero-h1 { font-size: 42px; letter-spacing: -1.6px; } }
@media (max-width: 560px) { .hero-h1 { font-size: 34px; letter-spacing: -1px; } }

.hero-sub {
  font-size: 17px; line-height: 1.72; color: rgba(255,255,255,.60);
  max-width: 46ch; margin-bottom: 30px;
}

.hero-feats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-bottom: 32px;
}
@media (max-width: 480px) { .hero-feats { grid-template-columns: 1fr; } }

.hf {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.78);
}
.hf-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--indigo); flex-shrink: 0;
}

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero trust badges */
.hero-trust {
  display: flex; align-items: center; gap: 16px;
  margin-top: 28px; flex-wrap: wrap;
}
.trust-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,.50);
}
.trust-badge svg { width: 16px; height: 16px; opacity: .5; }

/* Hero image/visual */
.hero-visual {
  display: flex; align-items: center; justify-content: center;
}
.hero-visual img {
  border-radius: 22px;
  box-shadow: 0 32px 88px rgba(0,0,0,.45);
}

/* ───────── STATS BAR ───────── */
.stats-wrap {
  background: #f7f7fc;
  border-top: 1px solid rgba(15,23,42,.06);
  border-bottom: 1px solid rgba(15,23,42,.06);
}
.stats-inner {
  max-width: var(--max); margin: 0 auto; padding: 56px 28px;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 16px;
}
@media (max-width: 800px) { .stats-inner { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .stats-inner { grid-template-columns: 1fr; } }

.stat {
  background: #fff;
  border: 1px solid rgba(15,23,42,.07);
  border-radius: 18px; padding: 28px 20px; text-align: center;
  box-shadow: 0 2px 12px rgba(15,23,42,.04);
}
.stat-n {
  font-size: 40px; font-weight: 900; letter-spacing: -2px;
  color: var(--text); line-height: 1; margin-bottom: 8px;
}
.stat-n em { color: var(--indigo); font-style: normal; }
.stat-l {
  font-size: 13px; font-weight: 600; color: var(--muted); line-height: 1.5;
}

/* ───────── PACKAGE CARDS ───────── */
.package-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  align-items: start;
}
@media (max-width: 800px) {
  .package-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
}

.package-card {
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 22px; padding: 32px 28px;
  box-shadow: 0 4px 22px rgba(15,23,42,.05);
  position: relative;
  transition: transform .22s, box-shadow .22s;
}
.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(15,23,42,.10);
}
.package-card.featured {
  border-color: var(--indigo);
  box-shadow: 0 8px 36px rgba(79,70,229,.18);
}
.package-card.featured::before {
  content: 'Recomendado';
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 4px 16px; border-radius: 999px;
  background: var(--indigo); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .3px; text-transform: uppercase;
}

.speed-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px; border-radius: 999px;
  background: var(--indigo-light);
  border: 1px solid rgba(79,70,229,.18);
  font-size: 12px; font-weight: 700; color: var(--indigo);
  letter-spacing: .3px; text-transform: uppercase;
  margin-bottom: 16px;
}

.package-name {
  font-size: 16px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: .5px;
  margin-bottom: 8px;
}
.package-price {
  font-size: 44px; font-weight: 900; letter-spacing: -2px;
  color: var(--text); line-height: 1; margin-bottom: 4px;
}
.package-price span {
  font-size: 18px; font-weight: 600; color: var(--muted); letter-spacing: 0;
}
.package-desc {
  font-size: 13px; color: var(--muted); line-height: 1.5;
  margin-bottom: 22px; padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.package-features { list-style: none; margin-bottom: 24px; }
.package-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; font-weight: 500; color: var(--text);
  padding: 7px 0;
}
.package-features li::before {
  content: '';
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
  background: rgba(16,185,129,.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.package-btn {
  display: block; width: 100%; padding: 13px;
  border-radius: 12px; text-align: center;
  font-weight: 700; font-size: 14px;
  transition: transform .15s, box-shadow .15s;
  border: none; cursor: pointer;
  font-family: inherit;
}
.package-btn-outline {
  background: #fff;
  border: 1.5px solid var(--line);
  color: var(--text);
}
.package-btn-outline:hover { border-color: var(--indigo); color: var(--indigo); }

.package-btn-fill {
  background: var(--indigo); color: #fff;
  box-shadow: 0 4px 14px rgba(79,70,229,.30);
}
.package-btn-fill:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(79,70,229,.38);
}

/* ───────── COMPARISON TABLE ───────── */
.table-container {
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(15,23,42,.05);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.comparison-table thead {
  background: #f7f7fc;
}
.comparison-table th {
  padding: 16px 20px;
  font-size: 12px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: .5px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.comparison-table td {
  padding: 14px 20px;
  font-weight: 500; color: var(--text);
  border-bottom: 1px solid var(--line);
}
.comparison-table tbody tr:nth-child(even) {
  background: rgba(247,247,252,.6);
}
.comparison-table tbody tr:last-child td {
  border-bottom: none;
}
.comparison-table tbody tr {
  transition: background .15s;
}
.comparison-table tbody tr:hover {
  background: var(--indigo-light);
}

@media (max-width: 640px) {
  .table-container { overflow-x: auto; }
  .comparison-table { min-width: 600px; }
}

/* ───────── STEPS / PROCESS ───────── */
.steps-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px;
}
@media (max-width: 800px) { .steps-grid { grid-template-columns: 1fr; } }

.step-card {
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 22px; padding: 32px 28px;
  box-shadow: 0 4px 22px rgba(15,23,42,.05);
  position: relative; overflow: hidden;
  transition: transform .22s, box-shadow .22s;
}
.step-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--indigo), #7c3aed);
}
.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(15,23,42,.10);
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--indigo); color: #fff;
  font-size: 14px; font-weight: 800;
  margin-bottom: 16px;
}
.step-ico {
  width: 46px; height: 46px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--indigo-light);
  border: 1px solid rgba(79,70,229,.18);
  margin-bottom: 20px;
}
.step-ico svg { width: 22px; height: 22px; }
.step-h3 { font-size: 18px; font-weight: 800; margin-bottom: 10px; letter-spacing: -.3px; }
.step-p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ───────── BENEFITS GRID ───────── */
.benefits-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
@media (max-width: 700px) { .benefits-grid { grid-template-columns: 1fr; } }

.benefit-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 16px;
  transition: transform .2s, box-shadow .2s;
}
.benefit-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(15,23,42,.08);
}
.benefit-ico {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--indigo-light);
  border: 1px solid rgba(79,70,229,.15);
}
.benefit-ico svg { width: 20px; height: 20px; }
.benefit-title { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.benefit-desc { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ───────── TECH SECTIONS (FIBER / RADIO) ───────── */
.tech-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .tech-grid { grid-template-columns: 1fr; gap: 32px; } }

.tech-grid.reverse { direction: rtl; }
.tech-grid.reverse > * { direction: ltr; }

.tech-img {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(15,23,42,.10);
}
.tech-img img {
  width: 100%; height: auto;
  display: block;
}

.tech-content { display: flex; flex-direction: column; gap: 20px; }

.tech-features { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.tech-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500; color: var(--text);
}
.tech-features li::before {
  content: '';
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  background: rgba(16,185,129,.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ───────── GUARANTEES ───────── */
.guarantees-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
@media (max-width: 800px) { .guarantees-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .guarantees-grid { grid-template-columns: 1fr; } }

.guarantee-card {
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 18px; padding: 28px 20px; text-align: center;
  box-shadow: 0 2px 12px rgba(15,23,42,.04);
  transition: transform .2s, box-shadow .2s;
}
.guarantee-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(15,23,42,.08);
}
.guarantee-number {
  font-size: 44px; font-weight: 900; letter-spacing: -2px;
  color: var(--indigo); line-height: 1; margin-bottom: 8px;
}
.guarantee-label {
  font-size: 13px; font-weight: 600; color: var(--muted); line-height: 1.5;
}

/* ───────── CONTACT FORM ───────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: start;
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }

.contact-form {
  display: flex; flex-direction: column; gap: 14px;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 13px; font-weight: 600; color: var(--text);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 14px; border-radius: 10px;
  border: 1.5px solid var(--line);
  font-family: inherit; font-size: 14px;
  background: #fff; color: var(--text);
  transition: border-color .15s, box-shadow .15s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(79,70,229,.1);
}
.form-group textarea { resize: vertical; min-height: 90px; }

.form-submit {
  padding: 14px 28px; border-radius: 12px;
  background: var(--indigo); color: #fff;
  font-weight: 700; font-size: 15px;
  border: none; cursor: pointer;
  font-family: inherit;
  box-shadow: 0 4px 14px rgba(79,70,229,.30);
  transition: transform .15s, box-shadow .15s;
  align-self: flex-start;
}
.form-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(79,70,229,.38);
}

.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.contact-info-ico {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--indigo-light);
}
.contact-info-ico svg { width: 20px; height: 20px; color: var(--indigo); }
.contact-info-label {
  font-size: 12px; font-weight: 600; color: var(--muted);
  text-transform: uppercase; letter-spacing: .3px;
}
.contact-info-value { font-size: 15px; font-weight: 700; color: var(--text); }

/* ───────── TESTIMONIALS ───────── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
@media (max-width: 800px) { .testimonials-grid { grid-template-columns: 1fr; } }

.testimonial-card {
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 18px; padding: 28px;
  box-shadow: 0 2px 12px rgba(15,23,42,.04);
  transition: transform .2s, box-shadow .2s;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(15,23,42,.08);
}
.testimonial-stars {
  display: flex; gap: 2px; margin-bottom: 14px; color: #f59e0b;
}
.testimonial-text {
  font-size: 14px; color: var(--text); line-height: 1.65;
  margin-bottom: 16px; font-style: italic;
}
.testimonial-author {
  display: flex; align-items: center; gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.testimonial-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--indigo-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 800; color: var(--indigo);
}
.testimonial-name { font-size: 13px; font-weight: 700; }
.testimonial-role { font-size: 12px; color: var(--muted); }

/* ───────── TIMELINE ───────── */
.timeline {
  position: relative;
  padding-left: 40px;
  max-width: 720px;
}
.timeline::before {
  content: '';
  position: absolute; top: 0; bottom: 0; left: 15px;
  width: 2px;
  background: linear-gradient(to bottom, var(--indigo), rgba(79,70,229,.15));
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  padding-bottom: 36px;
}
.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute; left: -33px; top: 4px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--indigo);
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px rgba(79,70,229,.22);
}
.timeline-date {
  font-size: 12px; font-weight: 700; color: var(--indigo);
  text-transform: uppercase; letter-spacing: .5px;
  margin-bottom: 6px;
}
.timeline-title {
  font-size: 17px; font-weight: 800; color: var(--text);
  margin-bottom: 6px; letter-spacing: -.3px;
}
.timeline-desc {
  font-size: 14px; color: var(--muted); line-height: 1.65;
}

/* ───────── COVERAGE SECTION ───────── */
.coverage-grid {
  display: grid; grid-template-columns: 2fr 1fr; gap: 40px;
  align-items: start;
}
@media (max-width: 900px) { .coverage-grid { grid-template-columns: 1fr; } }

.coverage-map {
  border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 8px 32px rgba(15,23,42,.08);
}
.coverage-map img { width: 100%; height: auto; display: block; }

.coverage-sidebar {
  display: flex; flex-direction: column; gap: 14px;
}
.coverage-stat {
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 16px; padding: 22px 20px;
  box-shadow: 0 2px 12px rgba(15,23,42,.04);
}
.coverage-stat-n {
  font-size: 32px; font-weight: 900; letter-spacing: -1.5px;
  color: var(--indigo); line-height: 1; margin-bottom: 4px;
}
.coverage-stat-l {
  font-size: 13px; font-weight: 600; color: var(--muted);
}

/* ───────── VALUES CARDS ───────── */
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
@media (max-width: 800px) { .values-grid { grid-template-columns: 1fr; } }

.value-card {
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 18px; padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(15,23,42,.04);
  transition: transform .2s, box-shadow .2s;
}
.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(15,23,42,.08);
}
.value-ico {
  width: 50px; height: 50px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--indigo-light);
  border: 1px solid rgba(79,70,229,.15);
  margin-bottom: 18px;
}
.value-ico svg { width: 24px; height: 24px; color: var(--indigo); }
.value-title {
  font-size: 16px; font-weight: 800; margin-bottom: 8px; letter-spacing: -.3px;
}
.value-desc {
  font-size: 13px; color: var(--muted); line-height: 1.6;
}

/* ───────── CERTIFICATIONS ───────── */
.certifications-grid {
  display: flex; flex-wrap: wrap; gap: 24px;
  align-items: center; justify-content: center;
}
.cert-logo {
  height: 48px; width: auto;
  opacity: .5;
  filter: grayscale(1);
  transition: opacity .2s, filter .2s;
}
.cert-logo:hover {
  opacity: 1;
  filter: grayscale(0);
}

/* ───────── CTA SECTION ───────── */
.cta-wrap {
  background: linear-gradient(135deg, #08080f 0%, #0e0b28 60%, #091524 100%);
  position: relative; overflow: hidden;
}
.cta-wrap::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(700px 500px at 50% 50%, rgba(79,70,229,.20), transparent 65%);
}
.cta-inner {
  max-width: 680px; margin: 0 auto; padding: 100px 28px;
  text-align: center; position: relative; z-index: 1;
}
.cta-h2 {
  font-size: 48px; font-weight: 900; letter-spacing: -2px;
  color: #fff; margin-bottom: 16px; line-height: 1.06;
}
@media (max-width: 700px) { .cta-h2 { font-size: 32px; letter-spacing: -1px; } }
.cta-sub {
  font-size: 17px; color: rgba(255,255,255,.58); margin-bottom: 12px;
}
.cta-phone {
  font-size: 30px; font-weight: 900; letter-spacing: -1px;
  color: #fff; margin-bottom: 36px;
}
.cta-btns {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

/* ───────── FOOTER ───────── */
footer {
  border-top: 1px solid rgba(15,23,42,.08);
  background: #fff;
}
.footer-inner {
  max-width: var(--max); margin: 0 auto; padding: 56px 28px 28px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 15px;
  margin-bottom: 14px;
}
.footer-desc {
  font-size: 13px; color: var(--muted); line-height: 1.6;
  max-width: 32ch;
}

.footer-heading {
  font-size: 13px; font-weight: 700; color: var(--text);
  text-transform: uppercase; letter-spacing: .5px;
  margin-bottom: 16px;
}
.footer-links {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
}
.footer-links a {
  font-size: 14px; font-weight: 500; color: var(--muted);
  transition: color .15s;
}
.footer-links a:hover { color: var(--indigo); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.footer-copy {
  font-size: 13px; color: var(--muted);
}
.footer-socials {
  display: flex; gap: 12px;
}
.footer-socials a {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(15,23,42,.04);
  border: 1px solid var(--line);
  color: var(--muted);
  transition: background .15s, color .15s, border-color .15s;
}
.footer-socials a:hover {
  background: var(--indigo-light);
  border-color: rgba(79,70,229,.18);
  color: var(--indigo);
}
.footer-socials svg { width: 16px; height: 16px; }

/* Simple footer variant (same as NetMonitor) */
.foot-inner {
  max-width: var(--max); margin: 0 auto; padding: 28px 28px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
}
.foot-brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 14px;
}
.foot-copy { font-size: 13px; color: var(--muted); }

/* ───────── SCROLL ANIMATIONS ───────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ───────── BACKGROUNDS ───────── */
.bg-light { background: #f7f7fc; }
.bg-white { background: #fff; }

/* ───────── RESPONSIVE BREAKPOINTS ───────── */

/* 900px - Tablet landscape */
@media (max-width: 900px) {
  .wrap { padding: 60px 24px; }
  .hero-inner { grid-template-columns: 1fr; padding: 64px 24px 52px; gap: 40px; }
  .tech-grid { grid-template-columns: 1fr; gap: 32px; }
  .tech-grid.reverse { direction: ltr; }
  .coverage-grid { grid-template-columns: 1fr; }
}

/* 768px - Tablet portrait */
@media (max-width: 768px) {
  .nav-links, .nav-right > .nav-login, .nav-right > .nav-cta { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .package-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
}

/* 640px - Small tablet / large phone */
@media (max-width: 640px) {
  .section-h2 { font-size: 26px; letter-spacing: -.7px; }
  .section-sub { font-size: 15px; margin-bottom: 36px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .guarantees-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: 1fr; }
  .table-container { overflow-x: auto; }
  .comparison-table { min-width: 600px; }
}

/* 480px - Mobile */
@media (max-width: 480px) {
  .wrap { padding: 48px 16px; }
  .hero-h1 { font-size: 32px; letter-spacing: -1px; }
  .hero-sub { font-size: 15px; }
  .hero-feats { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-pri,
  .hero-btns .btn-out { width: 100%; justify-content: center; }
  .stats-inner { grid-template-columns: 1fr; }
  .guarantees-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-h2 { font-size: 28px; letter-spacing: -.8px; }
  .cta-inner { padding: 64px 20px; }
  .cta-btns { flex-direction: column; }
  .cta-btns .btn-pri,
  .cta-btns .btn-out { width: 100%; justify-content: center; }
  .nav-inner { padding: 0 16px; }
}

/* ───────── ADDITIONAL SHARED STYLES ───────── */

/* Active nav link */
.nav-links a.active { color: var(--indigo); }

/* Nav scrolled state */
.nav.scrolled { box-shadow: 0 1px 12px rgba(0,0,0,.06); }

/* Desktop-only utility */
@media (max-width: 768px) {
  .nav-cta.desktop-only { display: none; }
}

/* Trust badges in hero */
.trust-badges {
  display: flex; gap: 24px; margin-top: 32px; flex-wrap: wrap;
}
.trust-badge {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.trust-n {
  font-size: 22px; font-weight: 900; color: #fff; letter-spacing: -0.5px;
}
.trust-l {
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,.45);
  text-transform: uppercase; letter-spacing: .5px;
}

/* Hero visual decorative element */
.hero-visual-deco {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hero-visual-deco .speed-display {
  width: 280px; height: 280px; border-radius: 50%;
  background: rgba(79,70,229,.08);
  border: 2px solid rgba(79,70,229,.20);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative;
}
.hero-visual-deco .speed-display::before {
  content: '';
  position: absolute; inset: 12px; border-radius: 50%;
  border: 2px solid rgba(79,70,229,.12);
}
.hero-visual-deco .speed-display::after {
  content: '';
  position: absolute; inset: 24px; border-radius: 50%;
  background: rgba(79,70,229,.04);
  border: 1px solid rgba(79,70,229,.08);
}
.hero-visual-deco .speed-number {
  font-size: 64px; font-weight: 900; color: #fff; letter-spacing: -3px;
  line-height: 1; position: relative; z-index: 1;
}
.hero-visual-deco .speed-unit {
  font-size: 16px; font-weight: 700; color: #818cf8; letter-spacing: 1px;
  text-transform: uppercase; position: relative; z-index: 1;
}
.hero-visual-deco .speed-label {
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,.40);
  margin-top: 4px; position: relative; z-index: 1;
}
.hero-visual-deco .orbit {
  position: absolute; border-radius: 50%; border: 1px dashed rgba(79,70,229,.15);
  animation: spin 30s linear infinite;
}
.hero-visual-deco .orbit-1 { width: 340px; height: 340px; }
.hero-visual-deco .orbit-2 { width: 400px; height: 400px; animation-duration: 45s; animation-direction: reverse; }
.hero-visual-deco .orbit-dot {
  position: absolute; width: 8px; height: 8px; border-radius: 50%;
  background: var(--indigo); box-shadow: 0 0 12px rgba(79,70,229,.50);
}
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@media (max-width: 900px) {
  .hero-visual-deco { display: none; }
}

/* Comparison table containers */
.comparison-bg {
  background: #f7f7fc;
  padding: 80px 0;
}
.table-wrap {
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(15,23,42,.05);
}
.table-wrap .comparison-table { border-radius: 0; }
.muted-cell { color: var(--muted); }

/* Table check icon (inline SVG) */
.table-check {
  width: 20px; height: 20px;
  color: var(--green);
  vertical-align: middle;
}

/* Check icon (inline SVG) */
.check-icon {
  width: 20px; height: 20px; flex-shrink: 0;
  color: var(--green);
}

/* Recommended label (hidden - CSS ::before handles it) */
.recommended-label {
  display: none;
}

/* ───────── NEGOCIOS PAGE STYLES ───────── */

/* Benefit cards (negocios page) */
.benefit-card {
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 22px; padding: 32px 28px;
  box-shadow: 0 4px 22px rgba(15,23,42,.05);
  position: relative; overflow: hidden;
  transition: transform .22s, box-shadow .22s;
}
.benefit-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--indigo), #7c3aed);
}
.benefit-card:hover { transform: translateY(-5px); box-shadow: 0 20px 48px rgba(15,23,42,.10); }
.benefit-h3 { font-size: 18px; font-weight: 800; margin-bottom: 10px; letter-spacing: -.3px; }
.benefit-p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* Guarantee card extras */
.guarantee-ico {
  width: 50px; height: 50px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--indigo-light);
  border: 1px solid rgba(79,70,229,.18);
  margin: 0 auto 16px;
}
.guarantee-ico svg { width: 24px; height: 24px; }
.guarantee-h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.guarantee-p { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* Tech sections (negocios) */
.tech-wrap {
  max-width: var(--max); margin: 0 auto; padding: 80px 28px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: center;
}
@media (max-width: 800px) {
  .tech-wrap { grid-template-columns: 1fr; gap: 40px; padding: 60px 28px; }
}
.tech-wrap.reversed .tech-content { order: 1; }
.tech-wrap.reversed .tech-img { order: 2; }
@media (max-width: 800px) {
  .tech-wrap.reversed .tech-content { order: 2; }
  .tech-wrap.reversed .tech-img { order: 1; }
}
.tech-title {
  font-size: 32px; font-weight: 900; letter-spacing: -1.2px;
  line-height: 1.1; margin-bottom: 16px;
}
@media (max-width: 700px) { .tech-title { font-size: 26px; } }
.tech-desc {
  font-size: 15px; color: var(--muted); line-height: 1.72;
  margin-bottom: 24px;
}
.tech-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: 12px;
  background: var(--indigo); color: #fff;
  font-weight: 700; font-size: 15px;
  box-shadow: 0 8px 26px rgba(79,70,229,.42);
  transition: transform .2s, box-shadow .2s;
}
.tech-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(79,70,229,.48); }
.tech-img img {
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(15,23,42,.12);
  width: 100%; height: auto; object-fit: cover;
}

/* Dark footer (negocios & nosotros pages) */
.site-footer {
  background: #08080f; color: rgba(255,255,255,.72);
  padding: 0;
}
.site-footer .footer-inner {
  max-width: var(--max); margin: 0 auto; padding: 64px 28px 40px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px;
}
@media (max-width: 800px) { .site-footer .footer-inner { grid-template-columns: 1fr; gap: 36px; } }
.site-footer .footer-brand {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.site-footer .footer-brand .logo-img {
  background: transparent;
}
.footer-brand-name { font-size: 16px; font-weight: 800; color: #fff; }
.site-footer .footer-desc { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,.50); margin-bottom: 16px; }
.site-footer .footer-social { margin-top: 0; }
.footer-h4 {
  font-size: 14px; font-weight: 700; color: #fff;
  text-transform: uppercase; letter-spacing: .5px;
  margin-bottom: 18px;
}
.site-footer .footer-links { list-style: none; }
.site-footer .footer-links li { margin-bottom: 10px; }
.site-footer .footer-links a {
  font-size: 14px; color: rgba(255,255,255,.50);
  transition: color .15s;
}
.site-footer .footer-links a:hover { color: #fff; }
.newsletter-form {
  display: flex; gap: 8px;
}
.newsletter-form input {
  flex: 1; padding: 10px 14px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.06);
  color: #fff; font-family: inherit; font-size: 14px;
  outline: none;
  transition: border-color .15s;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.35); }
.newsletter-form input:focus { border-color: var(--indigo); }
.newsletter-form button {
  padding: 10px 18px; border-radius: 10px;
  background: var(--indigo); color: #fff;
  font-weight: 700; font-size: 14px;
  border: none; cursor: pointer;
  transition: transform .15s;
}
.newsletter-form button:hover { transform: translateY(-1px); }
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  max-width: var(--max); margin: 0 auto; padding: 24px 28px;
  margin-top: 48px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: rgba(255,255,255,.35);
}
.site-footer .footer-bottom p { font-size: 13px; }

/* ───────── NOSOTROS PAGE STYLES ───────── */

/* Section containers (nosotros) */
.section { padding: 100px 28px; }
.section-inner { max-width: var(--max); margin: 0 auto; }

/* Nosotros section-tag variant (pill style) */
.section .section-tag {
  padding: 6px 14px; border-radius: 999px;
  border: 1px solid rgba(79,70,229,.25);
  background: var(--indigo-light);
}
.section .section-tag::before { display: none; }

/* Hero section (nosotros page) */
.hero {
  background: linear-gradient(135deg, #08080f 0%, #0e0b28 55%, #091524 100%);
  position: relative; overflow: hidden;
  padding: 120px 28px 80px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(900px 600px at 15% 60%, rgba(79,70,229,.22), transparent 60%),
    radial-gradient(500px 350px at 85% 20%, rgba(124,58,237,.14), transparent 60%),
    radial-gradient(400px 280px at 70% 85%, rgba(16,185,129,.09), transparent 60%);
}
.hero .hero-inner {
  text-align: center;
  display: block;
  padding: 0;
}
.hero h1 {
  font-size: 56px; font-weight: 900; line-height: 1.05;
  letter-spacing: -2.2px; color: #fff; margin-bottom: 20px;
}
.hero h1 .hl { color: #818cf8; }
.hero .hero-sub {
  font-size: 18px; color: rgba(255,255,255,.6);
  margin-bottom: 48px; max-width: 600px; margin-left: auto; margin-right: auto;
}
.hero-stats {
  display: flex; justify-content: center; gap: 48px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-number {
  display: block; font-size: 40px; font-weight: 900;
  color: #fff; letter-spacing: -1px;
}
.hero-stat-label {
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.5);
  text-transform: uppercase; letter-spacing: .5px;
}

@media (max-width: 768px) {
  .hero { padding: 80px 20px 60px; }
  .hero h1 { font-size: 34px; letter-spacing: -1px; }
  .hero .hero-sub { font-size: 16px; }
  .hero-stats { gap: 24px; }
  .hero-stat-number { font-size: 28px; }
}

/* Mission/Vision */
.mission { background: #f8fafc; }
.mission-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
}
.mission-card {
  background: #fff; border-radius: 16px;
  padding: 36px 28px;
  border: 1px solid var(--line);
  transition: transform .3s, box-shadow .3s;
}
.mission-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
}
.mission-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--indigo-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.mission-icon svg { width: 26px; height: 26px; color: var(--indigo); }
.mission-card h3 {
  font-size: 20px; font-weight: 800; margin-bottom: 12px;
  letter-spacing: -.3px;
}
.mission-card p {
  font-size: 15px; color: var(--muted); line-height: 1.7;
}
@media (max-width: 768px) {
  .mission-grid { grid-template-columns: 1fr; }
}

/* Timeline (nosotros) */
.timeline-section { background: #fff; }
.timeline-layout {
  display: grid; grid-template-columns: 1fr 320px;
  gap: 56px; margin-top: 48px;
}
.section .timeline {
  position: relative; padding-left: 48px;
  max-width: none;
}
.section .timeline::before {
  left: 19px;
}
.timeline-number {
  position: absolute; left: -48px; top: 0;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--indigo); color: #fff;
  font-size: 16px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 4px #fff, 0 0 0 6px rgba(79,70,229,.2);
  z-index: 1;
}
.section .timeline-item {
  position: relative; margin-bottom: 40px;
  padding-bottom: 0;
}
.section .timeline-item:last-child { margin-bottom: 0; }
.section .timeline-item h3 {
  font-size: 18px; font-weight: 800; margin-bottom: 8px;
  letter-spacing: -.3px;
}
.section .timeline-item p {
  font-size: 15px; color: var(--muted); line-height: 1.7;
}

.stats-sidebar {
  display: flex; flex-direction: column; gap: 16px;
}
.stat-card {
  background: #f8fafc; border: 1px solid var(--line);
  border-radius: 16px; padding: 24px;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}
.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.stat-number {
  font-size: 32px; font-weight: 900; color: var(--indigo);
  letter-spacing: -1px; display: block;
}
.stat-label {
  font-size: 13px; font-weight: 600; color: var(--muted);
  margin-top: 4px;
}

@media (max-width: 900px) {
  .timeline-layout { grid-template-columns: 1fr; }
  .stats-sidebar {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}

/* Coverage (nosotros) */
.coverage { background: #f8fafc; }
.coverage-map-wrap {
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 8px 32px rgba(0,0,0,.06);
}
.coverage-map-wrap img {
  width: 100%; height: auto; display: block;
}
.section .coverage-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; margin-top: 48px; align-items: start;
}
.coverage-stats-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-bottom: 32px;
}
.section .coverage-stat {
  background: #fff; border-radius: 12px; padding: 20px;
  border: 1px solid var(--line); text-align: center;
}
.section .coverage-stat .stat-number {
  font-size: 28px; font-weight: 900; color: var(--indigo);
  letter-spacing: -1px; display: block;
}
.section .coverage-stat .stat-label {
  font-size: 12px; font-weight: 600; color: var(--muted);
  margin-top: 2px;
}
.coverage-info h3 {
  font-size: 20px; font-weight: 800; margin-bottom: 16px;
  letter-spacing: -.3px;
}
.coverage-list {
  list-style: none; margin-bottom: 24px;
}
.coverage-list li {
  padding: 8px 0; font-size: 14px; color: var(--muted);
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--line);
}
.coverage-list li:last-child { border-bottom: none; }
.tech-badges {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px;
}
.tech-badge {
  padding: 6px 14px; border-radius: 999px;
  background: var(--indigo-light); color: var(--indigo);
  font-size: 12px; font-weight: 700; letter-spacing: .5px;
}
/* Coverage map container */
.map-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #e5e7eb;
}
.map-container iframe {
  display: block;
  width: 100%;
  height: 420px;
}
.map-legend {
  position: absolute; bottom: 14px; left: 14px;
  display: flex; gap: 12px; flex-wrap: wrap;
  padding: 10px 16px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
  z-index: 2;
}
.map-legend-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: var(--text);
}
.map-dot {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,.1);
}
.map-dot--fiber { background: var(--indigo); }
.map-dot--radio { background: var(--green); }
.map-dot--tower { background: #f59e0b; }

/* Coverage list items use CSS checkmarks */
.coverage-list li::before {
  content: '';
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
  background: rgba(16,185,129,.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 768px) {
  .section .coverage-grid { grid-template-columns: 1fr; }
  .map-container iframe { height: 300px; }
}

/* Values (nosotros page overrides) */
.values { background: #fff; }
.section .values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 48px;
}
.section .value-card {
  background: #f8fafc; border: 1px solid var(--line);
  border-radius: 16px; padding: 32px 24px;
  text-align: center;
}
.value-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--indigo-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.value-icon svg { width: 28px; height: 28px; color: var(--indigo); }
.section .value-card h3 {
  font-size: 18px; font-weight: 800; margin-bottom: 10px;
  letter-spacing: -.3px;
}
.section .value-card p {
  font-size: 14px; color: var(--muted); line-height: 1.7;
}
@media (max-width: 900px) {
  .section .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .section .values-grid { grid-template-columns: 1fr; }
}

/* Certifications */
.certifications { background: #f8fafc; }
.cert-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 48px;
}
.cert-item {
  background: #fff; border: 1px solid var(--line);
  border-radius: 16px; padding: 32px 20px;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}
.cert-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
}
.cert-placeholder {
  width: 120px; height: 80px; border-radius: 12px;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: #fff;
  letter-spacing: .5px;
}
.cert-placeholder.iso { background: linear-gradient(135deg, #5c1a5e, #8b3a8f); }
.cert-placeholder.tplink { background: linear-gradient(135deg, #e6007e, #ff4da6); }
.cert-placeholder.syscom { background: linear-gradient(135deg, #5c1a5e, #7c3aed); }
.cert-placeholder.vsol { background: linear-gradient(135deg, #e6007e, #f97316); }
.cert-item p {
  font-size: 14px; font-weight: 600; color: var(--muted);
}
@media (max-width: 768px) {
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .cert-grid { grid-template-columns: 1fr; }
}

/* Social Responsibility */
.social-resp { background: #fff; }
.social-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
}
.social-card {
  background: #f8fafc; border: 1px solid var(--line);
  border-radius: 16px; padding: 36px 28px;
  transition: transform .3s, box-shadow .3s;
}
.social-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
}
.social-card-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(16,185,129,.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.social-card-icon svg { width: 26px; height: 26px; color: var(--green); }
.social-card h3 {
  font-size: 18px; font-weight: 800; margin-bottom: 10px;
  letter-spacing: -.3px;
}
.social-card p {
  font-size: 14px; color: var(--muted); line-height: 1.7;
  margin-bottom: 16px;
}
.social-stat-tag {
  display: inline-block; padding: 4px 12px;
  border-radius: 999px; background: rgba(16,185,129,.1);
  color: var(--green); font-size: 12px; font-weight: 700;
}
@media (max-width: 768px) {
  .social-grid { grid-template-columns: 1fr; }
}

/* CTA Final (nosotros) */
.cta-final {
  background: linear-gradient(135deg, #08080f 0%, #0e0b28 55%, #091524 100%);
  position: relative; overflow: hidden;
  padding: 100px 28px;
  text-align: center;
}
.cta-final::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(600px 400px at 50% 50%, rgba(79,70,229,.2), transparent 60%);
}
.cta-final-inner {
  position: relative; z-index: 1;
  max-width: 700px; margin: 0 auto;
}
.cta-final h2 {
  font-size: 40px; font-weight: 900; color: #fff;
  letter-spacing: -1.5px; margin-bottom: 16px; line-height: 1.1;
}
.cta-final p {
  font-size: 17px; color: rgba(255,255,255,.6);
  margin-bottom: 36px;
}
.cta-buttons {
  display: flex; gap: 16px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 32px;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 12px;
  background: var(--indigo); color: #fff;
  font-weight: 700; font-size: 16px;
  box-shadow: 0 4px 14px rgba(79,70,229,.30);
  transition: transform .15s, box-shadow .15s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(79,70,229,.4);
}
.btn-primary svg { width: 20px; height: 20px; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 12px;
  background: rgba(255,255,255,.08); color: #fff;
  font-weight: 700; font-size: 16px;
  border: 1px solid rgba(255,255,255,.15);
  transition: background .15s;
}
.btn-secondary:hover { background: rgba(255,255,255,.14); }
.cta-features {
  display: flex; gap: 24px; justify-content: center;
  flex-wrap: wrap;
}
.cta-feature {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.5);
}
.cta-feature svg { width: 16px; height: 16px; color: var(--green); }

/* Footer sections (nosotros dark footer) */
.footer-social {
  display: flex; gap: 12px;
}
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.footer-social a:hover { background: rgba(255,255,255,.12); }
.footer-social svg { width: 18px; height: 18px; color: rgba(255,255,255,.5); }
.footer-section h4 {
  font-size: 14px; font-weight: 700; color: #fff;
  margin-bottom: 16px; text-transform: uppercase;
  letter-spacing: .5px;
}
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 10px; }
.footer-section ul a {
  font-size: 14px; color: rgba(255,255,255,.5);
  transition: color .15s;
}
.footer-section ul a:hover { color: #fff; }
.footer-newsletter-form {
  display: flex; gap: 8px; margin-top: 8px;
}
.footer-newsletter-form input {
  flex: 1; padding: 10px 14px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.06);
  color: #fff; font-size: 14px; font-family: inherit;
  outline: none;
}
.footer-newsletter-form input::placeholder { color: rgba(255,255,255,.3); }
.footer-newsletter-form input:focus { border-color: var(--indigo); }
.footer-newsletter-form button {
  padding: 10px 18px; border-radius: 8px;
  background: var(--indigo); color: #fff; border: none;
  font-size: 14px; font-weight: 700; cursor: pointer;
  font-family: inherit;
  transition: background .15s;
}
.footer-newsletter-form button:hover { background: #4338ca; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-size: 13px; color: rgba(255,255,255,.4);
  transition: color .15s;
}
.footer-legal a:hover { color: #fff; }
.site-footer .footer-brand h3 {
  font-size: 18px; font-weight: 800; color: #fff;
  margin-bottom: 12px;
}
.site-footer .footer-brand p {
  font-size: 14px; line-height: 1.7; margin-bottom: 20px;
}

/* Hamburger with spans (nosotros) */
.hamburger span {
  display: block; width: 20px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ═══════════ NETMONITOR SHOWCASE ═══════════ */
.monitor-showcase {
  background: linear-gradient(135deg, #0f0a2e 0%, #1a1145 50%, #0f0a2e 100%);
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}
.monitor-showcase::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 30% 40%, rgba(79,70,229,.15), transparent),
              radial-gradient(ellipse 50% 40% at 80% 60%, rgba(99,102,241,.1), transparent);
  pointer-events: none;
}
.monitor-showcase-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.monitor-content { color: #fff; }
.monitor-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(79,70,229,.15); border: 1px solid rgba(79,70,229,.3);
  border-radius: 100px; padding: 6px 16px;
  font-size: 13px; font-weight: 600; color: #a5b4fc;
  margin-bottom: 24px;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e;
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,.5); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}
.monitor-h2 {
  font-size: clamp(28px, 4vw, 42px); font-weight: 800;
  line-height: 1.15; margin-bottom: 20px; color: #fff;
}
.monitor-h2 .hl {
  background: linear-gradient(90deg, #818cf8, #a78bfa);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.monitor-desc {
  font-size: 16px; line-height: 1.7;
  color: rgba(255,255,255,.6); margin-bottom: 36px;
  max-width: 480px;
}
.monitor-features {
  display: flex; flex-direction: column; gap: 20px;
  margin-bottom: 36px;
}
.monitor-feat {
  display: flex; gap: 16px; align-items: flex-start;
}
.monitor-feat-ico {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(79,70,229,.2); border: 1px solid rgba(79,70,229,.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.monitor-feat-ico svg {
  width: 22px; height: 22px; color: #818cf8;
}
.monitor-feat-title {
  font-size: 15px; font-weight: 700; color: #fff;
  margin-bottom: 2px;
}
.monitor-feat-desc {
  font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.5;
}
.monitor-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
}
.btn-pri {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 12px;
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  color: #fff; font-weight: 700; font-size: 15px;
  text-decoration: none; transition: transform .15s, box-shadow .15s;
}
.btn-pri:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(79,70,229,.45);
}
.btn-out {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 12px;
  background: transparent; color: #a5b4fc;
  font-weight: 700; font-size: 15px;
  text-decoration: none;
  border: 1px solid rgba(165,180,252,.3);
  transition: background .15s, border-color .15s;
}
.btn-out:hover {
  background: rgba(165,180,252,.08);
  border-color: rgba(165,180,252,.5);
}

/* Mockup window */
.monitor-mockup { perspective: 1000px; }
.mockup-window {
  background: #1e1b4b; border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.06);
  transform: rotateY(-4deg) rotateX(2deg);
  transition: transform .4s;
}
.mockup-window:hover { transform: rotateY(0) rotateX(0); }
.mockup-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mockup-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.mockup-dot--red { background: #ef4444; }
.mockup-dot--yellow { background: #eab308; }
.mockup-dot--green { background: #22c55e; }
.mockup-url {
  flex: 1; text-align: center;
  font-size: 12px; color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.04); border-radius: 6px;
  padding: 4px 12px; margin-left: 8px;
}
.mockup-body { padding: 20px; }
.mockup-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
}
.mockup-logo {
  width: 80px; height: 10px; border-radius: 4px;
  background: linear-gradient(90deg, #4f46e5, #818cf8);
}
.mockup-nav-dots { display: flex; gap: 6px; }
.mockup-nav-dots span {
  width: 24px; height: 6px; border-radius: 3px;
  background: rgba(255,255,255,.1);
}
.mockup-stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin-bottom: 20px;
}
.mockup-stat-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px; padding: 14px;
  text-align: center;
}
.mockup-stat--online {
  border-color: rgba(34,197,94,.2);
  background: rgba(34,197,94,.06);
}
.mockup-stat-label {
  font-size: 11px; color: rgba(255,255,255,.4);
  margin-bottom: 4px; text-transform: uppercase;
  letter-spacing: .5px;
}
.mockup-stat-value {
  font-size: 22px; font-weight: 800; color: #fff;
}
.mockup-stat-value--green { color: #22c55e; }
.mockup-chart {
  background: rgba(255,255,255,.02);
  border-radius: 8px; padding: 12px;
  margin-bottom: 16px;
}
.mockup-chart svg { width: 100%; height: 60px; display: block; }
.mockup-branches {
  display: flex; flex-direction: column; gap: 8px;
}
.mockup-branch {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: rgba(255,255,255,.6);
  padding: 8px 12px; border-radius: 8px;
  background: rgba(255,255,255,.03);
}
.mockup-branch-dot {
  width: 8px; height: 8px; border-radius: 50%;
  flex-shrink: 0;
}
.mockup-branch-dot--on { background: #22c55e; }
.mockup-branch-dot--warn { background: #eab308; }
.mockup-branch-status {
  margin-left: auto; font-size: 11px;
  font-weight: 600; color: #22c55e;
}
.mockup-branch-status--warn { color: #eab308; }

/* Monitor showcase responsive */
@media (max-width: 900px) {
  .monitor-showcase-inner {
    grid-template-columns: 1fr; gap: 40px;
  }
  .monitor-mockup { order: -1; }
  .mockup-window { transform: none; }
}

@media (max-width: 768px) {
  .site-footer .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .site-footer .footer-bottom { flex-direction: column; text-align: center; }
}
