/* ═══════════════════════════════════════════
   UltraStreamHub — Main Stylesheet
   Dark Premium IPTV Theme
═══════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --bg: #070711;
  --bg2: #0d0d1c;
  --surface: #111124;
  --surface2: #181830;
  --border: #232340;
  --border2: #2e2e52;

  --accent: #5b6ef5;
  --accent-hover: #4a5ce8;
  --accent-glow: rgba(91, 110, 245, 0.35);
  --accent2: #00d4ff;
  --accent2-glow: rgba(0, 212, 255, 0.25);

  --text: #f0f0ff;
  --text-muted: #8888aa;
  --text-dim: #44445a;

  --green: #22c55e;
  --yellow: #f59e0b;
  --red: #ef4444;

  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;

  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.6);
  --glow: 0 0 40px var(--accent-glow);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── SECTION PADDING ── */
.section-pad { padding: 100px 0; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: 'Syne', sans-serif; line-height: 1.15; }
h1 { font-size: clamp(38px, 5.5vw, 68px); font-weight: 800; }
h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 700; }
h3 { font-size: 20px; font-weight: 600; }
p { color: var(--text-muted); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 6px 30px var(--accent-glow);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border2);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(91,110,245,0.05);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
}
.btn-ghost:hover { color: var(--text); }

.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: var(--radius); }

/* ── SECTION HEADERS ── */
.section-header-center { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  background: rgba(91,110,245,0.1);
  color: var(--accent);
  border: 1px solid rgba(91,110,245,0.25);
  padding: 6px 16px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  color: var(--text);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto;
}

/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(7,7,17,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}
.logo-icon {
  color: var(--accent);
  font-size: 22px;
}
.logo-text { color: var(--text); }
.logo-text strong { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.2s;
}
.nav-links a:hover {
  color: var(--text);
  background: var(--surface);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.orb1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(91,110,245,0.3) 0%, transparent 70%);
  top: -200px; right: -100px;
  animation: orbFloat 8s ease-in-out infinite;
}
.orb2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,212,255,0.15) 0%, transparent 70%);
  bottom: -100px; left: 10%;
  animation: orbFloat 10s ease-in-out infinite reverse;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(91,110,245,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91,110,245,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  color: var(--green);
  padding: 8px 16px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
  animation: fadeUp 0.6s ease both;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-title {
  margin-bottom: 24px;
  animation: fadeUp 0.6s ease 0.1s both;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title-sub {
  display: block;
  font-size: 0.65em;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 4px;
}
.hero-desc {
  font-size: 18px;
  max-width: 520px;
  margin-bottom: 36px;
  animation: fadeUp 0.6s ease 0.2s both;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeUp 0.6s ease 0.3s both;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fadeUp 0.6s ease 0.4s both;
}
.trust-item { display: flex; flex-direction: column; gap: 2px; }
.trust-val { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; color: var(--text); }
.trust-label { font-size: 12px; color: var(--text-dim); }
.trust-sep { width: 1px; height: 40px; background: var(--border); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* TV Mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeUp 0.8s ease 0.5s both;
}
.tv-mockup {
  position: relative;
  filter: drop-shadow(0 20px 60px rgba(91,110,245,0.3));
}
.tv-screen {
  width: 380px;
  background: linear-gradient(135deg, #13132a, #1a1a3a);
  border: 2px solid var(--border2);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.tv-screen::before {
  content: '⬤ ⬤ ⬤';
  display: block;
  font-size: 8px;
  color: var(--border2);
  letter-spacing: 4px;
  margin-bottom: 16px;
}
.tv-channel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.tv-ch {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 8px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  animation: chFadeIn 0.5s ease var(--d, 0s) both;
  transition: all 0.2s;
}
.tv-ch:hover { border-color: var(--accent); color: var(--accent); }
.tv-ch.tv-live {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: white;
  border-color: transparent;
  font-size: 12px;
  grid-column: span 2;
  animation: none;
}
.tv-badge-4k {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--accent);
  color: white;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 14px;
  padding: 4px 10px;
  border-radius: 6px;
  box-shadow: 0 0 20px var(--accent-glow);
}
@keyframes chFadeIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}
.tv-stand {
  width: 80px; height: 16px;
  background: var(--surface2);
  margin: 0 auto;
  border-radius: 0 0 8px 8px;
  border: 2px solid var(--border2);
  border-top: none;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--text-dim), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(0.6); opacity: 1; }
}

/* ══════════════════════════════
   STATS BAR
══════════════════════════════ */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 140px;
}
.stat-icon { font-size: 24px; }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  display: block;
}
.stat-label { font-size: 12px; color: var(--text-muted); display: block; }

/* ══════════════════════════════
   FEATURES
══════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.feature-card:hover {
  border-color: var(--border2);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 52px; height: 52px;
  background: rgba(91,110,245,0.1);
  border: 1px solid rgba(91,110,245,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-icon svg { width: 24px; height: 24px; stroke: var(--accent); }
.feature-card h3 { font-size: 18px; margin-bottom: 12px; color: var(--text); }
.feature-card p { font-size: 15px; }

/* AOS scroll animation */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
[data-aos].aos-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════
   CHANNELS
══════════════════════════════ */
.channels { background: var(--bg2); }
.channels-categories {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.cat-btn {
  padding: 10px 20px;
  border-radius: 40px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}
.cat-btn:hover, .cat-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}
.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  margin-bottom: 40px;
}
.ch-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 16px;
  text-align: center;
  transition: all 0.2s;
  cursor: default;
}
.ch-card:hover {
  border-color: var(--accent);
  background: rgba(91,110,245,0.06);
  transform: translateY(-2px);
}
.ch-card.hidden { display: none; }
.ch-name { font-weight: 600; font-size: 14px; color: var(--text); }
.channels-more {
  text-align: center;
  padding: 32px;
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
}
.channels-more p { font-size: 16px; margin-bottom: 20px; }

