/* ============================================
   ZVC TURBO NET - Main Stylesheet
   Design System + All Site Styles
   ============================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Orbitron:wght@400;500;600;700;800;900&display=swap');

/* ---- CSS Variables / Design Tokens ---- */
:root {
  /* Primary Colors (from logo) */
  --color-primary: #1a237e;
  --color-primary-light: #3949ab;
  --color-primary-dark: #0d1442;
  --color-accent: #e53935;
  --color-accent-light: #ff6f60;

  /* Neon / Glow Colors */
  --color-neon-blue: #00e5ff;
  --color-neon-purple: #7c4dff;
  --color-neon-green: #00e676;

  /* Background */
  --bg-dark: #050510;
  --bg-card: rgba(15, 15, 40, 0.95);
  --bg-card-hover: rgba(25, 25, 60, 0.95);
  --bg-glass: rgba(255, 255, 255, 0.03);

  /* Text */
  --text-white: #ffffff;
  --text-gray: #a0a0c0;
  --text-muted: #6a6a8a;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;

  /* Borders */
  --border-glow: 1px solid rgba(0, 229, 255, 0.15);
  --border-radius: 16px;
  --border-radius-sm: 8px;

  /* Shadows */
  --glow-sm: 0 0 15px rgba(0, 229, 255, 0.15);
  --glow-md: 0 0 30px rgba(0, 229, 255, 0.2);
  --glow-lg: 0 0 60px rgba(0, 229, 255, 0.3);
  --glow-accent: 0 0 30px rgba(229, 57, 53, 0.3);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text-white);
  overflow-x: hidden;
  line-height: 1.6;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-normal);
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

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

.highlight {
  color: var(--color-neon-blue);
  text-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.section-header p {
  color: var(--text-gray);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ---- Background Grid Effect ---- */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(rgba(0, 229, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  transition: var(--transition-normal);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(5, 5, 16, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 229, 255, 0.1);
  padding: 10px 0;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo img,
#footer-logo {
  height: 50px;
  filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.3)) brightness(1.8) saturate(1.2);
  mix-blend-mode: screen;
  transition: var(--transition-normal);
}

.navbar-logo img:hover {
  filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.5)) brightness(2) saturate(1.3);
  transform: scale(1.05);
}

.navbar-menu {
  display: flex;
  gap: 35px;
  align-items: center;
}

.navbar-menu a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-gray);
  position: relative;
  padding: 5px 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
}

.navbar-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-neon-blue);
  box-shadow: 0 0 10px var(--color-neon-blue);
  transition: var(--transition-normal);
}

.navbar-menu a:hover {
  color: var(--text-white);
}

.navbar-menu a:hover::after {
  width: 100%;
}

.navbar-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: var(--transition-normal);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
  color: white;
  box-shadow: 0 0 25px rgba(229, 57, 53, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(229, 57, 53, 0.6);
}

.btn-outline {
  background: transparent;
  color: var(--color-neon-blue);
  border: 1px solid var(--color-neon-blue);
  box-shadow: var(--glow-sm);
}

.btn-outline:hover {
  background: rgba(0, 229, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: var(--glow-md);
}

.btn-neon {
  background: linear-gradient(135deg, #00e5ff, #2979ff);
  color: var(--bg-dark);
  font-weight: 700;
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.6);
}

.btn-neon:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 50px rgba(0, 229, 255, 0.6);
}

/* Mobile menu toggle */
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.navbar-toggle span {
  width: 28px;
  height: 2px;
  background: var(--text-white);
  transition: var(--transition-normal);
  border-radius: 2px;
}

.navbar-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(5, 5, 16, 0.8) 0%,
      rgba(5, 5, 16, 0.6) 50%,
      rgba(5, 5, 16, 0.95) 100%);
  z-index: 1;
}

/* Animated particles in hero */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--color-neon-blue);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-neon-blue);
  animation: float-particle linear infinite;
  opacity: 0;
}

