/* ============================
   Multitech — Design System
   ============================ */
:root,
[data-theme="dark"] {
  --bg: #060810;
  --bg-2: #0a0d14;
  --surface: #0d1018;
  --surface-2: #11151e;
  --border: rgba(255,255,255,0.10);
  --border-strong: rgba(255,255,255,0.18);

  --text: #f4f6fb;
  --text-soft: #b8bdc9;
  --text-muted: #7a8194;

  --blue: #2196f3;
  --blue-bright: #3ba7ff;
  --blue-deep: #1565c0;
  --blue-glow: rgba(33,150,243,0.5);
  --yellow: #f4b400;
  --yellow-bright: #ffc933;
  --yellow-deep: #c98a00;
  --yellow-glow: rgba(244,180,0,0.45);

  --grad-blue: linear-gradient(135deg, #3ba7ff 0%, #2196f3 60%, #1976d2 100%);
  --grad-yellow: linear-gradient(135deg, #ffd54a 0%, #f4b400 60%, #c98a00 100%);
  --grad-mixed: linear-gradient(135deg, #3ba7ff 0%, #2196f3 50%, #f4b400 100%);

  /* shadows nullified (flat design) */
  --shadow-glow-blue: none;
  --shadow-glow-yellow: none;
  --shadow-card: none;

  --nav-bg: rgba(6,8,16,0.82);
  --bg-radial-1: rgba(33,150,243,0.10);
  --bg-radial-2: rgba(244,180,0,0.10);
  --bg-rad-a: #0a1828;
  --bg-rad-b: #1a1308;
  --particle-blue: rgba(59,167,255,0.65);
  --particle-yellow: rgba(244,180,0,0.65);
  --particle-link: 59,167,255;
  --cable-color: 244,180,0;

  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --container: 1200px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

[data-theme="light"] {
  --bg: #fafbfd;
  --bg-2: #f1f4f9;
  --surface: #ffffff;
  --surface-2: #f8fafc;
  --border: rgba(15,23,42,0.10);
  --border-strong: rgba(15,23,42,0.20);

  --text: #0b1220;
  --text-soft: #475569;
  --text-muted: #64748b;

  --blue: #1976d2;
  --blue-bright: #1565c0;
  --blue-deep: #0d47a1;
  --blue-glow: rgba(33,150,243,0.35);
  --yellow: #d49a00;
  --yellow-bright: #b88200;
  --yellow-deep: #8a6500;

  --grad-blue: linear-gradient(135deg, #3ba7ff 0%, #1976d2 60%, #0d47a1 100%);
  --grad-yellow: linear-gradient(135deg, #ffc933 0%, #d49a00 60%, #8a6500 100%);

  --shadow-glow-blue: none;
  --shadow-glow-yellow: none;
  --shadow-card: none;

  --nav-bg: rgba(255,255,255,0.88);
  --bg-radial-1: rgba(33,150,243,0.08);
  --bg-radial-2: rgba(244,180,0,0.10);
  --bg-rad-a: #dbeafe;
  --bg-rad-b: #fef3c7;
  --particle-blue: rgba(25,118,210,0.45);
  --particle-yellow: rgba(212,154,0,0.55);
  --particle-link: 25,118,210;
  --cable-color: 212,154,0;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background .35s var(--ease), color .35s var(--ease);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================
   Animated background
   ============================ */
.bg-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: radial-gradient(circle at 20% 10%, var(--bg-rad-a) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, var(--bg-rad-b) 0%, transparent 50%),
              var(--bg);
  transition: background .35s var(--ease);
}
#network-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.bg-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 50% 0%, var(--bg-radial-1), transparent 70%),
    radial-gradient(600px 300px at 90% 30%, var(--bg-radial-2), transparent 70%);
  pointer-events: none;
}

/* ============================
   Typography helpers
   ============================ */
.grad-text {
  background: var(--grad-blue);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.grad-text-yellow {
  background: var(--grad-yellow);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================
   Buttons
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--grad-blue);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border-color: var(--border-strong);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--blue);
  color: var(--blue-bright);
}

/* ============================
   Navigation
   ============================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all .3s var(--ease);
}
.nav.scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; }
.brand-logo {
  height: 115px;
  width: auto;
  color: var(--text);
}

/* Use the transparent logo in both themes */
.brand-logo-light { display: none !important; }
.brand-logo-dark { display: block; }

[data-theme="light"] .brand-logo { filter: none; }

/* Theme toggle */
.nav-cta { display: flex; align-items: center; gap: 10px; }
.theme-toggle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all .25s var(--ease);
  position: relative;
}
[data-theme="light"] .theme-toggle {
  background: rgba(15,23,42,0.04);
}
.theme-toggle:hover {
  border-color: var(--blue);
  color: var(--blue-bright);
  transform: rotate(15deg);
}
.theme-toggle svg { transition: opacity .2s var(--ease), transform .35s var(--ease); }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
[data-theme="light"] .theme-toggle .icon-sun { display: block; }
[data-theme="light"] .theme-toggle .icon-moon { display: none; }

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  transition: color .2s var(--ease);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 2px;
  background: var(--grad-blue);
  transition: width .25s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .25s var(--ease);
}

/* ============================
   Hero
   ============================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -5%;
  right: -12%;
  width: 85%;
  height: 110%;
  background: var(--yellow);
  -webkit-mask: url('assets/cable.svg') no-repeat center / contain;
  mask: url('assets/cable.svg') no-repeat center / contain;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
  transform: rotate(-6deg);
  animation: cable-drift 14s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -15%;
  width: 55%;
  height: 70%;
  background: var(--blue);
  -webkit-mask: url('assets/cable.svg') no-repeat center / contain;
  mask: url('assets/cable.svg') no-repeat center / contain;
  opacity: 0.10;
  pointer-events: none;
  z-index: 0;
  transform: scaleX(-1) rotate(8deg);
}
@keyframes cable-drift {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50% { transform: rotate(-7deg) translateY(-6px); }
}
.hero-inner { position: relative; z-index: 1; }
.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 56px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.hero-content .hero-sub { margin-left: auto; margin-right: auto; }
.hero-cta { justify-content: center; }
.hero-meta { justify-content: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-soft);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  margin-bottom: 24px;
}
.dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  border: 2px solid rgba(34,197,94,0.25);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(.9); }
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.4rem, 5.6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
}
.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--text-soft);
  margin: 0 0 36px;
  max-width: 540px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
}
.meta-item {
  display: flex;
  flex-direction: column;
}
.meta-item strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--grad-blue);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.meta-item span {
  font-size: 13px;
  color: var(--text-muted);
}
.meta-divider {
  width: 1px;
  height: 32px;
  background: var(--border-strong);
}

/* Hero visual */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.speed-card {
  background: linear-gradient(180deg, rgba(20,24,32,0.9) 0%, rgba(10,13,18,0.9) 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 40px;
  row-gap: 18px;
  align-items: center;
}
.speed-card::before {
  content: '';
  position: absolute;
  top: 0; left: 36px; right: 36px;
  height: 3px;
  background: var(--yellow);
  opacity: 0.6;
  border-radius: 0 0 4px 4px;
}
.speed-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  grid-column: 1 / -1;
  width: 100%;
}
.speed-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.live-dot {
  width: 8px; height: 8px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
.speed-status {
  font-size: 12px;
  font-weight: 600;
  color: #22c55e;
  padding: 4px 10px;
  background: rgba(34,197,94,0.1);
  border-radius: 999px;
}
.speed-display {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
}
.speed-number {
  font-family: 'Space Grotesk', sans-serif;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.speed-number span:first-child {
  font-size: 5.5rem;
  font-weight: 700;
  background: var(--grad-blue);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.speed-unit {
  font-size: 1.2rem;
  color: var(--text-muted);
  font-weight: 600;
}
.speed-bars {
  display: flex;
  gap: 4px;
  margin-top: 4px;
  height: 28px;
  align-items: flex-end;
}
.speed-bars span {
  width: 6px;
  background: var(--grad-blue);
  border-radius: 2px;
  animation: bar 1.4s ease-in-out infinite;
}
.speed-bars span:nth-child(1) { height: 20%; animation-delay: 0s; }
.speed-bars span:nth-child(2) { height: 60%; animation-delay: .1s; }
.speed-bars span:nth-child(3) { height: 45%; animation-delay: .2s; }
.speed-bars span:nth-child(4) { height: 80%; animation-delay: .3s; }
.speed-bars span:nth-child(5) { height: 100%; animation-delay: .4s; }
.speed-bars span:nth-child(6) { height: 70%; animation-delay: .5s; }
.speed-bars span:nth-child(7) { height: 90%; animation-delay: .6s; }
.speed-bars span:nth-child(8) { height: 55%; animation-delay: .7s; }
.speed-bars span:nth-child(9) { height: 75%; animation-delay: .8s; }
.speed-bars span:nth-child(10){ height: 40%; animation-delay: .9s; }
@keyframes bar {
  0%, 100% { transform: scaleY(1); opacity: .8; }
  50% { transform: scaleY(.5); opacity: 1; }
}
.speed-foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 0 0 32px;
  border-left: 1px solid var(--border);
  align-self: stretch;
  align-content: center;
}
.speed-stat { display: flex; flex-direction: column; gap: 6px; }
.speed-stat-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.speed-stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: linear-gradient(135deg, rgba(20,24,32,0.95), rgba(15,18,24,0.95));
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(14px);
  animation: float 6s ease-in-out infinite;
}
.card-1 { top: -20px; right: -10px; animation-delay: 0s; transform: rotate(4deg); }
.card-2 { bottom: -10px; left: -30px; animation-delay: 2s; transform: rotate(-3deg); }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50% { transform: translateY(-10px) rotate(var(--r, 0deg)); }
}
.card-1 { --r: 4deg; }
.card-2 { --r: -3deg; }
.fc-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(33,150,243,0.15);
  color: var(--blue-bright);
}
.fc-icon.yellow {
  background: rgba(244,180,0,0.15);
  color: var(--yellow-bright);
}
.fc-title { font-size: 14px; font-weight: 600; color: var(--text); }
.fc-sub { font-size: 12px; color: var(--text-muted); }

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--blue-bright), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -40px; left: 0;
  width: 100%; height: 40px;
  background: linear-gradient(180deg, transparent, var(--blue-bright));
  animation: scroll-down 2s linear infinite;
}
@keyframes scroll-down {
  to { top: 100%; }
}

