/* ==========================================================================
   DODO IPTV — PREMIUM DARK TEAL DESIGN SYSTEM
   Font: Outfit · Palette F: Teal (#14b8a6 / #0d9488 / #0a1818)
   Dark, Premium, Cinematic
   ========================================================================== */

/* --- CSS Variables --- */
:root {
  --bg-dark: #0a1818;
  --bg-darker: #061212;
  --bg-card: rgba(20, 184, 166, 0.06);
  --bg-card-solid: #0e2222;
  --bg-light: #f0fdfa;
  --primary: #14b8a6;
  --primary-hover: #0d9488;
  --primary-dark: #0f766e;
  --primary-glow: rgba(20, 184, 166, 0.25);
  --secondary: #5eead4;
  --text-white: #f0fdfa;
  --text-light: rgba(240, 253, 250, 0.65);
  --text-dark: #134e4a;
  --border-subtle: rgba(20, 184, 166, 0.12);
  --border-card: rgba(20, 184, 166, 0.08);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px rgba(20, 184, 166, 0.15);
  --shadow-glow-strong: 0 0 60px rgba(20, 184, 166, 0.3);
  --transition: 0.3s ease;
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --container-width: 1200px;
  --font-family: 'Outfit', system-ui, -apple-system, sans-serif;
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  font-family: var(--font-family);
  font-size: 16px;
  scroll-behavior: smooth;
  color: var(--text-white);
  background: var(--bg-dark);
}
body {
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--bg-dark);
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* --- Container --- */
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 1.5rem; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--text-white);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); letter-spacing: -0.03em; font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); text-align: center; margin-bottom: 1.25rem; letter-spacing: -0.02em; }
h3 { font-size: 1.25rem; }
p { color: var(--text-light); margin-bottom: 1rem; font-size: 1.05rem; line-height: 1.75; }
.section-subtitle {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
  font-size: 1.1rem;
  color: var(--text-light);
}
.text-center { text-align: center; }
.highlight { color: var(--primary); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(20, 184, 166, 0.12);
  border: 1px solid rgba(20, 184, 166, 0.25);
  color: var(--secondary);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 1.2rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
}
.eyebrow svg { width: 14px; height: 14px; fill: var(--primary); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.95rem 2.4rem;
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--font-family);
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: #fff;
  box-shadow: 0 6px 28px rgba(20, 184, 166, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-hover), var(--primary-dark));
  transform: translateY(-3px);
  box-shadow: 0 12px 45px rgba(20, 184, 166, 0.5);
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: skewX(-25deg);
  animation: btn-shine 5s infinite;
}
@keyframes btn-shine {
  0% { left: -100%; }
  20% { left: 200%; }
  100% { left: 200%; }
}
.btn-secondary {
  background: transparent;
  color: var(--text-white);
  border: 2px solid rgba(20, 184, 166, 0.4);
}
.btn-secondary:hover {
  border-color: var(--primary);
  background: rgba(20, 184, 166, 0.1);
  transform: translateY(-3px);
}
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-3px);
  box-shadow: 0 12px 45px rgba(37, 211, 102, 0.45);
}
.btn-white {
  background: #fff;
  color: var(--bg-dark);
  font-weight: 800;
  box-shadow: 0 8px 32px rgba(255,255,255,0.1);
}
.btn-white:hover {
  background: #f0fdfa;
  transform: translateY(-3px);
  box-shadow: 0 12px 45px rgba(255,255,255,0.2);
}
.btn svg { width: 20px; height: 20px; }

/* --- Cards --- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: var(--transition-smooth);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.card:hover {
  border-color: rgba(20, 184, 166, 0.25);
  box-shadow: var(--shadow-glow);
  transform: translateY(-5px);
}
.card .highlight-title,
.card .usp-title { font-size: 1.25rem; font-weight: 700; line-height: 1.15; color: var(--text-white); margin-bottom: 1rem; }

/* --- Sections --- */
section { padding: 5.5rem 0; position: relative; }
.bg-darker { background: var(--bg-darker); }
.bg-gradient {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

/* ==========================================================================
   HEADER
   ========================================================================== */
header {
  position: fixed;
  top: 0; width: 100%;
  z-index: 1000;
  background: rgba(10, 24, 24, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.35rem; color: var(--text-white); }
.logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { width: 22px; height: 22px; fill: #fff; }
.logo span { color: var(--primary); }
nav ul { display: flex; list-style: none; gap: 2rem; }
nav a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
}
nav a:hover { color: var(--primary); }
nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}
nav a:hover::after { width: 100%; }
.nav-cta { margin-left: 1rem; }
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mobile-menu-btn svg { width: 28px; height: 28px; stroke: var(--text-white); fill: none; stroke-width: 2; }

/* Nav Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { cursor: pointer; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 24, 24, 0.95);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1rem;
  min-width: 200px;
  display: none;
  box-shadow: var(--shadow-lg);
  z-index: 100;
}
.nav-dropdown-menu.dropdown-open { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}
.nav-dropdown-menu a:hover { background: rgba(20, 184, 166, 0.1); }

/* Header top accent bar */
header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
}

