/* ============================================================
   HAKUNA TV — style.css
   Dark luxury IPTV landing page
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500;600;700&family=DM+Mono:wght@400;500&display=swap');

/* ── CSS Variables ── */
:root {
  --bg-base:        #07080f;
  --bg-card:        rgba(255,255,255,0.04);
  --bg-card-hover:  rgba(255,255,255,0.08);
  --border:         rgba(255,255,255,0.08);
  --border-glow:    rgba(0,160,255,0.35);

  --blue:           #0099ff;
  --blue-dim:       #0066cc;
  --orange:         #ff6b00;
  --orange-dim:     #cc5500;
  --gold:           #ffc107;
  --green:          #22c55e;

  --text-primary:   #f0f4ff;
  --text-secondary: #8a9bbf;
  --text-muted:     #4a5678;

  --font-display:   'Bebas Neue', sans-serif;
  --font-body:      'DM Sans', sans-serif;
  --font-mono:      'DM Mono', monospace;

  --radius-sm:      8px;
  --radius-md:      16px;
  --radius-lg:      24px;
  --radius-xl:      40px;

  --shadow-blue:    0 0 60px rgba(0,153,255,0.2);
  --shadow-orange:  0 0 60px rgba(255,107,0,0.2);
  --transition:     0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Animated BG ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 15% 20%, rgba(0,102,204,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 85% 75%, rgba(204,85,0,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(0,153,255,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── Floating Glow Orbs ── */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  animation: orbFloat 12s ease-in-out infinite alternate;
}
.orb-1 { width: 500px; height: 500px; background: rgba(0,120,255,0.12); top: -150px; left: -100px; animation-delay: 0s; }
.orb-2 { width: 400px; height: 400px; background: rgba(255,100,0,0.10); bottom: 20%; right: -100px; animation-delay: -4s; }
.orb-3 { width: 300px; height: 300px; background: rgba(0,180,255,0.08); top: 60%; left: 40%; animation-delay: -8s; }

@keyframes orbFloat {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, -40px) scale(1.1); }
}

/* ── Container ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ── Section spacing ── */
section { position: relative; z-index: 1; }
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 60px 0; }

/* ── Scroll Animations ── */
[data-aos] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
[data-aos="fade-left"]  { transform: translateX(-40px); }
[data-aos="fade-right"] { transform: translateX(40px); }
[data-aos="fade-left"].aos-animate,
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
[data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos-delay="300"] { transition-delay: 0.3s; }
[data-aos-delay="400"] { transition-delay: 0.4s; }
[data-aos-delay="500"] { transition-delay: 0.5s; }

/* ── Typography helpers ── */
.display-font { font-family: var(--font-display); letter-spacing: 0.02em; }
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-block;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }
.gradient-text {
  background: linear-gradient(120deg, var(--blue) 0%, #66d9ff 50%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, #ff9500 100%);
  color: #fff;
  box-shadow: 0 4px 30px rgba(255,107,0,0.45);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(255,107,0,0.65);
}
.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c5e 100%);
  color: #fff;
  box-shadow: 0 4px 30px rgba(37,211,102,0.4);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(37,211,102,0.6);
}
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
}
.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* ── Glass Card ── */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: var(--transition);
}
.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-blue);
}

/* ── Badge ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.badge-orange {
  background: rgba(255,107,0,0.15);
  border: 1px solid rgba(255,107,0,0.4);
  color: #ffaa55;
}
.badge-blue {
  background: rgba(0,153,255,0.12);
  border: 1px solid rgba(0,153,255,0.3);
  color: #66ccff;
}
.badge-green {
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.3);
  color: #4ade80;
}

/* ============================================================
   HEADER
   ============================================================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
#header.scrolled {
  background: rgba(7,8,15,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.06em;
}
.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.logo span { color: var(--orange); }
nav { display: flex; align-items: center; gap: 6px; }
nav a {
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
nav a:hover { color: var(--text-primary); background: var(--bg-card); }
.nav-cta {
  background: linear-gradient(135deg, var(--orange), #ff9500) !important;
  color: #fff !important;
  padding: 9px 20px !important;
}
.nav-cta:hover { opacity: 0.9; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: rgba(7,8,15,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px 28px;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--text-primary); background: var(--bg-card); }
.mobile-menu .btn { margin-top: 12px; justify-content: center; }

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 70px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.0;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.hero-h1 .line-orange { color: var(--orange); }
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.hero-trust-item .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

/* Hero Pricing Card */
.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  backdrop-filter: blur(30px);
  position: relative;
  overflow: hidden;
  animation: pricePulse 3s ease-in-out infinite;
}
@keyframes pricePulse {
  0%, 100% { box-shadow: 0 0 40px rgba(0,153,255,0.15), 0 0 0 1px rgba(0,153,255,0.15); }
  50% { box-shadow: 0 0 80px rgba(255,107,0,0.25), 0 0 0 1px rgba(255,107,0,0.3); }
}
.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--orange), var(--blue));
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}
.card-wm-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(255,193,7,0.2), rgba(255,107,0,0.2));
  border: 1px solid rgba(255,193,7,0.35);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.price-block {
  margin: 20px 0 28px;
}
.price-old {
  font-size: 1.4rem;
  color: var(--text-muted);
  text-decoration: line-through;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}