/* ══════════════════════════════
   PRICING
══════════════════════════════ */
.pricing { background: var(--bg); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: start;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: all 0.3s ease;
}
.price-card:hover {
  border-color: var(--border2);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.price-card.featured {
  border-color: var(--accent);
  background: linear-gradient(145deg, var(--surface), rgba(91,110,245,0.08));
  box-shadow: 0 0 40px rgba(91,110,245,0.15);
  transform: translateY(-8px);
}
.price-card.featured:hover { transform: translateY(-12px); }
.price-badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 40px;
  margin-bottom: 16px;
}
.price-duration {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.price-amount {
  font-family: 'Syne', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 2px;
}
.price-currency {
  font-size: 24px;
  margin-top: 8px;
  color: var(--accent);
}
.price-cents { font-size: 28px; align-self: flex-end; margin-bottom: 4px; }
.price-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.price-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}
.price-features li svg {
  width: 16px; height: 16px;
  stroke: var(--green);
  flex-shrink: 0;
}
.price-cta { width: 100%; justify-content: center; }
.pricing-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 48px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  flex-wrap: wrap;
}
.pf-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}
.pf-item svg { width: 20px; height: 20px; stroke: var(--accent); }

/* ══════════════════════════════
   DEVICES
══════════════════════════════ */
.devices { background: var(--bg2); }
.devices-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.device-list { display: flex; flex-direction: column; gap: 16px; }
.device-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.device-item:hover { border-color: var(--accent); transform: translateX(4px); }
.device-icon { font-size: 28px; flex-shrink: 0; }
.device-item strong { font-size: 15px; color: var(--text); display: block; }
.device-item small { font-size: 13px; color: var(--text-muted); }
.app-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.app-logo {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-muted);
  transition: all 0.2s;
}
.app-logo:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(91,110,245,0.05);
}

/* ══════════════════════════════
   TESTIMONIALS
══════════════════════════════ */
.testimonials { background: var(--bg); }
.rating-global {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}
.stars { color: var(--yellow); font-size: 20px; letter-spacing: 2px; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s;
}
.testi-card:hover {
  border-color: var(--border2);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.testi-stars { color: var(--yellow); font-size: 16px; letter-spacing: 2px; margin-bottom: 16px; }
.testi-card p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-style: italic;
  line-height: 1.8;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: white;
  flex-shrink: 0;
}
.testi-author strong { font-size: 15px; color: var(--text); display: block; }
.testi-author small { font-size: 13px; color: var(--text-dim); }

/* ══════════════════════════════
   TRIAL CTA
══════════════════════════════ */
.trial-cta { background: var(--bg2); }
.trial-box {
  background: linear-gradient(135deg, var(--surface), rgba(91,110,245,0.12));
  border: 1px solid rgba(91,110,245,0.3);
  border-radius: var(--radius-lg);
  padding: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(91,110,245,0.1);
}
.trial-orb {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(91,110,245,0.15) 0%, transparent 70%);
  top: -100px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.trial-content h2 { margin-bottom: 16px; }
.trial-content p { font-size: 18px; max-width: 480px; margin: 0 auto 36px; }

/* ══════════════════════════════
   FAQ
══════════════════════════════ */
.faq-preview { background: var(--bg); }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover, .faq-item.open { border-color: var(--accent); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  background: var(--surface);
  transition: background 0.2s;
}
.faq-q:hover { background: var(--surface2); }
.faq-item.open .faq-q { background: var(--surface2); color: var(--accent); }
.faq-arrow {
  font-size: 22px;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s;
  display: inline-block;
}
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-a {
  padding: 0 24px;
  font-size: 15px;
  color: var(--text-muted);
  background: var(--surface);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 16px 24px 24px;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; max-width: 280px; margin-bottom: 24px; }
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 40px; height: 40px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.2s;
}
.footer-social a svg { width: 18px; height: 18px; }
.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}
.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 13px; color: var(--text-dim); }
.payment-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pay-icon {
  background: var(--surface2);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

/* ══════════════════════════════
   WHATSAPP BUTTON
══════════════════════════════ */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 50;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s;
}
.whatsapp-btn svg { width: 28px; height: 28px; }
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}
.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.2s;
  pointer-events: none;
}
.whatsapp-btn:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }

/* ══════════════════════════════
   PAGE HERO (sub-pages)
══════════════════════════════ */
.page-hero {
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(91,110,245,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 { font-size: clamp(32px, 4vw, 52px); margin-bottom: 16px; }
.page-hero p { font-size: 18px; max-width: 560px; margin: 0 auto; }

/* ══════════════════════════════
   BREADCRUMB
══════════════════════════════ */
.breadcrumb {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb span { color: var(--text-dim); }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card.featured { transform: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .section-pad { padding: 64px 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px; }
  .hero-visual { display: none; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-trust { gap: 16px; }
  .trust-val { font-size: 16px; }
  .nav-links { display: none; position: fixed; top: 72px; left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--border);
    flex-direction: column; padding: 20px; gap: 4px; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .nav-actions .btn-ghost { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .devices-inner { grid-template-columns: 1fr; }
  .devices-visual { display: none; }
  .stats-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .trial-box { padding: 40px 24px; }
  .tv-screen { width: 100%; }
  .pricing-footer { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 480px) {
  .channels-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-trust { flex-direction: column; align-items: flex-start; }
  .trust-sep { display: none; }
}
