/* ================================================================
   ELON IPTV - MODERN STREAMING LANDING PAGE STYLESHEET
   Design: Elon IPTV - black/yellow/white palette
   ================================================================ */

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

:root {
  /* 1. Deep Charcoal / Obsidian Black (Base & Dark Theme) */
  --obsidian: #121212;
  --charcoal: #18181b;
  --card-bg: #18181b;
  --card-bg2: #222226;
  --border-color: #27272a;
  --black: #0d0d0e;
  --page-bg: #121212;

  /* 2. Vibrant Electric Amber / Warm Gold (Accents & CTAs) */
  --amber: #f59e0b;
  --amber-glow: #ffb800;
  --amber-dark: #d97706;
  --yellow: #f59e0b;
  --yellow-dark: #d97706;

  /* 3. Trustworthy Tech Blue (Security, Trust & Verification) */
  --tech-blue: #3b82f6;
  --tech-blue-sky: #0ea5e9;
  --blue-glow: rgba(59, 130, 246, 0.2);

  /* 4. Crisp Off-White (Typography & High Contrast Text) */
  --text-white: #ffffff;
  --text-light: #f3f4f6;
  --text-muted: #9ca3af;
  --text-subtle: #71717a;

  --font: 'Montserrat', sans-serif;
  --radius: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--obsidian);
  color: var(--text-light);
  overflow-x: hidden;
}

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

.faq, .reviews, .footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 600px;
}

/* ── Utility ── */
.accent { color: var(--amber); }

.section-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px 24px;
}

.section-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-white);
  margin-bottom: 12px;
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

/* ================================================================
   NAVIGATION
   ================================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--black);
  height: 72px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  transition: box-shadow .3s;
}

.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.7); }

.nav-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* ================================================================
   LOGO & BRANDING (With Dynamic Animated Hover Effect)
   ================================================================ */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
}

.logo:hover {
  transform: translateY(-3px) scale(1.03);
}

.logo-img {
  height: 65px;
  width: auto;
  max-width: 340px;
  object-fit: contain;
  display: block;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.35s ease;
  will-change: transform, filter;
}

.logo:hover .logo-img {
  animation: logoIconFloat 1.2s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 16px rgba(255, 184, 0, 0.95)) drop-shadow(0 0 28px rgba(255, 122, 0, 0.7));
}

/* Logo text beside image */
.logo-text {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-size: 36px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -1px;
  text-transform: uppercase;
  line-height: 1;
  flex-shrink: 0;
  user-select: none;
}

.logo-elon {
  background: linear-gradient(110deg, #ffffff 0%, #ffffff 40%, #ffcf40 50%, #ffffff 60%, #a0a0a0 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(1px 1px 3px rgba(0,0,0,0.7));
  transition: filter 0.35s ease, transform 0.35s ease;
  display: inline-block;
}

.logo:hover .logo-elon {
  animation: logoShimmer 1.5s ease-in-out infinite;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.85)) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.9));
}

.logo-iptv {
  background: linear-gradient(110deg, #FFB800 0%, #FF7A00 35%, #FFFFFF 50%, #FFB800 65%, #FF5000 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-left: 8px;
  filter: drop-shadow(1px 1px 3px rgba(0,0,0,0.5));
  transition: filter 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-block;
}

.logo:hover .logo-iptv {
  animation: logoShimmer 1.5s ease-in-out infinite;
  filter: drop-shadow(0 0 18px rgba(255, 184, 0, 1)) drop-shadow(0 0 30px rgba(255, 90, 0, 0.85));
}

/* Keyframe Animations for Logo */
@keyframes logoIconFloat {
  0% {
    transform: scale(1.06) rotate(-2deg);
  }
  50% {
    transform: scale(1.12) rotate(2deg) translateY(-2px);
  }
  100% {
    transform: scale(1.08) rotate(-1deg) translateY(-4px);
  }
}

@keyframes logoShimmer {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 250% 50%;
  }
}

/* Footer logo hover sync */
.footer-logo {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-logo:hover {
  transform: translateY(-3px) scale(1.03);
}

.footer-logo:hover .logo-img {
  animation: logoIconFloat 1.2s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 14px rgba(255, 184, 0, 0.85)) drop-shadow(0 0 24px rgba(255, 122, 0, 0.6));
}

.footer-logo:hover .logo-elon {
  animation: logoShimmer 1.5s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

.footer-logo:hover .logo-iptv {
  animation: logoShimmer 1.5s ease-in-out infinite;
  filter: drop-shadow(0 0 16px rgba(255, 184, 0, 0.95));
}

/* Nav links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: color .2s;
}

.nav-link:hover, .nav-link.active { color: var(--amber); }

/* Contact button */
.btn-contact {
  background: var(--amber);
  color: var(--black);
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 9px 20px;
  border-radius: 999px;
  transition: background .2s, transform .1s, box-shadow .2s;
  box-shadow: 0 4px 14px rgba(245,158,11,.3);
  flex-shrink: 0;
}

.btn-contact:hover { background: var(--amber-dark); transform: translateY(-1px); }

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #1e1e1e;
  border: 1px solid #333;
  border-radius: 999px;
  padding: 3px 5px;
  flex-shrink: 0;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 999px;
  color: #888;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: background .2s, color .2s;
}

.lang-btn:hover {
  background: #2a2a2a;
  color: #ddd;
}

