/*
Theme Name:  StreamVault
Theme URI:   https://streamvault.com
Description: Premium IPTV streaming service theme with hero, sports, features, pricing, FAQ, and footer sections.
Version:     1.0.0
Author:      StreamVault
Author URI:  https://streamvault.com
License:     GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: streamvault
Tags:        one-page, dark, custom-background, custom-logo, full-width-template
*/

/* ============================================================
   StreamVault — Premium IPTV  |  styles.css
   ============================================================ */

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

:root {
  --bg:          #07070f;
  --bg-2:        #0d0d1c;
  --bg-card:     rgba(255,255,255,0.03);
  --border:      rgba(255,255,255,0.07);
  --border-h:    rgba(255,255,255,0.15);

  --gold:        #f5c842;
  --gold-dim:    rgba(245,200,66,0.15);
  --purple:      #8b5cf6;
  --purple-dim:  rgba(139,92,246,0.15);
  --blue:        #06b6d4;
  --blue-dim:    rgba(6,182,212,0.15);

  --white:       #ffffff;
  --text:        #e2e8f0;
  --muted:       #64748b;
  --subtle:      #334155;

  --radius:      16px;
  --radius-sm:   10px;
  --radius-lg:   24px;

  --shadow-glow: 0 0 60px rgba(139,92,246,0.2);
  --shadow-card: 0 4px 32px rgba(0,0,0,0.4);
}

html { scroll-behavior: smooth; font-size: 16px; }

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

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── SCROLLBAR ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 3px; }

/* ── CONTAINER ────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── SECTION SPACING ──────────────────────────────────────── */
.section { padding: 100px 0; }

/* ── TYPOGRAPHY UTILITIES ─────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--purple) 50%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(139,92,246,0.5); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: 1px solid var(--border-h);
  color: var(--text);
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  border-color: var(--purple);
  color: var(--white);
  background: var(--purple-dim);
  transform: translateY(-2px);
}

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.85);
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.1); color: #fff; transform: translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
  transform: translateY(-2px);
}

.btn-lg { padding: 15px 36px; font-size: 1rem; }

/* ── NAVBAR ───────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}
.navbar.scrolled {
  padding: 12px 0;
  background: rgba(7,7,15,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.logo-icon {
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-accent { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 16px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 60px 80px;
  max-width: 1400px;
  margin: 0 auto;
  gap: 60px;
  overflow: hidden;
}

.hero-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: var(--bg);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 8s ease-in-out infinite;
}
.orb-1 {
  width: 600px; height: 600px;
  top: -200px; left: -200px;
  background: radial-gradient(circle, rgba(139,92,246,0.25) 0%, transparent 70%);
  animation-delay: 0s;
}
.orb-2 {
  width: 500px; height: 500px;
  top: 30%; right: -150px;
  background: radial-gradient(circle, rgba(6,182,212,0.2) 0%, transparent 70%);
  animation-delay: 3s;
}
.orb-3 {
  width: 400px; height: 400px;
  bottom: -100px; left: 40%;
  background: radial-gradient(circle, rgba(245,200,66,0.15) 0%, transparent 70%);
  animation-delay: 6s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -30px) scale(1.05); }
  66%       { transform: translate(-20px, 20px) scale(0.95); }
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(139,92,246,0.12);
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--purple);
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--purple);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(139,92,246,0.6); }
  50%       { box-shadow: 0 0 0 6px rgba(139,92,246,0); }
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat { text-align: center; padding: 0 24px; }
.stat:first-child { padding-left: 0; }
.stat-number {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}
.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* TV MOCKUP */
.hero-visual { position: relative; z-index: 1; display: flex; justify-content: center; }

.tv-mockup {
  position: relative;
  width: 100%;
  max-width: 540px;
}
.tv-screen {
  background: #000;
  border-radius: 12px 12px 0 0;
  border: 3px solid #1a1a2e;
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: 0 0 80px rgba(139,92,246,0.3), inset 0 0 20px rgba(0,0,0,0.5);
}
.tv-screen img { width: 100%; height: 100%; object-fit: cover; }
.tv-stand {
  width: 4px;
  height: 40px;
  background: linear-gradient(to bottom, #1a1a2e, #0d0d1c);
  margin: 0 auto;
}
.tv-base {
  width: 140px;
  height: 10px;
  background: linear-gradient(90deg, #0d0d1c, #1a1a2e, #0d0d1c);
  margin: 0 auto;
  border-radius: 5px;
}
.tv-glow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60px;
  background: radial-gradient(ellipse, rgba(139,92,246,0.4) 0%, transparent 70%);
  filter: blur(20px);
}

/* SCROLL HINT */
.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  grid-column: 1 / -1;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--purple));
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 1; }
}