/* ==========================================================================
   LEGAL PAGES (Privacy, Terms, Refund, Cookies)
   ========================================================================== */
.legal-page { padding-top: 120px; padding-bottom: 4rem; }
.legal-page .container { max-width: 860px; }
.legal-page h1 { text-align: center; margin-bottom: 0.5rem; }
.legal-page h2 { text-align: left; font-size: 1.35rem; margin-top: 2.5rem; margin-bottom: 0.75rem; }
.legal-page h3 { font-size: 1.1rem; margin-top: 1.5rem; }
.legal-page ul, .legal-page ol { margin: 1rem 0 1.5rem 1.5rem; color: var(--text-light); }
.legal-page li { margin-bottom: 0.5rem; font-size: 0.95rem; line-height: 1.7; }
.last-updated {
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-light);
  opacity: 0.7;
  margin-bottom: 2.5rem;
}

/* ==========================================================================
   ERROR PAGE (404)
   ========================================================================== */
.error-page {
  display: flex; align-items: center; justify-content: center; text-align: center;
  min-height: calc(100vh - 72px); padding-top: 72px;
}
.error-number {
  font-size: clamp(6rem, 18vw, 14rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; color: transparent;
  margin-bottom: 1rem;
}
.error-page h1 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 1rem; }
.error-page p { max-width: 500px; margin: 0 auto 2rem; }

/* ==========================================================================
   BLOG ARTICLE PAGES
   ========================================================================== */
.blog-article { padding-top: 120px; padding-bottom: 4rem; }
.blog-article h1 { text-align: left; margin-bottom: 0.5rem; font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
.blog-article h2 { text-align: left; font-size: 1.5rem; margin-top: 2.5rem; margin-bottom: 0.75rem; }
.blog-article h3 { font-size: 1.15rem; margin-top: 1.75rem; color: var(--secondary); }
.blog-article ul, .blog-article ol { margin: 1rem 0 1.5rem 1.5rem; color: var(--text-light); }
.blog-article li { margin-bottom: 0.5rem; font-size: 1rem; line-height: 1.7; }
.blog-article strong { color: var(--text-white); }
.blog-card-meta {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  font-size: 0.85rem; color: var(--text-light); opacity: 0.7;
}
.breadcrumb {
  font-size: 0.85rem; color: var(--text-light); margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--primary); transition: var(--transition); }
.breadcrumb a:hover { opacity: 0.8; }
.breadcrumb span { margin: 0 0.25rem; opacity: 0.5; }

/* ==========================================================================
   INSTALLATION PAGE
   ========================================================================== */
.install-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.install-card {
  background: rgba(20, 184, 166, 0.04);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: var(--transition-smooth);
}
.install-card:hover {
  border-color: rgba(20, 184, 166, 0.2);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}
.install-card h3 {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 1.15rem; margin-bottom: 1rem; color: var(--primary);
}
.install-card h3 svg { width: 24px; height: 24px; fill: var(--primary); flex-shrink: 0; }
.install-card p { font-size: 0.9rem; margin-bottom: 1.25rem; }
.install-card ol { margin: 0; padding-left: 1.25rem; }
.install-card li { font-size: 0.88rem; margin-bottom: 0.5rem; color: var(--text-light); line-height: 1.6; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 0 4rem;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  background: var(--bg-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('media/mrhero.webp') center / cover no-repeat;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,24,24,0.92) 0%, rgba(6,18,18,0.96) 100%);
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; max-width: 880px; }
.hero h1 { margin-bottom: 1.25rem; }
.hero p { font-size: 1.2rem; color: rgba(240, 253, 250, 0.78); max-width: 680px; margin: 0 auto 2rem; }
.hero-cta { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }

/* --- Stats Row --- */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(20, 184, 166, 0.15);
}
.stat-item { text-align: center; }
.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 0.35rem;
  display: block;
}

/* ==========================================================================
   CHANNEL LOGOS MARQUEE (Below Hero)
   ========================================================================== */
.hero-channels {
  padding: 2rem 0;
  background: var(--bg-darker);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}
.hero-channels .section-label {
  text-align: center;
  margin-bottom: 1.5rem;
}
.hero-channels .section-label h3,
.hero-channels .section-label .marquee-label {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 0;
}

/* ==========================================================================
   MARQUEE SYSTEM (Shared Base)
   ========================================================================== */
