/* ============================================================
   IPsubTV — Premium IPTV Design System
   Version: 1.0 | Theme: Deep Blue Premium Dark
   ============================================================ */

/* ---------- CSS CUSTOM PROPERTIES ---------- */
:root {
  /* Core Backgrounds — Bright Royal Blue (like ipsubtv.com) */
  --bg-dark: #0a0ed6;
  --bg-darker: #0808b8;
  --bg-card: rgba(8, 12, 180, 0.65);
  --bg-card-solid: #0c10c0;
  --bg-glass: rgba(10, 14, 200, 0.45);

  /* Primary Accent — Vibrant Orange/Amber */
  --primary: #f59e0b;
  --primary-hover: #d97706;
  --primary-glow: rgba(245, 158, 11, 0.35);

  /* Secondary Accent — Electric Purple (CTAs) */
  --secondary: #7c3aed;
  --secondary-hover: #6d28d9;
  --secondary-glow: rgba(124, 58, 237, 0.3);

  /* Success / WhatsApp */
  --success: #22c55e;
  --success-hover: #16a34a;

  /* Text */
  --text-white: #ffffff;
  --text-light: #c8cee6;
  --text-muted: #8890b8;
  --text-yellow: #fde047;

  /* Borders */
  --border-subtle: rgba(255, 255, 255, 0.12);
  --border-glow: rgba(245, 158, 11, 0.3);

  /* Gradients */
  --gradient-hero: linear-gradient(180deg, #0a0ed6 0%, #0808b8 100%);
  --gradient-blue: linear-gradient(180deg, #0a0ed6 0%, #0808b8 100%);
  --gradient-card: linear-gradient(145deg, rgba(12, 16, 200, 0.5) 0%, rgba(8, 10, 160, 0.7) 100%);
  --gradient-cta: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  --gradient-purple: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
  --gradient-featured: linear-gradient(145deg, rgba(245, 158, 11, 0.12) 0%, rgba(124, 58, 237, 0.08) 100%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 30px rgba(245, 158, 11, 0.15);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);

  /* Spacing */
  --section-padding: clamp(40px, 5vw, 70px);
  --container-max: 1280px;
  --gap-sm: 12px;
  --gap-md: 24px;
  --gap-lg: 32px;
  --gap-xl: 40px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 50px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Typography — Poppins like competitor */
  --font-primary: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-white);
  background: var(--bg-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover {
  color: var(--primary-hover);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

/* ---------- CONTAINER ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
}

/* ---------- SECTION BASE ---------- */
.section {
  padding: var(--section-padding) 0;
  position: relative;
}
.section--dark {
  background: var(--bg-darker);
}
.section--gradient {
  background: var(--gradient-blue);
}

/* ---------- TYPOGRAPHY ---------- */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 12px;
  padding: 6px 16px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: var(--radius-pill);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--text-white) 0%, var(--text-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-title span {
  background: linear-gradient(135deg, var(--primary) 0%, var(--text-yellow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-light);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: var(--gap-lg);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* Gold / Orange CTA — same gold as 'IPTV Subscription' title */
.btn-primary {
  background: linear-gradient(135deg, #f59e0b 0%, #eab308 50%, #fde047 100%);
  color: #0a0a0a;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 40px rgba(245, 158, 11, 0.45);
  color: #0a0a0a;
  filter: brightness(1.08);
}

/* Purple CTA — secondary actions */
.btn-secondary {
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.25);
}
.btn-secondary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 35px rgba(124, 58, 237, 0.4);
  color: #fff;
  filter: brightness(1.1);
}

/* Outline — subtle actions */
.btn-outline {
  background: transparent;
  color: var(--text-white);
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(245, 158, 11, 0.08);
  transform: translateY(-2px);
}

/* WhatsApp — clean white for contrast against blue BG */
.btn-whatsapp {
  background: rgba(255, 255, 255, 0.95);
  color: #0a0a0a;
  box-shadow: 0 4px 18px rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
}
.btn-whatsapp:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.25);
  color: #0a0a0a;
  background: #ffffff;
}
.btn-whatsapp svg {
  color: #25d366;
}

.btn-lg {
  padding: 18px 44px;
  font-size: 0.95rem;
  letter-spacing: 1.2px;
}

.btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ---------- HEADER / NAVIGATION ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: all var(--transition-smooth);
  background: transparent;
  transform: translateZ(0);
  will-change: transform, background-color;
}
.header.scrolled {
  background: rgba(8, 10, 180, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.header-logo img {
  height: 42px;
  width: auto;
}
.header-logo span {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.5px;
}
.header-logo .logo-accent {
  color: var(--primary);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-desktop a {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}
.nav-desktop a:hover {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.05);
}

.nav-cta {
  margin-left: 12px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--text-white);
  border-radius: 2px;
  transition: all var(--transition-smooth);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: rgba(8, 10, 180, 1);
  padding: 100px 32px 40px;
  transition: right var(--transition-smooth);
  z-index: 999;
  border-left: 1px solid var(--border-subtle);
}
.nav-mobile.open { right: 0; }
.nav-mobile a {
  display: block;
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
}
.nav-mobile a:hover {
  color: var(--primary);
  padding-left: 8px;
}
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 998;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}
.nav-overlay.active {
  opacity: 1;
}

/* ---------- HERO SECTION ---------- */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  background: #0a0ed6;
  padding-top: 100px;
  padding-bottom: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.5;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 14, 214, 0.3) 0%, rgba(10, 14, 214, 0.55) 50%, rgba(5, 5, 30, 0.95) 100%);
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
  padding: 40px 20px;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero-content h1 .highlight {
  background: linear-gradient(135deg, var(--primary) 0%, var(--text-yellow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content .hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 30px;
  padding: 6px 20px;
  margin-bottom: 20px;
}

.hero-trust {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 5vw, 60px);
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
}
.hero-stat .stat-number {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  background: linear-gradient(135deg, #f59e0b 0%, #fde047 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.hero-stat .stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-apps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.hero-apps img {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border-subtle);
  transition: all var(--transition-smooth);
}
.hero-apps img:hover {
  transform: scale(1.1);
  border-color: var(--primary);
}
.hero-apps .app-more {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 2px dashed var(--text-muted);
  color: var(--text-muted);
}

/* ---------- TRUST / INTRO SECTION ---------- */
.intro-section {
  background: var(--bg-darker);
  border-top: 1px solid var(--border-subtle);
  padding: var(--section-padding) 0;
}

.intro-carousel {
  margin-bottom: var(--gap-lg);
  overflow: hidden;
}

.intro-text {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.intro-text p {
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: var(--gap-md);
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 4vw, 40px);
  flex-wrap: wrap;
  margin-top: var(--gap-lg);
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(10px);
}
.trust-badge svg {
  width: 20px;
  height: 20px;
  color: var(--success);
  flex-shrink: 0;
}
.trust-badge span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-white);
}

