/* ==========================================
   GAMING PAGE - EVERFAST FIBER
   Futuristic Neon Aesthetic for Gamers
   ========================================== */
/* CSS Variables - Neon Gaming Palette */
:root {
  /* Neon Colors */
  --neon-cyan: #00f0ff;
  --neon-magenta: #ff00ff;
  --neon-purple: #9d00ff;
  --neon-green: #39ff14;
  --neon-pink: #ff006e;
  --neon-blue: #00d4ff;

  /* Dark Backgrounds */
  --bg-black: #0a0a0f;
  --bg-dark: #12121a;
  --bg-darker: #1a1a2e;
  --bg-card: rgba(20, 20, 35, 0.8);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  --gradient-secondary: linear-gradient(135deg, var(--neon-magenta), var(--neon-pink));
  --gradient-accent: linear-gradient(135deg, var(--neon-green), var(--neon-cyan));

  /* Typography */
  --font-heading: 'Orbitron', sans-serif;
  --font-body: 'Rajdhani', sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;

  /* Effects */
  --glow-cyan: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan), 0 0 40px var(--neon-cyan);
  --glow-magenta: 0 0 10px var(--neon-magenta), 0 0 20px var(--neon-magenta), 0 0 40px var(--neon-magenta);
  --glow-purple: 0 0 10px var(--neon-purple), 0 0 20px var(--neon-purple), 0 0 40px var(--neon-purple);
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background: var(--bg-black);
  color: #ffffff;
  overflow-x: hidden;
  line-height: 1.6;
  font-size: 18px;
  font-weight: 400;
}

/* ==========================================
   ANIMATED BACKGROUND
   ========================================== */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 240, 255, 0.03) 2px, transparent 2px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.03) 2px, transparent 2px);
    background-size: 50px 50px;
    animation: gridScroll 20s linear infinite;
    opacity: 0.5;
}

@keyframes gridScroll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(50px);
    }
}

.matrix-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
}

.network-viz {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* ==========================================
   NAVIGATION
   ========================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
    z-index: 1000;
    padding: 1rem 0;
}

.nav__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
}

.nav__logo-text {
    color: #ffffff;
}

.nav__logo-accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav__cta {
    background: var(--gradient-primary);
    color: #ffffff;
    border: none;
    padding: 0.75rem 2rem;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: var(--glow-cyan);
}

.nav__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--neon-cyan), 0 0 40px var(--neon-cyan), 0 0 60px var(--neon-cyan);
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero__container {
  max-width: 1200px;
  text-align: center;
  position: relative;
  z-index: 10;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid var(--neon-cyan);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  animation: pulse 2s ease-in-out infinite;
}

.badge-icon {
  font-size: 1.25rem;
  animation: lightning 1.5s ease-in-out infinite;
}

@keyframes lightning {
  0%, 100% {
    transform: rotate(0deg);
    filter: drop-shadow(0 0 5px var(--neon-cyan));
  }
  50% {
    transform: rotate(-10deg);
    filter: drop-shadow(0 0 15px var(--neon-cyan));
  }
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.6);
  }
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.glitch {
  position: relative;
  color: white;
  animation: glitch 3s infinite;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch::before {
  animation: glitch-1 2.5s infinite;
  color: var(--neon-cyan);
  z-index: -1;
}

.glitch::after {
  animation: glitch-2 2.5s infinite;
  color: var(--neon-magenta);
  z-index: -2;
}

@keyframes glitch {
  0%, 100% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(-2px, -2px);
  }
  60% {
    transform: translate(2px, 2px);
  }
  80% {
    transform: translate(2px, -2px);
  }
}

@keyframes glitch-1 {
  0%, 100% {
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    transform: translate(0);
  }
  25% {
    clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
    transform: translate(-3px, 3px);
  }
}

@keyframes glitch-2 {
  0%, 100% {
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
    transform: translate(0);
  }
  25% {
    clip-path: polygon(0 0, 100% 0, 100% 40%, 0 40%);
    transform: translate(3px, -3px);
  }
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(0, 240, 255, 0.5));
}

.hero__subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