/* ── LOGO SLIDER ──────────────────────────────────────────── */
.logo-slider-section {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: rgba(255,255,255,0.01);
}
.logo-slider-label {
  text-align: center;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 28px;
}
.logo-track-wrapper {
  overflow: hidden;
  position: relative;
}
.logo-track-wrapper::before,
.logo-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
}
.logo-track-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}
.logo-track-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}
.logo-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: slide 35s linear infinite;
}
.logo-track:hover { animation-play-state: paused; }
@keyframes slide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  opacity: 0.5;
  transition: opacity 0.3s;
  filter: brightness(0) invert(1);
}
.logo-item:hover { opacity: 1; }
.logo-item img { height: 100%; width: auto; object-fit: contain; max-width: 120px; }

/* ── SECTION HEADER ───────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--gold-dim);
  border: 1px solid rgba(245,200,66,0.25);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-header p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* ── SPORTS SECTION ───────────────────────────────────────── */
.sports-section { background: var(--bg-2); }
.sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.sport-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sport-card:hover {
  border-color: var(--border-h);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.sport-card--featured {
  border-color: rgba(139,92,246,0.3);
  background: rgba(139,92,246,0.05);
}
.sport-card--wc {
  border-color: rgba(245,200,66,0.3);
  background: rgba(245,200,66,0.04);
}
.sport-card--seemore {
  border: 1.5px dashed var(--border-h);
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
  min-height: 200px;
}
.sport-card--seemore:hover { border-color: var(--purple); background: var(--purple-dim); }
.sport-card__glow {
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(139,92,246,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.sport-card__glow--seemore {
  background: radial-gradient(circle, rgba(139,92,246,0.2) 0%, transparent 70%);
}
.sport-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  align-self: flex-start;
}
.tag--live    { background: rgba(239,68,68,0.15); color: #f87171; border: 1px solid rgba(239,68,68,0.2); }
.tag--popular { background: var(--gold-dim); color: var(--gold); border: 1px solid rgba(245,200,66,0.25); }
.tag--upcoming{ background: var(--purple-dim); color: var(--purple); border: 1px solid rgba(139,92,246,0.25); }
.sport-card__logo { width: 80px; height: 50px; display: flex; align-items: center; }
.sport-card__logo img { max-height: 100%; width: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.9; }
.sport-card__body h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.sport-card__body p  { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }
.sport-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 8px;
}
.meta-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}
.meta-dot--gold   { background: var(--gold); }
.meta-dot--purple { background: var(--purple); }
.seemore-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--purple-dim);
  border: 1px solid rgba(139,92,246,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.seemore-icon svg { width: 28px; height: 28px; color: var(--purple); }

/* SPORTS BANNER */
.sports-banner {
  position: relative;
  margin-top: 48px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-height: 300px;
}
.sports-banner img { width: 100%; height: 100%; object-fit: cover; }
.sports-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(7,7,15,0.85) 40%, transparent);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  gap: 20px;
}
.sports-banner__overlay p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  max-width: 340px;
}

/* ── FEATURES ─────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover { border-color: var(--border-h); transform: translateY(-4px); box-shadow: var(--shadow-card); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-icon svg { width: 26px; height: 26px; }
.icon-blue   { background: var(--blue-dim);   border: 1px solid rgba(6,182,212,0.2);   color: var(--blue); }
.icon-gold   { background: var(--gold-dim);   border: 1px solid rgba(245,200,66,0.2);  color: var(--gold); }
.icon-purple { background: var(--purple-dim); border: 1px solid rgba(139,92,246,0.2);  color: var(--purple); }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.feature-card p  { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }
.feature-tag {
  display: inline-block;
  margin-top: 16px;
  padding: 4px 12px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.06em;
}

/* ── DEVICES ──────────────────────────────────────────────── */
.devices { background: var(--bg-2); }
.devices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.device-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.device-card:hover {
  border-color: var(--purple);
  background: var(--purple-dim);
  transform: translateY(-3px);
}
.device-icon {
  width: 48px; height: 48px;
  color: var(--purple);
}
.device-icon svg { width: 100%; height: 100%; }
.device-card span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}
.devices-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
  padding: 16px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
}
.devices-note svg { flex-shrink: 0; color: var(--blue); }

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.3s ease;
}
.testimonial-card:hover { border-color: var(--border-h); transform: translateY(-3px); box-shadow: var(--shadow-card); }
.featured-card {
  border-color: rgba(139,92,246,0.3);
  background: rgba(139,92,246,0.04);
  position: relative;
}
.featured-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(139,92,246,0.3), rgba(6,182,212,0.3));
  z-index: -1;
}
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-card > p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-author img {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border-h);
  object-fit: cover;
}
.testimonial-author strong { display: block; font-size: 0.88rem; color: var(--white); }
.testimonial-author span  { font-size: 0.78rem; color: var(--muted); }

