/* ============================================================
   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;
  animation: levitate 6s ease-in-out infinite;
}
@keyframes levitate {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-16px); }
}

.tv-screen {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.1);
  background: #000;
  aspect-ratio: 16/9;
  box-shadow: 0 20px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.05);
}
/* Slideshow replaces the single img */
.hero-slideshow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.slide.active { opacity: 1; }
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Slide dots */
.slide-dots {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}
.slide-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all 0.3s;
}
.slide-dot.active {
  background: var(--gold);
  width: 22px;
  border-radius: 4px;
}

.tv-screen img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }

.tv-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 16px 20px;
}
.tv-badge {
  background: #e53e3e;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.08em;
  align-self: flex-start;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0.6; } }
.tv-info { text-align: right; }
.tv-channel { display: block; font-size: 0.75rem; color: var(--gold); font-weight: 600; letter-spacing: 0.06em; }
.tv-program { display: block; font-size: 0.88rem; color: #fff; font-weight: 700; margin-top: 2px; }

.tv-stand {
  width: 5px; height: 30px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
  margin: 0 auto;
  border-radius: 0 0 3px 3px;
}
.tv-base {
  width: 120px; height: 10px;
  background: rgba(255,255,255,0.07);
  margin: 0 auto;
  border-radius: 5px;
}
.tv-glow {
  position: absolute;
  bottom: -40px; left: 50%;
  transform: translateX(-50%);
  width: 70%; height: 80px;
  background: radial-gradient(ellipse, rgba(139,92,246,0.35) 0%, transparent 70%);
  filter: blur(20px);
}

/* Floating mini cards on hero visual */
.hero-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(13,13,28,0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  animation: floatCard 5s ease-in-out infinite;
  z-index: 5;
  white-space: nowrap;
}
.card-top {
  top: -18px;
  right: -24px;
  animation-delay: 0s;
}
.card-bottom {
  bottom: 40px;
  left: -28px;
  animation-delay: 2.5s;
}
@keyframes floatCard {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-8px); }
}
.hero-float-card img {
  width: 36px; height: 36px;
  border-radius: 8px;
  object-fit: cover;
}
.fc-label {
  display: block;
  font-size: 0.68rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.fc-title {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
}
.fc-live-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e53e3e, #fc8181);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(229,62,62,0.5);
}

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

/* ── SECTION HEADER ───────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--purple-dim);
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.section-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto;
}

/* ── FEATURES ─────────────────────────────────────────────── */
.features { background: var(--bg); }

.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: 32px 28px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.feature-card:hover {
  border-color: var(--border-h);
  transform: translateY(-6px);
  background: rgba(255,255,255,0.05);
  box-shadow: var(--shadow-card);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  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); }
.icon-blue svg  { stroke: var(--blue); }
.icon-gold  { background: var(--gold-dim);   border: 1px solid rgba(245,200,66,0.2); }
.icon-gold svg  { stroke: var(--gold); }
.icon-purple{ background: var(--purple-dim); border: 1px solid rgba(139,92,246,0.2); }
.icon-purple svg { stroke: var(--purple); }

.feature-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 18px;
}
.feature-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.73rem;
  font-weight: 600;
  color: var(--subtle);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── DEVICES ──────────────────────────────────────────────── */
.devices {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

.devices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.device-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: all 0.3s ease;
  cursor: default;
}
.device-card:hover {
  border-color: var(--blue);
  background: var(--blue-dim);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(6,182,212,0.15);
}
.device-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.device-icon svg { width: 28px; height: 28px; stroke: var(--text); }
.device-card:hover .device-icon svg { stroke: var(--blue); }
.device-card span {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
}
.device-card:hover span { color: var(--white); }

.devices-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.83rem;
  padding: 14px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  width: fit-content;
  margin: 0 auto;
}
.devices-note svg { stroke: var(--gold); flex-shrink: 0; }

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials { background: var(--bg); }