/* ============================
   Marquee
   ============================ */
.marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 18px 0;
  background: rgba(10,13,18,0.6);
  backdrop-filter: blur(10px);
}
.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--text-soft);
}
.marquee-track .dot-sep { color: var(--blue); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================
   Sections
   ============================ */
.section {
  padding: 120px 0;
  position: relative;
}
.section-dark {
  background:
    radial-gradient(800px 500px at 50% 0%, rgba(244,180,0,0.06), transparent 60%),
    rgba(8,10,14,0.5);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 60%;
  height: 60%;
  background: var(--yellow);
  -webkit-mask: url('assets/cable.svg') no-repeat center / contain;
  mask: url('assets/cable.svg') no-repeat center / contain;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}
.section-dark::after {
  content: '';
  position: absolute;
  bottom: -15%;
  right: -10%;
  width: 55%;
  height: 60%;
  background: var(--blue);
  -webkit-mask: url('assets/cable.svg') no-repeat center / contain;
  mask: url('assets/cable.svg') no-repeat center / contain;
  opacity: 0.07;
  transform: scaleX(-1);
  pointer-events: none;
  z-index: 0;
}
.section-dark .container { position: relative; z-index: 1; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--yellow-bright);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 16px;
  padding: 6px 14px;
  border: 1px solid rgba(244,180,0,0.35);
  border-radius: 999px;
  background: rgba(244,180,0,0.08);
}
.section-tag::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--yellow);
  border-radius: 50%;
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-soft);
  margin: 0;
}