@keyframes float-particle {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(-100px) scale(1);
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 25px;
  text-shadow: 0 0 40px rgba(0, 229, 255, 0.3);
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--text-gray);
  margin-bottom: 40px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.hero-content .btn {
  font-size: 1.05rem;
  padding: 16px 42px;
  position: relative;
}

/* Single "click me" press effect on hover — fires once every 4s after 2s delay */
.hero-content .btn:hover {
  animation: heroBtnClick 4s ease-in-out 2s infinite;
}

@keyframes heroBtnClick {

  0%,
  86% {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.5);
  }

  90% {
    transform: translateY(3px) scale(0.95);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
  }

  95% {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 0 50px rgba(0, 229, 255, 0.7);
  }

  100% {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.5);
  }
}

/* Speed indicator animation */
.hero-speed {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 60px;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.speed-item {
  text-align: center;
}

.speed-item .speed-value {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--color-neon-blue);
  text-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
  line-height: 1;
}

.speed-item .speed-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
  padding: var(--section-padding);
  position: relative;
  z-index: 1;
}

.features-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.features-bg video,
.features-bg img,
.features-bg canvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

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

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

.feature-card {
  background: var(--feature-bg, var(--bg-card));
  border: var(--border-glow);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
  --feature-color: var(--color-neon-blue);
  /* Default fallback */
  border-bottom: 2px solid transparent;
  /* Prepare for color pop */
  background-image: var(--feature-bg-image, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top center, var(--feature-color), transparent 70%);
  opacity: 0;
  transition: var(--transition-slow);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--feature-color);
  box-shadow: 0 0 20px var(--feature-color);
}

.feature-card:hover::before {
  opacity: 0.15;
  /* Reduced from 1 to avoid covering content */
}

/* Glass Mode for Features */
.features-grid.glass-mode .feature-card {
  background: rgba(10, 10, 30, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.features-grid.glass-mode .feature-card:hover {
  border-color: var(--feature-color);
  box-shadow: 0 0 25px var(--feature-color);
  transform: translateY(-8px) scale(1.02);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
  filter: drop-shadow(0 0 15px var(--feature-color));
  text-shadow: 0 0 15px var(--feature-color);
  position: relative;
  z-index: 2;
}

.feature-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--feature-title-color, var(--text-white));
  position: relative;
  z-index: 2;
}

.feature-card p {
  position: relative;
  z-index: 2;
  color: var(--feature-desc-color, var(--text-gray));
  opacity: 0.9;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   PLANS SECTION
   ============================================ */
.plans {
  padding: var(--section-padding);
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(26, 35, 126, 0.05), transparent);
}

.plans-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.plans-bg video,
.plans-bg img,
.plans-bg canvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

/* ---- Plan Category Tabs ---- */
.plans-category-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.plan-tab {
  position: relative;
  padding: 12px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-neon-blue);
  background: rgba(0, 229, 255, 0.06);
  border: 2px solid rgba(0, 229, 255, 0.3);
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  cursor: pointer;
  transition: all 0.3s ease;
}

.plan-tab:hover {
  background: rgba(0, 229, 255, 0.12);
  border-color: rgba(0, 229, 255, 0.5);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
}

.plan-tab.active {
  background: linear-gradient(135deg, #00796b, #004d40);
  color: #fff;
  border-color: #00e5ff;
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.4);
}

.plans-grid {
  transition: opacity 0.2s ease;
}

/* ---- Contact City Tabs ---- */
.contact-city-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.city-tab {
  position: relative;
  padding: 12px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-neon-blue);
  background: rgba(0, 229, 255, 0.06);
  border: 2px solid rgba(0, 229, 255, 0.3);
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  cursor: pointer;
  transition: all 0.3s ease;
}

.city-tab:hover {
  background: rgba(0, 229, 255, 0.12);
  border-color: rgba(0, 229, 255, 0.5);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
}

.city-tab.active {
  background: linear-gradient(135deg, #00796b, #004d40);
  color: #fff;
  border-color: #00e5ff;
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.4);
}

