/* ==============================
   IPTV Premium Landing Page — RED THEME
   ============================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* ── Core palette ── */
  --bg-primary: #0B0F19;
  --bg-secondary: #0D1117;
  --bg-card: rgba(18, 24, 38, 0.7);
  --bg-card-solid: #121826;
  --bg-card-hover: rgba(24, 30, 46, 0.85);
  --bg-glass: rgba(18, 24, 38, 0.45);

  /* ── Red accent system ── */
  --accent: #E50914;
  --accent-bright: #FF1A1A;
  --accent-neon: #FF3333;
  --accent-glow: rgba(229, 9, 20, 0.4);
  --accent-glow-intense: rgba(229, 9, 20, 0.6);
  --accent-subtle: rgba(229, 9, 20, 0.08);
  --accent-border: rgba(229, 9, 20, 0.25);

  /* ── Text ── */
  --text-primary: #FFFFFF;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;

  /* ── Misc ── */
  --border-color: rgba(255, 255, 255, 0.06);
  --gradient-accent: linear-gradient(135deg, #E50914, #FF3333);
  --gradient-accent-v: linear-gradient(180deg, #E50914, #B30710);
  --gradient-hero: linear-gradient(180deg, rgba(11, 15, 25, 0.2) 0%, rgba(11, 15, 25, 0.8) 55%, #0B0F19 100%);
  --shadow-glow: 0 0 24px rgba(229, 9, 20, 0.3), 0 0 56px rgba(229, 9, 20, 0.12);
  --shadow-glow-intense: 0 0 30px rgba(229, 9, 20, 0.5), 0 0 80px rgba(229, 9, 20, 0.2);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.5);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: 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; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── SCROLL ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ==========================================================
   NAVBAR
   ========================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.navbar.scrolled {
  background: rgba(11, 15, 25, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border-color), 0 4px 30px rgba(0,0,0,0.3);
  padding: 10px 0;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar-logo .logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 0 16px var(--accent-glow);
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.navbar-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}
.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
  box-shadow: 0 0 8px var(--accent-glow);
}
.navbar-links a:hover { color: var(--text-primary); }
.navbar-links a:hover::after { width: 100%; }

.navbar-cta {
  padding: 10px 24px;
  background: #2563EB;
  color: var(--text-primary) !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.4);
}
.navbar-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 24px rgba(37, 99, 235, 0.3), 0 0 56px rgba(37, 99, 235, 0.12);
}
.navbar-cta::after { display: none !important; }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
}

/* ==========================================================
   HERO SECTION
   ========================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  overflow: hidden;
}
.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(0.9);
}
.hero-background::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 15, 25, 0.3) 0%, rgba(11, 15, 25, 0.6) 50%, #0B0F19 100%);
}
/* Subtle red ambient light at top */
.hero-background::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 30%;
  width: 40%;
  height: 50%;
  background: radial-gradient(ellipse, rgba(229, 9, 20, 0.08) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ── Centered hero content ── */
.hero-content-centered {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 0;
}

.hero-welcome {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.hero h1 .highlight {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 12px var(--accent-glow));
}
.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── Hero CTA button (wider, pill-shaped) ── */
.btn-hero-cta {
  padding: 18px 48px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ── PRIMARY BUTTON (Blue glow) ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: #2563EB;
  color: var(--text-primary);
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
  font-family: inherit;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(37, 99, 235, 0.5), 0 0 80px rgba(37, 99, 235, 0.2);
}
.btn-primary:hover::before { opacity: 1; }

/* ── SECONDARY BUTTON (Blue outline) ── */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}
.btn-secondary:hover {
  border-color: #2563EB;
  background: rgba(37, 99, 235, 0.08);
  color: #60A5FA;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.15);
}

/* ── HERO STATS ── */
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
}
.hero-stat h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-bright);
  text-shadow: 0 0 20px var(--accent-glow);
}
.hero-stat p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-visual img {
  width: 100%;
  max-width: 600px;
  filter: drop-shadow(0 20px 60px rgba(229, 9, 20, 0.12));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

/* ==========================================================
   SECTION HEADER (shared)
   ========================================================== */
.section {
  padding: 100px 0;
  position: relative;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
  text-shadow: 0 0 16px var(--accent-glow);
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================================
   FEATURES SECTION
   ========================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity var(--transition);
}
.feature-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), 0 0 30px rgba(229, 9, 20, 0.08);
  background: var(--bg-card-hover);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--accent-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent-bright);
  font-size: 1.4rem;
  transition: all var(--transition);
}
.feature-card:hover .feature-icon {
  background: rgba(229, 9, 20, 0.15);
  box-shadow: 0 0 24px rgba(229, 9, 20, 0.2);
}
.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================
   PRICING SECTION — GLASSMORPHISM + RED GLOW
   ========================================================== */
.pricing-section {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}
/* Ambient green orb behind pricing */
.pricing-section::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(34, 197, 94, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

/* ── Base pricing card (glassmorphism) ── */
.pricing-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
  background: var(--bg-card-hover);
}