/* ── PRICING ──────────────────────────────────────────────── */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}
.toggle-label {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
  transition: color 0.3s;
}
.toggle-label.active { color: var(--white); }
.toggle-switch { position: relative; display: inline-block; width: 52px; height: 28px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: var(--subtle);
  border-radius: 50px;
  transition: background 0.3s;
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  left: 4px; bottom: 4px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.3s;
}
.toggle-switch input:checked + .toggle-slider { background: var(--purple); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(24px); }
.save-badge {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 50px;
  font-size: 0.7rem;
  color: #4ade80;
  margin-left: 6px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all 0.3s ease;
  position: relative;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: var(--border-h); }
.pricing-card.popular {
  border-color: rgba(139,92,246,0.4);
  background: rgba(139,92,246,0.06);
  transform: scale(1.03);
}
.pricing-card.popular:hover { transform: scale(1.03) translateY(-4px); }
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.plan-header { margin-bottom: 28px; }
.plan-name {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 8px;
}
.currency { font-size: 1.4rem; font-weight: 700; color: var(--white); }
.amount {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.period { font-size: 0.9rem; color: var(--muted); margin-left: 2px; }
.plan-desc { font-size: 0.85rem; color: var(--muted); }
.plan-features {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text);
}
.plan-features li.disabled { color: var(--subtle); }
.check { color: var(--blue); font-weight: 700; }
.cross { color: var(--subtle); }
.btn-plan {
  display: block;
  width: 100%;
  padding: 14px;
  text-align: center;
  background: var(--bg-2);
  border: 1px solid var(--border-h);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.btn-plan:hover { background: var(--purple-dim); border-color: var(--purple); color: var(--white); }
.btn-plan-popular {
  background: linear-gradient(135deg, var(--purple), var(--blue));
  border-color: transparent;
  color: #fff;
}
.btn-plan-popular:hover { box-shadow: 0 8px 30px rgba(139,92,246,0.4); transform: translateY(-2px); background: linear-gradient(135deg, var(--purple), var(--blue)); }
.pricing-note {
  text-align: center;
  margin-top: 40px;
  color: var(--muted);
  font-size: 0.88rem;
}
.pricing-note strong { color: var(--white); }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq { background: var(--bg-2); }
.faq-grid {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(139,92,246,0.3); }
.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  gap: 16px;
  transition: color 0.2s;
}
.faq-item.open .faq-question { color: var(--white); }
.faq-icon {
  font-size: 1.4rem;
  color: var(--purple);
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ── CTA BANNER ───────────────────────────────────────────── */
.cta-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: var(--bg);
}
.cta-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.orb-cta-1 {
  position: absolute;
  width: 500px; height: 500px;
  top: -100px; left: -100px;
  background: radial-gradient(circle, rgba(139,92,246,0.2) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
}
.orb-cta-2 {
  position: absolute;
  width: 400px; height: 400px;
  bottom: -80px; right: -80px;
  background: radial-gradient(circle, rgba(6,182,212,0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-content p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  padding: 80px 0 32px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all 0.3s;
}
.footer-social a svg { width: 18px; height: 18px; }
.footer-social a:hover { border-color: var(--purple); color: var(--purple); background: var(--purple-dim); }
.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: var(--muted); }
.footer-disclaimer { font-size: 0.75rem !important; max-width: 500px; text-align: right; }

/* ── REVEAL ANIMATIONS ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid    { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid{ grid-template-columns: repeat(2, 1fr); }
  .pricing-grid     { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-card.popular { transform: none; }
  .pricing-card.popular:hover { transform: translateY(-4px); }
  .footer-grid      { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 100px 24px 60px;
    text-align: center;
  }
  .hero-cta  { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .scroll-hint { display: none; }

  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: 280px; height: 100vh;
    background: rgba(13,13,28,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 999;
    border-left: 1px solid var(--border);
    padding: 40px;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-actions { display: none; }
  .hamburger { display: flex; }

  .features-grid    { grid-template-columns: 1fr; }
  .testimonials-grid{ grid-template-columns: 1fr; }
  .devices-grid     { grid-template-columns: repeat(2, 1fr); }
  .footer-grid      { grid-template-columns: 1fr; gap: 32px; }
  .footer-disclaimer{ text-align: left; }
  .sports-grid      { grid-template-columns: 1fr; }
  .sports-banner__overlay p { font-size: 1.1rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .devices-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-actions  { flex-direction: column; align-items: center; }
}
