/* ==========================================================================
   REALMIPTV LIVE — PREMIUM DESIGN SYSTEM v2.0
   Palette: Vibrant Crimson Red · Electric Ruby · Obsidian Night
   Typography: Plus Jakarta Sans · Mobile-First · Ultra-Optimized Core Web Vitals
   Domain: realmiptv.live
   ========================================================================== */

/* --- CSS Variables --- */
:root {
  --bg-dark: #0a0b0e;
  --bg-darker: #060709;
  --bg-card: #12141a;
  --bg-card-hover: #181b24;
  --bg-card-glass: rgba(18, 20, 26, 0.75);
  --bg-section-alt: #0e1017;
  --primary: #e50914;
  --primary-dark: #b80710;
  --primary-light: #ff4d60;
  --primary-glow: rgba(229, 9, 20, 0.3);
  --secondary: #ff334b;
  --secondary-dark: #cc1024;
  --secondary-glow: rgba(255, 51, 75, 0.25);
  --accent-cyan: #06b6d4;
  --accent-green: #22c55e;
  --accent-red: #ef4444;
  --gradient-primary: linear-gradient(135deg, #e50914 0%, #ff2a44 100%);
  --gradient-card: linear-gradient(145deg, rgba(24, 27, 36, 0.9) 0%, rgba(14, 16, 23, 0.8) 100%);
  --gradient-glow: linear-gradient(135deg, rgba(229, 9, 20, 0.15) 0%, rgba(255, 51, 75, 0.08) 100%);
  --text-white: #f8fafc;
  --text-light: #94a3b8;
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-card: rgba(229, 9, 20, 0.12);
  --border-glow: rgba(229, 9, 20, 0.45);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 16px 50px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 35px rgba(229, 9, 20, 0.22);
  --shadow-gold: 0 8px 30px rgba(229, 9, 20, 0.25);
  --transition: 0.3s ease;
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --container-width: 1200px;
  --font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* --- Base Reset & Typography --- */
*, *::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-color: var(--bg-dark);
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  overflow-x: hidden;
  max-width: 100vw;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--bg-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Accessible & SEO-crawlable text for icon links */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-white);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.4rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }

p {
  color: var(--text-light);
  font-size: 1rem;
}

strong {
  color: var(--text-white);
  font-weight: 600;
}

/* --- Layout Containers --- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 0;
  position: relative;
}

.bg-alt {
  background-color: var(--bg-section-alt);
}

.bg-darker {
  background-color: var(--bg-darker);
}

.text-center {
  text-align: center;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-top: 1rem;
}

.highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.825rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: rgba(229, 9, 20, 0.12);
  border: 1px solid rgba(229, 9, 20, 0.25);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.725rem;
  font-weight: 800;
  background: #ef4444;
  color: #fff;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.live-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffffff;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.7; }
}

/* --- Buttons & UI Elements --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.975rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(229, 9, 20, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(229, 9, 20, 0.5);
  color: #ffffff;
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20ba59;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  color: #ffffff;
}

.btn-whatsapp svg, .btn-primary svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.btn-outline {
  background: #ffffff;
  color: #0b0c10;
  font-weight: 700;
  border: 1px solid #ffffff;
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.15);
}

.btn-outline:hover {
  background: #f1f5f9;
  border-color: #ffffff;
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.25);
}

.pricing-card .btn {
  width: 100%;
}

/* --- Navigation Header --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 11, 14, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

header.scrolled {
  background: rgba(6, 7, 9, 0.95);
  border-bottom-color: rgba(229, 9, 20, 0.2);
  box-shadow: var(--shadow-md);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-white);
}

.logo-text span:first-child {
  color: var(--text-white);
}

.logo-text span:nth-child(2) {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.4rem 0;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--text-white);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 200px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.5rem 0;
  box-shadow: var(--shadow-lg);
  z-index: 100;
}

.nav-dropdown-menu.dropdown-open {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 1.25rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.nav-dropdown-menu a:hover {
  background: rgba(229, 9, 20, 0.08);
  color: var(--primary);
}

.nav-cta {
  background: var(--gradient-primary);
  color: #0b0c10 !important;
  font-weight: 700 !important;
  padding: 0.6rem 1.2rem !important;
  border-radius: var(--radius-sm);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(229, 9, 20, 0.4);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-white);
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center top;
  z-index: 1;
  opacity: 0.28;
  filter: saturate(1.2);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 20%, rgba(229, 9, 20, 0.08) 0%, transparent 60%),
              linear-gradient(to bottom, rgba(10, 11, 14, 0.6) 0%, #0a0b0e 100%);
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 960px;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 820px;
  margin: 0 auto 2rem;
  color: #cbd5e1;
}

.hero-guarantee-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero-guarantee-strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-guarantee-strip svg {
  width: 16px;
  height: 16px;
  fill: var(--primary);
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

/* Stats Row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  background: var(--bg-card-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 1.75rem 2rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  margin-bottom: 3rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.stat-number.red,
.stat-number.orange {
  color: var(--primary);
}

.stat-number.gold {
  color: var(--secondary);
}

.stat-number.green {
  color: var(--accent-green);
}

.stat-number.cyan {
  color: var(--accent-cyan);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- Pure-CSS Marquee Loops --- */
