/* =============================================
   STREAM4K - Premium IPTV Website
   Design System & Styles
   ============================================= */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Colors */
  --primary: #6C5CE7;
  --primary-light: #A29BFE;
  --primary-dark: #4A3DB5;
  --accent: #00D2FF;
  --accent-alt: #7B2FFF;
  --gold: #FFD700;
  --gold-dark: #E5A100;
  --success: #00E676;
  --danger: #FF5252;
  --warning: #FFB74D;

  /* Backgrounds */
  --bg-primary: #0A0A1A;
  --bg-secondary: #0F0F2D;
  --bg-tertiary: #141432;
  --bg-card: rgba(20, 20, 50, 0.6);
  --bg-glass: rgba(255, 255, 255, 0.04);
  --bg-glass-hover: rgba(255, 255, 255, 0.08);

  /* Text */
  --text-primary: #FFFFFF;
  --text-secondary: #B4B4CC;
  --text-muted: #6C6C8A;

  /* Borders */
  --border-color: rgba(255, 255, 255, 0.06);
  --border-glow: rgba(108, 92, 231, 0.3);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #6C5CE7 0%, #00D2FF 100%);
  --gradient-hero: linear-gradient(180deg, rgba(10,10,26,0) 0%, rgba(10,10,26,0.8) 60%, #0A0A1A 100%);
  --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%);
  --gradient-card: linear-gradient(145deg, rgba(108,92,231,0.1), rgba(0,210,255,0.05));
  --gradient-cta: linear-gradient(135deg, #6C5CE7, #A855F7, #00D2FF);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 30px rgba(108,92,231,0.3);
  --shadow-glow-accent: 0 0 30px rgba(0,210,255,0.3);

  /* Typography */
  --font-primary: 'Outfit', sans-serif;
  --font-secondary: 'Inter', sans-serif;

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

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 50%;
}

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

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

body {
  font-family: var(--font-secondary);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
}

/* ---------- Utilities ---------- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.section-badge i {
  font-size: 0.7rem;
}

.section-title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title .gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

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

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Animated Background Particles ---------- */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition-normal);
}

.navbar.scrolled {
  background: rgba(10, 10, 26, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: 10px 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-primary);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-logo .logo-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-logo .logo-4k {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.9rem;
  font-weight: 800;
  padding: 2px 8px;
  border: 2px solid var(--gold);
  border-radius: 6px;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
  transition: var(--transition-normal);
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--gradient-primary);
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  color: white !important;
  transition: var(--transition-normal);
  box-shadow: 0 4px 15px rgba(108, 92, 231, 0.4);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(108, 92, 231, 0.5);
}

.nav-cta::after {
  display: none !important;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-normal);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

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

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

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

.hero-content {
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(108, 92, 231, 0.15);
  border: 1px solid rgba(108, 92, 231, 0.3);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease forwards;
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.6); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(0, 230, 118, 0); }
}

.hero-title {
  font-family: var(--font-primary);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease 0.1s forwards;
  opacity: 0;
}

.hero-title .highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title .gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 500px;
  animation: fadeInUp 0.6s ease 0.2s forwards;
  opacity: 0;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 36px;
  animation: fadeInUp 0.6s ease 0.3s forwards;
  opacity: 0;
}

.hero-stat {
  text-align: left;
}

.hero-stat .stat-number {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat .stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.4s forwards;
  opacity: 0;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--gradient-cta);
  background-size: 200% 200%;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  color: white;
  transition: var(--transition-normal);
  box-shadow: 0 4px 20px rgba(108, 92, 231, 0.4);
  animation: gradientShift 3s ease infinite;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(108, 92, 231, 0.5);
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  backdrop-filter: blur(10px);
  transition: var(--transition-normal);
}

.btn-secondary:hover {
  background: var(--bg-glass-hover);
  border-color: var(--primary-light);
  transform: translateY(-2px);
}