/* ── Popular / highlighted card (GREEN) ── */
.pricing-card.popular {
  border: 1.5px solid #22C55E;
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.07) 0%, var(--bg-glass) 35%);
  transform: scale(1.04);
  z-index: 2;
  box-shadow: 0 0 40px rgba(34, 197, 94, 0.12), 0 0 80px rgba(34, 197, 94, 0.06);
}
.pricing-card.popular:hover {
  transform: scale(1.04) translateY(-8px);
  box-shadow: 0 0 30px rgba(34, 197, 94, 0.4), 0 0 80px rgba(34, 197, 94, 0.15), var(--shadow-card);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #22C55E, #16A34A);
  color: var(--text-primary);
  padding: 6px 22px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
}

.pricing-card .plan-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

/* ── Glowing price number ── */
.pricing-card .price {
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 4px;
  color: var(--text-primary);
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.06);
}
.pricing-card.popular .price {
  color: var(--text-primary);
  text-shadow: 0 0 30px rgba(34, 197, 94, 0.3);
}
.pricing-card .price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-card .old-price {
  font-size: 0.85rem;
  color: #22C55E;
  margin-bottom: 24px;
  font-weight: 500;
}
.pricing-card .no-old-price {
  margin-bottom: 24px;
  height: 1.35rem;
}

.pricing-features {
  flex: 1;
  margin-bottom: 32px;
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.pricing-features li svg {
  width: 18px;
  height: 18px;
  color: #22C55E;
  flex-shrink: 0;
}

.pricing-card .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 14px;
}
.pricing-card .btn-secondary {
  width: 100%;
  justify-content: center;
  padding: 14px;
}

/* ── GREEN button variant ── */
.btn-green {
  background: linear-gradient(135deg, #22C55E, #16A34A) !important;
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.3) !important;
}
.btn-green:hover {
  box-shadow: 0 0 30px rgba(34, 197, 94, 0.5), 0 0 80px rgba(34, 197, 94, 0.2) !important;
}

/* ── Green highlight text ── */
.highlight-green {
  background: linear-gradient(135deg, #22C55E, #16A34A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==========================================================
   CUSTOMER PROOF / TESTIMONIALS — SCROLLING SCREENSHOTS
   ========================================================== */
.testimonials-section {
  background: var(--bg-secondary);
  overflow: hidden;
  position: relative;
}
/* Ambient glow behind the section */
.testimonials-section::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(37, 211, 102, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.proof-marquee-wrapper {
  overflow: hidden;
  padding: 20px 0;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  position: relative;
  z-index: 1;
}

.proof-marquee-track {
  display: flex;
  gap: 24px;
  animation: proof-scroll 40s linear infinite;
  width: max-content;
}

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

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

.proof-screenshot {
  flex-shrink: 0;
  width: 280px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s ease;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.proof-screenshot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 1px solid rgba(37, 211, 102, 0.15);
  pointer-events: none;
  transition: border-color 0.3s ease;
}

.proof-screenshot:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 16px 48px rgba(37, 211, 102, 0.15), 0 8px 32px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.proof-screenshot:hover::after {
  border-color: rgba(37, 211, 102, 0.4);
}

.proof-screenshot img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

/* ==========================================================
   STREAMING PLATFORMS SECTION
   ========================================================== */
.streaming-platforms-section {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 0 0 0 0;
  overflow: hidden;
  background: #000;
}

/* Logo bar at top — solid black strip */
.platform-logos-bar {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  padding: 18px 0;
  background: #000;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.platform-logos-track {
  display: flex;
  gap: 48px;
  align-items: center;
  animation: marquee 35s linear infinite;
  width: max-content;
}

.platform-logo-img {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(0.7);
  opacity: 0.6;
  transition: opacity 0.3s ease, filter 0.3s ease;
  flex-shrink: 0;
}
.platform-logo-img:hover {
  opacity: 1;
  filter: brightness(0) invert(1);
}

.platform-logo-text {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  opacity: 0.6;
  transition: opacity var(--transition);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  white-space: nowrap;
  flex-shrink: 0;
}
.platform-logo-text:hover { opacity: 1; }

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

/* Streaming Cards Marquee (scrolling right to left) */
.stream-cards-marquee-wrapper {
  overflow: hidden;
  padding: 0;
}

.stream-cards-marquee-track {
  display: flex;
  gap: 8px;
  animation: stream-cards-scroll 30s linear infinite;
  width: max-content;
}

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

@keyframes stream-cards-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.stream-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  width: 300px;
  height: 420px;
  flex-shrink: 0;
}

.stream-card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
  z-index: 2;
}

.stream-card-image {
  position: absolute;
  inset: 0;
}

.stream-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Gradient overlay — subtle dark at bottom only for logo readability */
.stream-card-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 30%, transparent 60%);
}

/* Remove individual colored overlays — use the generic dark one above */
.stream-card-overlay-netflix,
.stream-card-overlay-hbo,
.stream-card-overlay-hulu,
.stream-card-overlay-apple,
.stream-card-overlay-disney,
.stream-card-overlay-prime {
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.15) 35%, transparent 65%);
}