.lang-btn.lang-active {
  background: var(--amber);
  color: #111;
}

.lang-flag { font-size: 14px; line-height: 1; }
.lang-label { font-size: 11px; font-weight: 800; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: all .3s;
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0d0d0e;
  padding-top: 76px;
  padding-bottom: 40px;
  overflow: hidden;
}

/* Banner image background with cinematic overlay */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 13, 14, 0.75) 0%, rgba(13, 13, 14, 0.82) 55%, rgba(18, 18, 18, 0.98) 100%),
    url('images/hero-bg.webp') center center / cover no-repeat;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 24px;
  max-width: 860px;
}

/* Pill Badge matching dark cinema theme */
.hero-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 6px 18px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.pill-dot {
  width: 7px;
  height: 7px;
  background: #ef4444;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.3);
}

.pill-text {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--amber);
  text-transform: uppercase;
}

/* Title matching screenshot style */
.hero-title {
  font-size: clamp(38px, 7.2vw, 76px);
  font-weight: 900;
  font-style: italic;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.7);
}

.hero-title .title-dark {
  color: #ffffff;
}

.hero-title .title-amber {
  color: var(--amber);
}

.hero-desc {
  font-size: 14.5px;
  color: #d1d5db;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-primary {
  background: var(--amber);
  color: var(--black);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 14px 32px;
  border-radius: 999px;
  transition: all .2s;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(245,158,11,.35);
}

.btn-primary:hover {
  background: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,158,11,.5);
}

.btn-dark {
  background: var(--charcoal);
  border: 1px solid var(--border-color);
  color: var(--text-white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 14px 32px;
  border-radius: 999px;
  transition: all .2s;
  text-transform: uppercase;
}

.btn-dark:hover {
  background: #242429;
  border-color: var(--amber);
  transform: translateY(-2px);
}

/* Rating row */
.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.avatar-stack {
  display: flex;
}

.avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid white;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; color: white;
  margin-left: -8px;
}

.avatar:first-child { margin-left: 0; }

.stars { color: var(--yellow); font-size: 16px; letter-spacing: 2px; }

.rating-text { font-size: 12px; color: #e5e7eb; font-weight: 600; text-shadow: 0 1px 4px rgba(0,0,0,0.6); }

/* ================================================================
   STATS
   ================================================================ */
.stats {
  background: var(--obsidian);
  padding: 0 24px 24px;
}

.stats-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-card {
  background: var(--charcoal);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: white;
  transition: transform .2s, border-color .2s;
}

.stat-card:hover {
  transform: translateY(-3px);
  border-color: var(--amber);
}

.stat-icon { font-size: 28px; color: var(--amber); flex-shrink: 0; }

.stat-num {
  font-size: 20px;
  font-weight: 900;
  color: var(--text-white);
  line-height: 1;
}

.stat-label { font-size: 11px; color: var(--text-muted); margin-top: 3px; font-weight: 600; }

/* ================================================================
   MOVIE CAROUSEL
   ================================================================ */
.carousel-section {
  overflow: hidden;
  padding: 10px 0;
  background: var(--obsidian);
  margin-bottom: 0;
}

.carousel-track {
  display: flex;
  gap: 12px;
  animation: scrollCarousel 32s linear infinite;
  width: max-content;
  padding: 24px 0;
}

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

.movie-card {
  position: relative;
  z-index: 1;
  width: 120px;
  height: 170px;
  border-radius: 12px;
  flex-shrink: 0;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease, box-shadow 0.35s ease;
  will-change: transform;
}

.movie-card:hover {
  z-index: 20;
  transform: scale(1.14) translateY(-6px);
  border-color: var(--amber);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.8), 0 0 22px rgba(245, 158, 11, 0.45);
}

.movie-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  transition: transform 0.35s ease;
}

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

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

/* ================================================================
   CHANNELS
   ================================================================ */
.channels { background: var(--obsidian); }

.channels .section-container {
  max-width: 1200px;
  padding: 36px 24px;
}

/* Channel logos wrap */
.channel-logos-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 20px auto 28px auto;
  max-width: 1050px;
  width: 100%;
}

.ch-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.ch-item {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .9;
  transition: opacity .25s ease, transform .25s ease;
  cursor: default;
}

.ch-item img {
  height: 56px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

.ch-item:hover {
  opacity: 1;
  transform: translateY(-3px);
}

.view-channels-link {
  display: block;
  text-align: center;
  color: var(--amber);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity .2s;
}

.view-channels-link:hover { opacity: .7; }

/* ================================================================
   3 STEPS (2-Column Layout with Right Device Mockup)
   ================================================================ */
.steps {
  background: var(--obsidian);
  padding: 24px 0 32px;
}

.steps-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.steps-content {
  display: flex;
  flex-direction: column;
}

.steps-header .section-title.text-left {
  text-align: left;
  margin-bottom: 8px;
}

.steps-header .section-sub.text-left {
  text-align: left;
  margin: 0 0 24px 0;
  max-width: 100%;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step-card.horizontal {
  background: var(--charcoal);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: static;
  text-align: left;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.step-card.horizontal:hover {
  transform: translateX(6px);
  border-color: var(--amber);
  box-shadow: 0 6px 24px rgba(245, 158, 11, 0.2);
}

.step-card.horizontal .step-badge {
  position: static;
  transform: none;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: #222226;
  border: 2px solid var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(245, 158, 11, 0.25);
}

.step-card.horizontal .step-text {
  flex: 1;
}

.step-num-pill {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--amber);
  background: rgba(245, 158, 11, 0.12);
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.step-card.horizontal h3 {
  font-size: 14.5px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.8px;
  color: var(--text-white);
  margin-bottom: 4px;
  margin-top: 0;
  text-transform: uppercase;
}

.step-card.horizontal p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 500;
  margin: 0;
}

/* Steps Visual Right Column */
.steps-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps-image-wrap {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps-image-wrap::before {
  content: '';
  position: absolute;
  width: 85%;
  height: 85%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.18) 0%, rgba(245, 158, 11, 0) 70%);
  filter: blur(40px);
  pointer-events: none;
}

.steps-img {
  width: 100%;
  max-width: 580px;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 14px 36px rgba(0, 0, 0, 0.7));
  transition: transform .3s ease;
}