.marquee-track-wrapper { position: relative; overflow: hidden; }
.marquee-track-wrapper::before,
.marquee-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-track-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-dark) 0%, transparent 100%);
}
.marquee-track-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-dark) 0%, transparent 100%);
}
/* Darker section fade */
.bg-darker .marquee-track-wrapper::before { background: linear-gradient(to right, var(--bg-darker) 0%, transparent 100%); }
.bg-darker .marquee-track-wrapper::after  { background: linear-gradient(to left, var(--bg-darker) 0%, transparent 100%); }
.hero-channels .marquee-track-wrapper::before { background: linear-gradient(to right, var(--bg-darker) 0%, transparent 100%); }
.hero-channels .marquee-track-wrapper::after  { background: linear-gradient(to left, var(--bg-darker) 0%, transparent 100%); }

.marquee-track {
  display: flex;
  width: max-content;
  gap: 2rem;
}
.marquee-track:hover { animation-play-state: paused !important; }

/* Channel logos marquee */
@keyframes marquee-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marquee-right {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
.marquee-channels .marquee-track { animation: marquee-left 30s linear infinite; }
.marquee-channels .marquee-track img {
  height: 48px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  filter: grayscale(40%) brightness(1.2);
  opacity: 0.8;
  transition: all 0.3s ease;
  border-radius: 8px;
  padding: 6px 14px;
  background: rgba(20, 184, 166, 0.06);
  border: 1px solid rgba(20, 184, 166, 0.08);
}
.marquee-channels .marquee-track img:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
  transform: scale(1.08);
  border-color: rgba(20, 184, 166, 0.3);
  box-shadow: 0 4px 20px rgba(20, 184, 166, 0.15);
}

/* ==========================================================================
   INTRO / TRUST SECTION (Section 3)
   ========================================================================== */
.intro-section { background: var(--bg-dark); }
.trust-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-white);
  background: rgba(20, 184, 166, 0.08);
  border: 1px solid rgba(20, 184, 166, 0.15);
  padding: 0.65rem 1.3rem;
  border-radius: 50px;
  transition: var(--transition);
}
.trust-pill:hover {
  background: rgba(20, 184, 166, 0.15);
  border-color: rgba(20, 184, 166, 0.3);
}
.trust-pill svg { width: 18px; height: 18px; fill: var(--primary); flex-shrink: 0; }

/* ==========================================================================
   REGION CARDS (Section 3b)
   ========================================================================== */
.region-section { background: var(--bg-darker); }
.region-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.region-card {
  background: rgba(20, 184, 166, 0.04);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  transition: var(--transition-smooth);
}
.region-card:hover {
  border-color: rgba(20, 184, 166, 0.25);
  box-shadow: var(--shadow-glow);
  transform: translateY(-5px);
}
.region-flag { width: 64px; height: 48px; border-radius: 8px; margin: 0 auto 1.25rem; object-fit: cover; }

/* ==========================================================================
   DUAL MARQUEE — MOVIES & SERIES (Section 4)
   ========================================================================== */