/* ============================
   Benefits
   ============================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.benefit {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.benefit::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-bright), transparent);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.benefit:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  background: linear-gradient(180deg, rgba(33,150,243,0.05), rgba(255,255,255,0.01));
}
.benefit:hover::before { opacity: 1; }
.benefit-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(33,150,243,0.12);
  color: var(--blue-bright);
  margin-bottom: 20px;
  transition: all .3s var(--ease);
}
.benefit-icon.yellow {
  background: rgba(244,180,0,0.12);
  color: var(--yellow-bright);
}
.benefit:hover .benefit-icon {
  transform: scale(1.08) rotate(-3deg);
}
.benefit h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 10px;
}
.benefit p {
  font-size: 0.95rem;
  color: var(--text-soft);
  margin: 0;
}

/* ============================
   Plans
   ============================ */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
@media (min-width: 961px) {
  .plans-grid > .plan { min-height: 100%; }
}
.plan {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  position: relative;
  transition: all .35s var(--ease);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.plan::before {
  content: '';
  position: absolute;
  top: 0; left: 28px; right: 28px;
  height: 3px;
  background: var(--blue);
  border-radius: 0 0 4px 4px;
  opacity: 0.45;
  transition: all .25s var(--ease);
}
.plan:hover {
  transform: translateY(-6px);
  border-color: var(--yellow);
}
.plan:hover::before { opacity: 1; background: var(--yellow); }
.plan.featured {
  background: linear-gradient(180deg, rgba(244,180,0,0.10), var(--surface));
  border-color: var(--yellow);
  border-width: 2px;
  transform: scale(1.02);
}
.plan.featured::before {
  background: var(--yellow);
  opacity: 1;
  height: 4px;
}
.plan.featured:hover {
  transform: scale(1.02) translateY(-6px);
}
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-yellow);
  color: #1a1308;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  border: 1px solid rgba(0,0,0,0.1);
}
.plan-head { margin-bottom: 24px; }
.plan-name {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-bright);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}
.plan.featured .plan-name { color: var(--yellow-bright); }
.plan-speed {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.plan-speed span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 4px;
}
.plan-desc {
  font-size: 0.95rem;
  color: var(--text-soft);
  margin: 0;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding: 20px 0;
  margin-bottom: 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.plan-price .currency {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-muted);
}
.plan-price .amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.plan-price .period {
  font-size: 1rem;
  color: var(--text-muted);
  margin-left: 4px;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex: 1;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-soft);
}
.plan-features svg {
  color: var(--blue-bright);
  flex-shrink: 0;
}
.plan.featured .plan-features svg { color: var(--yellow-bright); }

