:root {
  /* Premium Cinema Dark Theme - IPTV-Nordic */
  --bg-primary: #0a0a0f;
  --bg-secondary: #0f0f1a;
  --bg-tertiary: #161622;
  --accent: #f59e0b;
  --accent-secondary: #8b5cf6;
  --accent-glow: rgba(245, 158, 11, 0.35);
  --accent-glow-purple: rgba(139, 92, 246, 0.25);
  --text-primary: #f8fafc;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --border: rgba(255, 255, 255, 0.06);
  --glass: rgba(255, 255, 255, 0.025);
  --success: #22c55e;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 80px;
}

/* Subtle grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9998;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.25rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
}

.btn svg {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
}

.btn::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.6s;
}

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

.btn-primary {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #8b5cf6 100%);
  color: #fff;
  box-shadow: 0 4px 24px rgba(245, 158, 11, 0.3), 0 0 0 1px rgba(255,255,255,0.08) inset;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(245, 158, 11, 0.45), 0 0 0 1px rgba(255,255,255,0.12) inset;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  border-color: rgba(245, 158, 11, 0.4);
  background: rgba(245, 158, 11, 0.06);
  color: var(--text-primary);
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.12);
}

.btn-lg {
  padding: 1.1rem 2.75rem;
  font-size: 1.05rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(24px) saturate(1.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  flex-shrink: 0;
}

.logo-iptv {
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.logo-deck {
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 30%, #8b5cf6 70%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.logo::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 40px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, #f59e0b, #8b5cf6);
}

.logo:hover .logo-iptv {
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.logo:hover .logo-deck {
  filter: brightness(1.15);
}

.nav {
  display: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.55rem 1.1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
}

.nav-link.active {
  color: #fff;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(139, 92, 246, 0.12));
  border: 1px solid rgba(245, 158, 11, 0.2);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.08);
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  cursor: pointer;
  padding: 0.65rem;
  width: 44px;
  height: 44px;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-left: auto;
}

.mobile-menu-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(245, 158, 11, 0.25);
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, #fff, #a1a1aa);
  border-radius: 2px;
  transition: 0.3s;
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  background: rgba(10, 10, 15, 0.97);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.mobile-nav.active {
  display: block;
}

.mobile-nav .nav-list {
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav .nav-link {
  padding: 0.75rem 1rem;
  width: 100%;
  text-align: center;
}

.mobile-nav-cta {
  margin-top: 0.5rem;
  width: 100%;
  justify-content: center;
}

/* Hero Banner */
.hero-banner {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,15,0.5) 0%, rgba(10,10,15,0.75) 50%, var(--bg-primary) 100%);
  z-index: 1;
}

.hero-bg-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-bg-slider .slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: translateX(5%);
  animation: slideFade 9s infinite;
}

.hero-bg-slider .slide:nth-child(1) {
  animation-delay: 0s;
}

.hero-bg-slider .slide:nth-child(2) {
  animation-delay: 3s;
}

.hero-bg-slider .slide:nth-child(3) {
  animation-delay: 6s;
}

@keyframes slideFade {
  0% {
    opacity: 0;
    transform: translateX(-2%);
  }
  10% {
    opacity: 1;
    transform: translateX(0);
  }
  33% {
    opacity: 1;
    transform: translateX(0);
  }
  43% {
    opacity: 0;
    transform: translateX(2%);
  }
  100% {
    opacity: 0;
    transform: translateX(2%);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
}

.hero-banner .container {
  position: relative;
  z-index: 2;
}

.hero-welcome {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
  padding: 0.5rem 1rem;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: 999px;
}

.hero-banner h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.02em;
}

.highlight-text {
  background: linear-gradient(135deg, #f59e0b, #fbbf24, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-banner p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* Section Labels & Titles */
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  text-align: center;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.highlight-box {
  position: relative;
  display: inline-block;
}

.highlight-box::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: -4px;
  right: -4px;
  height: 8px;
  background: linear-gradient(90deg, rgba(245, 158, 11, 0.25), rgba(139, 92, 246, 0.25));
  border-radius: 4px;
  z-index: -1;
}

/* Channels Section */
.channels-section {
  padding: 5rem 0;
}

.channels-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: stretch;
}

.channels-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.channel-card {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.35s, box-shadow 0.35s;
  cursor: pointer;
  background: #0c0c14;
}

.channel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(245, 158, 11, 0.1);
}

.channel-card img {
  transition: transform 0.6s ease;
}