/* ---------- MOVIES CAROUSEL SECTION ---------- */
.movies-slider-section {
  padding: var(--section-padding) 0;
  overflow: hidden;
}

.movies-slider-section .swiper-slide img {
  width: 100%;
  height: 438px;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform var(--transition-smooth);
}
.movies-slider-section .swiper-slide:hover img {
  transform: scale(1.05);
}

/* ---------- REGION CARDS (USA / CANADA) ---------- */
.region-section {
  padding: var(--section-padding) 0;
  background: var(--bg-darker);
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-md);
}

.region-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all var(--transition-smooth);
}
.region-card:hover {
  border-color: rgba(245, 158, 11, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.region-card .flag-emoji {
  margin-bottom: 16px;
}
.region-card .flag-emoji img {
  width: 64px;
  height: auto;
  border-radius: 8px;
}
.region-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-yellow);
}
.region-card p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.7;
}
.region-card .region-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.region-card .region-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px dashed rgba(148, 163, 184, 0.15);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text-white);
}
.region-card .region-feature svg {
  width: 18px;
  height: 18px;
  color: var(--success);
  flex-shrink: 0;
}

/* ---------- HOW IT WORKS (STEPS) ---------- */
.steps-section {
  padding: var(--section-padding) 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap-lg);
}

.step-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--gradient-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  position: relative;
  transition: all var(--transition-smooth);
}
.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.2);
  box-shadow: var(--shadow-glow);
}

.step-number {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-cta);
  color: #000;
  font-weight: 800;
  font-size: 0.85rem;
  border-radius: 50%;
}

