/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-dark: #04061A;
  --bg-card: #0A0E2A;
  --bg-card2: #0D1235;
  --accent: #3B82F6;
  --accent2: #8B5CF6;
  --gold: #FFD700;
  --gold2: #FFA500;
  --text: #E2E8F0;
  --text-muted: #94A3B8;
  --border: rgba(59,130,246,0.2);
  --glass: rgba(255,255,255,0.04);
  --glow-blue: rgba(59,130,246,0.3);
  --glow-purple: rgba(139,92,246,0.3);
  --glow-gold: rgba(255,215,0,0.3);
  --radius: 16px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== UTILS ===== */
.gradient-text {
  background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 50%, #FFD700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gold { color: var(--gold); }
.tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(59,130,246,0.12);
  border: 1px solid rgba(59,130,246,0.3);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
}
.section-header p { color: var(--text-muted); font-size: 16px; max-width: 600px; margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: none;
  position: relative;
  overflow: hidden;
}
.btn svg { width: 18px; height: 18px; }
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, #3B82F6, #8B5CF6);
  color: #fff;
  box-shadow: 0 0 20px rgba(59,130,246,0.4), 0 4px 15px rgba(0,0,0,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 35px rgba(59,130,246,0.6), 0 8px 25px rgba(0,0,0,0.3); }

.btn-gold {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000;
  box-shadow: 0 0 20px rgba(255,215,0,0.4);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 0 35px rgba(255,215,0,0.6); }

.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-outline:hover { background: rgba(59,130,246,0.1); transform: translateY(-2px); }

.btn-full { width: 100%; justify-content: center; }

.pulse-btn { animation: pulseShadow 2s ease-in-out infinite; }
@keyframes pulseShadow {
  0%, 100% { box-shadow: 0 0 20px rgba(59,130,246,0.4), 0 4px 15px rgba(0,0,0,0.3); }
  50% { box-shadow: 0 0 45px rgba(59,130,246,0.8), 0 8px 30px rgba(0,0,0,0.3); }
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(4,6,26,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 46px; width: auto; object-fit: contain; }
.logo-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: #fff;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover { color: #fff; background: var(--glass); }
.nav-cta {
  background: linear-gradient(135deg, #3B82F6, #8B5CF6) !important;
  color: #fff !important;
  border-radius: 50px !important;
  padding: 10px 20px !important;
  font-weight: 600 !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 20% 50%, rgba(59,130,246,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(139,92,246,0.12) 0%, transparent 60%),
              var(--bg-dark);
}
#threeCanvasContainer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* Above moving network but below content */
  pointer-events: none;
}
.hero-canvas { position: absolute; inset: 0; z-index: 0; }
#networkCanvas { width: 100%; height: 100%; opacity: 0.6; }

.hero-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite;
  pointer-events: none;
}
.orb1 {
  width: 400px; height: 400px;
  top: -100px; left: -100px;
  background: radial-gradient(circle, rgba(59,130,246,0.3) 0%, transparent 70%);
  animation-delay: 0s;
}
.orb2 {
  width: 500px; height: 500px;
  bottom: -150px; right: -100px;
  background: radial-gradient(circle, rgba(139,92,246,0.25) 0%, transparent 70%);
  animation-delay: 3s;
}
.orb3 {
  width: 300px; height: 300px;
  top: 40%; left: 40%;
  background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, transparent 70%);
  animation-delay: 6s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.floating-cards {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.f-card {
  position: absolute;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}
.fc1 { top: 20%; right: 5%; animation: floatCard 6s ease-in-out infinite; }
.fc2 { top: 35%; right: 2%; animation: floatCard 7s ease-in-out infinite 1s; }
.fc3 { bottom: 35%; right: 6%; animation: floatCard 5s ease-in-out infinite 2s; }
.fc4 { bottom: 22%; right: 3%; animation: floatCard 8s ease-in-out infinite 0.5s; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 120px 20px 80px;
  margin-left: max(20px, calc((100vw - 1200px)/2));
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,215,0,0.12);
  border: 1px solid rgba(255,215,0,0.3);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeSlideUp 0.6s ease both;
}
.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title .line1 {
  display: block;
  font-size: clamp(40px, 5vw, 72px);
  color: #fff;
  animation: fadeSlideUp 0.7s ease 0.1s both;
}
.hero-title .line2 {
  display: block;
  font-size: clamp(40px, 5vw, 72px);
  animation: fadeSlideUp 0.7s ease 0.2s both;
}
.hero-title .line3 {
  display: block;
  font-size: clamp(28px, 3.5vw, 52px);
  color: var(--text-muted);
  animation: fadeSlideUp 0.7s ease 0.3s both;
}
.hero-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-muted);
  margin-bottom: 32px;
  animation: fadeSlideUp 0.7s ease 0.4s both;
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-stats {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.7s ease 0.5s both;
}
.stat-pill {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 14px 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  flex: 1;
  min-width: 90px;
}
.stat-pill .stat-num { font-family: 'Orbitron', sans-serif; font-size: 26px; font-weight: 700; color: var(--gold); }
.stat-pill span:not(.stat-num) { font-weight: 700; color: #fff; font-size: 20px; }
.stat-pill small { display: block; color: var(--text-muted); font-size: 11px; margin-top: 2px; }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.7s ease 0.6s both;
}