.steps-img:hover {
  transform: scale(1.02);
}

@media (max-width: 900px) {
  .steps-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .steps-header .section-title.text-left,
  .steps-header .section-sub.text-left {
    text-align: center;
  }
  .steps-visual {
    order: 2;
  }
  .steps-img {
    max-width: 440px;
  }
}

/* ================================================================
   PRICING
   ================================================================ */
.pricing { background: var(--obsidian); padding: 10px 0 20px; }

.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.tab-btn {
  background: var(--charcoal);
  border: 1px solid var(--border-color);
  border-radius: 999px;
  padding: 10px 24px;
  font-size: 12px;
  font-weight: 800;
  font-family: var(--font);
  cursor: pointer;
  transition: all .2s;
  letter-spacing: .5px;
  color: var(--text-muted);
}

.tab-btn:hover { border-color: var(--amber); color: var(--amber); }

.tab-btn.active {
  background: var(--amber);
  color: #111;
  border-color: var(--amber);
  box-shadow: 0 4px 16px rgba(245,158,11,.3);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 20px;
}

.price-card {
  background: #111111;
  border-radius: 20px;
  padding: 38px 28px 24px;
  color: white;
  position: relative;
  text-align: center;
  border: 1px solid #222;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .25s ease, box-shadow .25s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.price-card.featured {
  background: #111111;
  border: 2px solid #f5a623;
  box-shadow: 0 10px 40px rgba(245, 166, 35, 0.15);
  transform: translateY(-4px);
}

.price-card.featured:hover {
  transform: translateY(-8px);
}

.featured-badge-top {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #f5a623;
  color: #000;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  padding: 4px 18px;
  border-radius: 999px;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(245,166,35,0.3);
}

.save-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #8e1b1b;
  color: white;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.card-top-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #1a1a1a;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plan-name {
  font-size: 18px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 1px;
  color: white;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.plan-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  margin-bottom: 22px;
  line-height: 1;
}

.price-dollar {
  font-size: 28px;
  font-weight: 900;
  color: #f5a623;
  margin-top: 4px;
}

.price-num {
  font-size: 58px;
  font-weight: 900;
  color: white;
  line-height: 0.9;
}

.price-unit {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 2px;
  text-align: left;
}

.price-cents {
  font-size: 18px;
  font-weight: 900;
  color: white;
  line-height: 1;
}

.price-period {
  font-size: 9px;
  font-weight: 800;
  color: #777;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

.plan-features {
  list-style: none;
  text-align: left;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.plan-features li {
  font-size: 12px;
  color: #ddd;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.chk-icon {
  color: #f5a623;
  font-size: 13px;
  font-weight: 900;
}

.btn-plan {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  border: 2px solid #f5a623;
  border-radius: 12px;
  background: transparent;
  color: white;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all .2s ease;
}

.btn-plan:hover {
  background: #f5a623;
  color: #000;
}

.btn-plan.featured-btn {
  background: #f5a623;
  color: #000;
  border: 2px solid #f5a623;
}

.btn-plan.featured-btn:hover {
  background: #e0961d;
}

.card-checkout-footer {
  margin-top: 18px;
  text-align: center;
}

.checkout-label {
  font-size: 8.5px;
  font-weight: 700;
  color: #666;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 8px;
}

.checkout-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.pay-chip {
  font-size: 9px;
  font-weight: 800;
  padding: 3px 6px;
  border-radius: 3px;
  background: #1c1c1c;
  color: #aaa;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  border: 1px solid #292929;
}

.pay-chip.amex {
  background: #007bc1;
  color: white;
  border-color: #007bc1;
}

.pay-chip.visa {
  background: #1a1f71;
  color: #f7b600;
  font-style: italic;
  font-weight: 900;
  border-color: #1a1f71;
}

.pay-chip.paypal {
  background: #003087;
  color: white;
  border-color: #003087;
}

.pay-chip.apple-pay {
  background: #000;
  color: white;
  border: 1px solid #333;
}

.pay-chip.mastercard {
  background: #000;
  border: 1px solid #333;
  display: flex;
  padding: 4px 6px;
}

.mc-c1 {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #eb001b;
  margin-right: -4px;
  z-index: 1;
}

.mc-c2 {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #f79e1b;
}

/* Money back */
.money-back {
  max-width: 560px;
  margin: 28px auto 0;
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: white;
}

.mb-icon { font-size: 32px; flex-shrink: 0; color: var(--yellow); }

.money-back strong {
  display: block;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--yellow);
  margin-bottom: 4px;
}

.money-back p { font-size: 12px; color: #aaa; line-height: 1.6; }

/* ================================================================
   FEATURES
   ================================================================ */
.features { background: var(--obsidian); padding: 10px 0 20px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.feature-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 36px 28px;
  color: white;
  text-align: center;
  transition: transform .2s;
}

.feature-card:hover { transform: translateY(-4px); }

.feature-icon { font-size: 32px; color: var(--yellow); margin-bottom: 16px; display: block; }

.feature-card h3 {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--yellow);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.feature-card p { font-size: 12px; color: #999; line-height: 1.7; }

/* Devices box */
.devices-box {
  background: #111111;
  border-radius: 20px;
  padding: 50px 36px 44px;
  text-align: center;
  border: 1px solid #222;
}

.devices-title {
  font-size: clamp(20px, 3.2vw, 28px);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  color: white;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.devices-box .section-sub {
  color: #777;
  font-size: 13px;
  margin-bottom: 34px;
}

.devices-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  align-items: stretch;
}

.device-card {
  background: #171717;
  border: 1px solid #262626;
  border-radius: 12px;
  padding: 22px 12px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 105px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  cursor: default;
}

.device-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 166, 35, 0.5);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.device-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 100%;
}

.device-name {
  font-size: 11.5px;
  color: #666;
  font-weight: 600;
  margin-top: 10px;
  letter-spacing: 0.2px;
  transition: color .2s;
}

.device-card:hover .device-name {
  color: #aaa;
}

/* Custom device logo typography */
.samsung-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.15;
}
.samsung-brand { font-size: 11px; font-weight: 500; color: white; letter-spacing: 0.5px; }
.samsung-smart { font-size: 13px; font-weight: 900; color: white; letter-spacing: 1px; }

