/* =========================================
   1. RESET & VARIABLES
   ========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

:root {
  --bg-body: #faf3e1; /* Cream */
  --bg-secondary: #f5e7c6; /* Beige */
  --primary: #fa8112; /* Orange */
  --dark: #222222; /* Black/Grey */
  --white: #ffffff;
  --text-main: #222222;
  --text-muted: #666666;
  --glass-border: 1px solid rgba(34, 34, 34, 0.05);
  --shadow-sm: 0 4px 6px rgba(34, 34, 34, 0.05);
  --shadow-lg: 0 20px 40px rgba(34, 34, 34, 0.08);
  --radius: 20px;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden; /* Mna3na scroll horizontal */
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--bg-body);
  color: var(--text-main);
  width: 100%;
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: #000;
}

/* =========================================
   2. NAVIGATION
   ========================================= */
.nav-container {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1400px;
  z-index: 1000;
}

nav {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: var(--glass-border);
  border-radius: 100px;
  padding: 12px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.logo {
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: -1px;
  text-decoration: none;
  cursor: pointer;
}

.logo span {
  color: var(--primary);
}

.nav-menu {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-menu a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: var(--primary);
}

.cta-nav {
  padding: 12px 28px !important;
  background: var(--dark);
  color: var(--white) !important;
  border-radius: 100px;
  font-weight: 600 !important;
  transition: all 0.3s !important;
}

.cta-nav:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(250, 129, 18, 0.3);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--dark);
  font-size: 24px;
  cursor: pointer;
}

/* =========================================
   3. HERO SECTION (Lwajiha)
   ========================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 20px 80px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-badge {
  display: inline-block;
  padding: 8px 18px;
  background: #fff;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  border-radius: 100px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: 68px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--dark);
  letter-spacing: -2px;
}

.hero h1 span {
  color: var(--primary);
}

.hero p {
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 550px;
}

.cta-group {
  display: flex;
  gap: 16px;
  position: relative;
  z-index: 20;
}

.btn-primary {
  padding: 18px 40px;
  background: var(--primary);
  border-radius: 14px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 10px 20px rgba(250, 129, 18, 0.25);
  border: none;
  display: inline-block;
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(250, 129, 18, 0.4);
}

.btn-secondary {
  padding: 18px 40px;
  background: white;
  border: 2px solid rgba(0, 0, 0, 0.05);
  border-radius: 14px;
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
  white-space: nowrap;
}

.btn-secondary:hover {
  border-color: var(--dark);
}

/* =========================================
   4. DEVICE MOCKUP & ANIMATIONS
   ========================================= */
.device-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: center;
}

.device-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90vw;
  height: 90vw;
  max-width: 700px;
  max-height: 700px;
  background: var(--bg-secondary);
  border-radius: 50%;
  z-index: -1;
  filter: blur(40px);
  pointer-events: none;
}

.device-mockup {
  background: var(--dark);
  border-radius: 30px;
  padding: 12px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-3deg);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 100%;
  max-width: 650px;
  cursor: pointer;
}

.device-mockup:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.screen {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #000;
  position: relative;
}

.screen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* Hint Animation */
.interaction-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 8;
  pointer-events: none;
  transition: all 0.4s ease;
}