.hero__stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat__value {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  display: inline-block;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat__number {
  display: inline-block;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: var(--neon-cyan);
  background-clip: unset;
  color: var(--neon-cyan);
  text-shadow: 0 0 20px rgba(0, 240, 255, 0.6),
               0 0 40px rgba(0, 240, 255, 0.3);
}

.stat__label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.hero__cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: relative;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--neon-cyan), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% {
    opacity: 0.3;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(10px);
  }
}


/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn--primary {
  background: var(--gradient-primary);
  color: #ffffff;
  box-shadow: var(--glow-cyan);
  position: relative;
  z-index: 1;
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px var(--neon-cyan), 0 0 60px var(--neon-cyan);
}

.btn--secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid var(--neon-cyan);
  box-shadow: inset 0 0 10px rgba(0, 240, 255, 0.2);
}

.btn--secondary:hover {
  background: rgba(0, 240, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: inset 0 0 20px rgba(0, 240, 255, 0.4), 0 0 20px rgba(0, 240, 255, 0.4);
}

.btn--large {
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
}

/* ==========================================
   SECTION HEADERS
   ========================================== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-header__subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================
   PLANS SECTION
   ========================================== */

.plans {
    padding: 6rem 2rem;
    position: relative;
}

.plans__container {
    max-width: 1400px;
    margin: 0 auto;
}

.plans__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.plan-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--neon-cyan), transparent, var(--neon-purple));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.plan-card:hover::before {
    opacity: 1;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 240, 255, 0.3);
}

.plan-card--featured {
    background: linear-gradient(135deg, rgba(157, 0, 255, 0.1), rgba(0, 240, 255, 0.1));
    border: 2px solid var(--neon-purple);
    transform: scale(1.05);
}

.plan-card--featured::before {
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-magenta), var(--neon-cyan));
    opacity: 0.5;
}

.plan-card--featured:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 30px 80px rgba(157, 0, 255, 0.5);
}

.plan-card__glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-purple), var(--neon-magenta), var(--neon-cyan));
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    filter: blur(20px);
    animation: rotate 4s linear infinite;
    background-size: 300% 300%;
}

.plan-card--featured:hover .plan-card__glow {
    opacity: 0.5;
}

@keyframes rotate {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.plan-card__badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--gradient-primary);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    box-shadow: var(--glow-cyan);
}

.plan-card__badge--featured {
    background: var(--gradient-secondary);
    box-shadow: var(--glow-magenta);
}

.plan-card__header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 240, 255, 0.1);
    border: 2px solid var(--neon-cyan);
}

.plan-card--featured .plan-card__icon {
    background: rgba(157, 0, 255, 0.1);
    border: 2px solid var(--neon-purple);
}

.plan-card__icon svg {
    width: 40px;
    height: 40px;
    color: var(--neon-cyan);
    filter: drop-shadow(0 0 10px var(--neon-cyan));
}

.plan-card--featured .plan-card__icon svg {
    color: var(--neon-purple);
    filter: drop-shadow(0 0 10px var(--neon-purple));
}

.plan-card__name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.plan-card--featured .plan-card__name {
    color: var(--neon-purple);
    text-shadow: 0 0 20px rgba(157, 0, 255, 0.5);
}

.plan-card__speed {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.speed-number {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.speed-unit {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
}

.plan-card__price {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-currency {
    font-size: 1.5rem;
    vertical-align: super;
    color: rgba(255, 255, 255, 0.6);
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
}

.price-period {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
}

.plan-card__features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.plan-card__features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
}

.plan-card__features svg {
    width: 20px;
    height: 20px;
    color: var(--neon-cyan);
    flex-shrink: 0;
}

.plan-card--featured .plan-card__features svg {
    color: var(--neon-purple);
}

.plan-card__cta {
    width: 100%;
    background: var(--gradient-primary);
    color: #ffffff;
    border: none;
    padding: 1.25rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: var(--glow-cyan);
}

.plan-card__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--neon-cyan);
}

.plan-card__cta--featured {
    background: var(--gradient-secondary);
    box-shadow: var(--glow-magenta);
}

.plan-card__cta--featured:hover {
    box-shadow: 0 0 30px var(--neon-magenta);
}

/* ==========================================
   FEATURES SECTION
   ========================================== */

.features {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, transparent, rgba(0, 240, 255, 0.02), transparent);
}