.contact-grid {
  transition: opacity 0.2s ease;
}

.plans-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.plan-card {
  background: var(--bg-card);
  border: var(--border-glow);
  border-radius: var(--border-radius);
  padding: 40px 25px;
  text-align: center;
  transition: var(--transition-slow);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  flex: 0 1 calc((100% - 100px) / 5);
  min-width: 220px;
}

/* Card Background Media */
.card-bg-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 1;
}

/* Ensure card background is transparent if media is present */
.plan-card:has(.card-bg-media) {
  background: transparent !important;
  box-shadow: none !important;
  /* Remove any default box-shadow if needed */
}

/* Ensure video is visible */
.card-bg-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Container for text content to ensure it sits above bg */
.plan-content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Restore centering */
}

/* Optional Overlay to help text pop */
.card-content-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(5, 5, 16, 0.3), rgba(5, 5, 16, 0.8));
  z-index: 1 !important;
  pointer-events: none;
}

/* Ensure badge stays on top */
.plan-badge {
  z-index: 3;
}

.plan-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.03), transparent 50%);
  animation: rotate-gradient 15s linear infinite;
  pointer-events: none;
}

@keyframes rotate-gradient {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.plan-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 229, 255, 0.5);
  box-shadow: var(--glow-lg);
}

.plan-card.highlighted {
  border-color: var(--color-accent);
  box-shadow: var(--glow-accent);
  transform: scale(1.05);
}

.plan-card.highlighted:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow: 0 0 50px rgba(229, 57, 53, 0.5);
}

.plan-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
  color: white;
  padding: 6px 20px;
  border-radius: 0 0 12px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.plan-badge.badge-pulse {
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

  0%,
  100% {
    transform: translateX(-50%) scale(1);
    filter: brightness(1);
  }

  50% {
    transform: translateX(-50%) scale(1.08);
    filter: brightness(1.3);
    box-shadow: 0 5px 30px rgba(255, 255, 255, 0.3);
  }
}

.plan-speed {
  margin: 20px 0;
}

.plan-speed .speed-number {
  font-family: 'Orbitron', sans-serif;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(180deg, var(--text-white), var(--color-neon-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.plan-speed .speed-unit {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-neon-blue);
  display: block;
  letter-spacing: 6px;
  margin-top: 5px;
}

.plan-price {
  margin: 25px 0;
}

.plan-price .currency {
  font-size: 1.1rem;
  color: var(--text-gray);
  vertical-align: top;
}

.plan-price .value {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-white);
}

.plan-price .period {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: block;
  margin-top: 5px;
}

.plan-features {
  flex: 1;
  margin: 20px 0;
  text-align: left;
  padding: 0 10px;
}

.plan-features li {
  padding: 8px 0;
  color: var(--text-gray);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.plan-features li::before {
  content: '✓';
  color: var(--color-neon-blue);
  font-weight: 700;
  flex-shrink: 0;
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.plan-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: var(--section-padding);
  position: relative;
  z-index: 1;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.3;
}

.about-text p,
.about-text-content {
  color: var(--text-gray);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.stat-item {
  text-align: center;
  padding: 25px;
  background: var(--bg-card);
  border: var(--border-glow);
  border-radius: var(--border-radius-sm);
  transition: var(--transition-normal);
}

.stat-item:hover {
  border-color: rgba(0, 229, 255, 0.4);
  box-shadow: var(--glow-sm);
  transform: translateY(-3px);
}

.stat-number {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-neon-blue);
  text-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-logo {
  display: block;
  max-width: 400px;
  width: 100%;
  height: auto;
  margin: 0 auto 30px;
  animation: fadeInDown 0.8s ease-out;
}

@media (max-width: 768px) {
  .about-logo {
    max-width: 250px;
    margin-bottom: 20px;
  }
}

.about-image {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: var(--border-glow);
  aspect-ratio: 4/3;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  color: var(--text-muted);
}

.about-image-placeholder .icon {
  font-size: 4rem;
  opacity: 0.3;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  padding: var(--section-padding);
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(26, 35, 126, 0.08), transparent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: var(--bg-card);
  border: var(--border-glow);
  border-radius: var(--border-radius-sm);
  transition: var(--transition-normal);
}

.contact-item:hover {
  border-color: rgba(0, 229, 255, 0.4);
  box-shadow: var(--glow-sm);
  transform: translateX(5px);
}

.contact-item .icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--color-neon-blue);
}

.contact-item p {
  color: var(--text-gray);
  font-size: 0.95rem;
}

.contact-map {
  border-radius: var(--border-radius);
  overflow: hidden;
  border: var(--border-glow);
  min-height: 400px;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}

.contact-map-placeholder {
  color: var(--text-muted);
  text-align: center;
  padding: 20px;
}

.contact-map-placeholder .icon {
  font-size: 4rem;
  opacity: 0.3;
  display: block;
  margin-bottom: 15px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 60px 0 30px;
  border-top: 1px solid rgba(0, 229, 255, 0.1);
  background: rgba(5, 5, 16, 0.95);
  position: relative;
  z-index: 1;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img {
  height: 45px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.3));
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 350px;
}