.plans-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 24px auto 0;
  max-width: 640px;
}

/* ============================
   Corporate plan card
   ============================ */
.plan-corporate {
  position: relative;
  margin-top: 64px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-strong);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 0;
  background:
    linear-gradient(135deg, rgba(33,150,243,0.08) 0%, rgba(244,180,0,0.06) 100%),
    linear-gradient(180deg, var(--surface), var(--surface-2));
  box-shadow: var(--shadow-card);
}

.plan-corporate-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}
.orb-1 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, var(--blue) 0%, transparent 70%);
  top: -80px; left: -80px;
}
.orb-2 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, var(--yellow) 0%, transparent 70%);
  bottom: -60px; right: -60px;
  opacity: 0.35;
}
.grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(33,150,243,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33,150,243,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 30%, transparent 80%);
}

.plan-corporate-content {
  position: relative;
  z-index: 1;
  padding: 48px 44px;
}

.plan-corporate-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(244,180,0,0.12);
  border: 1px solid rgba(244,180,0,0.3);
  color: var(--yellow-bright);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.plan-corporate-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}

.plan-corporate-desc {
  font-size: 1rem;
  color: var(--text-soft);
  margin: 0 0 28px;
  max-width: 540px;
}

.plan-corporate-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  margin: 0 0 32px;
}
.plan-corporate-features li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.plan-corporate-features strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 2px;
}
.plan-corporate-features li > div > span {
  display: block;
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.4;
}
.cf-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(33,150,243,0.12);
  color: var(--blue-bright);
  border: 1px solid rgba(33,150,243,0.18);
  line-height: 0;
}
.cf-icon svg {
  display: block;
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.plan-corporate-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.plan-corporate-call {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-muted);
  transition: color .2s var(--ease);
}
.plan-corporate-call:hover { color: var(--text); }
.plan-corporate-call strong { color: var(--text); }

.plan-corporate-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border-left: 1px solid var(--border-strong);
}
.cstat {
  background:
    linear-gradient(135deg, rgba(33,150,243,0.04), transparent 60%),
    var(--surface);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  position: relative;
  overflow: hidden;
}
.cstat::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 32px; height: 2px;
  background: var(--grad-blue);
  border-radius: 0 0 4px 0;
}
.cstat:nth-child(2)::before { background: var(--grad-yellow); }
.cstat:nth-child(3)::before { background: var(--grad-yellow); }
.cstat:nth-child(4)::before { background: var(--grad-blue); }
.cstat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  background: var(--grad-blue);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.cstat-value small {
  font-size: 0.55em;
  font-weight: 600;
  margin-left: 2px;
}
.cstat:nth-child(2) .cstat-value,
.cstat:nth-child(3) .cstat-value { background: var(--grad-yellow); -webkit-background-clip: text; background-clip: text; }
.cstat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