.features__container {
    max-width: 1400px;
    margin: 0 auto;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.features__grid .feature-card:nth-child(5) {
    grid-column: 2 / 3;
}

.features__grid .feature-card:nth-child(6) {
    grid-column: 3 / 4;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 15px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.2);
}

.feature-card__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 240, 255, 0.1);
}

.feature-card__icon svg {
    width: 30px;
    height: 30px;
    color: var(--neon-cyan);
}

.feature-card:hover .feature-card__icon {
    animation: iconGlow 1.5s ease-in-out infinite;
}

@keyframes iconGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 240, 255, 0.6), inset 0 0 20px rgba(0, 240, 255, 0.2);
    }
}

.feature-card__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: var(--neon-cyan);
}

.feature-card__description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 1.0625rem;
}

/* ==========================================
   GAMING BENEFITS SECTION
   ========================================== */

.gaming-benefits {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(157, 0, 255, 0.05), rgba(0, 240, 255, 0.05));
}

.gaming-benefits__container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.gaming-benefits__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 3rem;
}

.gaming-benefits__list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.benefit-item__icon {
    font-size: 3rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.5));
}

.benefit-item__content h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: var(--neon-cyan);
}

.benefit-item__content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 1.0625rem;
}

/* Stats Box */
.stats-box {
    background: var(--bg-darker);
    border: 2px solid rgba(0, 240, 255, 0.3);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 0 40px rgba(0, 240, 255, 0.05);
}

.stats-box__item {
    margin-bottom: 2.5rem;
}

.stats-box__item:last-of-type {
    margin-bottom: 2rem;
}

.stats-box__label {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
}

.stats-box__value {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--neon-green);
    text-shadow: 0 0 20px rgba(57, 255, 20, 0.5);
    margin-bottom: 1rem;
}

.stats-box__bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.stats-box__fill {
    height: 100%;
    background: var(--gradient-accent);
    border-radius: 10px;
    box-shadow: 0 0 10px var(--neon-green);
    animation: pulse-bar 2s ease-in-out infinite;
}

.stats-box__fill--cyan {
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-blue));
    box-shadow: 0 0 10px var(--neon-cyan);
}

.stats-box__fill--purple {
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-magenta));
    box-shadow: 0 0 10px var(--neon-purple);
}

@keyframes pulse-bar {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.stats-box__status {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--neon-green);
}

.status-dot {
    width: 10px;
    height: 10px;
    background: var(--neon-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-green);
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}


/* ==========================================
   CTA SECTION
   ========================================== */

.cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.05), rgba(157, 0, 255, 0.05));
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.15), transparent 70%);
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.cta__container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.cta__title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.cta__subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.cta__buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.cta__badge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.badge-item {
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    padding: 1rem;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--neon-cyan);
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background: var(--bg-darker);
    border-top: 1px solid rgba(0, 240, 255, 0.2);
    padding: 3rem 2rem 2rem;
}

.footer__container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer__content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer__brand {
    max-width: 400px;
}