.channel-card:hover img {
  transform: scale(1.05);
}

.channel-img {
  aspect-ratio: 2/3;
  width: 100%;
  object-fit: contain;
  display: block;
}

.channel-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.channel-card:hover .channel-overlay {
  opacity: 1;
}

.channel-overlay h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.channel-badge {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.channels-info-card {
  text-align: center;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.04), rgba(139, 92, 246, 0.04));
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.channel-categories {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.category-pill {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.channels-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.channel-card {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.35s, box-shadow 0.35s;
}

.channel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.5);
}

.channel-card img {
  transition: transform 0.6s ease;
}

.channel-card:hover img {
  transform: scale(1.05);
}

.channel-img {
  aspect-ratio: 2/3;
  width: 100%;
  object-fit: contain;
  display: block;
}

.movie-poster {
  aspect-ratio: 2/3;
  width: 100%;
  object-fit: cover;
  display: block;
}

.highlight-img {
  aspect-ratio: 16/10;
  width: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.6s ease;
}

.feature-highlight-visual:hover .highlight-img {
  transform: scale(1.03);
}

.kids-img {
  aspect-ratio: 16/9;
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.kids-feature:hover .kids-img {
  transform: scale(1.03);
}

.kids-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* Devices Section */
.devices-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(15, 15, 26, 0.6) 50%, var(--bg-primary) 100%);
}

.devices-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.devices-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.devices-main-img {
  width: 100%;
  max-width: 560px;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.devices-main-img:hover {
  transform: translateY(-6px);
  box-shadow: 0 35px 70px rgba(0,0,0,0.6), 0 0 0 1px rgba(245, 158, 11, 0.1);
}

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

.devices-content h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #f59e0b, #8b5cf6);
  border-radius: 2px;
  margin: 0 auto 1.25rem;
}

.devices-content p {
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* VOD Section */
.vod-section {
  padding: 5rem 0;
}

.movies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.movie-card {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.35s, box-shadow 0.35s;
}

.movie-card:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 30px rgba(0,0,0,0.4), 0 0 0 1px rgba(245, 158, 11, 0.08);
}

.movie-card img {
  transition: transform 0.6s ease;
}

.movie-card:hover img {
  transform: scale(1.08);
}

.movie-poster {
  aspect-ratio: 2/3;
  width: 100%;
}

/* Feature Highlight */
.feature-highlight-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(15, 15, 26, 0.5) 50%, var(--bg-primary) 100%);
}

.feature-highlight-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.feature-highlight-content {
  text-align: center;
}

.feature-highlight-content h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.feature-highlight-content p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.95rem;
  line-height: 1.7;
}

.feature-highlight-visual {
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0c0c14;
}

.highlight-img {
  aspect-ratio: 16/10;
  width: 100%;
  object-fit: cover;
}

/* Kids Section */
.kids-section {
  padding: 5rem 0;
}

.kids-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.kids-feature {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0c0c14;
  aspect-ratio: 16 / 9;
  display: flex;
}

.kids-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.kids-img {
  aspect-ratio: 16/9;
  width: 100%;
}

.kids-posters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.kids-poster {
  aspect-ratio: 3/4;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s;
  background: #0c0c14;
}

.kids-poster:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.3), 0 0 0 1px rgba(245, 158, 11, 0.08);
}

.kids-poster img {
  transition: transform 0.6s ease;
}

.kids-poster:hover img {
  transform: scale(1.08);
}

/* Placeholder styling */
.placeholder,
.placeholder-sm {
  background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
  display: grid;
  place-items: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  padding: 1rem;
}

/* Pricing Section */
.pricing-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(15, 15, 26, 0.4) 50%, var(--bg-primary) 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.pricing-card {
  position: relative;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2.25rem;
  transition: transform 0.35s, box-shadow 0.35s;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(245, 158, 11, 0.08);
}

.pricing-card.popular {
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.1), inset 0 0 20px rgba(245, 158, 11, 0.02);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f59e0b, #8b5cf6);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  -webkit-text-fill-color: var(--text-secondary);
}

.plan-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
  flex-grow: 1;
  text-align: left;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.feature-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Device Selector */
.device-selector {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.device-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--glass);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  font-family: inherit;
}

.device-tab:hover {
  border-color: rgba(245, 158, 11, 0.3);
  color: var(--text-primary);
}

.device-tab.active {
  background: linear-gradient(135deg, #f59e0b, #8b5cf6);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.25);
}

.device-tab svg {
  width: 18px;
  height: 18px;
}

.device-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-weight: 500;
}