.step-icon {
  width: 60px;
  height: 60px;
  margin: 12px auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.08);
  border-radius: var(--radius-md);
  color: var(--primary);
}
.step-icon svg {
  width: 28px;
  height: 28px;
}

.step-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.step-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ---------- PRICING SECTION ---------- */
.pricing-section {
  padding: var(--section-padding) 0;
  background: var(--bg-darker);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--gap-md);
  margin-bottom: var(--gap-xl);
}

.pricing-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  position: relative;
  backdrop-filter: blur(10px);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pricing-card.featured {
  background: var(--gradient-featured);
  border-color: var(--primary);
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.1);
  transform: scale(1.02);
}
.pricing-card.featured:hover {
  transform: scale(1.02) translateY(-4px);
}

.pricing-badges {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}
.badge-plan {
  background: rgba(124, 58, 237, 0.15);
  color: #a78bfa;
  border: 1px solid rgba(124, 58, 237, 0.2);
}
.badge-hot {
  background: rgba(245, 158, 11, 0.15);
  color: var(--primary);
  border: 1px solid rgba(245, 158, 11, 0.3);
}
.badge-bonus {
  background: rgba(34, 197, 94, 0.12);
  color: var(--success);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.pricing-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-white);
}

.pricing-price {
  margin-bottom: 4px;
}
.pricing-price .old-price {
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-right: 6px;
}
.pricing-price .current-price {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
}
.pricing-price .currency {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-yellow);
  vertical-align: super;
}

.pricing-monthly {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 6px;
}

.pricing-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.pricing-features {
  text-align: left;
  margin-bottom: 24px;
  flex-grow: 1;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-light);
  padding: 7px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.06);
}
.pricing-features li:last-child {
  border-bottom: none;
}
.pricing-features li svg {
  width: 16px;
  height: 16px;
  color: var(--success);
  flex-shrink: 0;
}

.pricing-cta {
  margin-bottom: 12px;
}
.pricing-cta .btn {
  width: 100%;
}

.pricing-subtext {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.pricing-payment {
  margin-bottom: 12px;
}
.pricing-payment img {
  height: 24px;
  margin: 0 auto;
  opacity: 0.6;
}

.pricing-urgency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.pricing-urgency .dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: dot-pulse 1.5s ease-in-out infinite;
}

@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

/* ---------- FEATURES SECTION ---------- */
.features-section {
  padding: var(--section-padding) 0;
  background: var(--bg-darker);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap-md);
}

.feature-card {
  padding: 28px 24px;
  background: var(--gradient-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: all var(--transition-smooth);
}
.feature-card:hover {
  border-color: rgba(245, 158, 11, 0.15);
  transform: translateY(-2px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.08);
  border-radius: var(--radius-md);
  color: var(--primary);
  margin-bottom: 16px;
}
.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

.feature-image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}
.feature-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}
.feature-image-card:hover img {
  transform: scale(1.03);
}

/* ---------- DOWNLOAD SECTION ---------- */
.download-section {
  padding: var(--section-padding) 0;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--gap-md);
}

.download-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all var(--transition-smooth);
}
.download-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.download-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
}
.download-icon svg {
  width: 28px;
  height: 28px;
  color: #fff;
}
.download-icon.green { background: linear-gradient(135deg, #22c55e, #16a34a); }
.download-icon.blue { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.download-icon.orange { background: linear-gradient(135deg, #f97316, #ea580c); }
.download-icon.yellow { background: linear-gradient(135deg, #eab308, #ca8a04); }

.download-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.download-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.6;
}

/* ---------- DEVICES SECTION ---------- */
.devices-section {
  padding: var(--section-padding) 0;
  background: var(--bg-darker);
}

.devices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--gap-md);
  margin-bottom: var(--gap-lg);
}

.device-card {
  padding: 28px 24px;
  background: var(--gradient-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: all var(--transition-smooth);
}
.device-card:hover {
  border-color: rgba(245, 158, 11, 0.15);
}

.device-card svg {
  width: 36px;
  height: 36px;
  color: var(--primary);
  margin-bottom: 16px;
}
.device-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.device-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

.expert-tip {
  background: rgba(245, 158, 11, 0.06);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.expert-tip svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.expert-tip p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
}
.expert-tip strong {
  color: var(--primary);
}

/* ---------- REVIEWS SECTION ---------- */
.reviews-section {
  padding: var(--section-padding) 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--gap-md);
  margin-bottom: var(--gap-lg);
}

.review-card {
  padding: 24px;
  background: var(--gradient-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: all var(--transition-smooth);
}
.review-card:hover {
  border-color: rgba(245, 158, 11, 0.15);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-subtle);
}
.review-name {
  font-weight: 700;
  font-size: 0.95rem;
}
.review-stars {
  display: flex;
  gap: 2px;
}
.review-stars svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  fill: var(--primary);
}
.review-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  font-style: italic;
}

/* ---------- USPs SECTION ---------- */
.usps-section {
  padding: var(--section-padding) 0;
  background: var(--bg-darker);
}

.usps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--gap-md);
}