.marquee-section { overflow: hidden; position: relative; padding: 4rem 0; }
.marquee-section .section-label { text-align: center; margin-bottom: 2.5rem; }
.marquee-row { margin-bottom: 1.5rem; }
.marquee-row:last-child { margin-bottom: 0; }
.marquee-movies .marquee-track { gap: 1.25rem; }
.marquee-movies .marquee-track-row1 { animation: marquee-left 45s linear infinite; }
.marquee-movies .marquee-track-row2 { animation: marquee-right 50s linear infinite; }
.marquee-movies .marquee-track img {
  height: 220px;
  width: auto;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.marquee-movies .marquee-track img:hover {
  transform: scale(1.06) translateY(-6px);
  box-shadow: 0 12px 48px rgba(0,0,0,0.4), 0 0 30px rgba(20, 184, 166, 0.15);
}

/* ==========================================================================
   HOW IT WORKS (Section 5)
   ========================================================================== */
.steps { position: relative; padding: 5rem 0; text-align: center; overflow: hidden; }
.steps-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 30%;
  z-index: 0;
}
.steps-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,24,24,0.92) 0%, rgba(6,18,18,0.95) 100%);
  z-index: 1;
}
.steps .container { position: relative; z-index: 2; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; margin-top: 2rem; }
.step-card {
  background: rgba(20, 184, 166, 0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(20, 184, 166, 0.1);
  border-radius: var(--radius-xl);
  padding: 2.5rem 1.75rem;
  text-align: center;
  transition: var(--transition-smooth);
}
.step-card:hover {
  transform: translateY(-8px);
  border-color: rgba(20, 184, 166, 0.3);
  box-shadow: 0 12px 40px rgba(20, 184, 166, 0.12);
}
.step-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.step-icon {
  width: 60px; height: 60px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(20, 184, 166, 0.3);
}
.step-icon svg { width: 28px; height: 28px; stroke: #fff; fill: none; stroke-width: 2; }
.step-card h3,
.step-card .step-title { color: var(--text-white); font-size: 1.15rem; font-weight: 700; line-height: 1.15; margin-bottom: 0.5rem; }
.step-card p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 0; }

/* ==========================================================================
   PRICING (Section 6 & 7)
   ========================================================================== */
.pricing { background: var(--bg-dark); }
.pricing-header { text-align: center; margin-bottom: 1.5rem; }

/* Timer */
.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.timer-block {
  background: rgba(20, 184, 166, 0.08);
  border: 1px solid rgba(20, 184, 166, 0.15);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.25rem;
  text-align: center;
  min-width: 70px;
}
.timer-block span {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.timer-block small {
  font-size: 0.72rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Trust mini badges */
.pricing-trust {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.pricing-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
}
.pricing-trust-badge svg { width: 16px; height: 16px; fill: var(--primary); }

/* Pricing tabs */
.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.pricing-tab {
  padding: 0.65rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  background: rgba(20, 184, 166, 0.06);
  border: 1px solid rgba(20, 184, 166, 0.12);
  color: var(--text-light);
  font-family: var(--font-family);
}
.pricing-tab.active, .pricing-tab:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Pricing grid */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pricing-grid-4 { grid-template-columns: repeat(4, 1fr); }
.pricing-card {
  background: rgba(20, 184, 166, 0.04);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
}
.pricing-card:hover {
  border-color: rgba(20, 184, 166, 0.2);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}
.pricing-card.featured {
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.12), rgba(20, 184, 166, 0.04));
  border: 2px solid var(--primary);
  transform: scale(1.03);
  box-shadow: var(--shadow-glow-strong);
}
.pricing-card.featured:hover {
  transform: scale(1.06);
  box-shadow: 0 0 80px rgba(20, 184, 166, 0.35);
}
.pricing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 0.3rem 1.2rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(20, 184, 166, 0.3);
}
.pricing-card h3,
.pricing-card .pricing-plan-name { font-size: 1.35rem; font-weight: 700; line-height: 1.15; color: var(--text-white); margin-bottom: 0.5rem; }
.pricing-duration { font-size: 0.88rem; color: var(--text-light); margin-bottom: 1rem; }
.pricing-price {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.pricing-price .currency { font-size: 1.4rem; vertical-align: super; }
.pricing-old-price {
  font-size: 1rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-bottom: 0.5rem;
}
.pricing-per-month {
  font-size: 0.88rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* Checklist inside pricing */
ul.check-list { list-style: none; margin: 1.25rem 0; }
ul.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.85rem;
  text-align: left;
  line-height: 1.5;
}
ul.check-list li svg {
  width: 16px; height: 16px;
  fill: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing-card .btn { width: 100%; margin-top: 0.75rem; }

/* ==========================================================================
   FEATURES GRID (Section 8)
   ========================================================================== */
.features { background: var(--bg-darker); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: rgba(20, 184, 166, 0.04);
  border: 1px solid var(--border-card);
  border-top: 3px solid var(--primary);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  transform: translateY(-8px);
  border-top-color: var(--secondary);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3), 0 0 25px rgba(20, 184, 166, 0.12);
  background: rgba(20, 184, 166, 0.07);
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 100%;
  background: radial-gradient(circle at top right, rgba(20, 184, 166, 0.1), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px; min-width: 56px;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.15), rgba(94, 234, 212, 0.1));
  border-radius: var(--radius-md);
  padding: 12px;
  margin-bottom: 1.25rem;
  box-shadow: inset 0 0 0 1px rgba(20, 184, 166, 0.3);
  transition: transform 0.3s ease;
}
.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.25), rgba(94, 234, 212, 0.15));
}
.feature-icon svg {
  width: 28px; height: 28px;
  fill: var(--primary);
  filter: drop-shadow(0 0 6px rgba(20, 184, 166, 0.4));
}
.feature-card h3,
.feature-card .feature-title { font-size: 1.1rem; font-weight: 700; line-height: 1.15; color: var(--text-white); margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.88rem; margin-bottom: 0; color: var(--text-light); }

/* Feature image cards inside grid */
.feature-image-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}
.feature-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

/* ==========================================================================
   DOWNLOAD ROW (Section 9)
   ========================================================================== */
.download-section { background: var(--bg-dark); }
.download-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.download-card {
  background: rgba(20, 184, 166, 0.04);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 2rem 1.25rem;
  text-align: center;
  transition: var(--transition-smooth);
  cursor: pointer;
}
.download-card:hover {
  background: rgba(20, 184, 166, 0.08);
  border-color: rgba(20, 184, 166, 0.25);
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}
.download-card svg { width: 48px; height: 48px; fill: var(--primary); margin-bottom: 1rem; }
.download-card h3,
.download-card .download-name { font-size: 1rem; font-weight: 700; line-height: 1.15; color: var(--text-white); margin-bottom: 0.25rem; }
.download-card p { font-size: 0.82rem; margin-bottom: 0; }