/* 3D Globe */
.hero-3d-globe {
  position: absolute;
  right: max(20px, calc((100vw - 1200px)/2 + 20px));
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  animation: globeFloat 4s ease-in-out infinite;
}
@keyframes globeFloat {
  0%, 100% { transform: translateY(-50%) rotate(0deg); }
  50% { transform: translateY(calc(-50% - 20px)) rotate(2deg); }
}
.globe { position: relative; width: 280px; height: 280px; }
.globe-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  animation: spin3D 8s linear infinite;
}
.ring1 {
  border-color: rgba(59,130,246,0.5) transparent transparent transparent;
  box-shadow: 0 0 20px rgba(59,130,246,0.3);
}
.ring2 {
  inset: 15px;
  border-color: transparent rgba(139,92,246,0.5) transparent transparent;
  animation-duration: 6s;
  animation-direction: reverse;
}
.ring3 {
  inset: 30px;
  border-color: transparent transparent rgba(255,215,0,0.5) transparent;
  animation-duration: 10s;
}
@keyframes spin3D { to { transform: rotate(360deg); } }

.globe-core {
  position: absolute;
  inset: 50px;
  background: radial-gradient(circle at 40% 35%,
    rgba(59,130,246,0.5) 0%,
    rgba(4,6,26,0.9) 60%,
    rgba(139,92,246,0.3) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(59,130,246,0.3);
  box-shadow:
    0 0 40px rgba(59,130,246,0.3),
    inset 0 0 40px rgba(59,130,246,0.1);
  overflow: hidden;
}
.wifi-svg { width: 70%; height: 70%; }
.pulse-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(59,130,246,0.4);
  animation: pulseRing 2s ease-out infinite;
}
@keyframes pulseRing {
  0% { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(1.3); opacity: 0; }
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.scroll-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: scrollBounce 1.5s ease-in-out infinite;
  box-shadow: 0 0 15px var(--accent);
}
@keyframes scrollBounce { 0%, 100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(10px); opacity: 0.4; } }