/* Logo at bottom of card */
.stream-card-logo {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  text-align: left;
}

.stream-card-logo svg {
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

/* HBO logo text */
.hbo-logo-text {
  font-family: 'Inter', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: white;
  letter-spacing: 4px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.8);
}
.hbo-max {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 6px;
  text-align: left;
  margin-top: -4px;
}

/* Hulu logo text */
.hulu-logo-text {
  font-family: 'Inter', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: #1CE783;
  letter-spacing: 3px;
  text-transform: lowercase;
  text-shadow: 0 2px 16px rgba(0,0,0,0.8);
}

/* Apple TV logo text */
.apple-logo-text {
  font-family: -apple-system, 'SF Pro Display', 'Inter', sans-serif;
  font-size: 2.6rem;
  font-weight: 600;
  color: white;
  text-shadow: 0 2px 16px rgba(0,0,0,0.8);
}

/* Disney+ logo text */
.disney-logo-text {
  font-family: 'Inter', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: white;
  letter-spacing: 2px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.8);
}

/* Netflix logo text */
.netflix-logo-text {
  font-family: 'Inter', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: #E50914;
  letter-spacing: 4px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.9);
}

/* Prime Video logo text */
.prime-logo-text {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.8);
}

/* ==========================================================
   HOW IT WORKS
   ========================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 52px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--border-color), var(--accent), var(--border-color), transparent);
  z-index: 0;
}
.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-card-solid);
  border: 2px solid var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent-bright);
  margin-bottom: 24px;
  position: relative;
  box-shadow: 0 0 16px rgba(229, 9, 20, 0.15);
}
.step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--accent-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-bright);
  font-size: 1.6rem;
}
.step-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.step-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

/* ==========================================================
   DEVICE COMPATIBILITY
   ========================================================== */
.devices-section {
  background: var(--bg-secondary);
}
.devices-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.device-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 32px 16px;
  text-align: center;
  transition: all var(--transition);
}
.device-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), 0 0 20px rgba(229, 9, 20, 0.06);
}
.device-card .device-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
  display: block;
}
.device-card span:last-child {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ==========================================================
   FAQ
   ========================================================== */
.faq-list {
  max-width: 740px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  transition: border-color var(--transition);
}
.faq-item:hover {
  border-color: var(--accent-border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-primary);
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: inherit;
}
.faq-question svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: transform var(--transition), color var(--transition);
}
.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  color: var(--accent);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
  border-top: 1px solid var(--border-color);
  padding: 60px 0 30px;
  background: var(--bg-primary);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .navbar-logo { margin-bottom: 16px; }
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.88rem;
  padding: 6px 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--accent-bright); }
.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.82rem;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bg-card-solid);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.footer-socials a:hover {
  border-color: var(--accent);
  color: var(--accent-bright);
  background: var(--accent-subtle);
  box-shadow: 0 0 14px rgba(229, 9, 20, 0.15);
}

/* ==========================================================
   FLOATING WIDGET (WhatsApp only)
   ========================================================== */
.floating-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.widget-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  border: none;
  color: white;
  animation: whatsapp-pulse 2s ease-in-out infinite;
}
.widget-btn:hover {
  transform: scale(1.15);
  animation: none;
}
.widget-whatsapp {
  background: #25D366;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.5);
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 4px 36px rgba(37, 211, 102, 0.8), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

/* ==========================================================
   BACK TO TOP
   ========================================================== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card-solid);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover {
  border-color: var(--accent);
  color: var(--accent-bright);
  box-shadow: 0 0 12px rgba(229, 9, 20, 0.2);
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .devices-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-screenshot { width: 240px; }
  .stream-card { width: 240px; height: 320px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .navbar-links { display: none; }
  .navbar-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(11, 15, 25, 0.97);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border-color);
  }
  .mobile-toggle { display: block; }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .pricing-card.popular { transform: none; }
  .pricing-card.popular:hover { transform: translateY(-8px); }
  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid::before { display: none; }
  .devices-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .proof-screenshot { width: 220px; }
  .stream-card { width: 220px; height: 300px; }
  .hbo-logo-text { font-size: 1.5rem; }
  .hulu-logo-text { font-size: 1.6rem; }
  .apple-logo-text { font-size: 1.3rem; }
  .disney-logo-text { font-size: 1.3rem; }
}

@media (max-width: 480px) {
  html { font-size: 15px; }
  .container { padding: 0 16px; }
  .features-grid { grid-template-columns: 1fr; }
  .devices-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-stats { flex-direction: column; gap: 16px; align-items: center; }
  .hero h1 { letter-spacing: -0.5px; }
  .proof-screenshot { width: 200px; }
  .proof-marquee-track { gap: 16px; }
  .stream-card { width: 200px; height: 270px; }
  .stream-card-logo svg { width: 50px; }
  .hbo-logo-text { font-size: 1.2rem; }
  .hulu-logo-text { font-size: 1.3rem; }
  .apple-logo-text { font-size: 1.1rem; }
  .disney-logo-text { font-size: 1.1rem; }
  .hbo-max { font-size: 0.6rem; }
}