/* Reseller Section */
.why-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(15, 15, 26, 0.5) 50%, var(--bg-primary) 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.why-card {
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2.25rem;
  transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
  text-align: center;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 158, 11, 0.2);
  box-shadow: 0 24px 48px rgba(0,0,0,0.4), 0 0 30px rgba(245, 158, 11, 0.06);
}

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(139, 92, 246, 0.1));
  border: 1px solid rgba(245, 158, 11, 0.2);
  display: grid;
  place-items: center;
  margin: 0 auto 1.25rem;
  color: var(--accent);
  transition: transform 0.35s, box-shadow 0.35s;
}

.why-icon svg {
  width: 32px;
  height: 32px;
}

.why-card:hover .why-icon {
  transform: scale(1.08);
  box-shadow: 0 0 24px rgba(245, 158, 11, 0.15);
}

.why-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

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

/* Setup Guide Page */
.setup-guide-section {
  padding: 5rem 0;
}

.setup-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
}

.setup-block:last-child {
  margin-bottom: 0;
}

.setup-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.setup-content {
  max-width: 560px;
}

.setup-badge {
  display: inline-block;
  padding: 0.4rem 1.1rem;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(139, 92, 246, 0.1));
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.setup-content h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.setup-content > p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.setup-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.setup-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  transition: border-color 0.35s, transform 0.35s;
}

.setup-step:hover {
  border-color: rgba(245, 158, 11, 0.2);
  transform: translateX(4px);
}

.step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b, #8b5cf6);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.step-text h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.step-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Device Mockups */
.device-mockup-firestick {
  position: relative;
  width: 280px;
}

.tv-screen {
  width: 280px;
  height: 170px;
  background: linear-gradient(135deg, #0f0f1a, #161622);
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: 1rem;
  display: grid;
  place-items: center;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), inset 0 0 40px rgba(245, 158, 11, 0.03);
}

.tv-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
}

.tv-content span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.tv-stand {
  width: 60px;
  height: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  margin: 0 auto;
  border-radius: 0 0 4px 4px;
}

.firestick-device {
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 18px;
  background: linear-gradient(180deg, #27273a, #161622);
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.firestick-led {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.5);
}

.device-mockup-smarttv {
  position: relative;
  width: 300px;
}

.tv-frame {
  width: 300px;
  height: 180px;
  background: #0f0f1a;
  border: 3px solid rgba(255,255,255,0.06);
  border-radius: 0.5rem;
  padding: 8px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.tv-display {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.06), rgba(139, 92, 246, 0.04));
  border-radius: 0.25rem;
  display: grid;
  place-items: center;
}

.tv-channel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 10px;
  width: 100%;
}

.channel-thumb {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(139, 92, 246, 0.1));
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,0.04);
}

.tv-stand-wide {
  width: 100px;
  height: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  margin: 0 auto;
  border-radius: 0 0 6px 6px;
}

/* Plans Page Features List */
.plans-features-right {
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.pr-feature {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.pr-feature:last-of-type {
  border-bottom: none;
}

.pr-feature svg {
  flex-shrink: 0;
}

/* Trial Section */
.trial-section {
  padding: 3rem 0 0;
}

.trial-banner {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.06), rgba(139, 92, 246, 0.06));
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: 1.75rem;
  padding: 3.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.trial-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(245, 158, 11, 0.04), transparent 60%);
  pointer-events: none;
}

.trial-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(139, 92, 246, 0.1));
  border: 1px solid rgba(245, 158, 11, 0.2);
  display: grid;
  place-items: center;
  margin: 0 auto 1.5rem;
  color: var(--accent);
  position: relative;
  z-index: 1;
}

.trial-banner h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  letter-spacing: -0.01em;
}

.trial-banner h2 span {
  background: linear-gradient(135deg, #f59e0b, #fbbf24, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trial-banner > p {
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.trial-banner .btn {
  position: relative;
  z-index: 1;
}

.trial-badges {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}

.trial-badge {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
}

/* Included Features Section */
.included-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(15, 15, 26, 0.5) 50%, var(--bg-primary) 100%);
}

.included-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

.included-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.included-header h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.included-header p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.included-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.inc-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  transition: border-color 0.35s, transform 0.35s;
}

.inc-feature:hover {
  border-color: rgba(245, 158, 11, 0.15);
  transform: translateY(-3px);
}