.marquee-section {
  padding: 3rem 0;
  overflow: hidden;
  position: relative;
}

.marquee-section::before,
.marquee-section::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.marquee-section::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-dark), transparent);
}

.marquee-section::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-dark), transparent);
}

.marquee-track-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 2rem;
  align-items: center;
}

.marquee-track img {
  flex-shrink: 0;
  border-radius: var(--radius-md);
  transition: transform var(--transition);
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-right {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.marquee-left {
  animation: marquee-left 45s linear infinite;
}

.marquee-right {
  animation: marquee-right 45s linear infinite;
}

.channel-marquee-hero {
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  margin-top: 1rem;
}

.channel-logo-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 60px;
}

.channel-logo-card img {
  max-height: 40px;
  width: auto;
  object-fit: contain;
  filter: brightness(0.95);
}

/* Movie & Series Posters */
.movie-poster-card {
  width: 150px;
  height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.movie-poster-card:hover {
  transform: translateY(-6px) scale(1.03);
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.movie-poster-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Section 3: Intro & Trust Pills --- */
.trust-pills-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin: 3rem 0;
}

.trust-pill {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
}

.trust-pill:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.trust-pill-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(229, 9, 20, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.trust-pill-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--primary);
}

.trust-pill h4 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.trust-pill p {
  font-size: 0.875rem;
}

/* --- Section 3b: Region Cards --- */
.region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.region-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.region-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.region-flag-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.region-flag-header img {
  width: 42px;
  height: 28px;
  border-radius: 4px;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.region-features-list {
  list-style: none;
  margin-top: 1.25rem;
}

.region-features-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0.6rem;
}

.region-features-list li svg {
  width: 16px;
  height: 16px;
  fill: var(--primary);
  flex-shrink: 0;
}

/* --- Section 5: How It Works --- */
.steps-section {
  position: relative;
  overflow: hidden;
}

.steps-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

.steps-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 11, 14, 0.95) 0%, rgba(14, 16, 23, 0.92) 100%);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
  margin-top: 3rem;
}

.step-card {
  background: var(--bg-card-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  position: relative;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
}

.step-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: var(--gradient-primary);
  color: #0b0c10;
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.step-card h3 {
  margin-bottom: 0.75rem;
}

/* --- Section 6 & 7: Pricing Section --- */
.pricing-section {
  position: relative;
}

.pricing-trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 1.5rem 0 2rem;
}

.pricing-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-white);
}

.pricing-trust-badge svg {
  width: 18px;
  height: 18px;
  fill: var(--primary);
}

/* Countdown Timer */
.countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1rem auto 3rem;
}