.usp-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--gradient-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: all var(--transition-smooth);
}
.usp-card:hover {
  border-color: rgba(245, 158, 11, 0.15);
  transform: translateY(-4px);
}

.usp-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.08);
  border-radius: 50%;
  color: var(--primary);
}
.usp-icon svg {
  width: 26px;
  height: 26px;
}

.usp-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.usp-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ---------- FAQ SECTION ---------- */
.faq-section {
  padding: var(--section-padding) 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--gradient-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}
.faq-item.active {
  border-color: rgba(245, 158, 11, 0.2);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-white);
  text-align: left;
  cursor: pointer;
  transition: all var(--transition-fast);
  background: none;
  border: none;
}
.faq-question:hover {
  color: var(--primary);
}
.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform var(--transition-smooth);
}
.faq-item.active .faq-question svg {
  transform: rotate(45deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-smooth), padding var(--transition-smooth);
}
.faq-item.active .faq-answer {
  max-height: 300px;
}
.faq-answer-inner {
  padding: 0 24px 18px;
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ---------- CTA SECTION ---------- */
.cta-section {
  padding: var(--section-padding) 0;
  text-align: center;
  background: var(--bg-darker);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.cta-section p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

/* ---------- BLOG SECTION ---------- */
.blog-section {
  padding: var(--section-padding) 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--gap-md);
  margin-bottom: var(--gap-lg);
}

.blog-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all var(--transition-smooth);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-card-image {
  height: 180px;
  overflow: hidden;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}
.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 20px 24px;
}
.blog-card-category {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 8px;
}
.blog-card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-card-body h3 a {
  color: var(--text-white);
  transition: color var(--transition-fast);
}
.blog-card-body h3 a:hover {
  color: var(--primary);
}
.blog-card-excerpt {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
}

/* ---------- SOCIAL SECTION ---------- */
.social-section {
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid var(--border-subtle);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.social-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: all var(--transition-smooth);
}
.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.social-icon svg {
  width: 22px;
  height: 22px;
  color: #fff;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--gap-lg);
  margin-bottom: 40px;
}

.footer-brand img {
  height: 36px;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 320px;
}

.footer-heading {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-white);
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  color: var(--text-light);
  font-size: 0.88rem;
  padding: 5px 0;
  transition: all var(--transition-fast);
}
.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer-payment {
  display: flex;
  gap: 8px;
  align-items: center;
}
.footer-payment span {
  font-size: 0.75rem;
  color: var(--text-muted);
  padding: 4px 10px;
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
}

/* ---------- FLOATING WHATSAPP ---------- */
.whatsapp-float { transform: translateZ(0); will-change: transform;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 60px;
  height: 60px;
  background: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4);
  transition: all var(--transition-smooth);
  cursor: pointer;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(34, 197, 94, 0.5);
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
  color: #fff;
}
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: #333;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

/* ---------- SWIPER OVERRIDES ---------- */
.swiper {
  width: 100%;
}

/* ---------- PRICING TABS & PANELS ---------- */
.pricing-panel {
  display: none;
}
.pricing-panel.active {
  display: block;
}
.pricing-tab {
  padding: 10px 20px;
  font-size: 0.85rem;
  cursor: pointer;
}
.pricing-tab.active {
  pointer-events: none;
}