@media (max-width: 960px) {
  .plan-corporate { grid-template-columns: 1fr; }
  .plan-corporate-content { padding: 40px 28px; }
  .plan-corporate-features { grid-template-columns: 1fr; }
  .plan-corporate-stats { border-left: 0; border-top: 1px solid var(--border-strong); }
}
@media (max-width: 480px) {
  .plan-corporate-stats { grid-template-columns: 1fr; }
  .cstat { padding: 24px; }
}

[data-theme="light"] .plan-corporate { background: linear-gradient(135deg, rgba(33,150,243,0.05), rgba(244,180,0,0.04)), #ffffff; }
[data-theme="light"] .cstat { background: #ffffff; }
[data-theme="light"] .orb-1 { opacity: 0.3; }
[data-theme="light"] .orb-2 { opacity: 0.25; }

/* ============================
   Coverage
   ============================ */
.coverage-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.coverage-content .section-tag,
.coverage-content .section-title,
.coverage-content .section-sub {
  text-align: left;
}
.coverage-content .section-title { font-size: clamp(1.8rem, 3.4vw, 2.8rem); }
.coverage-content .section-sub { margin-bottom: 28px; }

.coverage-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 32px;
}
.coverage-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.98rem;
  color: var(--text-soft);
}
.check-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(33,150,243,0.15);
  color: var(--blue-bright);
  display: grid; place-items: center;
  flex-shrink: 0;
}

.coverage-visual {
  position: relative;
}
.map-card {
  position: relative;
  aspect-ratio: 1;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.map-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(1.1);
  transition: filter .35s var(--ease);
}
@keyframes pin-pulse {
  0% { transform: scale(0.4); opacity: .6; }
  100% { transform: scale(3); opacity: 0; }
}
.map-label {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  padding: 14px 18px;
  background: rgba(10,13,18,0.82);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  backdrop-filter: blur(14px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
  pointer-events: auto;
}
.map-coords {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  color: var(--blue-bright);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.map-live-dot {
  width: 10px; height: 10px;
  background: #22c55e;
  border: 2px solid rgba(34,197,94,0.3);
  border-radius: 50%;
  animation: pulse 2s infinite;
  display: inline-block;
}
.map-place {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}
.map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--blue-bright);
  width: fit-content;
  transition: gap .2s var(--ease);
}
.map-link:hover { gap: 10px; }
[data-theme="light"] .map-label {
  background: rgba(255,255,255,0.92);
  border-color: var(--border-strong);
}
[data-theme="light"] .map-place { color: var(--text); }

/* ============================
   CTA
   ============================ */
.cta-section { padding: 80px 0; }
.cta-card {
  background:
    radial-gradient(circle at 0% 50%, rgba(33,150,243,0.2), transparent 50%),
    radial-gradient(circle at 100% 50%, rgba(244,180,0,0.15), transparent 50%),
    linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
}
.cta-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.cta-content p {
  color: var(--text-soft);
  margin: 0;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ============================
   Footer
   ============================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 80px 0 32px;
  background: rgba(8,10,14,0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .footer-logo {
  height: 56px;
  width: auto;
  margin-bottom: 20px;
}
.footer-tagline {
  color: var(--text-soft);
  margin: 0 0 24px;
  max-width: 320px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text-soft);
  display: grid; place-items: center;
  transition: all .25s var(--ease);
}
.footer-social a:hover {
  background: var(--grad-blue);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 18px;
}
.footer-col ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 12px;
}
.footer-col ul li a {
  color: var(--text-soft);
  transition: color .2s var(--ease);
}
.footer-col ul li a:hover { color: var(--blue-bright); }
.footer-col svg { color: var(--text-muted); flex-shrink: 0; }

.footer-hours li {
  display: flex !important;
  justify-content: space-between;
  gap: 12px;
}
.footer-hours .emergency {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  color: var(--blue-bright);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
}
.footer-bottom p { margin: 0; }

/* ============================
   Floating WhatsApp
   ============================ */