/* ---------- TV & Film Library Section ---------- */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 0.8s ease 0.3s forwards;
  opacity: 0;
}

.tv-frame {
  position: relative;
  width: 480px;
  max-width: 100%;
  aspect-ratio: 16/10;
  border-radius: 20px;
  background: #111;
  border: 4px solid #2a2a4a;
  box-shadow:
    0 0 0 2px rgba(108, 92, 231, 0.2),
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 80px rgba(108, 92, 231, 0.15),
    inset 0 0 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.tv-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(180deg, rgba(108,92,231,0.08), transparent);
  z-index: 3;
  pointer-events: none;
}

.tv-frame::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(0deg, rgba(10,10,26,0.9), transparent);
  z-index: 3;
  pointer-events: none;
}

.tv-screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  background: #000;
}

.film-scroll {
  display: flex;
  flex-direction: column;
  gap: 8px;
  animation: scrollUp 25s linear infinite;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}

.film-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 0 6px;
}

.film-poster {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 2/3;
  position: relative;
}

.film-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.film-poster::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.6));
}

@keyframes scrollUp {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

.tv-stand {
  width: 120px;
  height: 30px;
  background: linear-gradient(180deg, #2a2a4a, #1a1a3a);
  margin: 0 auto;
  border-radius: 0 0 20px 20px;
  position: relative;
}

.tv-stand::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 6px;
  background: linear-gradient(90deg, transparent, #2a2a4a, transparent);
  border-radius: 10px;
}

.tv-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(108,92,231,0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* Live indicator on TV */
.tv-live-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(255, 0, 0, 0.8);
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.tv-live-badge .live-dot {
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  animation: pulse 1s ease infinite;
}

/* ---------- Trusted By Strip ---------- */
.trust-strip {
  padding: 60px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.trust-strip .container {
  text-align: center;
}

.trust-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 30px;
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  opacity: 0.5;
}

.trust-logo {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-normal);
}

.trust-logo:hover {
  opacity: 1;
  color: var(--text-secondary);
}

.trust-logo i {
  font-size: 1.5rem;
}

/* ---------- Channel Banner Marquee ---------- */
.channel-banner-strip {
  position: relative;
  z-index: 1;
  padding: 40px 0 50px;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  overflow: hidden;
}

.channel-banner-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(108,92,231,0.5), var(--accent), rgba(108,92,231,0.5), transparent);
}

.channel-banner-strip::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(108,92,231,0.3), transparent);
}

.banner-label {
  text-align: center;
  margin-bottom: 28px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.banner-label i {
  font-size: 0.9rem;
  color: #FF6B35;
  animation: pulse 2s ease infinite;
}

.channel-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 20px;
  animation: marqueeScroll 50s linear infinite;
  width: max-content;
}

.marquee-track:hover {
  animation-play-state: paused;
}

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

.ch-banner-item {
  flex-shrink: 0;
  width: 320px;
  height: 120px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  border: 2px solid rgba(108, 92, 231, 0.2);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(108, 92, 231, 0.08);
}

.ch-banner-item::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-md) + 2px);
  background: linear-gradient(135deg, rgba(108,92,231,0.4), rgba(0,210,255,0.4), rgba(108,92,231,0.4));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.ch-banner-item:hover {
  transform: scale(1.08) translateY(-4px);
  border-color: rgba(0, 210, 255, 0.5);
  box-shadow: 
    0 8px 30px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(108, 92, 231, 0.25),
    0 0 60px rgba(0, 210, 255, 0.1);
}

.ch-banner-item:hover::before {
  opacity: 1;
}

.ch-banner-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.ch-banner-item:hover img {
  transform: scale(1.05);
}

/* ---------- Features Section ---------- */
.features {
  padding: var(--section-padding);
  position: relative;
  z-index: 1;
}

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

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(108, 92, 231, 0.3);
  box-shadow: var(--shadow-glow);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  background: var(--gradient-primary);
  color: white;
}