.footer-links h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-neon-blue);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition-normal);
}

.footer-links a:hover {
  color: var(--text-white);
  padding-left: 5px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(0, 229, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-normal);
  color: var(--text-gray);
}

.footer-social a:hover {
  border-color: var(--color-neon-blue);
  box-shadow: var(--glow-sm);
  color: var(--color-neon-blue);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 25px;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
  transition: var(--transition-normal);
  animation: pulse-whatsapp 2s infinite;
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-whatsapp {

  0%,
  100% {
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.2), 0 0 0 15px rgba(37, 211, 102, 0.1);
  }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   SEASONAL THEME OVERLAY (canvas)
   ============================================ */
#season-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9998;
  pointer-events: none;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .navbar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(5, 5, 16, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    transition: var(--transition-slow);
    border-left: 1px solid rgba(0, 229, 255, 0.1);
  }

  .navbar-menu.active {
    right: 0;
  }

  .navbar-toggle {
    display: flex;
  }

  .navbar-cta {
    display: none;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-speed {
    gap: 25px;
  }

  .hero-speed .speed-value {
    font-size: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .plan-card.highlighted {
    transform: scale(1);
  }

  .plan-card.highlighted:hover {
    transform: translateY(-10px);
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  :root {
    --section-padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }
}

/* Generic Section Background */
.section-bg,
.features-bg,
.plans-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.section-bg video,
.section-bg img,
.section-bg canvas,
.features-bg video,
.features-bg img,
.features-bg canvas,
.plans-bg video,
.plans-bg img,
.plans-bg canvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

/* Neon Gap Effect */
/* Neon Grid Effect handled by Canvas in main.js */

.plans .container,
.features .container,
.about .container,
.contact .container,
.footer .container {
  position: relative;
  z-index: 1;
}

/* --- Support Modals --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  /* Dark overlay */
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: none;
  /* Hidden by default */
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  padding: 30px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  animation: modalSlideIn 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

@keyframes modalSlideIn {
  from {
    transform: translateY(20px) scale(0.95);
    opacity: 0;
  }

  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.btn-close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: var(--text-gray);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.3s;
}

.btn-close-modal:hover {
  color: var(--color-neon-blue);
}

#modal-title {
  margin-top: 0;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-heading);
  font-size: 1.8rem;
}

.modal-body-content {
  overflow-y: auto;
  padding-right: 10px;
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.6;
}

/* Scrollbar styling for modal */
.modal-body-content::-webkit-scrollbar {
  width: 6px;
}

.modal-body-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

.modal-body-content::-webkit-scrollbar-thumb {
  background: var(--color-neon-blue);
  border-radius: 3px;
}

/* Typography inside modal content */
.modal-body-content h3 {
  color: var(--text-heading);
  margin-top: 20px;
  margin-bottom: 10px;
}

.modal-body-content p {
  margin-bottom: 10px;
}

.modal-body-content ul {
  margin-left: 20px;
  margin-bottom: 10px;
}

/* ---- New Button Styles (Gradient Presets) ---- */
.btn-neon-purple {
  background: linear-gradient(135deg, #7c4dff, #ff4081);
  color: white;
  box-shadow: 0 0 20px rgba(124, 77, 255, 0.4);
}

.btn-neon-purple:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 40px rgba(124, 77, 255, 0.6);
}

.btn-neon-green {
  background: linear-gradient(135deg, #00e676, #00c853);
  color: #050510;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(0, 230, 118, 0.4);
}

.btn-neon-green:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 40px rgba(0, 230, 118, 0.6);
}

.btn-custom {
  transition: all 0.3s ease;
}

.btn-custom:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 40px rgba(0, 230, 118, 0.6);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
  background-color: #128c7e;
}