.lg-stack {
  display: flex;
  align-items: center;
  gap: 6px;
}
.webos-text { font-size: 13px; font-weight: 900; color: white; letter-spacing: 0.5px; }
.webos-text .sub-w { font-weight: 400; font-size: 13px; }

.roku-text {
  font-size: 20px;
  font-weight: 900;
  color: white;
  letter-spacing: 0.5px;
  font-family: Arial, sans-serif;
}

.chromecast-stack {
  display: flex;
  align-items: center;
  gap: 6px;
}
.chromecast-text { font-size: 12px; font-weight: 700; color: white; letter-spacing: 0.2px; }

.nvidia-stack {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nvidia-text { font-size: 13px; font-weight: 900; color: white; letter-spacing: 1px; }

.windows-stack {
  display: flex;
  align-items: center;
  gap: 6px;
}
.windows-text { font-size: 13px; font-weight: 700; color: white; letter-spacing: 0.2px; }

.vidaa-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
}
.hisense-text { font-size: 9px; color: #888; font-weight: 600; }
.hisense-text small { font-size: 7.5px; color: #666; }
.vidaa-brand { font-size: 15px; font-weight: 900; color: white; letter-spacing: 3px; }

.formuler-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.15;
}
.formuler-title { font-size: 12.5px; font-weight: 900; color: white; letter-spacing: 1.5px; }
.formuler-sub { font-size: 6.5px; color: #888; font-weight: 600; letter-spacing: 0.3px; }

.buzz-stack {
  display: flex;
  align-items: center;
  gap: 5px;
}
.buzz-text { font-size: 15px; font-weight: 900; color: white; letter-spacing: 0.5px; }

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials {
  background: var(--obsidian);
  padding: 10px 0 20px;
}

.testimonials .hero-tag {
  color: var(--amber);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 12px;
}

.testimonials .section-title {
  color: var(--text-white);
  margin-bottom: 12px;
}

.testimonials .section-title .accent {
  color: var(--amber);
}

.testimonials .section-sub {
  color: #9ca3af;
  margin-bottom: 28px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.review-card {
  background: var(--charcoal);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 24px 20px;
  color: white;
  transition: transform .2s, border-color .2s;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: var(--amber);
}

.review-stars {
  color: var(--amber);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-card p {
  font-size: 12.5px;
  color: #d1d5db;
  line-height: 1.7;
  margin-bottom: 16px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviewer-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: white;
  flex-shrink: 0;
}

.reviewer strong { font-size: 12px; color: var(--text-white); display: block; }
.reviewer small {
  font-size: 10px;
  color: var(--tech-blue);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.reviewer small::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 13px;
  height: 13px;
  background: var(--tech-blue);
  color: white;
  border-radius: 50%;
  font-size: 8.5px;
  font-weight: 900;
}

/* ================================================================
   FAQ
   ================================================================ */
.faq {
  background: var(--obsidian);
  padding: 10px 0 36px;
}

.faq-container {
  max-width: 1150px;
  margin: 0 auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
  margin-top: 24px;
}

.faq-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1.5px solid var(--amber);
  border-radius: 12px;
  overflow: hidden;
  background: #0d0d0e;
  transition: transform .2s ease, box-shadow .2s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.2);
}

.faq-item.open {
  border-color: var(--amber);
  box-shadow: 0 4px 18px rgba(245, 158, 11, 0.15);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 20px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-white);
  line-height: 1.4;
  transition: color .2s;
}

.faq-q:hover {
  color: var(--amber);
}

.faq-item.open .faq-q {
  color: var(--text-white);
}

.faq-icon {
  font-size: 20px;
  color: var(--amber);
  font-weight: 800;
  margin-left: 12px;
  flex-shrink: 0;
  line-height: 1;
}

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

.faq-item.open .faq-a {
  max-height: 280px;
}

.faq-a p {
  font-size: 13px;
  color: #d1d5db;
  line-height: 1.7;
  padding: 0 20px 18px;
  border-top: 1px solid rgba(245, 158, 11, 0.15);
  padding-top: 12px;
}

@media (max-width: 860px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: #000000;
  color: #ffffff;
  border-top: 1px solid #1a1a1a;
}

.custom-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding: 48px 24px 36px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.footer-logo .logo-img {
  height: 38px;
  width: auto;
  max-width: 140px;
}

.footer-logo .logo-text {
  font-size: 22px;
}

.footer-brand-desc {
  font-size: 13px;
  color: #9ca3af;
  line-height: 1.7;
  max-width: 280px;
}

.footer-heading {
  color: #f5a623;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2px;
  margin-bottom: 20px;
  text-transform: capitalize;
  border: none;
  padding: 0;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 400;
  transition: color .2s;
  display: inline-block;
}

.footer-links a:hover {
  color: #f5a623;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14.5px;
  color: #ffffff;
}

.footer-contact-list a {
  text-decoration: none;
}

.footer-email {
  color: #818cf8;
  font-weight: 500;
  transition: color .2s;
}

.footer-email:hover {
  color: #a5b4fc;
  text-decoration: underline;
}

.footer-phone {
  color: #ffffff;
  transition: color .2s;
}

.footer-phone:hover {
  color: #f5a623;
}

.footer-bottom {
  border-top: 1px solid #141414;
  padding: 24px 24px 28px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: #666;
}

@media (max-width: 768px) {
  .custom-footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 20px 32px;
  }
}