/* ==========================================================================
   SPORT SHOWCASE (Section 10)
   ========================================================================== */
.sport-showcase { background: var(--bg-darker); }
.sport-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.sport-media { position: relative; }
.sport-media .sport-hero-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.sport-float {
  position: absolute;
  width: 140px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 3px solid var(--bg-darker);
}
.sport-float-1 { top: -20px; right: -20px; }
.sport-float-2 { bottom: -15px; left: -15px; }
.sport-list { list-style: none; }
.sport-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border-subtle);
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-white);
}
.sport-list li svg { width: 22px; height: 22px; fill: var(--primary); flex-shrink: 0; }

/* ==========================================================================
   DEVICES (Section 10b)
   ========================================================================== */
.devices { background: var(--bg-dark); }
.compat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}
.compat-card {
  background: rgba(20, 184, 166, 0.05);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 1rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-light);
  transition: var(--transition);
}
.compat-card:hover {
  background: rgba(20, 184, 166, 0.1);
  border-color: rgba(20, 184, 166, 0.25);
  transform: translateY(-3px);
  color: var(--text-white);
}
.compat-card svg { width: 32px; height: 32px; fill: var(--primary); margin-bottom: 0.5rem; display: block; margin-left: auto; margin-right: auto; }

/* Devices marquee */
.marquee-devices { padding: 2.5rem 0; }
.marquee-devices .marquee-track { animation: marquee-left 50s linear infinite; gap: 1.5rem; }
.marquee-devices .marquee-track img {
  height: 110px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  transition: all 0.35s ease;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
}
.marquee-devices .marquee-track img:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 8px 28px rgba(20, 184, 166, 0.2));
}

/* ==========================================================================
   COMPATIBLE APPS (Section 11)
   ========================================================================== */
.apps-section { background: var(--bg-darker); }
.apps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.app-card {
  background: rgba(20, 184, 166, 0.04);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  text-align: center;
  transition: var(--transition-smooth);
}
.app-card:nth-child(1) { animation-delay: 0s; }
.app-card:nth-child(2) { animation-delay: 0.1s; }
.app-card:nth-child(3) { animation-delay: 0.2s; }
.app-card:nth-child(4) { animation-delay: 0.3s; }
.app-card:nth-child(5) { animation-delay: 0.4s; }
.app-card:nth-child(6) { animation-delay: 0.5s; }
.app-card:nth-child(7) { animation-delay: 0.6s; }
.app-card:nth-child(8) { animation-delay: 0.7s; }
.app-card:hover {
  transform: translateY(-6px);
  border-color: rgba(20, 184, 166, 0.25);
  box-shadow: var(--shadow-glow);
}
.app-card img {
  width: 72px; height: 72px;
  object-fit: contain;
  margin: 0 auto 1rem;
  border-radius: var(--radius-md);
}
.app-card h3,
.app-card .app-name { font-size: 0.95rem; font-weight: 700; line-height: 1.15; color: var(--text-white); margin-bottom: 0.25rem; }
.app-card p { font-size: 0.8rem; margin-bottom: 0; }

/* ==========================================================================
   COMPARISON TABLE (Section 12)
   ========================================================================== */
.comparison-section { background: var(--bg-dark); }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(20, 184, 166, 0.03);
  border: 1px solid var(--border-card);
}
.comparison-table th,
.comparison-table td {
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
}
.comparison-table th {
  background: rgba(20, 184, 166, 0.08);
  font-weight: 700;
  color: var(--text-white);
  font-size: 0.95rem;
}
.comparison-table td { font-size: 0.9rem; color: var(--text-light); }
.comparison-table tr:hover { background: rgba(20, 184, 166, 0.04); }
.comparison-table .check { color: var(--primary); font-weight: 700; }
.comparison-table .cross { color: #ef4444; font-weight: 700; }
.comparison-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

/* ==========================================================================
   REVIEWS (Section 13)
   ========================================================================== */
.reviews { background: var(--bg-darker); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
/* Trustpilot-style aggregate card */
.review-aggregate {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.08), rgba(20, 184, 166, 0.03));
  border: 1px solid rgba(20, 184, 166, 0.15);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  margin-bottom: 1rem;
}
.review-aggregate .score { text-align: center; }
.review-aggregate .score-number { font-size: 3rem; font-weight: 800; color: var(--primary); }
.review-aggregate .score-label { font-size: 0.88rem; color: var(--text-light); }
.review-stars { display: flex; gap: 4px; justify-content: center; margin: 0.5rem 0; }
.review-stars svg { width: 22px; height: 22px; fill: #fbbf24; }
.review-sub-ratings { display: flex; gap: 2rem; }
.review-sub-rating { text-align: center; }
.review-sub-rating .sub-label { font-size: 0.78rem; color: var(--text-light); margin-bottom: 0.35rem; display: block; }
.review-sub-rating .sub-stars { display: flex; gap: 2px; justify-content: center; }
.review-sub-rating .sub-stars svg { width: 16px; height: 16px; fill: #fbbf24; }

/* Individual review cards */
.review-card {
  background: rgba(20, 184, 166, 0.04);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  transition: var(--transition-smooth);
}
.review-card:hover {
  border-color: rgba(20, 184, 166, 0.2);
  box-shadow: var(--shadow-glow);
  transform: translateY(-3px);
}
.review-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; }
.review-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(20, 184, 166, 0.2);
}
.review-card-header h4 { font-size: 1rem; margin-bottom: 0; }
.review-date { font-size: 0.78rem; color: var(--text-light); }
.review-headline { font-weight: 700; font-size: 1rem; margin-bottom: 0.5rem; color: var(--text-white); }
.review-card .review-stars { justify-content: flex-start; margin-bottom: 0.75rem; }
.review-card .review-stars svg { width: 16px; height: 16px; }
.review-card p { font-size: 0.88rem; margin-bottom: 0; }