/* ---------- ANIMATIONS ---------- */
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  opacity: 0;
  animation: fade-in-up 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-mobile { display: block; }

  .hero-content h1 {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
  }

  .hero-stats {
    gap: 24px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .region-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .trust-badges {
    flex-direction: column;
    align-items: center;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero-buttons .btn {
    width: 100%;
  }
}

/* ========== TRUST STRIP (new) ========== */
.trust-strip {
  padding: 48px 0;
  background: rgba(0, 0, 0, 0.12);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-md);
}
.trust-strip-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--gradient-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: all var(--transition-smooth);
}
.trust-strip-item:hover {
  border-color: rgba(245, 158, 11, 0.25);
  transform: translateY(-2px);
}
.trust-strip-item svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.trust-strip-item strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}
.trust-strip-item span {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}
@media (max-width: 992px) {
  .trust-strip-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 580px) {
  .trust-strip-grid { grid-template-columns: 1fr; }
}

/* ========== PROMO SECTION (Sports / Movies) ========== */
.promo-section {
  background: var(--bg-darker);
}
.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg);
}
.promo-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all var(--transition-smooth);
}
.promo-card:hover {
  border-color: rgba(245, 158, 11, 0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.promo-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}
.promo-icon svg {
  width: 100%;
  height: 100%;
}
.promo-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-yellow);
  margin-bottom: 14px;
}
.promo-card p {
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 24px;
  font-size: 0.95rem;
}
@media (max-width: 768px) {
  .promo-grid { grid-template-columns: 1fr; }
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
  background: var(--bg-darker);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap-md);
}
.testimonial-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  backdrop-filter: blur(10px);
  transition: all var(--transition-smooth);
}
.testimonial-card:hover {
  border-color: rgba(245, 158, 11, 0.2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.testimonial-stars {
  color: #f59e0b;
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.testimonial-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
}
.testimonial-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 14px;
}
.testimonial-author {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  font-style: italic;
}

/* ========== SEO CONTENT SECTION ========== */
.seo-content-section {
  background: var(--bg-dark);
}
.seo-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg);
  margin-bottom: var(--gap-lg);
}
.seo-block {
  background: var(--gradient-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  backdrop-filter: blur(10px);
}
.seo-block h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-yellow);
  margin-bottom: 16px;
}
.seo-block p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 14px;
  font-size: 0.95rem;
}
.seo-block p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .seo-content-grid { grid-template-columns: 1fr; }
}

.seo-regions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-md);
  margin-bottom: var(--gap-lg);
}
.seo-region-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  transition: all var(--transition-smooth);
}
.seo-region-card:hover {
  border-color: rgba(245, 158, 11, 0.2);
  transform: translateY(-2px);
}
.seo-region-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}
.seo-region-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .seo-regions-grid { grid-template-columns: 1fr; }
}

.seo-explainer {
  background: var(--gradient-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  backdrop-filter: blur(10px);
}
.seo-explainer h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-yellow);
  margin-bottom: 20px;
  text-align: center;
}
.seo-explainer p {
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.seo-explainer p:last-of-type {
  margin-bottom: 0;
}

/* ========== BLOG PREVIEW ========== */
.blog-preview-section {
  background: var(--bg-darker);
}
.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--gap-md);
}
.blog-preview-card {
  display: block;
  background: var(--gradient-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-decoration: none;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}
.blog-preview-card:hover {
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.blog-preview-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  margin-bottom: 14px;
}
.blog-preview-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
  line-height: 1.3;
}
.blog-preview-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}
.blog-preview-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  transition: color var(--transition-fast);
}
.blog-preview-card:hover .blog-preview-link {
  color: var(--text-yellow);
}

/* ========== CHANNEL LOGOS TICKER ========== */
.channel-ticker {
  padding: 28px 0;
  background: transparent;
  overflow: hidden;
  position: relative;
  z-index: 1;
  width: 100%;
}
.channel-ticker-label {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
}
.channel-ticker-track {
  overflow: hidden;
  width: 100%;
}
.channel-ticker-inner {
  display: flex;
  gap: 20px;
  align-items: center;
  animation: ticker-scroll 25s linear infinite;
  width: max-content;
}
.channel-ticker-inner img {
  height: 72px;
  width: auto;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
  filter: brightness(1.3);
}
.channel-ticker-inner img:hover {
  opacity: 1;
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========== MOVIE CAROUSEL SLIDES ========== */
.swiper-movies .swiper-slide {
  width: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition-smooth);
}
.swiper-movies .swiper-slide:hover {
  transform: scale(1.06);
}
.swiper-movies .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