/* ===== SPEED SHOWCASE ===== */
.speed-showcase {
  background: linear-gradient(135deg, rgba(59,130,246,0.08), rgba(139,92,246,0.08));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  overflow: hidden;
}
.speed-track {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.speed-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 32px;
  flex: 1;
  min-width: 200px;
  justify-content: center;
}
.speed-item strong { font-size: 15px; color: #fff; display: block; }
.speed-item p { font-size: 12px; color: var(--text-muted); margin: 0; }
.speed-icon { font-size: 28px; }
.speed-divider {
  width: 1px; height: 50px;
  background: var(--border);
  flex-shrink: 0;
}

/* ===== PLANS SECTION ===== */
.plans-section { padding: 100px 0; }

.plan-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.plan-tab {
  padding: 12px 24px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--glass);
  color: var(--text-muted);
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}
.plan-tab.active, .plan-tab:hover {
  background: linear-gradient(135deg, rgba(59,130,246,0.2), rgba(139,92,246,0.2));
  border-color: var(--accent);
  color: #fff;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}
.sme-grid { max-width: 1200px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}
.plan-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59,130,246,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.plan-card:hover { transform: translateY(-8px); border-color: rgba(59,130,246,0.5); }
.plan-card:hover::before { opacity: 1; }
.plan-card.featured {
  border-color: rgba(59,130,246,0.6);
  background: linear-gradient(135deg, rgba(59,130,246,0.1) 0%, var(--bg-card) 100%);
  box-shadow: 0 0 40px rgba(59,130,246,0.15), 0 20px 60px rgba(0,0,0,0.4);
}
.plan-card.ultra {
  border-color: rgba(255,215,0,0.4);
  background: linear-gradient(135deg, rgba(255,215,0,0.06) 0%, var(--bg-card) 100%);
  box-shadow: 0 0 40px rgba(255,215,0,0.1), 0 20px 60px rgba(0,0,0,0.4);
}

.plan-badge {
  display: inline-block;
  padding: 4px 14px;
  background: linear-gradient(135deg, #3B82F6, #8B5CF6);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.gold-badge { background: linear-gradient(135deg, #FFD700, #FFA500); color: #000; }

.plan-speed {
  font-family: 'Orbitron', sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.plan-name { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; }

.plan-prices { margin-bottom: 20px; }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.price-row.highlight .price-val { color: var(--gold); font-weight: 700; font-size: 20px; }
.price-label { font-size: 13px; color: var(--text-muted); }
.price-val { font-weight: 600; color: #fff; font-size: 16px; }

.plan-price-main {
  font-family: 'Orbitron', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
}
.plan-price-main span { font-size: 16px; color: var(--text-muted); font-family: 'Space Grotesk', sans-serif; }

.plan-data-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.3);
  border-radius: 100px;
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 16px;
}

.plan-features { list-style: none; margin-bottom: 24px; }
.plan-features li { padding: 7px 0; font-size: 14px; color: var(--text-muted); border-bottom: 1px solid rgba(255,255,255,0.05); }
.plan-features li:last-child { border-bottom: none; }

.plans-note {
  text-align: center;
  margin-top: 48px;
  padding: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.plans-note p { color: var(--text-muted); margin-bottom: 16px; }

/* ===== OTT SECTION ===== */
.ott-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card2) 50%, var(--bg-dark) 100%);
}
.ott-bg-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(139,92,246,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.ott-highlight-banner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 48px;
}
.ott-count-display {
  text-align: center;
  padding: 20px 40px;
  border-right: 1px solid var(--border);
}
.big-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 80px;
  font-weight: 900;
  background: linear-gradient(135deg, #8B5CF6, #3B82F6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.big-plus {
  font-family: 'Orbitron', sans-serif;
  font-size: 60px;
  font-weight: 900;
  color: var(--gold);
  vertical-align: top;
  margin-top: 10px;
}
.ott-count-display p { color: var(--text-muted); font-size: 14px; margin-top: 8px; }

.ott-billing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 16px;
}
.ott-billing-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.ott-billing-card:hover { border-color: rgba(139,92,246,0.5); transform: translateY(-3px); }
.ott-billing-card.best-ott {
  border-color: rgba(255,215,0,0.4);
  background: rgba(255,215,0,0.05);
}
.ott-best-tag {
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
}
.period-name { font-size: 13px; color: var(--text-muted); margin-bottom: 6px; }
.period-otts { font-family: 'Orbitron', sans-serif; font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.period-price { font-size: 18px; font-weight: 700; color: var(--gold); }
.period-price span { font-size: 11px; color: var(--text-muted); font-weight: 400; }

/* OTT Scrolling logos */
.ott-logos-container {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.ott-logos-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: scrollOTT 35s linear infinite;
}
.ott-logos-track:hover { animation-play-state: paused; }
.ott-pill {
  white-space: nowrap;
  padding: 10px 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
  cursor: default;
}
.ott-pill:hover {
  background: rgba(59,130,246,0.15);
  border-color: rgba(59,130,246,0.4);
  color: #fff;
  transform: translateY(-2px);
}
@keyframes scrollOTT {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== FEATURES SECTION ===== */
.features-section { padding: 100px 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  animation: fadeSlideUp 0.6s ease var(--delay) both;
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3B82F6, #8B5CF6);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover { transform: translateY(-8px); border-color: rgba(59,130,246,0.4); }
.feature-card:hover::after { opacity: 1; }
.feature-icon-wrap {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(59,130,246,0.15), rgba(139,92,246,0.15));
  border: 1px solid rgba(59,130,246,0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.feature-card:hover .feature-icon-wrap {
  background: linear-gradient(135deg, rgba(59,130,246,0.3), rgba(139,92,246,0.3));
  transform: scale(1.1) rotate(5deg);
}
.feature-icon { font-size: 28px; }
.feature-card h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.feature-card p { color: var(--text-muted); font-size: 14px; line-height: 1.7; }

/* ===== SPEEDOMETER SECTION ===== */
.speedometer-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--bg-card2) 0%, var(--bg-dark) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.speedometer-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.speedometer-text h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
}
.speedometer-text p { color: var(--text-muted); margin-bottom: 28px; }
.speed-list { list-style: none; margin-bottom: 32px; }
.speed-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.green-dot { background: #10B981; box-shadow: 0 0 8px #10B981; }

/* Speedometer */
.speedometer-visual { display: flex; align-items: center; justify-content: center; }
.meter-wrap { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.speed-meter {
  width: 260px; height: 130px;
  position: relative;
  overflow: visible;
}
.meter-arc {
  width: 260px; height: 260px;
  border-radius: 50%;
  border: 14px solid transparent;
  border-top-color: rgba(255,255,255,0.08);
  border-right-color: rgba(255,255,255,0.08);
  position: absolute;
  top: 0;
  background: conic-gradient(
    from 180deg,
    #3B82F6 0deg,
    #8B5CF6 120deg,
    #10B981 200deg,
    #FFD700 300deg,
    transparent 360deg
  );
  mask: radial-gradient(circle at center, transparent 30%, black 31%);
  -webkit-mask: radial-gradient(circle at center, transparent 107px, black 108px);
  opacity: 0.3;
}
.meter-needle {
  width: 3px; height: 100px;
  background: linear-gradient(to top, transparent, var(--gold));
  position: absolute;
  bottom: 0; left: 50%;
  transform-origin: bottom center;
  transform: translateX(-50%) rotate(-90deg);
  border-radius: 3px;
  transition: transform 0.1s linear;
  box-shadow: 0 -10px 15px rgba(255,215,0,0.5);
}
.meter-center {
  position: absolute;
  bottom: -20px; left: 50%;
  transform: translateX(-50%);
  text-align: center;
  background: var(--bg-dark);
  width: 90px; height: 55px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}
.meter-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
}
.meter-label { font-size: 10px; color: var(--text-muted); }
.meter-ticks {
  display: flex;
  justify-content: space-between;
  width: 260px;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 28px;
}

/* ===== BLOG SECTION ===== */
.blog-section { padding: 100px 0; background: var(--bg-card); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.blog-card {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-10px) scale(1.02); border-color: var(--accent); }
.blog-image {
  height: 220px;
  position: relative;
  overflow: hidden;
}
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-image img { transform: scale(1.1); }
.placeholder-blog-img {
  width: 100%; height: 100%; background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex; align-items: center; justify-content: center; font-size: 60px;
}
.blog-tag {
  position: absolute; top: 15px; left: 15px; background: var(--accent);
  color: #fff; padding: 4px 12px; border-radius: 50px; font-size: 11px; font-weight: 700;
}
.blog-content { padding: 24px; }
.blog-meta { color: var(--text-muted); font-size: 12px; margin-bottom: 12px; }
.blog-card h3 { font-size: 19px; color: #fff; margin-bottom: 14px; line-height: 1.4; }
.blog-card p { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; line-height: 1.6; }
.read-more { color: var(--accent); text-decoration: none; font-weight: 700; font-size: 14px; }

/* ===== THREE.JS MODEM MODIFIER ===== */
.hero-title { z-index: 5; position: relative; }

/* ===== ADVANCED REVEAL EFFECTS ===== */
.zoom-in { transform: scale(0.8); opacity: 0; transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1); }
.reveal.visible.zoom-in { transform: scale(1); opacity: 1; }

.fade-right { transform: translateX(-50px); opacity: 0; transition: all 0.8s ease; }
.reveal.visible.fade-right { transform: translateX(0); opacity: 1; }

/* ===== COVERAGE SECTION MODIFIER ===== */
.coverage-section { padding: 100px 0; }
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.coverage-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}
.coverage-card:hover { transform: translateY(-6px); border-color: rgba(59,130,246,0.4); }
.coverage-card.expanding { opacity: 0.6; }
.coverage-card.expanding:hover { opacity: 0.85; }
.coverage-icon { font-size: 32px; margin-bottom: 12px; }
.coverage-card h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.coverage-card p { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; }
.coverage-badge { font-size: 12px; font-weight: 600; }
.coverage-badge.live { color: #10B981; }
.coverage-badge.coming { color: var(--text-muted); }
.coverage-cta { text-align: center; }
.coverage-cta p { color: var(--text-muted); margin-bottom: 16px; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 100px 0; }
.testimonials-slider { overflow: hidden; position: relative; }
.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  min-width: 350px;
  max-width: 350px;
  flex-shrink: 0;
}
.t-stars { font-size: 18px; margin-bottom: 14px; }
.testimonial-card p { color: var(--text-muted); font-size: 15px; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3B82F6, #8B5CF6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}
.t-author strong { display: block; font-size: 14px; color: #fff; }
.t-author small { font-size: 12px; color: var(--text-muted); }
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.slider-dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.slider-dots button.active { background: var(--accent); width: 24px; border-radius: 4px; }

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 100px 0;
  position: relative;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card2) 100%);
  overflow: hidden;
}
.contact-glow {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(59,130,246,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
}
.contact-info p { color: var(--text-muted); margin-bottom: 28px; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-decoration: none;
  transition: var(--transition);
}
.contact-card:hover { border-color: rgba(59,130,246,0.4); transform: translateX(4px); }
.phone-card:hover { border-color: rgba(255,215,0,0.4); }
.c-icon { font-size: 24px; flex-shrink: 0; }
.contact-card strong { display: block; color: #fff; font-size: 14px; margin-bottom: 2px; }
.contact-card span { color: var(--text-muted); font-size: 13px; }
.phone-card span { color: var(--gold); font-size: 15px; font-weight: 700; }

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 22px;
  color: #fff;
  margin-bottom: 28px;
}
.form-group { margin-bottom: 16px; }
.form-group input, .form-group select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  transition: var(--transition);
  appearance: none;
}
.form-group select { cursor: pointer; }
.form-group input::placeholder { color: var(--text-muted); }
.form-group input:focus, .form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
  background: rgba(59,130,246,0.05);
}
.form-group select option { background: var(--bg-dark); color: #fff; }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-card2);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-logo { height: 46px; width: auto; object-fit: contain; margin-bottom: 12px; }
.footer-logo-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
}
.footer-brand p { color: var(--text-muted); font-size: 14px; margin: 16px 0; line-height: 1.7; }
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
}
.footer-links h4 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 8px; color: var(--text-muted); font-size: 14px; }
.footer-links a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: var(--text-muted); font-size: 13px; }
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 999;
}
.float-call-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: linear-gradient(135deg, #10B981, #059669);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 4px 20px rgba(16,185,129,0.5);
  animation: floatCTA 3s ease-in-out infinite;
  transition: transform 0.2s, box-shadow 0.2s;
}
.float-call-btn:hover { transform: scale(1.05); box-shadow: 0 6px 30px rgba(16,185,129,0.7); }
.float-call-btn svg { width: 20px; height: 20px; }
@keyframes floatCTA {
  0%, 100% { box-shadow: 0 4px 20px rgba(16,185,129,0.5); }
  50% { box-shadow: 0 4px 35px rgba(16,185,129,0.8); }
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 90px; right: 24px;
  background: #10B981;
  color: #fff;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 998;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .hero-3d-globe { display: none; }
  .floating-cards { display: none; }
  .hero-content { padding: 100px 20px 60px; max-width: 100%; }
  .speedometer-container { grid-template-columns: 1fr; }
  .speedometer-visual { margin-top: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .ott-highlight-banner { grid-template-columns: 1fr; }
  .ott-count-display { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 24px; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(4,6,26,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; }
  .nav-cta { text-align: center; }
  .hero-stats { gap: 10px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .testimonial-card { min-width: 280px; max-width: 280px; }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-tabs { flex-direction: column; align-items: center; }
  .speed-track { flex-direction: column; }
  .speed-divider { display: none; }
  .float-call-btn span { display: none; }
  .float-call-btn { padding: 14px; border-radius: 50%; }
}

@media (max-width: 480px) {
  .section-header { margin-bottom: 40px; }
  .ott-billing-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== INTERSECTION OBSERVER ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