.feature-card h3 {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---------- Channel Section ---------- */
.channels {
  padding: var(--section-padding);
  position: relative;
  z-index: 1;
  background: var(--bg-secondary);
}

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

.channel-categories {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.channel-cat {
  padding: 10px 24px;
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-normal);
}

.channel-cat.active,
.channel-cat:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  color: white;
}

.channels-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.channel-item {
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: var(--transition-normal);
  text-align: center;
}

.channel-item:hover {
  transform: translateY(-4px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-glow);
}

.channel-item i {
  font-size: 2rem;
  color: var(--primary-light);
}

.channel-item span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.channel-count {
  text-align: center;
  margin-top: 40px;
  padding: 24px;
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.channel-count p {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.channel-count strong {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Pricing Section ---------- */
.pricing {
  padding: var(--section-padding);
  position: relative;
  z-index: 1;
}

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

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

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 40px 30px;
  position: relative;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(108, 92, 231, 0.3);
}

.pricing-card.popular {
  background: linear-gradient(145deg, rgba(108,92,231,0.2), rgba(0,210,255,0.1));
  border-color: rgba(108, 92, 231, 0.5);
  box-shadow: var(--shadow-glow);
  transform: scale(1.05);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-card.best-value {
  background: linear-gradient(145deg, rgba(255,215,0,0.1), rgba(255,140,0,0.05));
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.15);
}

.pricing-card.best-value:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 215, 0, 0.6);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.pricing-badge.popular-badge {
  background: var(--gradient-primary);
  color: white;
}

.pricing-badge.value-badge {
  background: var(--gradient-gold);
  color: #1a1a1a;
}

.pricing-duration {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.pricing-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-amount {
  margin-bottom: 24px;
}

.pricing-amount .currency {
  font-size: 1.2rem;
  font-weight: 600;
  vertical-align: super;
  color: var(--text-secondary);
}

.pricing-amount .price {
  font-family: var(--font-primary);
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
}

.pricing-amount .period {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-amount .original-price {
  display: block;
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-top: 4px;
}

.pricing-amount .discount {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(255, 82, 82, 0.15);
  color: var(--danger);
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-left: 8px;
}

.pricing-features {
  flex: 1;
  margin-bottom: 28px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.pricing-features li i {
  color: var(--success);
  font-size: 0.8rem;
}

.pricing-btn {
  width: 100%;
  padding: 14px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  transition: var(--transition-normal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pricing-btn.btn-outline {
  background: transparent;
  border: 2px solid var(--border-color);
  color: var(--text-primary);
}

.pricing-btn.btn-outline:hover {
  border-color: var(--primary-light);
  background: rgba(108, 92, 231, 0.1);
}

.pricing-btn.btn-fill {
  background: var(--gradient-primary);
  border: none;
  color: white;
  box-shadow: 0 4px 20px rgba(108, 92, 231, 0.4);
}

.pricing-btn.btn-fill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(108, 92, 231, 0.5);
}

.pricing-btn.btn-gold {
  background: var(--gradient-gold);
  border: none;
  color: #1a1a1a;
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.pricing-btn.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4);
}

.pricing-guarantee {
  text-align: center;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.pricing-guarantee i {
  color: var(--success);
  font-size: 1.2rem;
}

/* ---------- How It Works ---------- */
.how-it-works {
  padding: var(--section-padding);
  position: relative;
  z-index: 1;
  background: var(--bg-secondary);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 900;
  color: white;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-glow);
}

.step-card h3 {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto;
}

/* ---------- Testimonials ---------- */
.testimonials {
  padding: var(--section-padding);
  position: relative;
  z-index: 1;
}

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

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

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition-normal);
}

.testimonial-card:hover {
  border-color: rgba(108, 92, 231, 0.3);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars i {
  color: var(--gold);
  font-size: 0.9rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: white;
}

.testimonial-info .name {
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-info .location {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---------- FAQ Section ---------- */
.faq {
  padding: var(--section-padding);
  position: relative;
  z-index: 1;
  background: var(--bg-secondary);
}

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

.faq-list {
  max-width: 750px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-item:hover {
  border-color: rgba(108, 92, 231, 0.3);
}

.faq-item.active {
  border-color: rgba(108, 92, 231, 0.4);
  box-shadow: 0 0 20px rgba(108, 92, 231, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--bg-glass);
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  transition: var(--transition-normal);
}

.faq-question i {
  transition: var(--transition-normal);
  color: var(--primary-light);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---------- CTA Section ---------- */
.cta-section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.cta-box {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(108,92,231,0.1), transparent, rgba(0,210,255,0.1), transparent);
  animation: rotate 10s linear infinite;
}

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

.cta-box > * {
  position: relative;
  z-index: 1;
}

.cta-box h2 {
  font-family: var(--font-primary);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-box p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Footer ---------- */
.footer {
  padding: 60px 0 30px;
  border-top: 1px solid var(--border-color);
  position: relative;
  z-index: 1;
}

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

.footer-brand .footer-logo {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.footer-brand .footer-logo .logo-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition-normal);
}

.footer-socials a:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  color: white;
}

.footer-col h4 {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.footer-col a:hover {
  color: var(--primary-light);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-payments {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-payments i {
  font-size: 1.6rem;
  color: var(--text-muted);
}

/* ---------- Hero Security Badge ---------- */
.hero-security-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.4);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--success);
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 230, 118, 0.2);
}

.hero-security-badge i {
  font-size: 1.1rem;
}

/* ---------- PPV Calendar ---------- */
.ppv-calendar {
  padding: var(--section-padding);
  position: relative;
  z-index: 1;
}
.ppv-header {
  text-align: center;
  margin-bottom: 60px;
}
.ppv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.ppv-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-normal);
}
.ppv-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: var(--shadow-glow-accent);
}
.ppv-image {
  position: relative;
  height: 200px;
  width: 100%;
}
.ppv-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ppv-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--danger);
  color: white;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(255, 82, 82, 0.4);
}
.ppv-content {
  padding: 24px;
}
.ppv-date {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.ppv-teams {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.ppv-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ---------- VOD Showcase ---------- */
.vod-showcase {
  padding: var(--section-padding);
  background: var(--bg-secondary);
  position: relative;
  z-index: 1;
}
.vod-header {
  text-align: center;
  margin-bottom: 60px;
}
.vod-category h3 {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  margin-bottom: 24px;
  padding-left: 10px;
  border-left: 4px solid var(--primary);
}
.vod-carousel-container {
  overflow-x: auto;
  padding-bottom: 20px;
  margin-bottom: 40px;
}
.vod-carousel-container::-webkit-scrollbar {
  height: 8px;
}
.vod-carousel-container::-webkit-scrollbar-track {
  background: rgba(108, 92, 231, 0.1);
  border-radius: 10px;
}
.vod-carousel-container::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}
.vod-carousel {
  display: inline-flex;
  gap: 20px;
  padding-bottom: 15px;
}
.vod-card {
  flex-shrink: 0;
  width: 200px;
  aspect-ratio: 2/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  transition: var(--transition-normal);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.vod-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.vod-card:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: var(--shadow-glow);
}
.vod-card:hover img {
  transform: scale(1.1);
}

/* ---------- Secure Checkout Badge ---------- */
.secure-checkout-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--success);
  margin-right: 16px;
  border-right: 1px solid rgba(255,255,255,0.1);
  padding-right: 16px;
}