.countdown-item {
  background: var(--bg-card);
  border: 1px solid rgba(229, 9, 20, 0.25);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.25rem;
  min-width: 80px;
  text-align: center;
}

.countdown-item .number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.countdown-item .label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

/* Pricing Grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(229, 9, 20, 0.35);
}

.pricing-card.featured {
  background: linear-gradient(180deg, rgba(24, 27, 36, 0.95) 0%, rgba(18, 20, 26, 0.9) 100%);
  border: 2px solid var(--primary);
  box-shadow: 0 0 40px rgba(229, 9, 20, 0.25);
  transform: scale(1.03);
  z-index: 2;
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-6px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: #0b0c10;
  font-size: 0.775rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 1.25rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px rgba(229, 9, 20, 0.4);
  white-space: nowrap;
}

.pricing-badge.coral {
  background: linear-gradient(135deg, #ef4444 0%, #e50914 100%);
  color: #fff;
}

.plan-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.old-price {
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-white);
  margin: 0.3rem 0;
}

.price .currency {
  font-size: 1.6rem;
  font-weight: 600;
  vertical-align: top;
  margin-right: 2px;
  color: var(--primary);
}

.per-month {
  font-size: 0.9rem;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 1.75rem;
}

.check-list {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.925rem;
  color: var(--text-light);
  margin-bottom: 0.85rem;
  line-height: 1.4;
}

.check-list li svg {
  width: 18px;
  height: 18px;
  fill: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-payment-img {
  margin: 1.25rem auto 0;
  opacity: 0.75;
  filter: contrast(1.1);
}

/* --- Section 8: Features Grid --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-card.feature-wide {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--bg-card) 0%, #151822 100%);
}

.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-lg);
  background: rgba(229, 9, 20, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--primary);
}

.feature-icon.gold svg { fill: var(--secondary); }
.feature-icon.gold { background: rgba(255, 51, 75, 0.12); }
.feature-icon.green svg { fill: var(--accent-green); }
.feature-icon.green { background: rgba(34, 197, 94, 0.12); }
.feature-icon.cyan svg { fill: var(--accent-cyan); }
.feature-icon.cyan { background: rgba(6, 182, 212, 0.12); }

.feature-card h3 {
  margin-bottom: 0.75rem;
}

/* --- Section 9: Platform Download Cards --- */
.download-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.download-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}

.download-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.download-card svg {
  width: 44px;
  height: 44px;
  fill: var(--primary);
  margin: 0 auto 1.25rem;
}

.download-card h4 {
  margin-bottom: 0.4rem;
}

/* --- Section 10: Sport Showcase --- */
.sport-showcase-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-top: 2.5rem;
}

.sport-media-box {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-lg);
}

.sport-media-box img.main-sport-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.floating-badge {
  position: absolute;
  background: var(--bg-card-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(229, 9, 20, 0.35);
  border-radius: var(--radius-lg);
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-lg);
  z-index: 3;
}

.floating-badge.badge-top {
  top: 1.5rem;
  right: 1.5rem;
}

.floating-badge.badge-bottom {
  bottom: 1.5rem;
  left: 1.5rem;
}

.floating-badge svg {
  width: 24px;
  height: 24px;
  fill: var(--primary);
}

.sports-checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.75rem 0 2rem;
}

.sport-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--text-white);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
}

.sport-item svg {
  width: 18px;
  height: 18px;
  fill: var(--primary);
}

/* --- Section 10b: Devices Grid --- */
.devices-icon-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
  margin: 2.5rem 0;
}

.device-icon-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: var(--transition);
}

.device-icon-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.device-icon-card svg {
  width: 32px;
  height: 32px;
  fill: var(--primary);
  margin: 0 auto 0.75rem;
}

.device-icon-card span {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
}

/* --- Section 11: Compatible Apps Grid --- */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}

.app-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.app-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.app-logo-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.5rem;
}

.app-logo-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.app-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.app-card p {
  font-size: 0.85rem;
}