.inc-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.75rem;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.15);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.inc-feature h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.inc-feature p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* Guarantees Section */
.guarantees-section {
  padding: 3rem 0;
}

.guarantees-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.guarantee-item {
  text-align: center;
  padding: 1.75rem;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  transition: transform 0.35s, border-color 0.35s;
}

.guarantee-item:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.15);
}

.guarantee-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.15);
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  color: var(--accent);
}

.guarantee-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.guarantee-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Testimonials */
.testimonials-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(15, 15, 26, 0.35) 50%, var(--bg-primary) 100%);
}

.stars-row {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 2rem;
}

.stars-row svg {
  width: 20px;
  height: 20px;
}

.reviews-marquee {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.reviews-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: scrollReviews 40s linear infinite;
}

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

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

.reviews-track .review-card {
  width: 340px;
  flex-shrink: 0;
}

.review-card {
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.5rem;
  transition: transform 0.35s;
}

.review-card:hover {
  transform: translateY(-3px);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
}

.reviewer-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
}

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

.stars {
  display: flex;
  gap: 0.15rem;
  margin-bottom: 0.75rem;
}

.stars svg {
  width: 14px;
  height: 14px;
}

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

/* Steps */
.steps-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(245, 158, 11, 0.02) 50%, var(--bg-primary) 100%);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

.steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent);
  margin: 0 auto 1.25rem;
  background: rgba(245, 158, 11, 0.06);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.08);
}

.step h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

.step-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(245, 158, 11, 0.15));
  margin-top: 32px;
  flex-shrink: 0;
  border-radius: 2px;
}

/* Footer */
.footer {
  background: #06060a;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 3.5rem 0 1.5rem;
}

.footer-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.footer-logo {
  font-size: 1.75rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: var(--accent);
}

.footer-devices {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.device-brand {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.device-brand:hover {
  color: var(--text-secondary);
}

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

.footer-copyright p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Responsive */
@media (min-width: 640px) {
  .movies-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .kids-posters {
    grid-template-columns: repeat(3, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .nav {
    display: block;
  }

  .mobile-menu-btn {
    display: none;
  }

  .channels-showcase {
    grid-template-columns: 1.5fr 1fr;
    gap: 1.5rem;
  }

  .devices-grid {
    grid-template-columns: 1.2fr 1fr;
  }

  .devices-content {
    text-align: left;
  }

  .divider {
    margin: 0 0 1.25rem;
  }

  .feature-highlight-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-highlight-content {
    text-align: left;
  }

  .feature-highlight-content p {
    margin-left: 0;
    margin-right: 0;
  }

  .kids-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .highlights-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-simple {
    flex-direction: row;
    text-align: left;
  }

  .setup-block {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .setup-block.reverse .setup-visual {
    order: 2;
  }

  .setup-block.reverse .setup-content {
    order: 1;
  }

  .included-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .guarantees-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .movies-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 767px) {
  /* Header */
  body {
    padding-top: 72px;
  }

  .header > .container > .btn-primary {
    display: none !important;
  }

  .header .container {
    height: 72px;
  }

  .mobile-nav {
    top: 72px;
  }

  /* Hero */
  .hero-banner {
    min-height: 520px;
    padding: 3rem 0;
  }

  .hero-banner h1 {
    font-size: clamp(1.8rem, 6.5vw, 2.5rem);
    margin-bottom: 1rem;
  }

  .hero-banner p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  /* Sections */
  .section {
    padding: 3rem 0;
  }

  .section-title {
    margin-bottom: 2rem;
  }

  /* Channels */
  .channels-row {
    grid-template-columns: 1fr;
  }

  .channels-info-card {
    padding: 2rem 1.25rem;
  }

  /* Kids */
  .kids-posters {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Reviews */
  .reviews-track .review-card {
    width: 300px;
    padding: 1.25rem;
  }

  /* Pricing */
  .pricing-card {
    padding: 1.75rem;
  }

  .price {
    font-size: 2.5rem;
  }

  /* Why cards */
  .why-card {
    padding: 1.75rem;
  }

  /* Steps */
  .steps-row {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }

  .step-connector {
    width: 2px;
    height: 40px;
    margin-top: 0;
    background: linear-gradient(180deg, var(--accent), rgba(245, 158, 11, 0.15));
  }

  /* Devices */
  .devices-main-img {
    max-width: 100%;
  }

  .devices-grid {
    gap: 2rem;
  }

  /* Feature highlight */
  .feature-highlight-grid {
    gap: 2rem;
  }

  /* Setup */
  .setup-step:hover {
    transform: none;
  }

  .device-mockup-firestick,
  .device-mockup-smarttv {
    transform: scale(0.85);
  }

  /* Footer */
  .footer-simple-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  /* Trial */
  .trial-banner {
    padding: 2.5rem 1.5rem;
  }

  /* Guarantees */
  .guarantees-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .guarantee-item {
    padding: 1.25rem;
  }

  /* Included features */
  .included-grid {
    gap: 2rem;
  }

  /* Legal pages */
  .legal-content {
    padding: 2rem;
  }

  .legal-content h1 {
    font-size: 2rem;
  }
}

/* Legacy Section base */
.section {
  padding: 5rem 0;
}

/* Legacy Hero (for other pages) */
.hero {
  position: relative;
  padding: 5rem 0 4rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hero h1 span {
  background: linear-gradient(135deg, #f59e0b, #fbbf24, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.stats-bar {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1.5rem;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  min-width: 120px;
}

.stat-item h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-primary);
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0;
}

/* Legacy Highlights (for other pages) */
.highlights {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.highlights-content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.highlights-content > p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.highlight-points {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.highlight-point {
  display: flex;
  gap: 1rem;
}

.highlight-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.15);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--accent);
}

.highlight-point h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.highlight-point p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.highlights-visual {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--bg-tertiary);
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  overflow: hidden;
  display: grid;
  place-items: center;
}

.highlights-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.06), transparent);
}

.device-mockup {
  position: relative;
  z-index: 1;
  width: 80%;
  height: 60%;
  background: var(--bg-primary);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
  display: grid;
  place-items: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.highlight-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 1.5rem;
  position: relative;
  z-index: 1;
}

/* Legacy Devices Row */
.devices-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding: 2rem 0;
}