/* ---------- Scroll Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Keyframes ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- Channel Banner Marquee ---------- */
.channel-banner-strip {
  padding: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
}

.banner-label {
  text-align: center;
  padding: 24px 0 16px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.banner-label i {
  color: var(--gold);
}

.channel-marquee {
  overflow: hidden;
  padding: 16px 0 28px;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  gap: 20px;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

.ch-logo-item {
  flex-shrink: 0;
}

.ch-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 10px;
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 800;
  color: white;
  letter-spacing: 0.5px;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: var(--transition-normal);
  min-width: 80px;
  text-align: center;
}

.ch-logo-item:hover .ch-logo-icon {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

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

/* ---------- Channels Banner Image ---------- */
.channels-banner-img {
  margin-bottom: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.channels-banner-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- SEO Content Section ---------- */
.seo-content {
  padding: 60px 0;
  position: relative;
  z-index: 1;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
}

.seo-block {
  max-width: 800px;
  margin: 0 auto;
}

.seo-block h2 {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.seo-block p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.seo-block strong {
  color: var(--text-secondary);
}

/* ---------- Floating WhatsApp Button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition-normal);
  animation: whatsappPulse 2s ease infinite;
}

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

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1); }
}

/* ---------- Film Poster with Real Images ---------- */
.film-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

/* ---------- Persistent Mobile Elements ---------- */
.floating-wa {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}
.floating-wa:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
  color: white;
}

.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 16px;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}
.mobile-sticky-cta .btn-primary {
  width: 100%;
  padding: 12px;
  font-size: 1.1rem;
  justify-content: center;
}

/* ---------- Responsive - Tablet (1024px) ---------- */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content {
    order: 1;
  }
  .hero-visual {
    order: 0;
    margin-bottom: 20px;
  }
  .hero-description {
    margin: 0 auto 32px;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-buttons {
    justify-content: center;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-card.popular {
    transform: scale(1);
  }
  .pricing-card.popular:hover {
    transform: translateY(-8px);
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tv-frame {
    width: 380px;
  }
}

/* ---------- Responsive - Mobile (768px) ---------- */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }

  /* Mobile Navigation */
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 26, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    z-index: 999;
    padding: 20px;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    font-size: 1.3rem;
    font-weight: 600;
    padding: 10px 20px;
    width: 100%;
    text-align: center;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
  }
  .nav-links a:hover,
  .nav-links a:active {
    background: var(--bg-glass-hover);
  }
  .nav-links .nav-cta {
    margin-top: 10px;
    padding: 16px 40px;
    font-size: 1.1rem;
    width: auto;
  }
  .mobile-toggle {
    display: flex;
    z-index: 1001;
  }

  /* Hero Mobile */
  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }
  .hero-title {
    font-size: 2rem;
    line-height: 1.15;
  }
  .hero-description {
    font-size: 1rem;
    line-height: 1.7;
  }
  .hero-stats {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero-stat .stat-number {
    font-size: 1.6rem;
  }
  .hero-stat .stat-label {
    font-size: 0.7rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 14px 28px;
    font-size: 0.95rem;
  }
  .hero-badge {
    font-size: 0.7rem;
    padding: 6px 14px;
  }

  /* TV Mobile */
  .tv-frame {
    width: 300px;
  }
  .tv-stand {
    width: 80px;
    height: 20px;
  }
  .tv-stand::before {
    width: 120px;
    height: 4px;
    bottom: -6px;
  }

  /* Section Titles Mobile */
  .section-title {
    font-size: 1.6rem;
  }
  .section-subtitle {
    font-size: 0.95rem;
  }
  .section-badge {
    font-size: 0.7rem;
    padding: 5px 12px;
    letter-spacing: 1.5px;
  }

  /* Features Mobile */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .feature-card {
    padding: 24px;
  }
  .feature-card:hover {
    transform: none;
  }
  .feature-icon {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }

  /* Trust Strip Mobile */
  .trust-strip {
    padding: 40px 0;
  }
  .trust-logos {
    gap: 20px;
  }
  .trust-logo {
    font-size: 0.9rem;
  }
  .trust-logo i {
    font-size: 1.2rem;
  }

  /* Channel Banner Mobile */
  .channel-banner-strip {
    padding: 30px 0 36px;
  }
  .ch-banner-item {
    width: 240px;
    height: 90px;
  }
  .marquee-track {
    gap: 14px;
  }
  .banner-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
  }

  /* Channels Mobile */
  .channel-categories {
    gap: 8px;
  }
  .channel-cat {
    padding: 8px 16px;
    font-size: 0.75rem;
  }
  .channels-showcase {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .channel-item {
    padding: 14px 10px;
  }
  .channel-item i {
    font-size: 1.4rem;
  }
  .channel-item span {
    font-size: 0.7rem;
  }

  /* Pricing Mobile */
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
    gap: 20px;
  }
  .pricing-card {
    padding: 30px 24px;
  }
  .pricing-card.popular {
    transform: none;
  }
  .pricing-card.popular:hover {
    transform: none;
  }
  .pricing-amount .price {
    font-size: 2.8rem;
  }

  /* Steps Mobile */
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .steps-grid::before {
    display: none;
  }
  .step-number {
    width: 64px;
    height: 64px;
    font-size: 1.5rem;
  }

  /* Testimonials Mobile */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .testimonial-card {
    padding: 24px;
  }

  /* FAQ Mobile */
  .faq-question {
    padding: 16px 18px;
    font-size: 0.9rem;
  }
  .faq-answer-inner {
    padding: 0 18px 16px;
    font-size: 0.85rem;
  }

  /* Footer Mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  /* CTA Mobile */
  .cta-box {
    padding: 36px 20px;
    border-radius: var(--radius-lg);
  }
  .cta-box h2 {
    font-size: 1.5rem;
  }
  .cta-box p {
    font-size: 0.9rem;
  }

  /* SEO Content Mobile */
  .seo-block h2 {
    font-size: 1.3rem;
  }
  .seo-block p {
    font-size: 0.85rem;
  }

  /* WhatsApp Mobile & Sticky CTA */
  .floating-wa {
    bottom: 85px; /* Above the sticky CTA */
    left: 16px;
    width: 54px;
    height: 54px;
    font-size: 1.8rem;
  }
  .whatsapp-float {
    display: none; /* Hide old icon mapping */
  }
  .mobile-sticky-cta {
    display: block;
  }
  body {
    padding-bottom: 74px; /* Prevent footer clipping */
  }
}