/* --- Section 12: Comparison Table --- */
.comparison-wrap {
  margin-top: 3rem;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.comparison-table th, .comparison-table td {
  padding: 1.25rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
}

.comparison-table th {
  background: rgba(24, 27, 36, 0.85);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
}

.comparison-table th.col-brand {
  background: rgba(229, 9, 20, 0.15);
  color: var(--primary);
  text-align: center;
  border-left: 1px solid rgba(229, 9, 20, 0.3);
  border-right: 1px solid rgba(229, 9, 20, 0.3);
}

.comparison-table td.col-brand {
  background: rgba(229, 9, 20, 0.05);
  text-align: center;
  font-weight: 600;
  color: var(--text-white);
  border-left: 1px solid rgba(229, 9, 20, 0.2);
  border-right: 1px solid rgba(229, 9, 20, 0.2);
}

.comparison-table td.col-other {
  text-align: center;
  color: var(--text-muted);
}

.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  color: var(--accent-green);
  font-weight: 800;
}

.cross-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.15);
  color: var(--accent-red);
  font-weight: 800;
}

/* --- Section 13: Reviews Section --- */
.reviews-aggregate-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  margin-bottom: 3rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2.5rem;
  align-items: center;
}

.aggregate-score {
  text-align: center;
  border-right: 1px solid var(--border-subtle);
  padding-right: 2rem;
}

.aggregate-score .big-num {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stars-rating {
  color: #f59e0b;
  font-size: 1.3rem;
  margin: 0.5rem 0;
  letter-spacing: 2px;
}

.aggregate-subratings {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.subrating-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.95rem;
}

.subrating-bar-wrap {
  flex-grow: 1;
  margin: 0 1.5rem;
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
}

.subrating-bar {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 4px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: var(--transition);
}

.review-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-user-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.avatar-initials {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #0b0c10;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.review-meta h4 {
  font-size: 1rem;
}

.review-meta span {
  font-size: 0.775rem;
  color: var(--text-muted);
}

.review-headline {
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
}

.review-body {
  font-size: 0.925rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* --- Section 14: Guarantee Row --- */
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.guarantee-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  text-align: center;
}

.guarantee-item svg {
  width: 44px;
  height: 44px;
  fill: var(--primary);
  margin: 0 auto 1rem;
}

.guarantee-item h4 {
  margin-bottom: 0.4rem;
}

/* --- Section 16: FAQ Accordion --- */
.faq-accordion {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: rgba(229, 9, 20, 0.4);
}

.faq-question {
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-white);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  width: 22px;
  height: 22px;
  fill: var(--primary);
  transition: transform var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 2rem 1.5rem;
  color: var(--text-light);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-whatsapp-widget {
  max-width: 860px;
  margin: 2.5rem auto 0;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.faq-whatsapp-text h4 {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
  color: #fff;
}

/* --- Section 17: CTA Section --- */
.cta-banner {
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.18) 0%, rgba(255, 42, 68, 0.08) 100%);
  border: 1px solid rgba(229, 9, 20, 0.3);
  border-radius: var(--radius-xl);
  padding: 4.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}

.cta-banner h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 1rem;
}

.cta-banner p {
  font-size: 1.15rem;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

/* --- Section 18: Payment Strip --- */
.payment-strip-wrap {
  text-align: center;
  padding: 3rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.payment-strip-wrap img {
  margin: 1.5rem auto 0;
  max-width: 480px;
  opacity: 0.85;
}

/* --- Section 19: Blog Grid --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.blog-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.blog-thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta-badge {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.blog-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.blog-card h3 a {
  color: var(--text-white);
}

.blog-card h3 a:hover {
  color: var(--primary);
}

.blog-card p {
  font-size: 0.925rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.read-more-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* --- Footer --- */
footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border-subtle);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.925rem;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  color: var(--text-white);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  color: var(--text-light);
  font-size: 0.925rem;
}