.device-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  transition: color 0.3s, transform 0.3s;
}

.device-icon:hover {
  color: var(--text-primary);
  transform: translateY(-3px);
}

.device-icon svg {
  width: 40px;
  height: 40px;
}

.device-icon span {
  font-size: 0.8rem;
  font-weight: 500;
}

/* Legacy Features */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.feature-card {
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2.25rem;
  transition: transform 0.35s, border-color 0.35s;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 158, 11, 0.2);
}

.feature-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.15);
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  color: var(--accent);
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

/* Legacy FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
}

.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--text-secondary);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  color: var(--accent);
}

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

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 1.25rem 1.25rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Legacy Footer Simple */
.footer-simple {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: center;
}

.footer-simple p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-simple-links {
  display: flex;
  gap: 1.5rem;
}

.footer-simple-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer-simple-links a:hover {
  color: var(--accent);
}

/* Scroll animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* WhatsApp Floating Chat Widget */
.whatsapp-widget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.whatsapp-bubble {
  background: #fff;
  color: #333;
  padding: 0.65rem 1rem;
  border-radius: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  white-space: nowrap;
  animation: whatsappPop 0.4s ease-out;
}

.whatsapp-bubble strong {
  color: #111;
  font-weight: 700;
}

.whatsapp-bubble::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #fff;
}

.whatsapp-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}

.whatsapp-icon:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon svg {
  width: 28px;
  height: 28px;
  color: #fff;
}

@keyframes whatsappPop {
  0% { opacity: 0; transform: scale(0.8) translateX(10px); }
  100% { opacity: 1; transform: scale(1) translateX(0); }
}

@media (max-width: 480px) {
  .whatsapp-bubble {
    display: none;
  }
  .whatsapp-widget {
    right: 1rem;
    bottom: 1rem;
  }
}

/* Rotating Hero Word */
.rotate-word {
  display: inline-block;
  position: relative;
  min-width: 3ch;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.rotate-word.fade-out {
  opacity: 0;
  transform: translateY(-12px);
}

.rotate-word.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Legal Pages */
.legal-section { padding: 4rem 0; }
.legal-content {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 3rem;
  max-width: 900px;
  margin: 0 auto;
  color: var(--text-secondary);
  line-height: 1.8;
}
.legal-content h1, .legal-content h2, .legal-content h3 {
  color: var(--text-primary);
}
.legal-content h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}
.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.legal-content p {
  margin-bottom: 1rem;
}
.legal-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}
.legal-content li {
  margin-bottom: 0.5rem;
}