.float-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 62px; height: 62px;
  background: linear-gradient(135deg, #25d366 0%, #1ebe57 100%);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 90;
  transition: transform .25s var(--ease);
  border: 2px solid rgba(255,255,255,0.2);
}
.float-wa:hover {
  transform: scale(1.08) rotate(-4deg);
}
.float-wa:hover .wa-tooltip { opacity: 1; transform: translateX(0); pointer-events: auto; }
.wa-pulse {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: #25d366;
  opacity: 0.5;
  animation: pin-pulse 2.2s ease-out infinite;
  z-index: -1;
}
.wa-online {
  position: absolute;
  top: 4px; right: 4px;
  width: 14px; height: 14px;
  background: #22c55e;
  border: 2px solid #fff;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translate(8px, -50%);
  background: #0b1220;
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  border: 1px solid var(--border-strong);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s var(--ease), transform .25s var(--ease);
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #0b1220;
}
[data-theme="light"] .wa-tooltip { background: #ffffff; color: #0b1220; border: 1px solid var(--border); }
[data-theme="light"] .wa-tooltip::after { border-left-color: #ffffff; }

/* WhatsApp-branded button variant */
.btn-wa {
  background: linear-gradient(135deg, #25d366 0%, #1ebe57 100%);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-wa:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

/* WhatsApp green icon in lists */
.wa-green { color: #25d366 !important; flex-shrink: 0; }

/* ============================
   WhatsApp Quick Chat section
   ============================ */
.chat-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background:
    radial-gradient(circle at 0% 0%, rgba(37,211,102,0.08), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(33,150,243,0.08), transparent 60%),
    linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  box-shadow: var(--shadow-card);
}
.chat-side .section-title {
  text-align: left;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 14px;
}
.chat-side .section-sub { text-align: left; margin-bottom: 24px; }

.chat-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(37,211,102,0.15);
  border: 1px solid rgba(37,211,102,0.3);
  color: #25d366;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.chat-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 24px;
}
.chat-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-soft);
}
.chat-features svg { color: #25d366; flex-shrink: 0; }

.chat-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-soft);
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all .2s var(--ease);
}
.chat-phone:hover { border-color: var(--blue); color: var(--text); }
.chat-phone strong { color: var(--text); }
[data-theme="light"] .chat-phone { background: rgba(15,23,42,0.04); }

.chat-form {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-card);
}
.chat-form-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}
.chat-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #1ebe57);
  color: #fff;
  display: grid; place-items: center;
}
.chat-form-title { font-weight: 700; font-size: 15px; color: var(--text); }
.chat-form-status {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
}
.live-dot.green {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
}

.chat-field { display: flex; flex-direction: column; gap: 6px; }
.chat-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.chat-field input,
.chat-field select,
.chat-field textarea {
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  padding: 12px 14px;
  outline: none;
  transition: all .2s var(--ease);
  resize: vertical;
  min-height: 44px;
}
.chat-field input::placeholder,
.chat-field textarea::placeholder { color: var(--text-muted); }
.chat-field input:focus,
.chat-field select:focus,
.chat-field textarea:focus {
  border-color: #25d366;
  outline: 2px solid rgba(37,211,102,0.25);
  outline-offset: 1px;
}
.chat-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a8194' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}
[data-theme="light"] .chat-field input,
[data-theme="light"] .chat-field select,
[data-theme="light"] .chat-field textarea {
  background: #ffffff;
}

.chat-disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin: 0;
}

@media (max-width: 960px) {
  .chat-card { grid-template-columns: 1fr; padding: 40px 28px; gap: 32px; }
}

/* ============================
   Reveal animation
   ============================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================
   Responsive
   ============================ */
@media (max-width: 960px) {
  .hero-inner { gap: 40px; }
  .hero-visual { max-width: 720px; margin: 0 auto; }
  .speed-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 0;
    row-gap: 20px;
    padding: 24px 24px;
  }
  .speed-card::before { left: 24px; right: 24px; }
  .speed-display { align-items: center; }
  .speed-foot {
    border-left: none;
    border-top: 1px solid var(--border);
    padding: 20px 0 0;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    gap: 12px;
  }
  .speed-stat { align-items: center; }
  .speed-stat-value { font-size: 18px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: 1fr; gap: 20px; max-width: 480px; margin: 0 auto 32px; }
  .plan.featured { transform: scale(1); }
  .plan.featured:hover { transform: translateY(-6px); }
  .coverage-inner { grid-template-columns: 1fr; gap: 40px; }
  .cta-card { grid-template-columns: 1fr; padding: 40px 28px; text-align: center; }
  .cta-actions { align-items: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .brand-logo { height: 80px; }
}