.footer-col ul li a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- Floating WhatsApp Button --- */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: #ffffff;
}

/* --- Animation helper classes --- */
.fade-up-element {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up-element.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* --- Article / Guide Content Styling --- */
.article-container {
  max-width: 840px;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
}

.article-header {
  text-align: center;
  margin-bottom: 3rem;
}

.article-header h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1.25rem;
}

.article-meta-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.article-featured-img {
  width: 100%;
  border-radius: var(--radius-xl);
  margin-bottom: 3rem;
  box-shadow: var(--shadow-md);
}

.article-body {
  font-size: 1.075rem;
  line-height: 1.85;
  color: #cbd5e1;
}

.article-body h2 {
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: var(--text-white);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.article-body h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--primary-light);
}

.article-body p {
  margin-bottom: 1.5rem;
  color: #cbd5e1;
}

.article-body ul, .article-body ol {
  margin: 1.25rem 0 1.75rem 1.5rem;
}

.article-body li {
  margin-bottom: 0.6rem;
}

.article-toc {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  margin: 2.5rem 0;
}

.article-toc h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: var(--primary);
}

.article-toc ul {
  list-style: none;
  margin: 0;
}

.article-toc li {
  margin-bottom: 0.5rem;
}

.article-toc a {
  color: var(--text-light);
}

.article-toc a:hover {
  color: var(--primary);
}

.key-takeaway-box {
  background: rgba(229, 9, 20, 0.08);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.25rem 1.75rem;
  margin: 2rem 0;
}

.key-takeaway-box strong {
  color: var(--primary);
  display: block;
  margin-bottom: 0.35rem;
}

/* --- Table & Data Formatting --- */
.table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 2rem 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
}

.table-wrap table,
.article-body table {
  width: 100%;
  min-width: 540px;
  border-collapse: collapse;
  text-align: left;
}

.table-wrap th, .table-wrap td,
.article-body th, .article-body td {
  padding: 0.85rem 1.15rem;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.925rem;
}

.table-wrap th, .article-body th {
  background: rgba(24, 27, 36, 0.95);
  color: var(--text-white);
  font-weight: 700;
}

.table-wrap tr:last-child td,
.article-body tr:last-child td {
  border-bottom: none;
}