.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;
  position: relative;
}
.testimonial-card:hover {
  border-color: var(--border-h);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.featured-card {
  border-color: rgba(139,92,246,0.35);
  background: linear-gradient(135deg, rgba(139,92,246,0.08) 0%, rgba(6,182,212,0.04) 100%);
}
.featured-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--purple), var(--blue));
  z-index: -1;
  opacity: 0.4;
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-card p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-author img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-h);
}
.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}
.testimonial-author span {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 2px;
  display: block;
}

/* ── PRICING ──────────────────────────────────────────────── */
.pricing {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 52px;
}
.toggle-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.toggle-label.active { color: var(--white); }
.save-badge {
  background: linear-gradient(135deg, var(--gold), #e0a800);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
}
.toggle-switch { position: relative; width: 52px; height: 28px; cursor: pointer; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--border);
  border-radius: 50px;
  transition: all 0.3s;
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  left: 3px; top: 3px;
  background: var(--muted);
  border-radius: 50%;
  transition: all 0.3s;
}
.toggle-switch input:checked + .toggle-slider { background: var(--purple-dim); border-color: var(--purple); }
.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(24px);
  background: var(--purple);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  border-color: var(--border-h);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.pricing-card.popular {
  border-color: var(--purple);
  background: linear-gradient(135deg, rgba(139,92,246,0.1) 0%, rgba(6,182,212,0.05) 100%);
  transform: scale(1.04);
}
.pricing-card.popular:hover { transform: scale(1.04) translateY(-6px); }

.popular-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 50px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.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: 4px;
  margin-bottom: 8px;
}
.currency {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  align-self: flex-start;
  margin-top: 8px;
}
.amount {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  transition: all 0.3s;
}
.period { font-size: 0.9rem; color: var(--muted); margin-left: 2px; }
.plan-desc { font-size: 0.85rem; color: var(--muted); }

.plan-features {
  flex: 1;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text);
}
.plan-features li.disabled { color: var(--subtle); text-decoration: line-through; }
.check {
  color: #10b981;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.cross {
  color: var(--subtle);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.btn-plan {
  display: block;
  text-align: center;
  padding: 14px;
  border: 1.5px solid var(--border-h);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  transition: all 0.3s;
  margin-top: auto;
}
.btn-plan:hover {
  border-color: var(--purple);
  color: var(--white);
  background: var(--purple-dim);
  transform: translateY(-2px);
}
.btn-plan-popular {
  background: linear-gradient(135deg, var(--purple), var(--blue));
  border-color: transparent;
  color: #fff;
}
.btn-plan-popular:hover {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  border-color: transparent;
  box-shadow: 0 8px 30px rgba(139,92,246,0.5);
}

.pricing-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 40px;
}
.pricing-note strong { color: var(--gold); }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq { background: var(--bg); }

.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);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: var(--border-h); }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--white); }
.faq-item.open .faq-question { color: var(--white); }

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  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-answer p {
  padding: 0 24px 20px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* ── CTA BANNER ───────────────────────────────────────────── */
.cta-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(139,92,246,0.15) 0%, rgba(6,182,212,0.1) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-bg { position: absolute; inset: 0; overflow: hidden; }
.orb-cta-1 {
  width: 500px; height: 500px;
  top: -200px; left: -100px;
  background: radial-gradient(circle, rgba(139,92,246,0.3) 0%, transparent 70%);
  animation: float 10s ease-in-out infinite;
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}
.orb-cta-2 {
  width: 400px; height: 400px;
  bottom: -150px; right: -100px;
  background: radial-gradient(circle, rgba(6,182,212,0.25) 0%, transparent 70%);
  animation: float 12s ease-in-out infinite reverse;
  position: absolute;
  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: 480px;
  margin: 0 auto 40px;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 38px; height: 38px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  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); transform: translateY(-2px); }

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  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 {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.82rem; color: var(--muted); }
.footer-disclaimer { max-width: 480px; text-align: right; }