.whatsapp-float svg {
  width: 35px;
  height: 35px;
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* Managed video volume control */
.managed-video-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about-image .managed-video-container,
.plan-card-media-slot .managed-video-container {
  position: relative;
}

.managed-video-container video,
.managed-video-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.managed-video-sound {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(5, 5, 16, 0.72);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
  z-index: 3;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: auto;
}

.managed-video-container:hover .managed-video-sound,
.managed-video-container:focus-within .managed-video-sound,
.plan-card:hover .managed-video-sound,
.about-image:hover .managed-video-sound,
.hero:hover .managed-video-sound,
.features:hover .managed-video-sound,
.plans:hover .managed-video-sound,
.about:hover .managed-video-sound,
.contact:hover .managed-video-sound,
.footer:hover .managed-video-sound {
  opacity: 1;
  transform: translateY(0);
}

.managed-video-sound:hover {
  background: rgba(0, 229, 255, 0.22);
}

.plan-card-media-slot {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.section-managed-video {
  position: absolute;
  inset: 0;
}

.about-managed-video {
  position: relative;
  min-height: 260px;
  border-radius: 12px;
  overflow: hidden;
}

.about-managed-video video {
  border-radius: 12px;
}

@media (max-width: 768px) {
  .managed-video-sound {
    opacity: 1;
    transform: translateY(0);
  }
}


.brand-lockup {
  display: inline-flex;
  align-items: flex-start;
  gap: 0;
  white-space: nowrap;
  line-height: 1;
}

.brand-zvc {
  color: #2E3192;
  font-weight: 700;
  font-size: clamp(3rem, 7vw, 5rem);
  letter-spacing: -0.08em;
}

.brand-turbo,
.brand-net {
  position: relative;
  top: 0.15em;
  margin-left: -0.45em;
  font-size: clamp(1rem, 2.2vw, 1.625rem);
}

.brand-turbo {
  color: #000;
  font-weight: 700;
  -webkit-text-stroke: 3px #fff;
  paint-order: stroke fill;
}

.brand-net {
  color: #ff0000;
  font-weight: 500;
  margin-left: 0.15em;
}

@media (max-width: 768px) {
  .brand-lockup {
    white-space: normal;
  }

  .brand-turbo,
  .brand-net {
    top: 0.05em;
  }
}


/* Video fit hardening: fill rounded media boxes without black borders */
.managed-video-container,
.plan-card-media-slot,
.card-bg-media,
.about-image,
.about-managed-video {
  overflow: hidden;
}

.managed-video-container,
.plan-card-media-slot,
.card-bg-media,
.about-image img,
.about-managed-video,
.about-managed-video video,
.managed-video-container video,
.managed-video-container img,
.card-bg-media video,
.card-bg-media img {
  border-radius: inherit;
}

.plan-card-media-slot,
.managed-video-container,
.about-managed-video,
.card-bg-media {
  background: #000;
}

.plan-card-media-slot video,
.card-bg-media video,
.about-image video,
.about-managed-video video,
.managed-video-container video {
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