/* ========== DEVICE BADGES GRID ========== */
.device-badges-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}
.device-badges-grid img {
  height: 52px;
  width: auto;
  border-radius: var(--radius-sm);
  transition: all var(--transition-smooth);
  opacity: 0.85;
}
.device-badges-grid img:hover {
  opacity: 1;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
@media (max-width: 480px) {
  .device-badges-grid img {
    height: 42px;
  }
}

/* ========== WHATSAPP PROOF / SCREENSHOTS ========== */
.whatsapp-proof-section {
  padding: var(--section-padding) 0;
  background: var(--bg-darker);
}

.whatsapp-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-md);
  justify-items: center;
}

.whatsapp-proof-card {
  position: relative;
  cursor: pointer;
  width: 100%;
  max-width: 280px;
  transition: all var(--transition-smooth);
}
.whatsapp-proof-card:hover {
  transform: translateY(-8px) scale(1.03);
}
.whatsapp-proof-card:hover .whatsapp-proof-phone {
  box-shadow: 0 20px 60px rgba(37, 211, 102, 0.25), 0 0 0 2px rgba(37, 211, 102, 0.4);
}

.whatsapp-proof-phone {
  position: relative;
  background: #1a1a2e;
  border-radius: 28px;
  padding: 12px 8px 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: box-shadow var(--transition-smooth);
}

.whatsapp-proof-notch {
  width: 80px;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin: 0 auto 8px;
}

.whatsapp-proof-phone img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.whatsapp-proof-badge {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  white-space: nowrap;
}
.whatsapp-proof-badge svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Responsive: 2 columns on tablet, 1 on small mobile */
@media (max-width: 960px) {
  .whatsapp-proof-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap-lg);
  }
}
@media (max-width: 520px) {
  .whatsapp-proof-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }
  .whatsapp-proof-phone {
    border-radius: 22px;
    padding: 10px 6px 14px;
  }
}

/* ========== LIGHTBOX ========== */
.wa-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: zoom-out;
  animation: lightbox-in 0.3s ease;
}
.wa-lightbox.active {
  display: flex;
}

@keyframes lightbox-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.wa-lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 10000;
}
.wa-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.wa-lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: var(--radius-lg);
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.6);
  object-fit: contain;
  cursor: default;
  animation: lightbox-img-in 0.4s cubic-bezier(.4,0,.2,1);
}

@keyframes lightbox-img-in {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

/* ---------- BLOG PAGE ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--gap-md);
}

.blog-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 158, 11, 0.25);
  box-shadow: var(--shadow-glow), var(--shadow-lg);
}

.blog-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}
.blog-card:hover .blog-card-image img {
  transform: scale(1.08);
}

.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-category {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-pill);
  padding: 4px 14px;
  margin-bottom: 12px;
  width: fit-content;
}

.blog-card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 10px;
  color: var(--text-white);
}
.blog-card-body h3 a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}
.blog-card-body h3 a:hover {
  color: var(--primary);
}

.blog-card-excerpt {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  flex: 1;
}

/* ---------- INSTALLATION PAGE ---------- */
.install-hero {
  padding: 120px 0 60px;
  text-align: center;
  position: relative;
  background: var(--bg-darker);
}

.install-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.install-tab {
  padding: 12px 28px;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: var(--text-light);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.install-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.install-tab.active {
  background: linear-gradient(135deg, #f59e0b 0%, #eab308 50%, #fde047 100%);
  color: #0a0a0a;
  border-color: transparent;
  font-weight: 700;
}

.install-panel {
  display: none;
}
.install-panel.active {
  display: block;
  animation: fadeUp 0.4s ease-out;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.install-steps {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.install-step {
  background: var(--gradient-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all var(--transition-smooth);
}
.install-step:hover {
  border-color: rgba(245, 158, 11, 0.2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.install-step-num {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-cta);
  color: #0a0a0a;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 50%;
}

.install-step-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}
.install-step-body p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
}
.install-step-body code {
  display: inline-block;
  background: rgba(0, 0, 0, 0.3);
  color: var(--primary);
  padding: 2px 10px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-family: 'Courier New', monospace;
  margin: 4px 0;
}

.install-note {
  max-width: 800px;
  margin: 32px auto 0;
  padding: 20px 28px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-md);
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
}
.install-note strong {
  color: var(--primary);
}

@media (max-width: 600px) {
  .install-step {
    flex-direction: column;
    gap: 12px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