/* ── SCROLL REVEAL ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── FADE IN UP KEYFRAME ──────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── HERO ENTRY ANIMATION ─────────────────────────────────── */
.hero-badge   { animation: fadeInUp 0.8s ease 0.2s both; }
.hero-title   { animation: fadeInUp 0.8s ease 0.4s both; }
.hero-subtitle{ animation: fadeInUp 0.8s ease 0.55s both; }
.hero-cta     { animation: fadeInUp 0.8s ease 0.7s both; }
.hero-stats   { animation: fadeInUp 0.8s ease 0.85s both; }
.hero-visual  { animation: fadeInUp 1s ease 0.5s both; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; padding: 120px 40px 80px; text-align: center; }
  .hero-content { order: 1; }
  .hero-visual  { order: 2; }
  .hero-subtitle { margin: 0 auto 40px; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .scroll-hint { display: none; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .devices-grid  { grid-template-columns: repeat(4, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { gap: 16px; }
  .pricing-card.popular { transform: scale(1); }
  .pricing-card.popular:hover { transform: translateY(-6px); }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .nav-links, .nav-actions { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(7,7,15,0.97);
    backdrop-filter: blur(20px);
    padding: 32px 24px;
    gap: 24px;
    border-bottom: 1px solid var(--border);
    z-index: 999;
  }
  .nav-links.open li a { font-size: 1.1rem; }
  .hamburger { display: flex; }

  .hero { padding: 100px 24px 64px; gap: 40px; }
  .hero-title { font-size: 2.4rem; }

  .features-grid { grid-template-columns: 1fr; }
  .devices-grid  { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid  { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-disclaimer { text-align: center; }

  .stat { padding: 0 14px; }
}

/* ── LOGO SLIDER ──────────────────────────────────────────── */
.logo-slider-section {
  padding: 32px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.logo-slider-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--subtle);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}

.logo-track-wrapper {
  overflow: hidden;
  /* fade edges */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: logoScroll 32s linear infinite;
}

/* pause on wrapper hover — prevents jitter from mouse leaving individual items */
.logo-track-wrapper:hover .logo-track {
  animation-play-state: paused;
}

@keyframes logoScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 32px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  /* subtle pill background so dark logos stay visible */
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  margin: 0 12px;
}

.logo-item:hover {
  transform: scale(1.08);
  background: rgba(255, 255, 255, 0.10);
}

.logo-item img {
  height: 52px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .logo-item { padding: 8px 20px; margin: 0 8px; }
  .logo-item img { height: 38px; }
  .logo-slider-section { padding: 24px 0; }
}

/* ── END LOGO SLIDER ──────────────────────────────────────── */

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-stats { gap: 0; }
  .stat { padding: 0 10px; }
  .stat-number { font-size: 1.3rem; }
  .devices-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .section-header h2 { font-size: 1.7rem; }
}

/* ══════════════════════════════════════════════════════════════
   SPORTS SECTION
══════════════════════════════════════════════════════════════ */
.sports-section {
  position: relative;
  background: var(--bg-1);
}

/* ── Grid ── */
.sports-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

/* ── Card base ── */
.sport-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.sport-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(139, 92, 246, 0.45);
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.18);
}

/* featured card (Champions League) spans 2 cols */
.sport-card--featured {
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  padding: 32px 32px;
  background: linear-gradient(135deg, rgba(139,92,246,0.12) 0%, rgba(6,182,212,0.08) 100%);
  border-color: rgba(139,92,246,0.25);
}

.sport-card--featured:hover {
  border-color: rgba(139,92,246,0.65);
  box-shadow: 0 24px 80px rgba(139,92,246,0.25);
}

/* World Cup card accent */
.sport-card--wc {
  background: linear-gradient(135deg, rgba(245,200,66,0.10) 0%, rgba(6,182,212,0.06) 100%);
  border-color: rgba(245,200,66,0.20);
}
.sport-card--wc:hover {
  border-color: rgba(245,200,66,0.55);
  box-shadow: 0 20px 60px rgba(245,200,66,0.15);
}