.hint-icon {
  width: 60px;
  height: 60px;
  background: rgba(250, 129, 18, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  box-shadow: 0 0 0 0 rgba(250, 129, 18, 0.7);
  animation: pulse-orange 2s infinite;
}

.hint-text {
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  background: rgba(0, 0, 0, 0.5);
  padding: 4px 12px;
  border-radius: 100px;
}

@keyframes pulse-orange {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(250, 129, 18, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 20px rgba(250, 129, 18, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(250, 129, 18, 0); }
}

/* IPTV Overlay UI */
.iptv-ui-overlay {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden; opacity: 0; transition: opacity 0.4s ease;
}

.iptv-commercial-text {
  position: absolute; top: 35%; left: 40px; z-index: 5; opacity: 0; transition: all 0.5s ease 0.1s; max-width: 55%; text-align: left; transform: translateY(20px);
}

.iptv-commercial-text h2 {
  color: white; font-size: 38px; font-weight: 900; line-height: 1.1; margin-bottom: 12px; text-transform: uppercase; text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.iptv-commercial-text p {
  color: var(--white); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; background: linear-gradient(90deg, var(--primary), #e06c00); display: inline-block; padding: 6px 14px; border-radius: 6px; box-shadow: 0 4px 15px rgba(250, 129, 18, 0.4); margin: 0;
}

.iptv-sidebar {
  position: absolute; top: 0; bottom: 0; right: 0; width: 35%; background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(10px); padding: 20px; display: flex; flex-direction: column; gap: 15px; transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1); border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.iptv-sidebar-title { color: #888; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }

.iptv-channel-item { display: flex; align-items: center; gap: 10px; padding: 8px; border-radius: 8px; color: white; font-size: 13px; font-weight: 500; transition: background 0.2s; }
.iptv-channel-item:first-of-type { background: rgba(250, 129, 18, 0.2); color: var(--primary); border: 1px solid rgba(250, 129, 18, 0.3); }
.iptv-channel-item i { width: 24px; text-align: center; }

.iptv-bottom-bar {
  position: absolute; bottom: 20px; left: 20px; right: 38%; background: rgba(255, 255, 255, 0.95); padding: 12px 16px; border-radius: 12px; display: flex; justify-content: space-between; align-items: center; transform: translateY(150%); transition: transform 0.4s 0.1s ease; box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); z-index: 10;
}

.iptv-status-text { font-size: 12px; font-weight: 800; color: var(--dark); }
.iptv-status-sub { font-size: 10px; color: #666; display: block; font-weight: 500; }
.iptv-quality-tag { background: var(--dark); color: #fff; font-size: 10px; padding: 3px 8px; border-radius: 4px; font-weight: 700; }

/* Interaction Logic */
.screen:hover video, .screen.active video { transform: scale(1.05); opacity: 0.5; }
.screen:hover .iptv-ui-overlay, .screen.active .iptv-ui-overlay { opacity: 1; }
.screen:hover .interaction-hint, .screen.active .interaction-hint { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
.screen:hover .iptv-commercial-text, .screen.active .iptv-commercial-text { opacity: 1; transform: translateY(0); }
.screen:hover .iptv-sidebar, .screen.active .iptv-sidebar { transform: translateX(0); }
.screen:hover .iptv-bottom-bar, .screen.active .iptv-bottom-bar { transform: translateY(0); }

/* =========================================
   5. DEVICES SECTION (Dark)
   ========================================= */
.devices-section { background-color: #050505; padding: 100px 20px; color: white; }
.devices-container { max-width: 1400px; margin: 0 auto; }
.devices-header { text-align: center; margin-bottom: 60px; }
.devices-header h2 { font-size: 42px; font-weight: 800; margin-bottom: 10px; }
.devices-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; }
.device-card {
  background: #111111; border-radius: 16px; padding: 35px 20px; text-align: center; border: 2px solid transparent; transition: all 0.3s ease; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 15px; cursor: pointer;
}
.device-card:hover { border-color: var(--primary); background: #1a1a1a; transform: translateY(-5px); box-shadow: 0 10px 30px rgba(250, 129, 18, 0.2); }
.device-icon { font-size: 40px; color: white; margin-bottom: 5px; }
.device-name { font-weight: 700; font-size: 16px; color: white; }
.device-sub { font-size: 11px; color: #888; text-transform: uppercase; letter-spacing: 0.5px; }

/* =========================================
   6. MOVIES SLIDER
   ========================================= */
.movies-section { padding: 80px 20px; background: var(--bg-secondary); overflow: hidden; }
.slider-header { text-align: center; margin-bottom: 50px; }
.slider-header h2 { font-size: 32px; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.slider-header p { color: var(--text-muted); }
.movies-track { display: flex; gap: 25px; width: max-content; animation: scrollMovies 50s linear infinite; }
.movies-track:hover { animation-play-state: paused; }
.movie-card {
  width: 320px; flex-shrink: 0; border-radius: 20px; overflow: hidden; position: relative; box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15); transition: transform 0.3s; background: var(--dark); aspect-ratio: 2/3;
}
.movie-card:hover { transform: translateY(-15px) scale(1.03); box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3); z-index: 2; }
.movie-card img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.3s; }
@keyframes scrollMovies { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-345px * 8)); } }

/* =========================================
   7. STATS SECTION
   ========================================= */
.stats-section { background: var(--bg-secondary); padding: 15px 20px 80px 20px; position: relative; z-index: 2; }
.stats-container {
  max-width: 1200px; margin: 0 auto; background: #fff; border-radius: 30px; padding: 50px 40px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05); border: 1px solid rgba(0, 0, 0, 0.02);
}
.stat-item { text-align: center; display: flex; flex-direction: column; align-items: center; position: relative; }
.stat-item:not(:last-child)::after { content: ""; position: absolute; right: -15px; top: 20%; height: 60%; width: 1px; background: #eee; }
.stat-icon-wrapper {
  width: 60px; height: 60px; background: #fff8ee; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 15px; color: var(--primary); font-size: 24px; transition: transform 0.3s ease;
}
.stat-item:hover .stat-icon-wrapper { transform: rotateY(180deg); background: var(--primary); color: #fff; }
.stat-number { font-size: 38px; font-weight: 800; color: var(--dark); margin-bottom: 5px; font-variant-numeric: tabular-nums; }
.stat-label { color: var(--text-muted); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* =========================================
   8. COMMON SECTIONS
   ========================================= */
.section-padding { padding: 100px 20px; max-width: 1400px; margin: 0 auto; width: 100%; }
.section-header { text-align: center; margin-bottom: 80px; }
.section-tag { color: var(--primary); font-weight: 700; text-transform: uppercase; font-size: 13px; letter-spacing: 2px; margin-bottom: 15px; display: block; }
.section-header h2 { font-size: 48px; font-weight: 800; margin-bottom: 20px; color: var(--dark); }
.section-header p { color: var(--text-muted); max-width: 600px; margin: 0 auto; font-size: 18px; }

/* =========================================
   9. FEATURES SECTION
   ========================================= */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.feature-card {
  background: #1a1a1a; color: var(--white); padding: 40px 30px; border-radius: 24px; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); border: 1px solid rgba(255, 255, 255, 0.05); position: relative; overflow: hidden; z-index: 1; cursor: default;
}
.feature-card::before {
  content: ""; position: absolute; top: -50px; right: -50px; width: 100px; height: 100px; background: radial-gradient(circle, rgba(250, 129, 18, 0.15) 0%, transparent 70%); border-radius: 50%; transition: transform 0.5s ease; z-index: -1;
}
.feature-card:hover { transform: translateY(-10px); background: #000; box-shadow: 0 20px 40px rgba(250, 129, 18, 0.15); border-color: rgba(250, 129, 18, 0.5); }
.feature-card:hover::before { transform: scale(4); }
.feature-icon {
  width: 70px; height: 70px; background: rgba(255, 255, 255, 0.05); border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 28px; color: var(--primary); margin-bottom: 25px; transition: all 0.4s ease; box-shadow: none;
}
.feature-card:hover .feature-icon { background: var(--primary); color: white; transform: rotate(-10deg) scale(1.1); box-shadow: 0 10px 20px rgba(250, 129, 18, 0.3); }
.feature-card h3 { font-size: 22px; margin-bottom: 15px; color: var(--white); font-weight: 800; }
.feature-card p { color: #aaa; font-size: 16px; line-height: 1.7; }

/* =========================================
   10. PRICING SECTION
   ========================================= */
.pricing-section { background: var(--bg-secondary); position: relative; }
.duration-tabs {
  display: flex; justify-content: center; gap: 8px; margin-bottom: 60px; background: #e6d8b8; padding: 6px; border-radius: 100px; width: fit-content; margin-left: auto; margin-right: auto; max-width: 100%; flex-wrap: wrap;
}
.duration-tab { padding: 10px 24px; border-radius: 100px; border: none; background: transparent; color: var(--dark); font-weight: 600; font-size: 14px; cursor: pointer; transition: all 0.3s; opacity: 0.6; }
.duration-tab.active { background: var(--primary); color: white; opacity: 1; box-shadow: 0 4px 12px rgba(250, 129, 18, 0.3); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1200px; margin: 0 auto; }
.price-card {
  background: var(--white); border-radius: var(--radius); padding: 40px; display: flex; flex-direction: column; transition: all 0.3s; position: relative; box-shadow: var(--shadow-sm);
}
.price-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.price-card.featured { background: var(--dark); color: white; transform: scale(1.05); z-index: 2; box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2); }
.price-card.featured:hover { transform: scale(1.05) translateY(-5px); }
.price-card.featured .price-name { color: #888; }
.price-card.featured .price-amount { color: white; }
.price-card.featured li { color: #ccc; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.price-card.featured .price-cta { background: var(--primary); color: white; border: none; }
.featured-badge {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--primary); color: white; padding: 6px 20px; border-radius: 100px; font-size: 12px; font-weight: 700; text-transform: uppercase; box-shadow: 0 4px 10px rgba(250, 129, 18, 0.4);
}
.price-name { font-size: 20px; color: var(--text-muted); margin-bottom: 15px; font-weight: 600; }
.price-amount { font-size: 48px; font-weight: 800; color: var(--dark); margin-bottom: 30px; letter-spacing: -1px; }
.price-features { list-style: none; margin-bottom: 40px; flex-grow: 1; }
.price-features li { padding: 14px 0; border-bottom: 1px solid rgba(0, 0, 0, 0.05); color: var(--text-main); display: flex; align-items: center; gap: 12px; font-size: 15px; }
.price-features li i { color: var(--primary); font-size: 14px; }
.price-cta {
  width: 100%; padding: 18px; background: transparent; border: 2px solid var(--dark); color: var(--dark); border-radius: 12px; font-weight: 700; cursor: pointer; transition: all 0.3s;
}
.price-cta:hover { background: var(--dark); color: white; }

/* =========================================
   11. CHANNELS SECTION
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');
.channels { padding: 80px 0; background: #fdf6e3; overflow: hidden; display: flex; flex-direction: column; align-items: center; justify-content: center; font-family: 'Poppins', sans-serif; }
.channels-header { text-align: center; margin-bottom: 50px; padding: 0 20px; color: #333333; z-index: 10; }
.channels-header h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 10px; color: #222222; line-height: 1.2; }
.channels-header p { font-size: 1.1rem; color: #666666; margin: 0; max-width: 600px; margin-left: auto; margin-right: auto; }
.channels-slider { display: flex; gap: 60px; width: max-content; animation: scroll 25s linear infinite; padding-left: 60px; padding-bottom: 20px; }
.channel-logo {
  width: 140px; height: 140px; background: white; border-radius: 50%; padding: 25px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.channel-logo:hover { transform: scale(1.1); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12); }
.channel-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-140px * 6 - 60px * 6)); } }
@media (max-width: 768px) {
  .channels-header h2 { font-size: 1.8rem; }
  .channel-logo { width: 100px; height: 100px; padding: 15px; }
}

/* =========================================
   12. SPORTS SECTION
   ========================================= */
.sports-section {
  position: relative; padding: 120px 20px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8)), url("assets/imgs/premier-league.webp") no-repeat center center;
  background-size: cover; background-attachment: fixed; color: white; text-align: center; overflow: hidden;
}
.sports-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.sports-content h2 { font-size: 48px; font-weight: 900; margin-bottom: 20px; line-height: 1.1; text-transform: uppercase; text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); }
.sports-content p { font-size: 18px; color: #eee; margin-bottom: 40px; line-height: 1.6; text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5); }
.btn-sports {
  display: inline-block; background: #ffc107; color: #000; padding: 18px 50px; border-radius: 100px; font-weight: 800; text-transform: uppercase; text-decoration: none; font-size: 16px; transition: all 0.3s; box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
}
.btn-sports:hover { transform: translateY(-5px); background: #ffdb6e; box-shadow: 0 20px 40px rgba(255, 193, 7, 0.5); }
@media (max-width: 768px) {
  .sports-section { background-attachment: scroll !important; background-position: top center !important; }
}

/* =========================================
   13. HOW IT WORKS
   ========================================= */
.how-it-works-redesign { background-color: var(--bg-body); color: var(--text-main); padding: 100px 20px; text-align: center; }
.how-container { max-width: 1000px; margin: 0 auto; }
.illustration-container { margin-bottom: 50px; }
.illustration-container img { max-width: 100%; height: auto; max-height: 350px; display: block; margin: 0 auto; }
.how-header { margin-bottom: 60px; }
.how-subtitle { display: block; color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 14px; margin-bottom: 15px; }
.how-title { font-size: 42px; font-weight: 800; color: var(--dark); line-height: 1.2; }
.steps-vertical-container { display: flex; flex-direction: column; gap: 40px; max-width: 800px; margin: 0 auto; text-align: left; }
.step-item { display: flex; align-items: flex-start; gap: 30px; }
.step-icon-wrapper {
  flex-shrink: 0; width: 70px; height: 70px; background-color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; color: var(--white); box-shadow: 0 10px 20px rgba(250, 129, 18, 0.3);
}
.step-text { flex-grow: 1; }
.step-text h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.step-text p { color: var(--text-muted); font-size: 16px; line-height: 1.6; }

/* =========================================
   14. FAQ
   ========================================= */
.faq-section { background: white; padding: 100px 20px; }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--bg-body); border: 1px solid rgba(34, 34, 34, 0.05); border-radius: 16px; margin-bottom: 15px; overflow: hidden; transition: all 0.3s ease;
}
.faq-item:hover { box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); }
.faq-item.active { border-color: rgba(250, 129, 18, 0.3); box-shadow: 0 10px 30px rgba(250, 129, 18, 0.1); background: white; }
.faq-question { padding: 24px 30px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 700; color: var(--dark); font-size: 17px; user-select: none; }
.faq-question:hover { color: var(--primary); }
.faq-toggle-icon {
  width: 24px; height: 24px; background: rgba(250, 129, 18, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 12px; transition: transform 0.3s ease, background 0.3s;
}
.faq-item.active .faq-toggle-icon { transform: rotate(180deg); background: var(--primary); color: white; }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.3s cubic-bezier(0, 1, 0, 1); padding: 0 30px; color: var(--text-muted); font-size: 15px; line-height: 1.7; opacity: 0; transform: translateY(-10px); transition: all 0.3s ease;
}
.faq-item.active .faq-answer { max-height: 500px; padding-bottom: 30px; opacity: 1; transform: translateY(0); }

/* =========================================
   15. FOOTER
   ========================================= */
footer { background: var(--dark); color: #fff; padding: 80px 20px 40px; }
.footer-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand h4 { color: white; font-size: 24px; margin-bottom: 20px; font-weight: 800; }
.footer-col h5 { color: var(--primary); font-size: 16px; margin-bottom: 25px; font-weight: 700; text-transform: uppercase; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: #888; text-decoration: none; font-size: 14px; transition: 0.3s; }
.footer-col a:hover { color: var(--primary); }
.copyright { text-align: center; padding-top: 40px; border-top: 1px solid rgba(255, 255, 255, 0.1); color: #666; font-size: 13px; }

/* =========================================
   16. FLOATING BUTTONS
   ========================================= */
.whatsapp-float {
  position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 30px; box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4); z-index: 999; transition: all 0.3s; text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); }
.scroll-to-top {
  position: fixed; bottom: 105px; right: 30px; width: 60px; height: 60px; background: var(--dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 24px; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2); z-index: 998; text-decoration: none; opacity: 0; visibility: hidden; transform: translateY(20px); transition: all 0.3s ease;
}
.scroll-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-to-top:hover { background: var(--primary); transform: translateY(-5px); }


/* =======================================================
   17. MOBILE RESPONSIVE FIX (THE IMPORTANT PART)
   ======================================================= */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid .price-card:last-child { grid-column: span 2; }
  .stats-container { grid-template-columns: repeat(2, 1fr); }
  .stat-item:not(:last-child)::after { display: none; }
  .iptv-sidebar { display: none; }
  .iptv-bottom-bar { right: 20px; }
  .movie-card { width: 220px; }
  @keyframes scrollMovies { 100% { transform: translateX(calc(-245px * 8)); } }
}

@media (max-width: 768px) {
  /* Menu */
  .nav-menu { display: none; position: absolute; top: 75px; left: 0; width: 100%; background: white; flex-direction: column; padding: 30px; border-radius: 20px; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); }
  .nav-menu.active { display: flex; }
  .menu-toggle { display: block; }

  /* General Grids */
  .features-grid, .pricing-grid, .footer-grid, .stats-container { grid-template-columns: 1fr; }
  .pricing-grid .price-card:last-child { grid-column: auto; }
  
  /* Steps */
  .step-item { flex-direction: column; align-items: center; text-align: center; }
  .step-text { text-align: center; }

  /* Typography Sizing */
  .how-title, .section-header h2, .sports-content h2 { font-size: 32px; }
  
  /* HERO SECTION FIXES (CRITICAL) */
  .hero { padding-top: 100px; padding-bottom: 40px; overflow: hidden; }
  
  .hero-grid { 
    grid-template-columns: 1fr !important; 
    gap: 30px !important; 
    width: 100% !important; 
  }

  .hero-content {
    width: 100% !important;
    min-width: 0 !important; /* Forces text wrapping */
    padding: 0 10px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  /* Fix Big Title Overflow */
  .hero h1 {
    font-size: 32px !important; /* Smaller size for mobile */
    line-height: 1.2 !important;
    width: 100% !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    margin-bottom: 20px !important;
  }

  .hero p {
    font-size: 16px !important;
    padding: 0 5px !important;
    margin-bottom: 30px !important;
  }

  /* Fix Buttons Stacking */
  .cta-group {
    flex-direction: column !important;
    width: 100% !important;
    gap: 15px !important;
    align-items: center !important;
  }

  .btn-primary, .btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    justify-content: center !important;
  }

  /* Fix Image/Mockup */
  .device-wrapper {
    margin-top: 30px !important;
    transform: scale(0.95) !important;
    width: 100% !important;
  }
  
  .iptv-commercial-text { top: 25%; left: 20px; max-width: 80%; }
  .iptv-commercial-text h2 { font-size: 24px; }
}