/* ==========================================================================
   GUARANTEE ROW (Section 14)
   ========================================================================== */
.guarantee-row { background: var(--bg-dark); }
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.guarantee-item {
  padding: 2rem 1rem;
  background: rgba(20, 184, 166, 0.04);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  transition: var(--transition-smooth);
}
.guarantee-item:hover {
  border-color: rgba(20, 184, 166, 0.2);
  transform: translateY(-4px);
}
.guarantee-icon { font-size: 2.5rem; margin-bottom: 0.75rem; display: block; }
.guarantee-item h3,
.guarantee-item .guarantee-title { font-size: 1rem; font-weight: 700; line-height: 1.15; color: var(--text-white); margin-bottom: 0.4rem; }
.guarantee-item p { font-size: 0.85rem; margin-bottom: 0; }

/* ==========================================================================
   WHY CHOOSE US / USPs (Section 15)
   ========================================================================== */
.usps { background: var(--bg-darker); }
.usps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ==========================================================================
   FAQ ACCORDION (Section 16)
   ========================================================================== */
.faq { background: var(--bg-dark); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: rgba(20, 184, 166, 0.04);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  margin-bottom: 0.85rem;
  overflow: hidden;
  transition: var(--transition-smooth);
}
.faq-item:hover { border-color: rgba(20, 184, 166, 0.2); box-shadow: var(--shadow-sm); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-white);
  transition: var(--transition);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-family);
}
.faq-question:hover { color: var(--primary); }
.faq-question svg {
  width: 20px; height: 20px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2.5;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.active .faq-question svg { transform: rotate(45deg); }
.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.25rem;
}
.faq-answer p { font-size: 0.92rem; color: var(--text-light); }