/* ---------- Responsive - Small Mobile (480px) ---------- */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.7rem;
  }
  .hero-stats {
    flex-direction: row;
    gap: 16px;
  }
  .hero-stat .stat-number {
    font-size: 1.4rem;
  }
  .tv-frame {
    width: 260px;
  }
  .trust-logos {
    gap: 14px;
  }
  .trust-logo {
    font-size: 0.8rem;
  }
  .trust-logo i {
    font-size: 1rem;
  }
  .channels-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    max-width: 100%;
  }
  .channel-count strong {
    font-size: 1.6rem;
  }
  .ch-banner-item {
    width: 200px;
    height: 75px;
  }
  .marquee-track {
    gap: 10px;
  }
}

/* ---------- Responsive - Very Small (360px) ---------- */
@media (max-width: 360px) {
  .container {
    padding: 0 16px;
  }
  .hero-title {
    font-size: 1.5rem;
  }
  .tv-frame {
    width: 240px;
  }
  .btn-primary,
  .btn-secondary {
    padding: 12px 20px;
    font-size: 0.85rem;
  }
}

/* ---------- Touch Device Optimizations ---------- */
@media (hover: none) and (pointer: coarse) {
  .feature-card:hover {
    transform: none;
    box-shadow: none;
  }
  .pricing-card:hover {
    transform: none;
  }
  .channel-item:hover {
    transform: none;
  }
  .testimonial-card:hover {
    transform: none;
  }
  /* Larger touch targets */
  .faq-question {
    min-height: 52px;
  }
  .channel-cat {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-dark);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* ---------- Print Styles ---------- */
@media print {
  .navbar, .whatsapp-float, #particles-canvas, .tv-glow, .channel-marquee {
    display: none !important;
  }
  body {
    background: white;
    color: black;
  }
}
