/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', Arial, sans-serif; background: #0a0a0a; color: #fff; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ============ VARIABLES ============ */
:root {
  --red: #e50000;
  --red-dark: #b30000;
  --black: #0a0a0a;
  --card-bg: #111;
  --border: #222;
  --text-muted: #aaa;
}

/* ============ TOP BAR ============ */
.topbar { display: none; }

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0;
  left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 18px 60px;
  background: rgba(10,10,10,0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(229,0,0,0.0), transparent);
  transition: background 0.4s ease;
}
.navbar.scrolled {
  background: rgba(7,7,7,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 12px 60px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6), 0 1px 0 rgba(229,0,0,0.08);
}
.navbar.scrolled::after {
  background: linear-gradient(90deg, transparent, rgba(229,0,0,0.5), transparent);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  transition: transform 0.3s ease;
}
.nav-logo:hover { transform: scale(1.03); }
.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: transparent;
  padding: 0;
}
.logo-icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  background: transparent;
  image-rendering: crisp-edges;
  filter: drop-shadow(0 0 8px rgba(229,0,0,0.25));
  transition: filter 0.3s ease, transform 0.3s ease;
}
.nav-logo:hover .logo-icon img {
  filter: drop-shadow(0 0 16px rgba(229,0,0,0.5));
  transform: scale(1.08);
}
.logo-text {
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #fff;
  background: linear-gradient(135deg, #fff 60%, rgba(229,0,0,0.7));
  -webkit-background-clip: text;
  background-clip: text;
}
.logo-text strong { color: var(--red); font-weight: 900; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,0.7);
  position: relative;
  padding-bottom: 6px;
  transition: color 0.3s ease;
  text-transform: uppercase;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--red), #ff4444);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--red); }