/* Contact Page */
.contact-section { padding: 4rem 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}
.contact-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
}
.contact-card:hover {
  border-color: rgba(14, 165, 233, 0.3);
  box-shadow: 0 8px 32px rgba(14, 165, 233, 0.1);
  transform: translateY(-4px);
}
.contact-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.contact-card-link .contact-value {
  color: var(--accent);
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.contact-card-link:hover .contact-value {
  color: #fff;
}
.contact-arrow {
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.3s ease;
}
.contact-card:hover .contact-arrow {
  opacity: 1;
  transform: translateX(0);
}
.contact-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}
.contact-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.contact-card a {
  color: var(--accent);
  font-weight: 500;
  transition: color 0.2s ease;
}
.contact-card a:hover {
  color: #fff;
}
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(99, 102, 241, 0.15));
  border: 1px solid rgba(14, 165, 233, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent);
}
.contact-intro {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
}
.contact-intro p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.05rem;
}

/* Extra Small Mobile Screens */
@media (max-width: 480px) {
  body {
    padding-top: 64px;
  }

  .container {
    padding: 0 1rem;
  }

  .header .container {
    height: 64px;
  }

  .mobile-nav {
    top: 64px;
  }

  .logo {
    font-size: 1.25rem;
  }

  .hero-banner {
    min-height: 480px;
    padding: 2.5rem 0;
  }

  .hero-banner h1 {
    font-size: clamp(1.6rem, 7vw, 2rem);
    line-height: 1.15;
  }

  .hero-banner p {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .btn-lg {
    padding: 0.8rem 1.35rem;
    font-size: 0.9rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .section-title {
    margin-bottom: 1.5rem;
  }

  .channels-info-card {
    padding: 1.5rem 1rem;
  }

  .channels-desc {
    font-size: 0.85rem;
  }

  .category-pill {
    padding: 0.3rem 0.7rem;
    font-size: 0.7rem;
  }

  .movies-grid {
    gap: 0.65rem;
  }

  .kids-posters {
    gap: 0.5rem;
  }

  .pricing-card {
    padding: 1.5rem;
  }

  .price {
    font-size: 2.1rem;
  }

  .plan-name {
    font-size: 0.9rem;
  }

  .feature-item {
    font-size: 0.8rem;
    gap: 0.5rem;
  }

  .feature-list {
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }

  .why-card {
    padding: 1.5rem;
  }

  .why-icon {
    width: 56px;
    height: 56px;
  }

  .why-card h3 {
    font-size: 1.05rem;
  }

  .why-card p {
    font-size: 0.85rem;
  }

  .reviews-track .review-card {
    width: 260px;
    padding: 1.25rem;
  }

  .review-card p {
    font-size: 0.85rem;
  }

  .step-number {
    width: 52px;
    height: 52px;
    font-size: 1.1rem;
  }

  .step h3 {
    font-size: 1rem;
  }

  .step p {
    font-size: 0.85rem;
  }

  .guarantees-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .guarantee-item {
    padding: 1.25rem;
  }

  .guarantee-icon {
    width: 48px;
    height: 48px;
  }

  .guarantee-item h4 {
    font-size: 0.95rem;
  }

  .guarantee-item p {
    font-size: 0.8rem;
  }

  .trial-banner {
    padding: 2rem 1rem;
  }

  .trial-icon {
    width: 60px;
    height: 60px;
  }

  .trial-badges {
    gap: 0.5rem;
  }

  .trial-badge {
    font-size: 0.75rem;
  }

  .included-features {
    gap: 0.75rem;
  }

  .inc-feature {
    padding: 1rem;
    gap: 0.75rem;
  }

  .inc-icon {
    width: 36px;
    height: 36px;
  }

  .inc-feature h4 {
    font-size: 0.95rem;
  }

  .inc-feature p {
    font-size: 0.85rem;
  }

  .footer {
    padding: 2.5rem 0 1.25rem;
  }

  .footer-simple-links {
    gap: 0.75rem;
  }

  .footer-simple-links a {
    font-size: 0.8rem;
  }

  .legal-content {
    padding: 1.25rem;
  }

  .legal-content h1 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }

  .legal-content h2 {
    font-size: 1.25rem;
  }

  .contact-card {
    padding: 1.5rem;
  }

  .faq-question {
    padding: 1rem;
    font-size: 0.9rem;
  }

  .faq-answer p {
    padding: 0 1rem 1rem;
    font-size: 0.9rem;
  }

/* Footer Language Switcher */
.footer-lang {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.footer-lang a {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-lang a:hover {
  color: var(--text-primary);
}

.footer-lang a.active {
  color: #22c55e;
  font-weight: 600;
}