.footer__logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer__brand p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer__links a:hover {
    color: var(--neon-cyan);
    padding-left: 5px;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer__legal {
    display: flex;
    gap: 2rem;
}

.footer__legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__legal a:hover {
    color: var(--neon-cyan);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

/* Tablet Landscape & Small Desktop (992px - 1199px) */
@media (max-width: 1199px) {
    .features__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .features__grid .feature-card:nth-child(5) {
        grid-column: 1 / 2;
    }

    .features__grid .feature-card:nth-child(6) {
        grid-column: 2 / 3;
    }
}

/* Tablet Portrait (768px - 991px) */
@media (max-width: 991px) {
    /* Reduce section padding */
    .plans,
    .features,
    .gaming-benefits,
    .cta {
        padding: 4rem 1.5rem;
    }

    .plans__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        gap: 2.5rem;
    }

    .plan-card--featured {
        transform: scale(1);
    }

    .plan-card--featured:hover {
        transform: scale(1) translateY(-10px);
    }

    .features__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    /* Reset centered positioning for 2-column layout */
    .features__grid .feature-card:nth-child(5),
    .features__grid .feature-card:nth-child(6) {
        grid-column: auto;
    }

    .gaming-benefits__container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .gaming-benefits__visual {
        order: -1; /* Move stats box above content on tablet */
    }

    .footer__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Mobile (up to 767px) */
@media (max-width: 767px) {
    /* Reduce all section padding significantly */
    .plans,
    .features,
    .gaming-benefits,
    .cta {
        padding: 3rem 1rem;
    }

    .hero {
        padding: 6rem 1rem 3rem;
        min-height: auto;
    }

    .hero__stats {
        gap: 1.5rem;
    }

    .stat__value {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero__cta {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        min-height: 48px; /* Touch-friendly target */
    }

    .plans__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .plan-card {
        padding: 2rem 1.5rem;
    }

    .plan-card__badge {
        top: -12px;
        right: 20px;
        font-size: 0.6875rem;
        padding: 0.4rem 1.25rem;
    }

    .speed-number {
        font-size: 4rem;
    }

    .price-amount {
        font-size: 3rem;
    }

    .features__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Reset any special positioning */
    .features__grid .feature-card:nth-child(5),
    .features__grid .feature-card:nth-child(6) {
        grid-column: auto;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .gaming-benefits__list {
        gap: 2rem;
    }

    .benefit-item {
        gap: 1rem;
    }

    .benefit-item__icon {
        font-size: 2.5rem;
    }

    .benefit-item__content h4 {
        font-size: 1.25rem;
    }

    .stats-box {
        padding: 2rem 1.5rem;
    }

    .stats-box__value {
        font-size: 2.5rem;
    }

    .cta__buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta__badge-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer {
        padding: 2rem 1rem 1.5rem;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
    .nav__container {
        padding: 0 1rem;
    }

    .nav__logo {
        font-size: 1.125rem;
    }

    .nav__logo-text,
    .nav__logo-accent {
        font-size: 1.125rem;
    }

    .nav__cta {
        padding: 0.625rem 1.25rem;
        font-size: 0.75rem;
    }

    .hero {
        padding: 5rem 1rem 2rem;
    }

    .hero__badge {
        font-size: 0.75rem;
        padding: 0.4rem 1.25rem;
    }

    .hero__stats {
        gap: 1rem;
        flex-direction: column;
        width: 100%;
    }

    .stat {
        width: 100%;
        padding: 1rem;
        background: rgba(0, 240, 255, 0.05);
        border-radius: 10px;
    }

    .plan-card {
        padding: 1.5rem 1rem;
    }

    .plan-card__icon {
        width: 60px;
        height: 60px;
    }

    .plan-card__icon svg {
        width: 30px;
        height: 30px;
    }

    .plan-card__name {
        font-size: 1.25rem;
    }

    .speed-number {
        font-size: 3.5rem;
    }

    .speed-unit {
        font-size: 1.5rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .plan-card__features li {
        font-size: 1rem;
        padding: 0.5rem 0;
    }

    .feature-card {
        padding: 1.5rem 1rem;
    }

    .feature-card__icon {
        width: 50px;
        height: 50px;
    }

    .feature-card__icon svg {
        width: 24px;
        height: 24px;
    }

    .feature-card__title {
        font-size: 1.25rem;
    }

    .benefit-item__icon {
        font-size: 2rem;
    }

    .benefit-item__content h4 {
        font-size: 1.125rem;
    }

    .benefit-item__content p {
        font-size: 1rem;
    }

    .stats-box {
        padding: 1.5rem 1rem;
    }

    .stats-box__value {
        font-size: 2rem;
    }

    .stats-box__label {
        font-size: 0.75rem;
    }

    .btn {
        padding: 0.875rem 2rem;
        font-size: 0.9375rem;
    }

    .btn--large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Extra Small Mobile (up to 360px) */
@media (max-width: 360px) {
    body {
        font-size: 16px;
    }

    .nav__logo {
        font-size: 1rem;
    }

    .nav__cta {
        padding: 0.5rem 1rem;
        font-size: 0.6875rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .plan-card__badge {
        position: static;
        display: inline-block;
        margin-bottom: 1rem;
    }

    .speed-number {
        font-size: 3rem;
    }

    .price-amount {
        font-size: 2rem;
    }
}


.disclaimer {
    font-size: 10px;
    font-family: var(--font-body);
    text-align: end;
}