.price-new {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--orange), #ff9500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.02em;
}
.price-new sup { font-size: 2.2rem; vertical-align: super; }
.price-period { font-size: 0.85rem; color: var(--text-secondary); margin-top: 6px; }
.save-chip {
  display: inline-block;
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.3);
  color: #4ade80;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.card-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.card-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.card-feat-item .check { color: var(--green); font-size: 1rem; }

/* ============================================================
   STATS BAR
   ============================================================ */
#stats {
  background: rgba(255,255,255,0.025);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 20px;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--border);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--blue), #66d9ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-top: 4px;
  font-weight: 500;
}

/* ============================================================
   BENEFITS SECTION
   ============================================================ */
#benefits { padding: 100px 0; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 56px;
}
.benefit-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
}
.benefit-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  background: rgba(0,153,255,0.12);
  border: 1px solid rgba(0,153,255,0.2);
}
.benefit-icon.orange {
  background: rgba(255,107,0,0.12);
  border-color: rgba(255,107,0,0.2);
}
.benefit-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.benefit-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================================
   WHY HAKUNA SECTION
   ============================================================ */
#why { padding: 100px 0; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.why-item:hover {
  background: var(--bg-card);
  border-color: var(--border-glow);
}
.why-num {
  min-width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--blue), #0055aa);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #fff;
}
.why-text-title { font-weight: 700; margin-bottom: 4px; font-size: 0.97rem; }
.why-text-desc { font-size: 0.86rem; color: var(--text-secondary); }