/* WhatsApp CTA after FAQ */
.faq-whatsapp-cta {
  max-width: 800px;
  margin: 2.5rem auto 0;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: var(--radius-xl);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.2);
}
.faq-whatsapp-cta h3,
.faq-whatsapp-cta .cta-title { color: #fff; font-weight: 700; font-size: 1.25rem; line-height: 1.15; margin-bottom: 0.25rem; }
.faq-whatsapp-cta p { color: rgba(255,255,255,0.85); margin-bottom: 0; font-size: 0.9rem; }

/* ==========================================================================
   CALL TO ACTION (Section 17)
   ========================================================================== */
.cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  text-align: center;
  padding: 5rem 0;
}
.cta h2 { color: #fff; }
.cta p { color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto 2rem; }

/* ==========================================================================
   PAYMENT STRIP (Section 18)
   ========================================================================== */
.payment-strip {
  background: var(--bg-darker);
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.payment-strip img {
  max-height: 42px;
  width: auto;
  display: inline-block;
  opacity: 0.7;
  filter: grayscale(30%) brightness(1.5);
  transition: var(--transition);
}
.payment-strip img:hover { opacity: 1; filter: grayscale(0%); }

/* ==========================================================================
   BLOG PREVIEW (Section 19)
   ========================================================================== */
.blog-preview { background: var(--bg-dark); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.blog-card {
  background: rgba(20, 184, 166, 0.04);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition-smooth);
}
.blog-card:hover {
  border-color: rgba(20, 184, 166, 0.25);
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}
.blog-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.blog-card-content { padding: 1.5rem; }
.blog-card-tag {
  display: inline-block;
  background: rgba(20, 184, 166, 0.12);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.blog-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.blog-card h3 a { color: var(--text-white); transition: var(--transition); }
.blog-card h3 a:hover { color: var(--primary); }
.blog-card p { font-size: 0.88rem; margin-bottom: 1rem; }
.blog-card .read-more { color: var(--primary); font-weight: 600; font-size: 0.88rem; transition: var(--transition); }
.blog-card .read-more:hover { color: var(--secondary); }

/* ==========================================================================
   FOOTER (Section 20)
   ========================================================================== */
footer {
  background: var(--bg-darker);
  padding: 4rem 0 1.5rem;
  border-top: 1px solid var(--border-subtle);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
}
footer h4 { color: var(--primary); font-weight: 700; font-size: 1rem; margin-bottom: 1.25rem; }
footer p { color: var(--text-light); font-size: 0.9rem; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 0.6rem; }
footer ul a { color: var(--text-light); font-size: 0.9rem; transition: var(--transition); }
footer ul a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.5rem;
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { color: var(--text-light); font-size: 0.82rem; opacity: 0.6; }

/* ==========================================================================
   FLOATING WHATSAPP WIDGET
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 28px; right: 28px;
  background: #25D366;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: transform 0.3s ease;
  animation: whatsapp-pulse 2s infinite;
}
.floating-whatsapp:hover { transform: scale(1.12); }
.floating-whatsapp svg { width: 30px; height: 30px; fill: #fff; }
@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 6px 40px rgba(37, 211, 102, 0.6); }
}

/* ==========================================================================
   INSTALLATION PAGE
   ========================================================================== */
.install-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.install-card {
  background: rgba(20, 184, 166, 0.04);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: var(--transition-smooth);
}
.install-card:hover { border-color: rgba(20, 184, 166, 0.2); transform: translateY(-3px); }
.install-card h3 { display: flex; align-items: center; gap: 10px; }
.install-card h3 svg { width: 28px; height: 28px; fill: var(--primary); }
.install-card ol { padding-left: 1.25rem; margin-top: 1rem; }
.install-card ol li { color: var(--text-light); margin-bottom: 0.5rem; font-size: 0.92rem; }

/* ==========================================================================
   BLOG PAGE
   ========================================================================== */
.blog-listing { background: var(--bg-dark); padding-top: 120px; }
.blog-listing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

/* Article styles */
article { padding: 5rem 0; }
article .container { max-width: 800px; }
article h2 { text-align: left; font-size: 1.6rem; }
article h3 { font-size: 1.25rem; }
article p { font-size: 1rem; line-height: 1.8; }
article ul, article ol { padding-left: 1.5rem; margin-bottom: 1.5rem; }
article li { color: var(--text-light); margin-bottom: 0.5rem; }
article table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; border-radius: var(--radius-md); overflow: hidden; }
article th, article td { padding: 0.75rem 1rem; text-align: left; border-bottom: 1px solid var(--border-subtle); font-size: 0.92rem; }
article th { background: rgba(20, 184, 166, 0.08); font-weight: 700; color: var(--text-white); }
article td { color: var(--text-light); }
.article-hero {
  padding: 140px 0 3rem;
  background: var(--bg-darker);
  text-align: center;
}
.article-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); max-width: 800px; margin: 0 auto; }
.article-meta { display: flex; justify-content: center; gap: 1.5rem; margin-top: 1rem; color: var(--text-light); font-size: 0.88rem; }
.article-toc {
  background: rgba(20, 184, 166, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}
.article-toc h3 { font-size: 1rem; margin-bottom: 0.75rem; color: var(--primary); }
.article-toc ul { list-style: none; padding: 0; }
.article-toc li { margin-bottom: 0.4rem; }
.article-toc a { color: var(--text-light); font-size: 0.9rem; transition: var(--transition); }
.article-toc a:hover { color: var(--primary); }
.key-takeaway {
  background: rgba(20, 184, 166, 0.08);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.key-takeaway strong { color: var(--primary); }
.key-takeaway p { margin-bottom: 0; }

/* ==========================================================================
   404 PAGE
   ========================================================================== */
.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 2rem;
}
.error-number {
  font-size: clamp(8rem, 20vw, 16rem);
  font-weight: 800;
  color: rgba(20, 184, 166, 0.15);
  line-height: 1;
}
.error-page h1 { font-size: 2rem; margin-bottom: 1rem; }
.error-page p { max-width: 500px; margin: 0 auto 2rem; }

/* ==========================================================================
   LEGAL PAGES
   ========================================================================== */
.legal-page { padding: 140px 0 5rem; }
.legal-page .container { max-width: 800px; }
.legal-page h1 { font-size: 2.2rem; margin-bottom: 0.5rem; }
.legal-page .last-updated { color: var(--text-light); font-size: 0.88rem; margin-bottom: 2.5rem; }
.legal-page h2 { text-align: left; font-size: 1.4rem; margin-top: 2.5rem; }
.legal-page p { font-size: 0.95rem; }
.legal-page ul { padding-left: 1.5rem; margin-bottom: 1.5rem; }
.legal-page li { color: var(--text-light); margin-bottom: 0.5rem; font-size: 0.92rem; }

/* ==========================================================================
   RESPONSIVE — MOBILE CLEAN
   ========================================================================== */

/* Tablet (≤1024px) */
@media(max-width: 1024px) {
  nav {
    position: absolute;
    top: 72px; left: 0; width: 100%;
    background: rgba(10, 24, 24, 0.98);
    backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 1.5rem;
    display: none;
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  }
  nav.active { display: flex; }
  nav ul { flex-direction: column; align-items: center; gap: 1.2rem; }
  .mobile-menu-btn { display: block; }
  .nav-cta { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .pricing-grid-4 { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .apps-grid { grid-template-columns: repeat(2, 1fr); }
  .region-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

/* Tablet (≤768px) */
@media(max-width: 768px) {
  section { padding: 3rem 0; }
  .container { padding: 0 1rem; }
  h2 { font-size: 1.45rem; }
  .section-subtitle { font-size: 0.9rem; margin-bottom: 2rem; }
  
  /* Hero */
  .hero { min-height: auto; padding: 100px 0 2rem; }
  .hero h1 { font-size: 1.75rem; }
  .hero p { font-size: 1rem; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; max-width: 320px; }
  .stats-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-item {
    background: rgba(20, 184, 166, 0.06);
    border: 1px solid rgba(20, 184, 166, 0.1);
    border-radius: var(--radius-md);
    padding: 0.85rem 0.5rem;
  }
  .stat-number { font-size: 1.5rem; }

  /* Steps */
  .steps-grid { grid-template-columns: 1fr; max-width: 400px; margin: 1rem auto 0; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-grid-4 { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: scale(1); }
  .pricing-card.featured:hover { transform: scale(1.02); }
  .countdown-timer { gap: 0.75rem; }
  .timer-block span { font-size: 1.4rem; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; }

  /* Download */
  .download-grid { grid-template-columns: 1fr 1fr; }

  /* Sport */
  .sport-grid { grid-template-columns: 1fr; gap: 2rem; }

  /* Devices */
  .compat-grid { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }

  /* Apps */
  .apps-grid { grid-template-columns: repeat(2, 1fr); }

  /* Comparison */
  .comparison-highlights { grid-template-columns: 1fr; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }
  .review-aggregate { flex-direction: column; gap: 1.5rem; padding: 1.75rem; }
  .review-sub-ratings { flex-direction: column; gap: 1rem; }

  /* Guarantee */
  .guarantee-grid { grid-template-columns: 1fr 1fr; }

  /* USPs */
  .usps-grid { grid-template-columns: 1fr 1fr; }

  /* FAQ */
  .faq-whatsapp-cta { flex-direction: column; text-align: center; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; }
  .blog-listing-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Marquees */
  .marquee-movies .marquee-track img { height: 150px; }
  .marquee-devices .marquee-track img { height: 70px; }
  .marquee-track-wrapper::before, .marquee-track-wrapper::after { width: 40px; }

  /* Install */
  .install-grid { grid-template-columns: 1fr; }
}

/* Phone (≤480px) */
@media(max-width: 480px) {
  .container { padding: 0 0.75rem; }
  section { padding: 2rem 0; }
  .hero { padding: 90px 0 1.5rem; }
  .hero h1 { font-size: 1.45rem; }
  .hero p { font-size: 0.88rem; }
  .stats-row { gap: 8px; }
  .stat-number { font-size: 1.3rem; }
  .stat-label { font-size: 0.72rem; }
  .btn { padding: 0.75rem 1.25rem; font-size: 0.88rem; }
  h2 { font-size: 1.25rem; }
  .guarantee-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .guarantee-item { padding: 1rem 0.5rem; }
  .guarantee-icon { font-size: 1.8rem; }
  .guarantee-item h3 { font-size: 0.85rem; }
  .guarantee-item p { font-size: 0.75rem; }
  .usps-grid { grid-template-columns: 1fr; }
  .download-grid { grid-template-columns: 1fr; }
  .compat-grid { grid-template-columns: repeat(3, 1fr); }
  .marquee-movies .marquee-track img { height: 110px; }
  .marquee-devices .marquee-track img { height: 55px; }
  .marquee-channels .marquee-track img { height: 32px; padding: 3px 8px; }
  .marquee-track-wrapper::before, .marquee-track-wrapper::after { width: 20px; }
  .floating-whatsapp { width: 48px; height: 48px; bottom: 16px; right: 16px; }
  .floating-whatsapp svg { width: 26px; height: 26px; }
  .footer-grid { grid-template-columns: 1fr; }
}