/* Navbar CTA button */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--red), #ff2222);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1px;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(229,0,0,0.3);
  position: relative;
  overflow: hidden;
}
.nav-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}
.nav-cta:hover::before { left: 100%; }
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(229,0,0,0.5);
}
.nav-cta i { font-size: 0.7rem; }
.hamburger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #fff;
  background: none;
  border: none;
  padding: 8px;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1001;
}
.hamburger:hover { transform: scale(1.1); }
.hamburger.active i::before { content: '\f00d'; }
/* Mobile-only items (hidden on desktop) */
.mobile-only { display: none; }
@media (max-width: 900px) { .mobile-only { display: block; } }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(229,0,0,0.4); }
.btn-full { width: 100%; justify-content: center; border-radius: 50px; padding: 12px 20px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 60px;
  background: #000;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.85) 50%, rgba(180,0,0,0.3) 100%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 600px; }
.hero-welcome {
  display: flex; align-items: center; gap: 16px;
  font-size: 1rem; letter-spacing: 2px; color: #ccc; margin-bottom: 12px;
}
.hero-welcome .line { flex: 1; max-width: 200px; height: 1px; background: #ccc; }
.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900; line-height: 1.05;
  letter-spacing: 2px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-sub { margin-top: 20px; font-size: 1rem; line-height: 1.7; color: #ddd; max-width: 520px; }
.hero-play {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: 12px;
}
.play-btn {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: var(--red);
  border: none; cursor: pointer;
  color: #fff; font-size: 2rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 0 rgba(229,0,0,0.5);
  animation: pulse 2s infinite;
  transition: transform 0.3s;
}
.play-btn:hover { transform: scale(1.1); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(229,0,0,0.5); }
  70% { box-shadow: 0 0 0 20px rgba(229,0,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(229,0,0,0); }
}
.hero-play p { font-size: 0.75rem; font-weight: 700; letter-spacing: 3px; color: #fff; }

/* ============ SECTION LABELS ============ */
.section-label {
  text-align: center; margin-bottom: 16px;
}
.section-label span, .section-label-outline span {
  display: inline-block;
  padding: 6px 20px;
  border: 2px solid var(--red);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--red);
}
.section-label-outline { margin-bottom: 16px; text-align: center; }
.section-label-outline span { background: transparent; border: 2px solid #fff; color: #fff; border-radius: 50px; display: inline-block; padding: 6px 20px; font-size: 0.75rem; font-weight: 800; letter-spacing: 2px; }
.divider-red {
  width: 60px; height: 3px;
  background: var(--red);
  margin: 16px auto 40px;
}

/* ============ FEATURES ============ */
.features {
  background: #000;
  padding: 80px 60px;
  text-align: center;
}
.features h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 16px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.feature-card {
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 12px;
  padding: 48px 32px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: transparent;
  transition: background 0.3s;
}
.feature-card:hover, .feature-card.active {
  border-color: var(--red);
  box-shadow: 0 0 30px rgba(229,0,0,0.15);
  transform: translateY(-6px);
}
.feature-card:hover::before, .feature-card.active::before { background: var(--red); }
.feature-icon {
  width: 80px; height: 80px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 24px;
}
.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }
.feature-card p { color: var(--text-muted); line-height: 1.6; font-size: 0.9rem; }

/* ============ SPORTS ============ */
.sports {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 80px 60px;
  background: #0a0a0a;
  align-items: center;
}
.sports-img img {
  border-radius: 12px;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.sports-content h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 24px; }
.sports-content p { color: #ccc; line-height: 1.8; margin-bottom: 16px; font-size: 0.95rem; }
.red-text { color: var(--red); font-weight: 700; }

/* ============ CHANNELS ============ */
.channels-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 80px 60px 40px;
  background: #000;
  align-items: start;
}
.channels-left h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; }
.channels-right p { color: #ccc; line-height: 1.7; margin-bottom: 12px; font-size: 0.95rem; }
.channels-logos {
  background: #000;
  padding: 20px 0 40px;
  overflow: hidden;
}
.logos-carousel {
  width: 100%;
  height: auto;
}
.logos-carousel .swiper-wrapper {
  margin: 0;
  padding: 0;
}
.logos-carousel .swiper-slide {
  width: 220px;
  height: auto;
  flex-shrink: 0;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  background: #111;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.logos-carousel .swiper-slide:hover {
  border-color: var(--red);
  box-shadow: 0 0 16px rgba(229, 0, 0, 0.2);
}
.logos-carousel .swiper-slide img {
  max-width: 160px;
  max-height: 60px;
  height: auto;
  object-fit: contain;
  width: 100%;
}
.logos-track {
  display: flex;
  gap: 16px;
  animation: scroll-logos 20s linear infinite;
  width: max-content;
}
@keyframes scroll-logos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logo-item {
  padding: 16px 32px;
  border: 2px solid #2a2a2a;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 1px;
  white-space: nowrap;
  background: #111;
  transition: border-color 0.3s;
}
.logo-item:hover { border-color: var(--red); }
.movies-strip {
  background: #0a0a0a;
  overflow: hidden;
  padding: 0 0 60px;
}
.movies-carousel {
  width: 100%;
}
.movies-carousel .swiper-slide {
  width: 420px;
  height: auto;
  flex-shrink: 0;
}
.movies-carousel .swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 8px;
  transition: transform 0.3s;
}
.movies-carousel .swiper-slide:hover img {
  transform: scale(1.04);
}
.movie-poster {
  min-width: 200px;
  height: 280px;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: transform 0.3s;
}
.movie-poster:hover { transform: scale(1.05); z-index: 2; }
.movie-poster span {
  font-size: 1.4rem;
  font-weight: 900;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
  color: #fff;
}

/* ============ PRICING ============ */
.pricing {
  padding: 80px 60px;
  background: #000;
  text-align: center;
}
.pricing h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; margin-bottom: 16px; }
.pricing-sub { color: var(--text-muted); max-width: 700px; margin: 0 auto 50px; line-height: 1.7; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1300px;
  margin: 0 auto;
}
.price-card {
  background: #000;
  border: 1px solid #2a2a2a;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(229,0,0,0.25);
  border-color: var(--red);
}
.price-header {
  background: var(--red);
  padding: 22px 16px 18px;
  text-align: center;
}
.price-header h3 { font-size: 1.15rem; font-weight: 900; line-height: 1.25; color: #fff; text-transform: none; }
.devices { font-size: 0.75rem; font-weight: 700; margin-top: 10px; color: #fff !important; text-decoration: underline; text-underline-offset: 3px; letter-spacing: 0.5px; }
.price-amount {
  font-size: 3.2rem;
  font-weight: 900;
  padding: 28px 24px 20px;
  text-align: center;
  border-bottom: 1px solid #1e1e1e;
  color: #fff;
  letter-spacing: -1px;
}
.price-features {
  padding: 16px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: #ccc;
  line-height: 1.4;
  padding: 10px 0;
  border-bottom: 1px solid #1a1a1a;
}
.price-features li:last-child { border-bottom: none; }
.price-features .fa-circle-check { color: var(--red); font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.price-card .btn-full { margin: 8px 20px 10px; }
.ready-text { text-align: center; font-size: 0.78rem; color: #666; padding-bottom: 16px; }

/* ============ KIDS ============ */
.kids-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 80px 60px;
  background: #000;
  align-items: center;
}
.kids-content h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 20px; }
.kids-content p { color: #ccc; line-height: 1.8; margin-bottom: 28px; }
.kids-img { display: flex; align-items: center; justify-content: center; }
.kids-img-real { width: 100%; max-width: 480px; height: auto; border-radius: 16px; }
.kids-badge {
  width: 280px; height: 280px;
  background: linear-gradient(135deg, #ff6b35, #f7c59f, #efefd0, #004e89, #1a936f);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  font-weight: 900;
  color: #ffdd00;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  text-transform: lowercase;
  letter-spacing: 2px;
}

/* ============ POPULAR MOVIES ============ */
.popular-movies {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 80px 60px 40px;
  background: #0a0a0a;
  align-items: start;
}
.movies-left h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 900; }
.movies-right p { color: #ccc; line-height: 1.7; margin-bottom: 12px; }
.movies-posters {
  background: #0a0a0a;
  overflow: hidden;
  padding: 0 0 60px;
}
.posters-carousel {
  width: 100%;
}
.posters-carousel .swiper-slide {
  width: 200px;
  height: 300px;
  flex-shrink: 0;
}
.posters-carousel .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  transition: transform 0.3s;
}
.posters-carousel .swiper-slide:hover img {
  transform: scale(1.04);
}

/* ============ DEVICES ============ */
.devices-section {
  padding: 80px 60px;
  background: linear-gradient(180deg, #111 0%, #1a1a1a 100%);
  text-align: center;
}
.devices-section h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.4;
}
.device-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  border-bottom: 1px solid #2a2a2a;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.device-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  cursor: pointer;
  color: #666;
  font-size: 0.85rem;
  font-weight: 600;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
  flex: 1;
}
.device-tab i { font-size: 1.5rem; }
.device-tab.active, .device-tab:hover { color: #fff; border-bottom-color: var(--red); }
.device-content h3 { font-size: 1.2rem; margin-bottom: 24px; color: #ccc; }
.device-screen {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  border: 6px solid #222;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.device-screen img { width: 100%; object-fit: cover; }

/* ============ APP SECTION ============ */
.app-section {
  padding: 80px 60px;
  background: #000;
  text-align: center;
}
.app-section h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; }
.app-section p { color: #ccc; max-width: 700px; margin: 0 auto 40px; line-height: 1.7; }
.app-carousel-wrap {
  max-width: 900px;
  margin: 0 auto 40px;
  position: relative;
}
.app-carousel .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}
.app-btn-prev,
.app-btn-next {
  color: #fff !important;
  background: rgba(229, 0, 0, 0.8);
  width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
  transition: background 0.2s;
}
.app-btn-prev:hover,
.app-btn-next:hover { background: #e50000; }
.app-btn-prev::after,
.app-btn-next::after { font-size: 14px !important; font-weight: 900; }
.app-pagination { bottom: 16px !important; }
.app-pagination .swiper-pagination-bullet { background: #555; opacity: 1; width: 8px; height: 8px; }
.app-pagination .swiper-pagination-bullet-active { background: #e50000; width: 20px; border-radius: 4px; }

/* ============ TESTIMONIALS ============ */
.testimonials {
  padding: 80px 60px;
  background: #0a0a0a;
  text-align: center;
}
.testimonials h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: 16px; }
.testimonials-carousel-wrap {
  max-width: 1400px;
  margin: 40px auto 0;
  position: relative;
  padding: 0 20px;
}
.testimonials-carousel .swiper-slide {
  width: auto !important;
  padding: 0;
}
.testimonials-carousel .swiper-slide img {
  width: 220px;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: contain;
}

/* ============ FAQ ============ */
.faq {
  padding: 80px 60px;
  background: #000;
  text-align: center;
}
.faq h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: 16px; }
.faq-list { max-width: 960px; margin: 0 auto; text-align: left; }
.faq-item {
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item:hover { border-color: #3a3a3a; }
.faq-question {
  width: 100%;
  background: #1a1a1a;
  border: none;
  color: #fff;
  padding: 24px 28px;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}
.faq-question:hover { background: #232323; }
.faq-question.open { background: #1a1a1a; color: #fff; }
.faq-question .fa-chevron-down {
  transition: transform 0.3s ease;
  color: var(--red);
  font-size: 1.1rem;
}
.faq-question.open .fa-chevron-down { transform: rotate(180deg); }
.faq-answer {
  background: #0f0f0f;
  color: #ddd;
  padding: 0 28px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 0.9rem;
  line-height: 1.8;
}
.faq-answer.open { max-height: 300px; padding: 20px 28px; }

/* ============ FOOTER ============ */
.footer {
  background: linear-gradient(180deg, #080808 0%, #030303 100%);
  border-top: 1px solid #1a1a1a;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(229,0,0,0.6) 25%, rgba(229,0,0,0.8) 50%, rgba(229,0,0,0.6) 75%, transparent 100%);
  animation: footerGlow 3s ease-in-out infinite;
}
@keyframes footerGlow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
.footer::after {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(229,0,0,0.04) 0%, transparent 70%);
  pointer-events: none;
}
/* Newsletter section */
.footer-newsletter-section {
  padding: 50px 60px 0;
  max-width: 1400px;
  margin: 0 auto;
}
.newsletter-box {
  background: linear-gradient(135deg, rgba(229,0,0,0.08) 0%, rgba(229,0,0,0.02) 100%);
  border: 1px solid rgba(229,0,0,0.15);
  border-radius: 16px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.newsletter-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(229,0,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.newsletter-content h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.newsletter-content p {
  font-size: 0.88rem;
  color: #888;
  line-height: 1.6;
}
.newsletter-form {
  display: flex;
  min-width: 380px;
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  transition: border-color 0.3s ease;
}
.newsletter-form:focus-within {
  border-color: rgba(229,0,0,0.4);
}
.newsletter-form input {
  flex: 1;
  padding: 14px 24px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 0.88rem;
  outline: none;
}
.newsletter-form input::placeholder { color: #555; }
.newsletter-form button {
  background: linear-gradient(135deg, var(--red), #ff2222);
  border: none;
  color: #fff;
  padding: 14px 28px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.newsletter-form button:hover { background: #ff1a1a; box-shadow: 0 4px 20px rgba(229,0,0,0.3); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding: 60px 60px 50px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.footer-brand .nav-logo { margin-bottom: 20px; }
.footer-brand p {
  color: #777;
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 320px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.footer-contact div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.84rem;
  color: #999;
  transition: color 0.3s;
}
.footer-contact div:hover { color: #ccc; }
.footer-contact i {
  color: var(--red);
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-socials a:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}
.footer-socials a[aria-label="Facebook"]:hover { background: #1877F2; border-color: #1877F2; color: #fff; }
.footer-socials a[aria-label="Twitter"]:hover { background: #000; border-color: #333; color: #fff; }
.footer-socials a[aria-label="Instagram"]:hover { background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737); border-color: #FD1D1D; color: #fff; }
.footer-socials a[aria-label="YouTube"]:hover { background: #FF0000; border-color: #FF0000; color: #fff; }
.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  color: #fff;
  position: relative;
  padding-bottom: 14px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), rgba(229,0,0,0.3));
  border-radius: 2px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
}
.footer-col a {
  font-size: 0.84rem;
  color: #777;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.footer-col a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width 0.3s ease;
}
.footer-col a:hover {
  color: #fff;
  padding-left: 4px;
}
.footer-col a:hover::before {
  width: 12px;
}
.footer-payments h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  color: #fff;
  position: relative;
  padding-bottom: 14px;
}
.footer-payments h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), rgba(229,0,0,0.3));
  border-radius: 2px;
}
.payment-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.payment-icons img {
  height: 34px;
  width: auto;
  object-fit: contain;
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.85;
}
.payment-icons img:hover {
  transform: scale(1.08);
  opacity: 1;
}
.footer-newsletter {
  margin-top: 20px;
}
.footer-newsletter p {
  font-size: 0.82rem;
  color: #666;
  margin-bottom: 12px;
  line-height: 1.6;
}
.footer-newsletter-form {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #222;
}
.footer-newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  background: #111;
  border: none;
  color: #fff;
  font-size: 0.8rem;
  outline: none;
}
.footer-newsletter-form input::placeholder { color: #555; }
.footer-newsletter-form button {
  background: var(--red);
  border: none;
  color: #fff;
  padding: 10px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s;
}
.footer-newsletter-form button:hover { background: #ff1a1a; }
.footer-bottom {
  text-align: center;
  padding: 24px 60px;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: #444;
  margin: 0;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 0.78rem;
  color: #555;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-bottom-links a:hover { color: var(--red); }

/* ============ BACK TO TOP BUTTON ============ */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(229,0,0,0.9);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(229,0,0,0.3);
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.back-to-top:hover {
  background: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(229,0,0,0.5);
}

/* ============ DMCA PROTECTION BADGE ============ */
.dmca-footer-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 60px 0;
  max-width: 1400px;
  margin: 0 auto;
}
.dmca-footer-badge a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(0,200,80,0.08) 0%, rgba(0,200,80,0.02) 100%);
  border: 1px solid rgba(0,200,80,0.2);
  border-radius: 10px;
  padding: 10px 20px;
  text-decoration: none;
  transition: border-color 0.3s, background 0.3s, transform 0.2s;
  cursor: pointer;
}
.dmca-footer-badge a:hover {
  border-color: rgba(0,200,80,0.4);
  background: rgba(0,200,80,0.12);
  transform: translateY(-1px);
}
.dmca-footer-badge .badge-shield {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00c850, #00a040);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dmca-footer-badge .badge-shield i {
  font-size: 1rem;
  color: #fff;
}
.dmca-footer-badge .badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.dmca-footer-badge .badge-label {
  font-size: 0.6rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}
.dmca-footer-badge .badge-status {
  font-size: 0.82rem;
  color: #00e060;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.dmca-footer-badge .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00e060;
  animation: badgeDotPulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes badgeDotPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 4px rgba(0,224,96,0.4); }
  50% { opacity: 0.4; box-shadow: 0 0 8px rgba(0,224,96,0.6); }
}

/* ============ LEGAL DISCLAIMER STRIP ============ */
.legal-disclaimer-strip {
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px 60px 0;
  text-align: center;
}
.legal-disclaimer-strip p {
  font-size: 0.68rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
  max-width: 900px;
  margin: 0 auto;
}
.legal-disclaimer-strip a {
  color: #777;
  text-decoration: underline;
  transition: color 0.3s;
}
.legal-disclaimer-strip a:hover { color: var(--red); }

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background: #25d366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}
.whatsapp-btn:hover { transform: scale(1.15); box-shadow: 0 8px 30px rgba(37,211,102,0.6); }
.whatsapp-btn i { line-height: 1; }
@media(max-width:768px) {
  .whatsapp-btn { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 1.4rem; }
}
@media(max-width:480px) {
  .whatsapp-btn { bottom: 16px; right: 16px; width: 46px; height: 46px; font-size: 1.3rem; }
}

/* ============ MODAL ============ */
.modal {
  display: none;
  position: fixed; inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.modal.open { display: flex; }
.modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.85); }
.modal-content {
  position: relative;
  z-index: 1;
  background: #111;
  border-radius: 12px;
  width: 90%;
  max-width: 800px;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #333;
}
.modal-close {
  position: absolute;
  top: -16px; right: -16px;
  background: var(--red);
  color: #fff;
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
}
.video-placeholder {
  display: flex; flex-direction: column;
  align-items: center; gap: 16px;
  color: #555;
}
.video-placeholder i { font-size: 4rem; color: var(--red); }

/* ============ RESELLER PAGE ============ */

/* -- Hero -- */
.reseller-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 60px 80px;
  background: linear-gradient(160deg, #0a0a0a 0%, #111 40%, #0a0a0a 100%);
  overflow: hidden;
}
.reseller-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 40%, rgba(229,0,0,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(229,0,0,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.reseller-hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(229,0,0,0.25);
  animation: floatParticle 12s ease-in-out infinite;
}
.particle:nth-child(1) { width: 6px; height: 6px; top: 20%; left: 15%; animation-delay: 0s; }
.particle:nth-child(2) { width: 4px; height: 4px; top: 60%; left: 75%; animation-delay: 2s; }
.particle:nth-child(3) { width: 8px; height: 8px; top: 30%; left: 85%; animation-delay: 4s; }
.particle:nth-child(4) { width: 5px; height: 5px; top: 70%; left: 25%; animation-delay: 6s; }
.particle:nth-child(5) { width: 3px; height: 3px; top: 45%; left: 55%; animation-delay: 8s; }
@keyframes floatParticle {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
  25% { transform: translateY(-30px) translateX(15px); opacity: 0.8; }
  50% { transform: translateY(-10px) translateX(-10px); opacity: 0.5; }
  75% { transform: translateY(-40px) translateX(20px); opacity: 1; }
}
.reseller-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
}
.reseller-hero .breadcrumb { font-size: 0.85rem; color: #777; margin-bottom: 20px; letter-spacing: 0.5px; }
.reseller-hero .breadcrumb a { color: var(--red); text-decoration: none; transition: color 0.2s; }
.reseller-hero .breadcrumb a:hover { color: #ff3333; }
.reseller-hero .breadcrumb i { font-size: 0.6rem; margin: 0 8px; }
.reseller-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(229,0,0,0.12);
  border: 1px solid rgba(229,0,0,0.25);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.text-gradient {
  background: linear-gradient(135deg, #e50000, #ff4444, #e50000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.reseller-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.reseller-hero-sub {
  font-size: 1.1rem;
  color: #999;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 40px;
}
.reseller-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}
.stat-item { text-align: center; }
.stat-number { font-size: 1.6rem; font-weight: 800; color: #fff; margin-bottom: 4px; }
.stat-label { font-size: 0.8rem; color: #666; text-transform: uppercase; letter-spacing: 1px; }
.stat-divider { width: 1px; height: 40px; background: #333; }
.reseller-hero .btn { font-size: 0.9rem; padding: 14px 32px; }

/* -- Benefits -- */
.reseller-benefits {
  padding: 100px 60px;
  background: #0a0a0a;
  text-align: center;
}
.reseller-benefits h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: 16px; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 40px auto 0;
}
.benefit-card {
  text-align: center;
  padding: 40px 28px;
  background: linear-gradient(160deg, #111 0%, #0d0d0d 100%);
  border: 1px solid #1a1a1a;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}
.benefit-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(229,0,0,0.04) 50%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.benefit-card:hover .benefit-shine { opacity: 1; }
.benefit-card:hover {
  border-color: rgba(229,0,0,0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(229,0,0,0.12), 0 0 0 1px rgba(229,0,0,0.1);
}
.benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(229,0,0,0.15) 0%, rgba(229,0,0,0.05) 100%);
  border: 1px solid rgba(229,0,0,0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--red);
  transition: all 0.3s ease;
}
.benefit-card:hover .benefit-icon {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  transform: scale(1.1);
}
.benefit-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; color: #fff; }
.benefit-card p { color: #888; font-size: 0.92rem; line-height: 1.7; }

/* -- Pricing -- */
.reseller-pricing {
  padding: 100px 60px;
  background: linear-gradient(180deg, #000 0%, #060606 50%, #0a0a0a 100%);
  text-align: center;
  position: relative;
}
.reseller-pricing h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: 16px; }
.reseller-pricing-desc { font-size: 1rem; color: #777; max-width: 650px; margin: 0 auto 10px; line-height: 1.7; }
.reseller-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1300px;
  margin: 50px auto 0;
}
.reseller-card {
  background: linear-gradient(180deg, #0e0e0e 0%, #0a0a0a 100%);
  border: 1px solid #1a1a1a;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reseller-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.reseller-card:hover::before { opacity: 1; }
.reseller-card:hover {
  border-color: rgba(229,0,0,0.3);
  transform: translateY(-12px);
  box-shadow: 0 24px 60px rgba(229,0,0,0.15), 0 0 80px rgba(229,0,0,0.05);
}
.reseller-card-header {
  background: linear-gradient(135deg, var(--red) 0%, #c40000 100%);
  padding: 28px 24px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.reseller-card-header::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.reseller-card-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}
.reseller-card-body {
  padding: 28px 24px;
}
.reseller-price {
  font-size: 3.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.credit-breakdown {
  text-align: left;
  background: transparent;
  border-radius: 0;
  padding: 0;
  margin-bottom: 24px;
  border: none;
}
.credit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  padding: 9px 0;
  color: #bbb;
  transition: color 0.2s;
}
.credit-item i { color: var(--red); font-size: 0.8rem; flex-shrink: 0; }
.credit-item:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,0.05); }
.reseller-card .btn-full { width: 100%; text-align: center; }
.reseller-card .ready-text {
  font-size: 0.78rem;
  color: #555;
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.reseller-card .ready-text::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.65rem;
  color: #2ecc71;
}

/* -- How It Works -- */
.how-it-works {
  padding: 100px 60px;
  background: #0a0a0a;
  text-align: center;
}
.how-it-works h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: 16px; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 50px auto 0;
  position: relative;
}
.step {
  text-align: center;
  padding: 32px 20px;
  background: linear-gradient(160deg, #111 0%, #0d0d0d 100%);
  border: 1px solid #1a1a1a;
  border-radius: 16px;
  position: relative;
  transition: all 0.3s ease;
}
.step:hover {
  border-color: rgba(229,0,0,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}
.step-connector {
  display: none;
}
@media (min-width: 901px) {
  .step-connector {
    display: block;
    position: absolute;
    top: 50%;
    right: -18px;
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, var(--red), transparent);
    z-index: 5;
  }
}
.step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--red) 0%, #b30000 100%);
  color: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 18px;
  box-shadow: 0 8px 24px rgba(229,0,0,0.3);
  transition: transform 0.3s ease;
}
.step:hover .step-number { transform: scale(1.1); }
.step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: #fff; }
.step p { color: #888; font-size: 0.9rem; line-height: 1.6; }

/* -- CTA -- */
.cta-section {
  padding: 100px 60px;
  background: linear-gradient(160deg, #111 0%, #0a0a0a 50%, #111 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(229,0,0,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 800; margin-bottom: 16px; position: relative; }
.cta-section p { font-size: 1.05rem; color: #777; margin-bottom: 40px; position: relative; }
.cta-buttons { display: flex; align-items: center; justify-content: center; gap: 16px; position: relative; }
.btn-outline {
  background: transparent;
  border: 1px solid #444;
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.btn-outline:hover { border-color: var(--red); color: var(--red); }
.cta-section .btn { margin: 0; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1200px) {
  .navbar { padding: 18px 40px; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .reseller-pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .logos-carousel .swiper-slide { width: 200px; padding: 14px 16px; }
  .logos-carousel .swiper-slide img { max-width: 140px; max-height: 50px; }
  .movies-carousel .swiper-slide { width: 380px; }
}
@media (max-width: 1024px) {
  .navbar { padding: 16px 32px; gap: 40px; }
  .nav-links { gap: 28px; }
  .hero { padding: 100px 40px 50px; }
  .sports, .channels-section, .kids-section, .popular-movies { gap: 40px; padding: 60px 40px; }
  .features { padding: 60px 40px; }
  .reseller-hero { padding: 100px 40px 60px; }
  .reseller-pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .reseller-benefits { padding: 60px 40px; }
  .reseller-pricing { padding: 60px 40px; }
  .how-it-works { padding: 60px 40px; }
  .cta-section { padding: 60px 40px; }
  .logos-carousel .swiper-slide { width: 180px; padding: 12px 14px; }
  .logos-carousel .swiper-slide img { max-width: 130px; max-height: 45px; }
  .movies-carousel .swiper-slide { width: 340px; }
}
@media (max-width: 900px) {
  .navbar { padding: 16px 24px; justify-content: space-between; }
  .nav-logo { gap: 8px; }
  .logo-text { font-size: 1rem; }
  .nav-cta { display: none; }
  .nav-links {
    display: flex;
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: rgba(8,8,8,0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 100px 30px 40px;
    flex-direction: column;
    gap: 0;
    z-index: 998;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0,0,0,0.5);
    border-left: 1px solid rgba(229,0,0,0.1);
  }
  .nav-links.open { right: 0; }
  .nav-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: rgba(0,0,0,0.6);
    z-index: 997;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }
  .nav-overlay.active { opacity: 1; pointer-events: all; }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.04); }
  .nav-links a { display: block; padding: 18px 0; font-size: 1rem; letter-spacing: 1.5px; color: #999; transition: color 0.3s, padding-left 0.3s; }
  .nav-links a:hover, .nav-links a.active { color: var(--red); padding-left: 8px; }
  .nav-links .mobile-cta {
    display: block;
    margin-top: 24px;
    padding: 16px 28px;
    background: linear-gradient(135deg, var(--red), #ff2222);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-align: center;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(229,0,0,0.3);
  }
  .hamburger { display: block; position: relative; z-index: 1001; }
  .hero { padding: 100px 24px 40px; flex-direction: column; gap: 30px; text-align: center; }
  .hero-welcome { justify-content: center; }
  .hero-content h1 { font-size: clamp(2rem, 8vw, 3.5rem); }
  .hero-sub { font-size: 0.95rem; }
  .hero-btns { justify-content: center; gap: 12px; }
  .play-btn { width: 70px; height: 70px; font-size: 1.5rem; }
  .features { padding: 50px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .sports, .channels-section, .kids-section, .popular-movies { grid-template-columns: 1fr; padding: 50px 24px; gap: 30px; }
  .sports-img, .kids-img { max-width: 100%; }
  .pricing { padding: 50px 24px; }
  .pricing-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .price-card { padding: 20px; }
  .price-amount { font-size: 2rem; margin: 16px 0; }
  .movies-posters { padding: 0 0 40px; }
  .footer-newsletter-section { padding: 40px 24px 0; }
  .newsletter-box { flex-direction: column; padding: 28px 24px; gap: 20px; text-align: center; }
  .newsletter-form { min-width: 0; width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; padding: 50px 24px; gap: 30px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; padding: 20px 24px; }
  .dmca-footer-badge { padding: 12px 24px 0; }
  .testimonials, .faq, .devices-section, .app-section { padding: 50px 24px; }
  .reseller-hero { padding: 80px 24px 50px; }
  .reseller-hero h1 { font-size: clamp(2rem, 6vw, 3rem); }
  .reseller-hero-stats { gap: 24px; }
  .stat-number { font-size: 1.3rem; }
  .reseller-pricing { padding: 50px 24px; }
  .reseller-pricing-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .how-it-works { padding: 50px 24px; }
  .cta-section { padding: 50px 24px; }
  .cta-buttons { flex-direction: column; gap: 12px; }
  .btn { padding: 12px 20px; font-size: 0.8rem; }
  .logos-carousel .swiper-slide { width: 160px; padding: 10px 12px; }
  .logos-carousel .swiper-slide img { max-width: 110px; max-height: 40px; }
  .movies-carousel .swiper-slide { width: 300px; }
}
@media (max-width: 768px) {
  .navbar { padding: 14px 16px; }
  .logo-icon svg, .logo-icon img { width: 28px; height: 28px; }
  .nav-links { padding: 90px 24px 40px; }
  .hero { padding: 80px 16px 30px; min-height: 85vh; }
  .hero-content h1 { font-size: clamp(1.8rem, 7vw, 3rem); }
  .hero-sub { font-size: 0.9rem; max-width: 100%; }
  .play-btn { width: 60px; height: 60px; font-size: 1.3rem; }
  .pricing-grid { grid-template-columns: 1fr; gap: 12px; }
  .price-card { padding: 16px; }
  .price-header h3 { font-size: 1rem; }
  .price-features li { font-size: 0.75rem; }
  .btn-full { padding: 10px 16px; font-size: 0.75rem; }
  .movies-posters { padding: 0 0 30px; }
  .section-label-outline { font-size: 0.7rem; }
  h2 { font-size: clamp(1.5rem, 5vw, 2.5rem); }
  .reseller-hero { padding: 70px 16px 40px; min-height: 50vh; }
  .reseller-hero-badge { font-size: 0.65rem; padding: 6px 14px; }
  .reseller-pricing-grid { grid-template-columns: 1fr; }
  .reseller-price { font-size: 2.5rem; }
  .benefits-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .step-connector { display: none !important; }
  .logos-carousel .swiper-slide { width: 140px; padding: 8px 10px; }
  .logos-carousel .swiper-slide img { max-width: 100px; max-height: 38px; }
  .movies-carousel .swiper-slide { width: 280px; }
}
@media (max-width: 600px) {
  .navbar { padding: 12px 12px; gap: 20px; }
  .logo-text { display: none; }
  .logo-icon svg, .logo-icon img { width: 24px; height: 24px; }
  .nav-links { padding: 80px 20px 40px; }
  .nav-links a { font-size: 0.95rem; padding: 16px 0; }
  .hamburger { font-size: 1.3rem; }
  .hero { padding: 70px 16px 20px; min-height: 80vh; }
  .hero-content h1 { font-size: clamp(1.5rem, 6vw, 2.5rem); }
  .hero-sub { font-size: 0.85rem; line-height: 1.6; }
  .hero-welcome { flex-direction: column; gap: 8px; font-size: 0.85rem; }
  .hero-btns { flex-direction: column; width: 100%; }
  .btn { width: 100%; padding: 10px 12px; }
  .play-btn { width: 50px; height: 50px; font-size: 1.1rem; }
  .section-label-outline { font-size: 0.65rem; padding: 6px 10px; }
  h2 { font-size: clamp(1.2rem, 5vw, 2rem); line-height: 1.3; }
  .sports, .channels-section, .kids-section, .popular-movies, .features, .pricing { padding: 40px 16px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { padding: 12px; }
  .price-amount { font-size: 1.6rem; margin: 12px 0; }
  .price-header { padding: 12px; }
  .price-header h3 { font-size: 0.9rem; }
  .price-header p { font-size: 0.7rem; }
  .price-features { gap: 6px; }
  .price-features li { font-size: 0.7rem; padding: 6px 0; }
  .ready-text { font-size: 0.7rem; }
  .movies-posters { padding: 0 0 20px; }
  .footer-newsletter-section { padding: 30px 16px 0; }
  .newsletter-box { padding: 24px 16px; gap: 16px; }
  .newsletter-content h3 { font-size: 1.1rem; }
  .newsletter-content p { font-size: 0.82rem; }
  .newsletter-form { flex-direction: column; border-radius: 12px; }
  .newsletter-form input { padding: 14px 16px; text-align: center; }
  .newsletter-form button { padding: 14px; border-radius: 0; }
  .footer-grid { grid-template-columns: 1fr; padding: 40px 16px; gap: 28px; }
  .footer-brand { grid-column: auto; }
  .footer-brand p { max-width: 100%; }
  .footer-contact { gap: 10px; }
  .footer-contact div { font-size: 0.78rem; }
  .footer-socials { justify-content: flex-start; }
  .footer-col h4 { margin-bottom: 16px; font-size: 0.78rem; }
  .footer-col ul { gap: 10px; }
  .footer-col a { font-size: 0.8rem; }
  .footer-payments h4 { margin-bottom: 16px; font-size: 0.78rem; }
  .payment-icons { gap: 8px; }
  .payment-icons img { height: 26px; }
  .footer-bottom { padding: 16px; }
  .footer-bottom-links { gap: 14px; flex-wrap: wrap; justify-content: center; }
  .footer-bottom-links a { font-size: 0.72rem; }
  .footer-bottom p { font-size: 0.72rem; }
  .legal-disclaimer-strip { padding: 14px 16px 0; }
  .legal-disclaimer-strip p { font-size: 0.6rem; }
  .dmca-footer-badge { padding: 12px 16px 0; }
  .dmca-footer-badge a { padding: 8px 14px; gap: 8px; }
  .dmca-footer-badge .badge-shield { width: 30px; height: 30px; }
  .dmca-footer-badge .badge-shield i { font-size: 0.8rem; }
  .dmca-footer-badge .badge-status { font-size: 0.72rem; }
  .dmca-footer-badge .badge-label { font-size: 0.55rem; }
  .testimonials, .faq, .devices-section, .app-section { padding: 40px 16px; }
  .reseller-hero { padding: 60px 16px 30px; min-height: auto; }
  .reseller-hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 40px; height: 1px; }
  .reseller-pricing { padding: 40px 16px; }
  .reseller-pricing-grid { grid-template-columns: 1fr; }
  .reseller-card-header h3 { font-size: 1.1rem; }
  .reseller-price { font-size: 2.2rem; }
  .benefits-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .how-it-works { padding: 40px 16px; }
  .cta-section { padding: 40px 16px; }
  .cta-buttons { flex-direction: column; }
  .btn-outline { width: 100%; justify-content: center; }
  .logos-carousel .swiper-slide { width: 120px; padding: 8px 8px; }
  .logos-carousel .swiper-slide img { max-width: 90px; max-height: 35px; }
  .movies-carousel .swiper-slide { width: 260px; }
}
@media (max-width: 480px) {
  .navbar { padding: 10px 8px; }
  .logo-icon svg, .logo-icon img { width: 20px; height: 20px; }
  .nav-links { padding: 70px 16px 30px; }
  .nav-links a { font-size: 0.9rem; padding: 14px 0; }
  .hero { padding: 60px 12px 15px; min-height: 75vh; }
  .hero-content h1 { font-size: clamp(1.3rem, 5vw, 2rem); }
  .hero-sub { font-size: 0.8rem; }
  .play-btn { width: 45px; height: 45px; font-size: 1rem; }
  h2, h3 { font-size: clamp(1rem, 4vw, 1.8rem); }
  h4 { font-size: clamp(0.9rem, 3vw, 1.1rem); }
  p { font-size: clamp(0.8rem, 2.5vw, 0.95rem); }
  .section-label-outline { font-size: 0.6rem; padding: 5px 8px; }
  .sports, .channels-section, .kids-section, .popular-movies, .features, .pricing, .testimonials, .faq, .devices-section, .app-section { padding: 30px 12px; }
  .btn { padding: 8px 10px; font-size: 0.7rem; }
  .btn-full { padding: 8px 10px; }
  .price-card { padding: 10px; }
  .price-amount { font-size: 1.4rem; }
  .price-features li { font-size: 0.65rem; }
  .footer-grid { padding: 30px 12px; gap: 24px; }
  .footer-brand p { font-size: 0.78rem; }
  .footer-socials a { width: 34px; height: 34px; font-size: 0.85rem; border-radius: 8px; }
  .footer-bottom { padding: 14px 12px; flex-direction: column; gap: 8px; }
  .footer-bottom-links { gap: 10px; }
  .footer-bottom-links a { font-size: 0.68rem; }
  .footer-bottom p { font-size: 0.68rem; }
  .legal-disclaimer-strip { padding: 10px 12px 0; }
  .legal-disclaimer-strip p { font-size: 0.55rem; line-height: 1.6; }
  .dmca-footer-badge { padding: 10px 12px 0; }
  .dmca-footer-badge a { padding: 7px 12px; gap: 6px; border-radius: 8px; }
  .dmca-footer-badge .badge-shield { width: 26px; height: 26px; }
  .dmca-footer-badge .badge-shield i { font-size: 0.7rem; }
  .dmca-footer-badge .badge-status { font-size: 0.65rem; }
  .dmca-footer-badge .badge-label { font-size: 0.5rem; letter-spacing: 1px; }
  .dmca-footer-badge .badge-dot { width: 6px; height: 6px; }
  .payment-icons img { height: 22px; }
  .payment-icons { gap: 6px; }
  .whatsapp-btn { bottom: 16px; right: 16px; width: 46px; height: 46px; font-size: 1.3rem; }
  .reseller-hero { padding: 50px 12px 20px; }
  .reseller-hero h1 { font-size: clamp(1.5rem, 6vw, 2.2rem); }
  .reseller-hero-sub { font-size: 0.85rem; }
  .reseller-hero-badge { font-size: 0.6rem; padding: 5px 12px; }
  .reseller-price { font-size: 1.8rem; }
  .reseller-card-header { padding: 18px 16px; }
  .reseller-card-body { padding: 20px 16px; }
  .credit-item { font-size: 0.8rem; }
  .step { padding: 24px 16px; }
  .step-number { width: 48px; height: 48px; font-size: 1.2rem; }
  .logos-carousel .swiper-slide { width: 100px; padding: 6px 6px; }
  .logos-carousel .swiper-slide img { max-width: 80px; max-height: 32px; }
  .movies-carousel .swiper-slide { width: 220px; }
}