.why-visual {
  position: relative;
  height: 480px;
}
.why-visual-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.tv-screen {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  background: linear-gradient(180deg, #0d1526 0%, #071022 100%);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(0,153,255,0.25);
  padding: 20px;
  box-shadow: 0 20px 80px rgba(0,100,255,0.25);
}
.tv-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.tv-dot { width: 10px; height: 10px; border-radius: 50%; }
.tv-dot-r { background: #ff5f57; }
.tv-dot-y { background: #febc2e; }
.tv-dot-g { background: #28c840; }
.tv-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.tv-ch {
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  border: 1px solid rgba(255,255,255,0.07);
  transition: var(--transition);
}
.tv-ch:hover { background: rgba(0,153,255,0.15); border-color: rgba(0,153,255,0.3); }
.tv-ch.active {
  background: linear-gradient(135deg, rgba(255,107,0,0.25), rgba(0,153,255,0.2));
  border-color: rgba(255,107,0,0.4);
  box-shadow: 0 0 20px rgba(255,107,0,0.2);
}

/* Floating info chips around TV */
.tv-chip {
  position: absolute;
  background: rgba(7,8,15,0.9);
  border: 1px solid var(--border-glow);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  backdrop-filter: blur(12px);
  animation: chipFloat 6s ease-in-out infinite alternate;
}
.tv-chip-1 { top: 10%; left: -10%; animation-delay: 0s; }
.tv-chip-2 { top: 40%; right: -8%; animation-delay: -2s; }
.tv-chip-3 { bottom: 12%; left: 5%; animation-delay: -4s; }
@keyframes chipFloat {
  from { transform: translateY(0); }
  to   { transform: translateY(-10px); }
}

/* ============================================================
   DEVICES SECTION
   ============================================================ */
#devices { padding: 100px 0; }
.devices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 56px;
}
.device-card {
  padding: 28px 20px;
  text-align: center;
  border-radius: var(--radius-lg);
}
.device-icon { font-size: 2.2rem; margin-bottom: 14px; }
.device-name { font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }
.device-sub { font-size: 0.8rem; color: var(--text-secondary); }

/* ============================================================
   SPORTS SECTION
   ============================================================ */
#sports {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,30,80,0.3) 50%, transparent 100%);
}
.sports-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.sports-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.sport-tag {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 18px;
  font-size: 0.84rem;
  font-weight: 500;
  transition: var(--transition);
}
.sport-tag:hover {
  background: rgba(0,153,255,0.12);
  border-color: rgba(0,153,255,0.35);
  color: #66ccff;
}
.sport-highlight {
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.25);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.sport-highlight-icon { font-size: 1.8rem; }
.sport-highlight-text strong { display: block; margin-bottom: 4px; font-size: 0.97rem; }
.sport-highlight-text span { font-size: 0.86rem; color: var(--text-secondary); }

.matches-preview {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.match-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}
.match-card:hover { border-color: var(--border-glow); background: var(--bg-card-hover); }
.match-teams { font-weight: 700; font-size: 0.95rem; }
.match-league { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }
.match-live {
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(255,0,50,0.15);
  border: 1px solid rgba(255,0,50,0.3);
  color: #ff6680;
  padding: 4px 10px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.match-live::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #ff4466;
  animation: pulse-dot 1.5s ease-in-out infinite;
}
.match-time { font-size: 0.82rem; color: var(--text-secondary); }

/* ============================================================
   MOVIES SECTION
   ============================================================ */
#movies { padding: 100px 0; }
.movies-shelf {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 16px;
  margin-top: 40px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.movie-card {
  flex: 0 0 160px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.movie-card:hover { transform: scale(1.04); border-color: var(--border-glow); }
.movie-thumb {
  width: 100%;
  aspect-ratio: 2/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.movie-info { padding: 10px 12px 12px; }
.movie-title { font-size: 0.82rem; font-weight: 700; line-height: 1.3; }
.movie-meta { font-size: 0.72rem; color: var(--text-muted); margin-top: 4px; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
#how { padding: 100px 0; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 38px;
  left: calc(12.5% + 8px);
  right: calc(12.5% + 8px);
  height: 1px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  z-index: 0;
}
.step-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
}
.step-num {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dim));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 auto 20px;
  box-shadow: 0 0 30px rgba(0,153,255,0.35);
  position: relative;
}
.step-card:nth-child(2) .step-num { background: linear-gradient(135deg, #25d366, #128c5e); box-shadow: 0 0 30px rgba(37,211,102,0.35); }
.step-card:nth-child(3) .step-num { background: linear-gradient(135deg, var(--orange), var(--orange-dim)); box-shadow: 0 0 30px rgba(255,107,0,0.35); }
.step-card:nth-child(4) .step-num { background: linear-gradient(135deg, #a855f7, #7c3aed); box-shadow: 0 0 30px rgba(168,85,247,0.35); }
.step-title { font-weight: 700; font-size: 1rem; margin-bottom: 8px; }
.step-desc { font-size: 0.86rem; color: var(--text-secondary); }

/* ============================================================
   TRUST SECTION
   ============================================================ */
#trust { padding: 80px 0; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.trust-card {
  padding: 30px 26px;
  border-radius: var(--radius-lg);
  text-align: center;
}
.trust-icon { font-size: 2.4rem; margin-bottom: 16px; }
.trust-title { font-weight: 700; font-size: 1rem; margin-bottom: 6px; }
.trust-desc { font-size: 0.86rem; color: var(--text-secondary); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials { padding: 100px 0; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
}
.testimonial-card {
  padding: 28px 26px;
  border-radius: var(--radius-lg);
}
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.t-text { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}
.t-name { font-weight: 700; font-size: 0.9rem; }
.t-city { font-size: 0.78rem; color: var(--text-muted); }

/* ============================================================
   PRICING HIGHLIGHT
   ============================================================ */
#pricing-cta { padding: 100px 0; }
.pricing-wrap {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.pricing-card {
  background: linear-gradient(145deg, rgba(0,153,255,0.07), rgba(255,107,0,0.05));
  border: 1px solid rgba(0,153,255,0.2);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  animation: pricePulse 3s ease-in-out infinite;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--orange), var(--blue));
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}
.big-price {
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 1;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--orange) 0%, #ff9500 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.big-price sup { font-size: 3rem; }
.pricing-period-text { font-size: 1rem; color: var(--text-secondary); margin-bottom: 8px; }
.old-price-text { font-size: 1.1rem; color: var(--text-muted); text-decoration: line-through; font-family: var(--font-display); }
.pricing-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 30px;
  margin: 32px 0 36px;
  text-align: left;
}
.pf-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.pf-item .pf-check { color: var(--green); font-size: 0.9rem; }
.pricing-urgency {
  font-size: 0.82rem;
  color: var(--orange);
  margin-top: 16px;
  font-weight: 600;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
#faq { padding: 100px 0; }
.faq-grid {
  max-width: 780px;
  margin: 52px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: var(--border-glow); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-primary);
  text-align: left;
  padding: 20px 24px;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q-icon {
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0,153,255,0.15);
  border: 1px solid rgba(0,153,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform 0.3s;
  color: var(--blue);
}
.faq-item.open .faq-q-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 24px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 24px 20px; }

/* ============================================================
   FINAL CTA
   ============================================================ */
#final-cta {
  padding: 120px 0;
  text-align: center;
  background: linear-gradient(180deg, transparent 0%, rgba(0,40,100,0.2) 50%, transparent 100%);
}
.final-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.final-cta-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 40px;
}
.final-cta-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 20px;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--border);
  padding: 60px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-top: 14px;
  max-width: 260px;
  line-height: 1.65;
}
.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text-primary); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 0.82rem; color: var(--text-muted); }
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--text-secondary); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { max-width: 440px; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-visual { height: 360px; }
  .sports-inner { grid-template-columns: 1fr; gap: 48px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  nav { display: none; }
  .hamburger { display: flex; }

  .section-pad { padding: 70px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .trust-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-features { grid-template-columns: 1fr; }
  .pricing-card { padding: 36px 24px; }
  .big-price { font-size: 6rem; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: 2.4rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .devices-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* Scrollbar styling */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.22); }