@media (max-width: 720px) {
  .nav { padding: 12px 0; }
  .nav-links {
    position: fixed;
    top: 76px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 20px;
    background: rgba(10,13,18,0.96);
    border: 1px solid var(--border-strong);
    border-radius: 18px;
    backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all .25s var(--ease);
  }
  .nav-links a {
    width: 100%;
    padding: 12px 8px;
    border-bottom: 1px solid var(--border);
    font-size: 16px;
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links a::after { display: none; }
  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-toggle { display: flex; }
  .nav-cta { gap: 8px; }
  .nav-cta .btn span { display: none; }
  .nav-cta .btn { padding: 10px 12px; }
  .theme-toggle { width: 38px; height: 38px; }
  .brand-logo { height: 62px; }

  .hero { padding: 100px 0 60px; }
  .hero-content { padding: 0 4px; }
  .hero-meta { flex-wrap: wrap; gap: 16px 24px; }
  .meta-divider { display: none; }
  .meta-item strong { font-size: 1.5rem; }

  .speed-card { padding: 22px 20px; }
  .speed-card-head { flex-wrap: wrap; gap: 8px; }
  .speed-number span:first-child { font-size: 4rem; }
  .speed-foot {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .speed-stat-label { font-size: 10px; }
  .speed-stat-value { font-size: 15px; }

  .section { padding: 70px 0; }
  .section-head { margin-bottom: 40px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .coverage-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .brand-logo { height: 54px; }
  .nav { padding: 10px 0; }
  .nav-links { top: 70px; }

  .hero { padding: 90px 0 50px; }
  .hero-title { font-size: clamp(2rem, 9vw, 2.6rem) !important; }
  .hero-sub { font-size: 0.98rem; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-cta .btn { width: 100%; }

  .speed-card { padding: 20px 16px; }
  .speed-number span:first-child { font-size: 3.2rem; }
  .speed-unit { font-size: 1rem; }
  .speed-foot { gap: 8px; }
  .speed-stat-value { font-size: 13px; }
  .speed-stat-label { font-size: 9px; letter-spacing: 0.04em; }

  .plan { padding: 28px 24px; }
  .plan-price .amount { font-size: 2.6rem; }

  .plan-corporate-content { padding: 32px 22px; }
  .plan-corporate-features { grid-template-columns: 1fr; }
  .plan-corporate-stats { grid-template-columns: 1fr; }

  .chat-card { padding: 32px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ============================
   Light theme polish
   ============================ */
[data-theme="light"] .benefit {
  background: #ffffff;
}
[data-theme="light"] .benefit:hover {
  background: linear-gradient(180deg, rgba(33,150,243,0.04), #ffffff);
  border-color: var(--yellow);
}
[data-theme="light"] .section-dark {
  background:
    radial-gradient(800px 500px at 50% 0%, rgba(33,150,243,0.06), transparent 60%),
    rgba(248,250,252,0.6);
}
[data-theme="light"] .plan { background: #ffffff; }
[data-theme="light"] .plan.featured {
  background: linear-gradient(180deg, rgba(33,150,243,0.05), #ffffff);
}
[data-theme="light"] .marquee { background: rgba(248,250,252,0.8); }
[data-theme="light"] .footer { background: #f8fafc; }
[data-theme="light"] .cta-card {
  background:
    radial-gradient(circle at 0% 50%, rgba(33,150,243,0.15), transparent 50%),
    radial-gradient(circle at 100% 50%, rgba(244,180,0,0.12), transparent 50%),
    #ffffff;
}
[data-theme="light"] .map-card {
  background:
    radial-gradient(circle at 50% 50%, rgba(33,150,243,0.10) 0%, transparent 50%),
    linear-gradient(180deg, #ffffff, #f8fafc);
}
[data-theme="light"] .map-label { background: rgba(255,255,255,0.85); }
[data-theme="light"] .floating-card,
[data-theme="light"] .speed-card {
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}
[data-theme="light"] .speed-status { background: rgba(34,197,94,0.12); }
[data-theme="light"] .eyebrow { background: rgba(255,255,255,0.7); }
[data-theme="light"] .footer-social a { background: #ffffff; }
[data-theme="light"] .btn-ghost { background: rgba(15,23,42,0.04); }
[data-theme="light"] .btn-ghost:hover { background: rgba(15,23,42,0.08); }
[data-theme="light"] .nav-links a { color: var(--text-soft); }
[data-theme="light"] .nav-links a:hover { color: var(--text); }
[data-theme="light"] .brand-logo { filter: none; }