/* ── Ambient glow (moves with card) ── */
.sport-card__glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at 60% 40%, rgba(139,92,246,0.14), transparent 65%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.sport-card:hover .sport-card__glow { opacity: 1; }
.sport-card--wc .sport-card__glow { background: radial-gradient(ellipse at 60% 40%, rgba(245,200,66,0.12), transparent 65%); }

/* ── Tag badges ── */
.sport-card__tag {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}

.tag--live {
  background: rgba(239,68,68,0.18);
  border: 1px solid rgba(239,68,68,0.35);
  color: #f87171;
}
.tag--popular {
  background: rgba(245,200,66,0.15);
  border: 1px solid rgba(245,200,66,0.30);
  color: #f5c842;
}
.tag--upcoming {
  background: rgba(139,92,246,0.15);
  border: 1px solid rgba(139,92,246,0.30);
  color: #a78bfa;
}

/* ── Logo container ── */
.sport-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 12px;
  transition: background 0.3s ease;
}
.sport-card:hover .sport-card__logo {
  background: rgba(255,255,255,0.09);
}
.sport-card--featured .sport-card__logo {
  width: 100px;
  height: 100px;
}
.sport-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ── Text body ── */
.sport-card__body { flex: 1; }

.sport-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px;
  line-height: 1.3;
}

.sport-card__body p {
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 12px;
}

.sport-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--subtle);
  font-weight: 500;
}

.meta-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #06b6d4;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(6,182,212,0.7);
  animation: pulseDot 2s ease-in-out infinite;
}
.meta-dot--gold {
  background: #f5c842;
  box-shadow: 0 0 6px rgba(245,200,66,0.7);
}
.meta-dot--purple {
  background: #8b5cf6;
  box-shadow: 0 0 6px rgba(139,92,246,0.7);
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.75); }
}

/* ── Bottom banner ── */
.sports-banner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 380px;
  border: 1px solid rgba(255,255,255,0.08);
}
.sports-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: brightness(0.55);
  transition: filter 0.4s ease, transform 0.5s ease;
}
.sports-banner:hover img {
  filter: brightness(0.65);
  transform: scale(1.03);
}
.sports-banner__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  padding: 24px;
}
.sports-banner__overlay p {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .sports-grid { grid-template-columns: repeat(2, 1fr); }
  .sport-card--featured { grid-column: span 2; }
}

@media (max-width: 640px) {
  .sports-grid { grid-template-columns: 1fr; gap: 16px; }
  .sport-card--featured {
    grid-column: span 1;
    flex-direction: column;
    align-items: flex-start;
  }
  .sports-banner { height: 260px; }
  .sports-banner__overlay p { font-size: 1.2rem; }
}

/* ── See More card ── */
.sport-card--seemore {
  text-decoration: none;
  align-items: center;
  justify-content: center;
  text-align: left;
  background: linear-gradient(135deg, rgba(245,200,66,0.07) 0%, rgba(139,92,246,0.07) 100%);
  border-color: rgba(245,200,66,0.20);
  border-style: dashed;
}
.sport-card--seemore:hover {
  border-color: rgba(245,200,66,0.55);
  box-shadow: 0 20px 60px rgba(245,200,66,0.14);
}
.sport-card__glow--seemore {
  background: radial-gradient(ellipse at 50% 50%, rgba(245,200,66,0.12), transparent 65%);
}
.seemore-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(245,200,66,0.10);
  border: 1px solid rgba(245,200,66,0.25);
  margin-bottom: 4px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.sport-card--seemore:hover .seemore-icon {
  background: rgba(245,200,66,0.18);
  transform: rotate(90deg);
}
.seemore-icon svg {
  width: 36px;
  height: 36px;
  color: #f5c842;
}

/* ── END SPORTS SECTION ───────────────────────────────────── */