/* ================================================================
   BLOG DEDICATED PAGE
   ================================================================ */
.blog-standalone-page {
  background: #0d0d0d;
  color: #fff;
}

.blog-page-header {
  padding-top: 90px;
  padding-bottom: 20px;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, #1e1b12 0%, #0d0d0d 70%);
  border-bottom: 1px solid #222;
}

.blog-main-title {
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.blog-main-sub {
  color: #888;
  font-size: 14px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Category Filter Tabs */
.blog-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.blog-tab-btn {
  background: #181818;
  border: 1px solid #333;
  color: #aaa;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .2s;
}

.blog-tab-btn:hover {
  background: #252525;
  color: #fff;
  border-color: #555;
}

.blog-tab-btn.active {
  background: var(--yellow);
  color: #111;
  border-color: var(--yellow);
  box-shadow: 0 4px 16px rgba(245,166,35,.35);
}

.blog-main-section {
  padding: 40px 0 80px;
}

/* Featured Article Card */
.blog-featured-card {
  background: #161616;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #282828;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  margin-bottom: 45px;
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
  transition: transform .25s, border-color .25s;
}

.blog-featured-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,166,35,.4);
}

.featured-img-wrap {
  min-height: 260px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 20px;
}

.featured-badge {
  background: rgba(0,0,0,.7);
  border: 1px solid rgba(245,166,35,.6);
  color: var(--yellow);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 999px;
  z-index: 1;
}

.featured-body {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.featured-title {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 900;
  line-height: 1.35;
  color: #fff;
}

.featured-desc {
  font-size: 13.5px;
  color: #888;
  line-height: 1.7;
}

.featured-footer {
  margin-top: 10px;
}

.featured-footer .btn-primary {
  padding: 10px 22px;
  font-size: 12px;
  display: inline-block;
}

/* Standard Article Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: #161616;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #262626;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0,0,0,.5);
  border-color: rgba(245,166,35,.4);
}

/* Coloured gradient image placeholders */
.blog-card-img {
  height: 175px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 14px 16px;
}

.featured-img-wrap.blog-img-1,
.blog-card-img.blog-img-1 {
  background-image: url('images/firestick-setup.webp') !important;
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  position: relative;
  overflow: hidden;
}

.featured-img-wrap.blog-img-1::after,
.blog-card-img.blog-img-1::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(18,18,18,0.65) 100%);
  pointer-events: none;
}