/* --- Logo Emblem Styles --- */
.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-white);
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.logo-icon svg {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

/* --- Footer Social Links --- */
.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-light);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px var(--primary-glow);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.stat-number.red {
  color: var(--primary);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   1. Large Tablets & Small Laptops (max-width: 1024px)
   2. Small Tablets & Phablets (max-width: 768px)
   3. Mobile Phones (max-width: 480px)
   ========================================================================== */

/* --- 1. Tablet Landscape & Medium Desktops (<=1024px) --- */
@media (max-width: 1024px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card.feature-wide { grid-column: span 2; }
  .download-grid { grid-template-columns: repeat(2, 1fr); }
  .sport-showcase-wrap { grid-template-columns: 1fr; }
  .apps-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-aggregate-box { grid-template-columns: 1fr; }
  .aggregate-score { border-right: none; border-bottom: 1px solid var(--border-subtle); padding-right: 0; padding-bottom: 2rem; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .guarantee-grid { grid-template-columns: repeat(2, 1fr); }
  .devices-icon-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .region-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}

/* --- 2. Tablets & Large Phones (<=768px) --- */
@media (max-width: 768px) {
  /* Layout Spacing */
  section {
    padding: 3rem 0;
  }

  .container {
    padding: 0 1.25rem;
  }

  .section-header {
    margin-bottom: 2.25rem;
  }

  /* Navigation & Mobile Menu */
  .mobile-menu-btn {
    display: block;
  }

  nav {
    position: fixed;
    top: 78px;
    left: 0;
    width: 100%;
    height: calc(100vh - 78px);
    background: rgba(10, 11, 14, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 2rem 1.5rem;
    display: none;
    flex-direction: column;
    overflow-y: auto;
    z-index: 999;
  }

  nav.active {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    width: 100%;
  }

  .nav-links a {
    font-size: 1.05rem;
    padding: 0.5rem 0;
    width: 100%;
  }

  .nav-dropdown-menu {
    position: static;
    display: block;
    background: transparent;
    border: none;
    padding-left: 1rem;
    box-shadow: none;
  }

  .nav-cta {
    display: block;
    text-align: center;
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.75rem 1.5rem !important;
  }

  /* Hero Section */
  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 3rem;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 5.5vw, 2.35rem);
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
  }

  .hero-guarantee-strip {
    gap: 0.85rem;
    font-size: 0.825rem;
    margin-bottom: 1.75rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 340px;
  }

  /* Stats Row */
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.25rem 1rem;
    margin-bottom: 2.25rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  /* Marquee Overlays */
  .marquee-section::before,
  .marquee-section::after {
    width: 35px;
  }

  .channel-logo-card {
    min-width: 120px;
    height: 52px;
    padding: 0.5rem 1rem;
  }

  .movie-poster-card {
    width: 125px;
    height: 180px;
  }

  /* Grids */
  .grid-3,
  .grid-4,
  .features-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .download-grid,
  .guarantee-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .devices-icon-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .device-icon-card {
    padding: 1.25rem 0.75rem;
  }

  .apps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .app-card {
    padding: 1.5rem 1rem;
  }

  .feature-card.feature-wide {
    grid-column: span 1;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-6px);
  }

  .trust-pills-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
  }

  .trust-pill {
    padding: 1.25rem 1rem;
  }

  /* Sport Showcase */
  .sport-showcase-wrap {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .floating-badge {
    padding: 0.6rem 0.9rem;
    font-size: 0.825rem;
  }

  .sports-checklist-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  /* Comparison Table */
  .comparison-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 2rem;
  }

  .comparison-table {
    min-width: 560px;
  }

  /* CTA Banner */
  .cta-banner {
    padding: 3rem 1.75rem;
  }

  .cta-banner h2 {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }

  /* Reviews Aggregate Box */
  .reviews-aggregate-box {
    padding: 1.75rem 1.25rem;
    gap: 1.75rem;
  }

  /* FAQ Widget */
  .faq-whatsapp-widget {
    flex-direction: column;
    text-align: center;
    padding: 1.75rem 1.25rem;
  }

  .faq-whatsapp-widget .btn {
    width: 100%;
    max-width: 320px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .footer-social {
    justify-content: center;
  }

  /* Floating WhatsApp */
  .floating-whatsapp {
    width: 52px;
    height: 52px;
    bottom: 18px;
    right: 18px;
  }

  .floating-whatsapp svg {
    width: 28px;
    height: 28px;
  }

  /* Article container */
  .article-container {
    padding: 2.5rem 1.25rem 4rem;
  }
}