.blog-img-2 { background: linear-gradient(135deg, #1a1a1a 0%, #2d1b00 50%, #5c3600 100%); }
.blog-img-3 { background: linear-gradient(135deg, #0d1b0d 0%, #1a3a1a 50%, #0a4a0a 100%); }
.blog-img-4 { background: linear-gradient(135deg, #2b102b 0%, #3e1b42 50%, #68206d 100%); }
.blog-img-5 { background: linear-gradient(135deg, #0e2730 0%, #113845 50%, #1b566b 100%); }
.blog-img-6 { background: linear-gradient(135deg, #2e1e05 0%, #472e08 50%, #704707 100%); }

/* Decorative abstract shape inside card image */
.blog-img-2::before { content:''; position:absolute; top:18px; right:20px; width:60px; height:60px; border-radius:8px; background:rgba(245,166,35,.12); border:2px solid rgba(245,166,35,.2); transform:rotate(15deg); }
.blog-img-3::before { content:''; position:absolute; top:18px; right:24px; width:0; height:0; border-left:32px solid transparent; border-right:32px solid transparent; border-bottom:54px solid rgba(245,166,35,.15); }
.blog-img-4::before { content:''; position:absolute; top:18px; right:20px; width:50px; height:50px; border-radius:50%; background:rgba(245,166,35,.15); border:2px dashed rgba(245,166,35,.3); }
.blog-img-5::before { content:''; position:absolute; top:18px; right:20px; width:55px; height:35px; border-radius:6px; background:rgba(245,166,35,.15); border:2px solid rgba(245,166,35,.25); }
.blog-img-6::before { content:''; position:absolute; top:18px; right:20px; width:60px; height:60px; border-radius:50%; background:rgba(245,166,35,.18); }

.blog-cat {
  background: var(--yellow);
  color: #111;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.blog-card-body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-meta {
  display: flex;
  gap: 14px;
  font-size: 11px;
  color: #666;
  font-weight: 600;
}

.blog-card-title {
  font-size: 15px;
  font-weight: 800;
  color: #eee;
  line-height: 1.4;
  letter-spacing: 0.2px;
}

.blog-card-desc {
  font-size: 12.5px;
  color: #777;
  line-height: 1.7;
  flex: 1;
}

.blog-read-more {
  display: inline-block;
  color: var(--yellow);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1px;
  text-decoration: none;
  margin-top: 4px;
  transition: letter-spacing .2s, color .2s;
}

.blog-read-more:hover {
  letter-spacing: 2px;
  color: #fff;
}

/* Blog Support CTA Box */
.blog-help-cta {
  background: #161616;
  border: 1px solid #282828;
  border-radius: 14px;
  padding: 28px 32px;
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.blog-help-icon {
  font-size: 34px;
  width: 58px;
  height: 58px;
  border-radius: 12px;
  background: #202020;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.blog-help-content {
  flex: 1;
}

.blog-help-content h3 {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.blog-help-content p {
  font-size: 13px;
  color: #888;
  line-height: 1.5;
}

.blog-help-cta .btn-primary {
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .blog-featured-card { grid-template-columns: 1fr; }
  .featured-img-wrap { min-height: 190px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-help-cta { flex-direction: column; text-align: center; }
}

@media (max-width: 580px) {
  .blog-grid { grid-template-columns: 1fr; }
  .featured-body { padding: 22px 20px; }
}

/* ================================================================
   FLOATING LANGUAGE SWITCHER (above WhatsApp button)
   ================================================================ */
.lang-float {
  position: fixed;
  bottom: 90px; /* sits just above the 52px WhatsApp btn + 24px gap */
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
}

.lang-float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 52px;
  height: 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  background: #1e1e1eed;
  color: #bbb;
  box-shadow: 0 2px 10px rgba(0,0,0,.35);
  backdrop-filter: blur(6px);
  transition: background .2s, color .2s, transform .15s;
}

.lang-float-btn:hover {
  background: #2e2e2e;
  color: #fff;
  transform: scale(1.07);
}

.lang-float-btn.lang-float-active {
  background: var(--yellow);
  color: #111;
  box-shadow: 0 3px 14px rgba(245,166,35,.5);
}

/* ================================================================
   WHATSAPP FLOAT
   ================================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 9999;
  background: #25d366;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  animation: pulse-wa 2.5s infinite;
}

.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,.5); animation: none; }

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,.75); }
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .stats-container  { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid     { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .price-card.featured { transform: scale(1); }
  .price-card.featured:hover { transform: translateY(-6px); }
  .reviews-grid     { grid-template-columns: repeat(2, 1fr); }
  .devices-grid     { grid-template-columns: repeat(4, 1fr); }
  .footer-container { grid-template-columns: 1fr 1fr; }
  .footer-col:first-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 56px; left: 0; right: 0; background: var(--black); padding: 20px; gap: 16px; border-bottom: 1px solid #222; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .btn-contact { display: none; }
  .hero-title { font-size: 36px; }
  .steps-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .devices-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-container { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-container { grid-template-columns: 1fr 1fr; }
  .hero-desc br { display: none; }
}

/* ================================================================
   TUTORIALS PAGE (2-COLUMN LIGHT DESIGN)
   ================================================================ */
.tutorials-light-page {
  background: #f8f9fa;
  color: #333333;
}

.tut-header {
  padding-top: 56px; /* Space for the fixed navbar */
  text-align: center;
}

.tut-header .section-container {
  padding-top: 24px;
  padding-bottom: 8px;
}

.tut-main-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  font-style: italic;
  color: #000000;
  letter-spacing: 0.5px;
  margin-top: 0;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.tut-main-title .accent-orange {
  color: #f5a623;
}

.tut-main-sub {
  color: #666666;
  font-size: 14px;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 0;
}

.tut-main-section .section-container {
  padding-top: 10px;
  padding-bottom: 60px;
}

.tut-layout {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 32px;
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
}

/* Sidebar */
.tut-sidebar {
  display: flex;
  flex-direction: column;
}

.sidebar-label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: #888888;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.device-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dev-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 13px 16px;
  cursor: pointer;
  text-align: left;
  transition: all .2s ease;
  width: 100%;
}

.dev-btn-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  border-radius: 8px;
  background: #f3f4f6;
  flex-shrink: 0;
  transition: all .2s ease;
}

.dev-btn-text {
  font-size: 12px;
  font-weight: 800;
  color: #1f2937;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-family: var(--font);
}

.dev-btn:hover {
  border-color: #f5a623;
  background: #fffdfa;
}

.dev-btn.active {
  background: #fffaf0;
  border: 1.5px solid #f5a623;
  box-shadow: 0 4px 14px rgba(245, 166, 35, 0.18);
}

.dev-btn.active .dev-btn-icon {
  background: #f5a623;
  color: #000000;
}

.dev-btn.active .dev-btn-text {
  color: #000000;
  font-weight: 900;
}

/* Right Guide Card */
.tut-card-container {
  min-width: 0;
}

.tut-guide-card {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  padding: 38px 42px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  display: none;
}

.tut-guide-card.active {
  display: block;
  animation: fadeInTut .25s ease;
}

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

.guide-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.guide-header-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #f5a623;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(245, 166, 35, 0.3);
}

.guide-title {
  font-size: 19px;
  font-weight: 900;
  font-style: italic;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.guide-tag {
  font-size: 10.5px;
  font-weight: 800;
  color: #d97706;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}

.guide-divider {
  height: 1px;
  background: #f0f0f0;
  margin-bottom: 24px;
}

.clean-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.clean-steps li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 13.5px;
  color: #4b5563;
  line-height: 1.6;
  font-weight: 500;
}

.clean-num {
  font-weight: 800;
  color: #d97706;
  font-size: 13.5px;
  display: inline-flex;
  align-items: center;
  border-right: 1.5px solid #e5e7eb;
  padding-right: 14px;
  margin-right: 4px;
  min-width: 24px;
  height: 24px;
  box-sizing: border-box;
}

.clean-steps code {
  background: #f3f4f6;
  color: #b45309;
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 12.5px;
  font-family: monospace;
  border: 1px solid #e5e7eb;
  word-break: break-all;
}

/* Help alert box */
.tut-help-box {
  background: #eef1f6;
  border-radius: 12px;
  padding: 18px 22px;
  margin-top: 32px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.help-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.help-body h4 {
  font-size: 13.5px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 4px;
}

.help-body p {
  font-size: 12.5px;
  color: #64748b;
  margin-bottom: 6px;
  line-height: 1.5;
}

.help-link {
  font-size: 12.5px;
  font-weight: 800;
  color: #d97706;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color .2s;
}

.help-link:hover {
  color: #b45309;
  text-decoration: underline;
}

@media (max-width: 900px) {
  .tut-layout { grid-template-columns: 1fr; }
  .tut-guide-card { padding: 28px 22px; }
}

/* ================================================================
   LEGAL / POLICY PAGES (Refund Policy, Privacy Policy, Terms)
   ================================================================ */
.policy-page {
  background: #0d0d0d;
  color: #e5e7eb;
}

.policy-header {
  padding-top: 90px;
  padding-bottom: 0;
  text-align: center;
  background: #000000;
}

.policy-header .section-container {
  padding: 0 24px;
}

.policy-title {
  color: #ff7a00;
  font-size: clamp(36px, 5.8vw, 54px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0 0 28px;
}

.policy-main {
  padding: 0 0 80px;
  background: #000000;
}

.policy-main .section-container {
  padding: 0 24px;
}

.policy-card {
  max-width: 860px;
  margin: 0 auto;
  background: #141414;
  border: 1px solid #242424;
  border-radius: 16px;
  padding: 42px 48px;
  box-shadow: 0 10px 32px rgba(0,0,0,.45);
}

.policy-lead {
  font-size: 15px;
  line-height: 1.8;
  color: #d1d5db;
}

.policy-divider {
  height: 1px;
  background: #242424;
  margin: 28px 0;
}

.policy-section {
  margin-bottom: 32px;
}

.policy-section h2 {
  font-size: 18px;
  font-weight: 800;
  color: var(--yellow);
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

.policy-section p {
  font-size: 14px;
  line-height: 1.8;
  color: #9ca3af;
  margin-bottom: 10px;
}

.policy-list {
  list-style: none;
  margin: 14px 0 14px 4px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.policy-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: #d1d5db;
  line-height: 1.6;
}

.policy-list li::before {
  content: '•';
  color: var(--yellow);
  font-size: 20px;
  position: absolute;
  left: 4px;
  top: -2px;
}

.policy-highlight {
  background: #1c1c1c;
  border-left: 3px solid var(--yellow);
  padding: 14px 18px;
  border-radius: 0 8px 8px 0;
  margin: 14px 0;
  font-size: 14px;
}

.policy-email {
  color: #818cf8;
  text-decoration: none;
  font-weight: 600;
}

.policy-email:hover {
  text-decoration: underline;
  color: #a5b4fc;
}

.policy-contact-box {
  background: #181818;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 20px 24px;
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.policy-contact-box p {
  margin-bottom: 0;
}

.policy-wa {
  color: #25d366;
  text-decoration: none;
  font-weight: 600;
}

.policy-wa:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .policy-card { padding: 28px 20px; }

  /* Navbar mobile */
  .navbar {
    height: 62px;
  }
  .nav-container {
    padding: 0 16px;
    gap: 12px;
    justify-content: space-between;
  }
  .logo {
    gap: 8px;
  }
  .logo-img {
    height: 38px;
    max-width: 140px;
  }
  .logo-text {
    font-size: 22px;
    letter-spacing: -0.5px;
  }
  .logo-iptv {
    margin-left: 5px;
  }
  .btn-contact {
    display: none;
  }
  .hamburger {
    display: flex;
    z-index: 1001;
  }
  .nav-links {
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    background: #111111;
    border-bottom: 2px solid var(--amber);
    flex-direction: column;
    padding: 24px 20px 30px;
    gap: 16px;
    text-align: center;
    transform: translateY(-160%);
    transition: transform .3s ease-in-out;
    box-shadow: 0 12px 30px rgba(0,0,0,0.85);
    z-index: 999;
  }
  .nav-links.open {
    transform: translateY(0);
  }
  .nav-link {
    font-size: 14px;
    padding: 8px 0;
    display: block;
  }

  /* Hero section mobile */
  .hero {
    padding-top: 74px;
    padding-bottom: 30px;
    min-height: auto;
  }
  .hero-content {
    padding: 24px 16px;
    max-width: 100%;
  }
  .hero-tag-pill {
    padding: 5px 14px;
    margin-bottom: 18px;
    max-width: 100%;
  }
  .pill-text {
    font-size: 10.5px;
    letter-spacing: 0.8px;
  }
  .hero-title {
    font-size: clamp(28px, 8vw, 42px);
    line-height: 1.1;
    margin-bottom: 18px;
    letter-spacing: -0.8px;
  }
  .hero-desc {
    font-size: 13px;
    line-height: 1.65;
    margin-bottom: 24px;
    padding: 0 6px;
  }
  .hero-btns {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto 24px;
    gap: 12px;
  }
  .btn-primary, .btn-dark {
    width: 100%;
    padding: 13px 20px;
    font-size: 12.5px;
    text-align: center;
    justify-content: center;
    display: flex;
  }
  .hero-rating {
    gap: 10px;
  }
  .avatar {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }
  .stars {
    font-size: 14px;
  }
  .rating-text {
    font-size: 11.5px;
  }

  /* Stats mobile */
  .stats {
    padding: 0 16px 40px;
  }
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .stat-card {
    padding: 14px 12px;
    gap: 10px;
  }
  .stat-icon {
    font-size: 22px;
  }
  .stat-num {
    font-size: 17px;
  }
  .stat-label {
    font-size: 10.5px;
  }

  /* Pricing mobile */
  .pricing {
    padding: 44px 0;
  }
  .pricing-tabs {
    gap: 6px;
    margin-bottom: 26px;
  }
  .tab-btn {
    padding: 8px 16px;
    font-size: 11.5px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 440px;
    margin: 0 auto;
    padding: 0 16px;
  }
  .price-card {
    padding: 32px 20px 20px;
  }

  /* Steps mobile */
  .steps {
    padding: 32px 0 36px;
  }
  .steps-wrapper {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 16px;
  }
  .step-card.horizontal {
    padding: 16px 18px;
  }
  .step-card.horizontal .step-badge {
    width: 40px;
    height: 40px;
  }
  .steps-img {
    max-width: 100%;
  }

  /* Features mobile */
  .features {
    padding: 44px 0;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 0 16px;
  }
  .devices-box {
    padding: 34px 16px 28px;
    margin: 0 16px;
  }
  .devices-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .device-card {
    padding: 14px 6px 10px;
    min-height: 85px;
  }

  /* Testimonials mobile */
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 0 16px;
  }

  /* FAQ mobile */
  .faq {
    padding: 44px 16px 60px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .faq-q {
    padding: 14px 16px;
    font-size: 13.5px;
  }
  .faq-a p {
    padding: 0 16px 14px;
    font-size: 12.5px;
  }

  /* Footer mobile */
  .custom-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 20px 24px;
  }

  /* Floating language and WhatsApp */
  .lang-float {
    bottom: 80px;
    right: 18px;
  }
  .lang-float-btn {
    width: 46px;
    height: 30px;
    font-size: 10px;
  }
}

/* Small mobile (<= 480px, e.g. iPhone SE 375px) */
@media (max-width: 480px) {
  .navbar {
    height: 56px;
  }
  .nav-container {
    padding: 0 12px;
  }
  .logo {
    gap: 6px;
  }
  .logo-img {
    height: 32px;
    max-width: 100px;
  }
  .logo-text {
    font-size: 18px;
    letter-spacing: -0.5px;
  }
  .logo-iptv {
    margin-left: 3px;
  }
  .nav-links {
    top: 56px;
  }
  .hero {
    padding-top: 64px;
    padding-bottom: 20px;
  }
  .hero-content {
    padding: 16px 12px;
  }
  .hero-tag-pill {
    padding: 4px 12px;
    margin-bottom: 14px;
  }
  .pill-text {
    font-size: 9px;
    letter-spacing: 0.5px;
  }
  .hero-title {
    font-size: clamp(24px, 7vw, 32px);
    margin-bottom: 14px;
  }
  .hero-desc {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 18px;
  }
  .hero-btns {
    max-width: 280px;
    gap: 8px;
    margin-bottom: 18px;
  }
  .btn-primary, .btn-dark {
    padding: 12px 16px;
    font-size: 12px;
  }
  .stat-card {
    padding: 10px 8px;
  }
  .stat-num {
    font-size: 15px;
  }
  .stat-label {
    font-size: 9.5px;
  }
  .pricing-tabs {
    gap: 4px;
  }
  .tab-btn {
    padding: 6px 10px;
    font-size: 10.5px;
  }
  .devices-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .lang-float {
    bottom: 74px;
    right: 14px;
  }
  .lang-float-btn {
    width: 42px;
    height: 27px;
    font-size: 9.5px;
  }
}