/* --- 3. Mobile Phones (<=480px) --- */
@media (max-width: 480px) {
  /* Layout Spacing */
  section {
    padding: 2.5rem 0;
  }

  .container {
    padding: 0 1rem;
  }

  .section-header {
    margin-bottom: 1.75rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  /* Header & Logo */
  header .container {
    height: 68px;
  }

  nav {
    top: 68px;
    height: calc(100vh - 68px);
    padding: 1.5rem 1rem;
  }

  .logo {
    font-size: 1.2rem;
    gap: 0.45rem;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
  }

  .live-badge {
    font-size: 0.65rem;
    padding: 0.15rem 0.45rem;
  }

  /* Hero Section */
  .hero {
    padding-top: 88px;
    padding-bottom: 2.25rem;
  }

  .hero h1 {
    font-size: 1.55rem;
    line-height: 1.25;
  }

  .hero p {
    font-size: 0.925rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
  }

  .eyebrow {
    font-size: 0.72rem;
    padding: 0.25rem 0.65rem;
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.35;
  }

  .hero-guarantee-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 0.75rem;
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
    text-align: left;
  }

  .hero-guarantee-strip span {
    line-height: 1.3;
  }

  /* Stats Row */
  .stats-row {
    gap: 0.65rem;
    padding: 1rem 0.65rem;
    margin-bottom: 1.75rem;
  }

  .stat-number {
    font-size: 1.45rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  /* Countdown Timer */
  .countdown-timer {
    gap: 0.4rem;
    margin: 0.75rem auto 1.75rem;
  }

  .countdown-item {
    min-width: 58px;
    padding: 0.45rem 0.4rem;
  }

  .countdown-item .number {
    font-size: 1.35rem;
  }

  .countdown-item .label {
    font-size: 0.65rem;
  }

  /* Pricing Trust Badges */
  .pricing-trust-badges {
    gap: 0.5rem;
    margin: 1rem 0 1.5rem;
  }

  .pricing-trust-badge {
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
  }

  /* Pricing Card */
  .pricing-card {
    padding: 2rem 1.25rem;
  }

  .price {
    font-size: 2.35rem;
  }

  .pricing-badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.85rem;
  }

  .check-list li {
    font-size: 0.875rem;
  }

  /* Devices & Apps Grids */
  .devices-icon-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .device-icon-card {
    padding: 1rem 0.5rem;
  }

  .device-icon-card svg {
    width: 26px;
    height: 26px;
    margin-bottom: 0.4rem;
  }

  .device-icon-card span {
    font-size: 0.78rem;
  }

  .apps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }

  .app-card {
    padding: 1.15rem 0.65rem;
  }

  .app-logo-wrap {
    width: 54px;
    height: 54px;
    margin-bottom: 0.75rem;
  }

  .app-card h4 {
    font-size: 0.95rem;
  }

  .app-card p {
    font-size: 0.75rem;
  }

  .download-grid,
  .guarantee-grid {
    grid-template-columns: 1fr;
  }

  .trust-pills-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  /* CTA Banner */
  .cta-banner {
    padding: 2.25rem 1rem;
    border-radius: var(--radius-lg);
  }

  .cta-banner h2 {
    font-size: 1.5rem;
  }

  .cta-banner p {
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
  }

  /* Marquee Fade Masks */
  .marquee-section::before,
  .marquee-section::after {
    width: 20px;
  }

  /* Floating Badges */
  .floating-badge {
    padding: 0.45rem 0.65rem;
    font-size: 0.72rem;
    gap: 0.4rem;
  }

  .floating-badge svg {
    width: 16px;
    height: 16px;
  }

  .floating-badge.badge-top {
    top: 0.75rem;
    right: 0.75rem;
  }

  .floating-badge.badge-bottom {
    bottom: 0.75rem;
    left: 0.75rem;
  }

  /* FAQ Accordion */
  .faq-question {
    padding: 1.1rem 1rem;
    font-size: 0.95rem;
  }

  .faq-answer {
    padding: 0 1rem 1.15rem;
    font-size: 0.88rem;
  }

  /* Reviews Aggregate */
  .reviews-aggregate-box {
    padding: 1.5rem 1rem;
  }

  .aggregate-score .big-num {
    font-size: 2.75rem;
  }

  /* Article Pages */
  .article-container {
    padding: 2rem 0.85rem 3.5rem;
  }

  .article-header h1 {
    font-size: 1.55rem;
  }

  .article-meta-bar {
    font-size: 0.8rem;
    gap: 0.5rem;
  }

  .article-body {
    font-size: 0.975rem;
    line-height: 1.75;
  }

  .article-toc {
    padding: 1.15rem 0.85rem;
  }

  .key-takeaway-box {
    padding: 0.85rem 1rem;
  }

  /* Floating WhatsApp */
  .floating-whatsapp {
    width: 48px;
    height: 48px;
    bottom: 16px;
    right: 16px;
  }

  .floating-whatsapp svg {
    width: 24px;
    height: 24px;
  }
}

