/* ==========================================================================
   REALMIPTV — PREMIUM DARK DESIGN SYSTEM v1.0
   Deep Space · Cyan · Coral · Gold · Teal
   Font: Outfit · Mobile-first · 2026
   ========================================================================== */

/* --- CSS Variables (Unique Palette) --- */
:root {
  --bg-dark: #080b14;
  --bg-darker: #060910;
  --bg-card: #111a2e;
  --bg-card-hover: #162038;
  --bg-light: #0d1527;
  --bg-section-alt: #0a0f1e;
  --primary: #00c8ff;
  --primary-dark: #0098cc;
  --primary-glow: rgba(0, 200, 255, 0.25);
  --secondary: #ff4d6a;
  --secondary-dark: #e0365a;
  --accent-gold: #ffb830;
  --accent-teal: #00e5c7;
  --accent-purple: #a855f7;
  --gradient-primary: linear-gradient(135deg, #00c8ff 0%, #00e5c7 100%);
  --gradient-hero: linear-gradient(135deg, #080b14 0%, #0d1527 50%, #131b33 100%);
  --gradient-card: linear-gradient(145deg, rgba(17,26,46,0.8) 0%, rgba(13,21,39,0.6) 100%);
  --gradient-coral: linear-gradient(135deg, #ff4d6a 0%, #ff6b81 100%);
  --gradient-gold: linear-gradient(135deg, #ffb830 0%, #ffd369 100%);
  --text-white: #f0f2f5;
  --text-light: #8b95a8;
  --text-dark: #111827;
  --text-muted: #5d6a82;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-card: rgba(0, 200, 255, 0.08);
  --border-glow: rgba(0, 200, 255, 0.2);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 50px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 30px rgba(0, 200, 255, 0.15);
  --shadow-coral: 0 8px 32px rgba(255, 77, 106, 0.3);
  --shadow-gold: 0 8px 32px rgba(255, 184, 48, 0.25);
  --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.65; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-teal); }

/* --- 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.2rem, 5vw, 3.6rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); text-align: center; margin-bottom: 1.25rem; letter-spacing: -0.02em; }
h3 { font-size: 1.25rem; font-weight: 600; }
.card-title { font-size: 1.25rem; font-weight: 600; line-height: 1.15; margin-bottom: 1rem; color: var(--text-white); }
.plan-title { font-size: 1.2rem; font-weight: 700; line-height: 1.15; margin-bottom: 0.75rem; color: var(--text-white); }
p { color: var(--text-light); margin-bottom: 1rem; font-size: 1.05rem; line-height: 1.7; }
.section-subtitle { text-align: center; max-width: 640px; margin: 0 auto 3rem; font-size: 1.1rem; color: var(--text-muted); }
.text-center { text-align: center; }
.text-gradient { background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(0, 200, 255, 0.1); border: 1px solid rgba(0, 200, 255, 0.2); color: var(--primary); font-weight: 600; font-size: 0.85rem; padding: 0.45rem 1.1rem; border-radius: var(--radius-full); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.25rem; }

/* --- Buttons --- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 0.9rem 2.2rem; font-weight: 700; font-size: 1rem; border-radius: var(--radius-full); text-decoration: none; transition: var(--transition-smooth); cursor: pointer; border: none; outline: none; position: relative; overflow: hidden; white-space: nowrap; font-family: var(--font-family); }
.btn-primary { background: var(--gradient-primary); color: var(--bg-dark); box-shadow: var(--shadow-glow); text-transform: uppercase; letter-spacing: 0.5px; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0, 200, 255, 0.4); color: var(--bg-dark); }
.btn-primary::after { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent); transform: skewX(-25deg); animation: btn-shine 4s infinite; }
@keyframes btn-shine { 0% { left: -100%; } 20% { left: 200%; } 100% { left: 200%; } }
.btn-secondary { background: var(--gradient-coral); color: #fff; box-shadow: var(--shadow-coral); text-transform: uppercase; letter-spacing: 0.5px; }
.btn-secondary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(255,77,106,0.45); color: #fff; }
.btn-outline { background: transparent; color: var(--text-white); border: 2px solid var(--border-glow); }
.btn-outline:hover { background: rgba(0, 200, 255, 0.08); border-color: var(--primary); transform: translateY(-2px); color: var(--primary); }
.btn-whatsapp { background: #25D366; color: #fff; box-shadow: 0 8px 28px rgba(37,211,102,0.3); }
.btn-whatsapp:hover { background: #20bd5a; transform: translateY(-3px); box-shadow: 0 12px 40px rgba(37,211,102,0.45); color: #fff; }
.btn-whatsapp svg { width: 20px; height: 20px; fill: #fff; }
.btn-gold { background: var(--gradient-gold); color: var(--bg-dark); box-shadow: var(--shadow-gold); font-weight: 800; }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(255,184,48,0.45); color: var(--bg-dark); }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }

/* --- Cards --- */
.card { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-xl); padding: 2rem; transition: var(--transition-smooth); position: relative; overflow: hidden; }
.card:hover { border-color: var(--border-glow); box-shadow: var(--shadow-glow); transform: translateY(-4px); }
.card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gradient-primary); opacity: 0; transition: opacity 0.3s ease; }
.card:hover::before { opacity: 1; }

/* --- Grids --- */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

/* --- Sections --- */
section { padding: 5rem 0; position: relative; }
.bg-alt { background: var(--bg-section-alt); }
.bg-darker { background: var(--bg-darker); }
.section-divider { position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--border-glow), transparent); }

/* ==========================================================================
   HEADER
   ========================================================================== */
header { position: fixed; top: 0; width: 100%; z-index: 1000; background: rgba(8, 11, 20, 0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border-subtle); transition: var(--transition-smooth); }
header.scrolled { background: rgba(8, 11, 20, 0.98); box-shadow: 0 4px 30px rgba(0,0,0,0.5); }
header .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-text { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; }
.logo-text span:first-child { color: var(--text-white); }
.logo-text span:last-child { background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.logo img { height: 40px; width: auto; }
nav { display: flex; align-items: center; }
nav ul { display: flex; list-style: none; gap: 2rem; align-items: center; }
nav a { color: var(--text-light); text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: var(--transition); position: relative; }
nav a:hover, nav a.active { color: var(--primary); }
nav a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--gradient-primary); transition: width 0.3s ease; border-radius: 1px; }
nav a:hover::after { width: 100%; }
.nav-cta { background: var(--gradient-primary); color: var(--bg-dark) !important; padding: 0.55rem 1.4rem; border-radius: var(--radius-full); font-weight: 700; font-size: 0.88rem !important; text-transform: uppercase; letter-spacing: 0.5px; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); color: var(--bg-dark) !important; }
header::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gradient-primary); }

/* Hamburger */
.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; }

/* 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: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); padding: 1rem; min-width: 220px; opacity: 0; visibility: hidden; transition: var(--transition); box-shadow: var(--shadow-lg); }
.nav-dropdown-menu.dropdown-open { opacity: 1; visibility: visible; }
.nav-dropdown-menu a { display: block; padding: 0.5rem 0.75rem; border-radius: var(--radius-sm); color: var(--text-light); }
.nav-dropdown-menu a:hover { background: rgba(0,200,255,0.08); color: var(--primary); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; min-height: 100vh; padding: 120px 0 0; position: relative; overflow: hidden; background: var(--bg-dark); }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,11,20,0.85) 0%, rgba(8,11,20,0.92) 60%, rgba(8,11,20,0.98) 100%); z-index: 1; }
.hero-particles { position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; }
.hero-particles::before, .hero-particles::after { content: ''; position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.4; animation: float-particle 8s ease-in-out infinite; }
.hero-particles::before { width: 400px; height: 400px; background: radial-gradient(circle, rgba(0,200,255,0.2), transparent 70%); top: 10%; left: -5%; }
.hero-particles::after { width: 350px; height: 350px; background: radial-gradient(circle, rgba(255,77,106,0.15), transparent 70%); bottom: 15%; right: -5%; animation-delay: -4s; }
@keyframes float-particle { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-30px) scale(1.1); } }
.hero .container { position: relative; z-index: 2; max-width: 900px; flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.hero h1 { margin-bottom: 1.25rem; color: #fff; }
.hero h1 .highlight { background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero p { font-size: 1.15rem; color: rgba(255,255,255,0.75); max-width: 700px; margin: 0 auto 1.5rem; }

/* Stats Row */
.stats-row { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; margin-top: 2.5rem; }
.stat-item { text-align: center; }
.stat-number { font-size: 2rem; font-weight: 800; display: block; line-height: 1; }
.stat-number.cyan { color: var(--primary); }
.stat-number.coral { color: var(--secondary); }
.stat-number.gold { color: var(--accent-gold); }
.stat-number.teal { color: var(--accent-teal); }
.stat-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.35rem; display: block; }

/* Hero channels marquee */
.hero-channels-marquee { padding: 1.5rem 0; position: relative; z-index: 2; width: 100%; overflow: hidden; border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); background: rgba(0,0,0,0.2); margin-top: auto; flex-shrink: 0; }
.hero-channels-marquee .marquee-track { animation: marquee-left 35s linear infinite; }
.hero-channels-marquee .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(255,255,255,0.05); border: 1px solid var(--border-subtle); }
.hero-channels-marquee .marquee-track img:hover { filter: grayscale(0%) brightness(1); opacity: 1; transform: scale(1.08); box-shadow: var(--shadow-glow); border-color: var(--border-glow); }

/* ==========================================================================
   INTRO / TRUST SECTION
   ========================================================================== */
.intro-section { background: var(--bg-section-alt); padding: 4rem 0; }
.trust-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-top: 2rem; }
.trust-pill { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.9rem; color: var(--text-white); background: var(--bg-card); padding: 0.6rem 1.2rem; border-radius: var(--radius-full); border: 1px solid var(--border-subtle); transition: var(--transition); }
.trust-pill:hover { border-color: var(--border-glow); box-shadow: var(--shadow-glow); }
.trust-pill svg { width: 18px; height: 18px; flex-shrink: 0; }
.trust-pill svg.cyan { fill: var(--primary); }
.trust-pill svg.coral { fill: var(--secondary); }
.trust-pill svg.gold { fill: var(--accent-gold); }
.trust-pill svg.teal { fill: var(--accent-teal); }

/* ==========================================================================
   REGION CARDS
   ========================================================================== */
.region-section { background: var(--bg-dark); }
.region-card { text-align: center; padding: 2.5rem 1.5rem; }
.region-card img.flag { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; margin: 0 auto 1.25rem; border: 3px solid var(--border-glow); box-shadow: var(--shadow-glow); }
.region-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.region-card p { font-size: 0.92rem; }
.region-card ul { list-style: none; text-align: left; margin-top: 1rem; }
.region-card ul li { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--text-light); margin-bottom: 0.5rem; }
.region-card ul li svg { width: 16px; height: 16px; fill: var(--accent-teal); flex-shrink: 0; }

/* ==========================================================================
   MARQUEE SYSTEM
   ========================================================================== */
@keyframes marquee-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes marquee-right { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

.marquee-track { display: flex; width: max-content; gap: 1.5rem; }
.marquee-track:hover { animation-play-state: paused !important; }
.marquee-track-wrapper { position: relative; overflow: hidden; }
.marquee-track-wrapper::before, .marquee-track-wrapper::after { content: ''; position: absolute; top: 0; bottom: 0; width: 100px; 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%); }
.bg-alt .marquee-track-wrapper::before { background: linear-gradient(to right, var(--bg-section-alt) 0%, transparent 100%); }
.bg-alt .marquee-track-wrapper::after { background: linear-gradient(to left, var(--bg-section-alt) 0%, transparent 100%); }

/* Marquee Sections */
.marquee-section { overflow: hidden; position: relative; padding: 3.5rem 0; }
.marquee-section .section-label { text-align: center; margin-bottom: 2rem; }

/* Movies & Series Marquee */
.marquee-movies { padding: 3.5rem 0; }
.marquee-movies .marquee-row { margin-bottom: 1.5rem; }
.marquee-movies .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.4); 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 16px 48px rgba(0,0,0,0.5), 0 0 20px rgba(0,200,255,0.1); }

/* 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: 120px; width: auto; object-fit: contain; flex-shrink: 0; border-radius: var(--radius-md); transition: all 0.35s ease; filter: drop-shadow(0 4px 16px rgba(0,0,0,0.3)); }
.marquee-devices .marquee-track img:hover { transform: scale(1.06); filter: drop-shadow(0 8px 28px rgba(0,200,255,0.15)); }

/* Channels Marquee */
.marquee-channels .marquee-track { animation: marquee-left 30s linear infinite; gap: 2rem; }
.marquee-channels .marquee-track img { height: 48px; width: auto; object-fit: contain; flex-shrink: 0; filter: grayscale(30%); opacity: 0.85; transition: all 0.3s ease; border-radius: 8px; padding: 6px 14px; background: rgba(255,255,255,0.04); border: 1px solid var(--border-subtle); }
.marquee-channels .marquee-track img:hover { filter: grayscale(0%); opacity: 1; transform: scale(1.08); box-shadow: var(--shadow-glow); }

/* Payment Marquee */
.marquee-payment .marquee-track { animation: marquee-left 20s linear infinite; gap: 3rem; }
.marquee-payment .marquee-track img { height: 36px; width: auto; object-fit: contain; flex-shrink: 0; opacity: 0.6; filter: grayscale(30%) brightness(1.5); transition: all 0.3s ease; }
.marquee-payment .marquee-track img:hover { opacity: 1; filter: grayscale(0%) brightness(1); transform: scale(1.1); }

/* ==========================================================================
   STEPS / HOW IT WORKS
   ========================================================================== */
.steps-section { 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(8,11,20,0.9) 0%, rgba(8,11,20,0.95) 100%); z-index: 1; }
.steps-section .container { position: relative; z-index: 2; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.step-card { background: rgba(255,255,255,0.04); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-xl); padding: 2.5rem 1.5rem; text-align: center; transition: var(--transition-smooth); }
.step-card:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(0,200,255,0.1); border-color: rgba(0,200,255,0.2); }
.step-number { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; background: var(--gradient-primary); border-radius: 50%; font-size: 1.4rem; font-weight: 800; color: var(--bg-dark); margin-bottom: 1.25rem; box-shadow: 0 4px 24px rgba(0,200,255,0.3); }
.step-card h3 { color: #fff; font-size: 1.15rem; margin-bottom: 0.5rem; }
.step-card p { color: rgba(255,255,255,0.65); font-size: 0.92rem; line-height: 1.6; margin-bottom: 0; }

/* ==========================================================================
   PRICING
   ========================================================================== */
.pricing-section { background: var(--bg-section-alt); }
.pricing-header { text-align: center; margin-bottom: 3rem; }
.pricing-trust-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-bottom: 2rem; }
.pricing-trust-badge { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 600; color: var(--text-light); background: var(--bg-card); padding: 0.5rem 1rem; border-radius: var(--radius-full); border: 1px solid var(--border-subtle); }
.pricing-trust-badge svg { width: 16px; height: 16px; fill: var(--accent-teal); }

/* Countdown Timer */
.countdown-timer { display: flex; justify-content: center; gap: 1rem; margin-bottom: 2rem; }
.countdown-item { text-align: center; background: var(--bg-card); border: 1px solid var(--border-glow); border-radius: var(--radius-lg); padding: 0.75rem 1.25rem; min-width: 72px; }
.countdown-item .number { display: block; font-size: 1.8rem; font-weight: 800; color: var(--primary); line-height: 1; }
.countdown-item .label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* Pricing Tabs */
.pricing-tabs { display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 2.5rem; }
.pricing-tab { padding: 0.7rem 2rem; border-radius: var(--radius-full); font-weight: 600; font-size: 0.95rem; cursor: pointer; border: 1px solid var(--border-subtle); background: transparent; color: var(--text-light); transition: var(--transition); font-family: var(--font-family); }
.pricing-tab.active { background: var(--gradient-primary); color: var(--bg-dark); border-color: transparent; box-shadow: var(--shadow-glow); }

/* Pricing Card */
.pricing-card { text-align: center; padding: 2rem 1.5rem; position: relative; }
.pricing-card .badge { display: inline-block; background: var(--gradient-primary); color: var(--bg-dark); padding: 0.3rem 1rem; border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 1rem; }
.pricing-card .badge.coral { background: var(--gradient-coral); color: #fff; }
.pricing-card .badge.gold { background: var(--gradient-gold); color: var(--bg-dark); }
.pricing-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.pricing-card .price { font-size: 2.8rem; font-weight: 800; color: var(--text-white); line-height: 1; margin-bottom: 0.25rem; }
.pricing-card .price .currency { font-size: 1.4rem; vertical-align: top; margin-right: 2px; }
.pricing-card .old-price { font-size: 1rem; color: var(--text-muted); text-decoration: line-through; margin-bottom: 0.25rem; }
.pricing-card .per-month { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.pricing-card.featured { background: linear-gradient(145deg, #0f1d36, #162849); border: 2px solid var(--primary); transform: scale(1.05); box-shadow: 0 0 40px rgba(0,200,255,0.15), 0 16px 48px rgba(0,0,0,0.4); z-index: 2; }
.pricing-card.featured:hover { transform: scale(1.07); box-shadow: 0 0 60px rgba(0,200,255,0.2), 0 20px 64px rgba(0,0,0,0.5); }
.pricing-card.featured .badge { background: var(--gradient-coral); color: #fff; }
.pricing-card .btn { width: 100%; padding: 0.85rem; }

/* Check list */
ul.check-list { list-style: none; margin: 1.5rem 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.88rem; text-align: left; line-height: 1.45; }
ul.check-list li svg { width: 16px; height: 16px; fill: var(--accent-teal); flex-shrink: 0; margin-top: 2px; }

/* Payment image inside pricing card */
.pricing-card { display: flex; flex-direction: column; }
.pricing-card .btn { margin-top: auto; }
.pricing-payment-img { display: block; width: 80%; max-width: 240px; height: auto; margin: 0.75rem auto 0; opacity: 0.5; filter: brightness(1.5) grayscale(20%); transition: opacity 0.3s ease; }
.pricing-card:hover .pricing-payment-img { opacity: 0.7; }

/* Multi-screen pricing */
.multi-pricing { margin-top: 3rem; }

/* ==========================================================================
   FEATURES
   ========================================================================== */
.features-section { background: var(--bg-dark); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.features-grid .feature-wide { grid-column: span 2; }
.feature-card { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-xl); padding: 2rem; position: relative; overflow: hidden; transition: var(--transition-smooth); }
.feature-card:hover { transform: translateY(-6px); border-color: var(--border-glow); box-shadow: 0 16px 48px rgba(0,0,0,0.4), var(--shadow-glow); }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gradient-primary); }
.feature-icon { display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; background: rgba(0,200,255,0.1); border: 1px solid rgba(0,200,255,0.2); border-radius: var(--radius-lg); margin-bottom: 1.25rem; transition: var(--transition); }
.feature-card:hover .feature-icon { background: rgba(0,200,255,0.15); transform: scale(1.08) rotate(3deg); }
.feature-icon svg { width: 28px; height: 28px; fill: var(--primary); }
.feature-icon.coral { background: rgba(255,77,106,0.1); border-color: rgba(255,77,106,0.2); }
.feature-icon.coral svg { fill: var(--secondary); }
.feature-icon.gold { background: rgba(255,184,48,0.1); border-color: rgba(255,184,48,0.2); }
.feature-icon.gold svg { fill: var(--accent-gold); }
.feature-icon.teal { background: rgba(0,229,199,0.1); border-color: rgba(0,229,199,0.2); }
.feature-icon.teal svg { fill: var(--accent-teal); }
.feature-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.9rem; margin-bottom: 0; color: var(--text-muted); }
.feature-card .feature-image { border-radius: var(--radius-md); margin-top: 1rem; width: 100%; height: auto; }

/* ==========================================================================
   DOWNLOAD ROW
   ========================================================================== */
.download-section { background: var(--bg-section-alt); }
.download-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.download-card { text-align: center; padding: 2rem 1rem; background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-xl); transition: var(--transition-smooth); }
.download-card:hover { border-color: var(--border-glow); transform: translateY(-6px); box-shadow: var(--shadow-glow); }
.download-card svg { width: 48px; height: 48px; fill: var(--primary); margin-bottom: 1rem; }
.download-card h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.download-card p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0; }

/* ==========================================================================
   SPORT SHOWCASE
   ========================================================================== */
.sport-showcase { background: var(--bg-dark); overflow: hidden; }
.sport-split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin-top: 2rem; }
.sport-media { position: relative; }
.sport-hero-wrapper { position: relative; }
.sport-hero-wrapper .sport-hero-img { border-radius: var(--radius-xl); width: 100%; box-shadow: var(--shadow-lg); }
.sport-float { position: absolute; border-radius: var(--radius-md); box-shadow: var(--shadow-md); border: 2px solid var(--border-glow); object-fit: cover; }
.sport-float-1 { top: -20px; right: -20px; width: 180px; height: 120px; border-radius: var(--radius-lg); }
.sport-float-2 { bottom: -15px; left: -15px; width: 160px; height: 110px; border-radius: var(--radius-lg); }
.sport-checklist h3 { font-size: 1.3rem; margin-bottom: 0.75rem; }
.sport-checklist p { font-size: 0.95rem; margin-bottom: 1.25rem; }
.sport-checklist ul { list-style: none; }
.sport-checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; color: var(--text-light); margin-bottom: 0.85rem; font-weight: 500; line-height: 1.5; }
.sport-checklist li svg { width: 20px; height: 20px; fill: var(--accent-teal); flex-shrink: 0; margin-top: 2px; }

/* ==========================================================================
   DEVICES SECTION
   ========================================================================== */
.devices-section { background: var(--bg-section-alt); }
.devices-icon-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 1rem; margin-bottom: 2.5rem; }
.device-icon-card { text-align: center; background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); padding: 1.25rem 0.75rem; transition: var(--transition); }
.device-icon-card:hover { border-color: var(--border-glow); transform: translateY(-3px); box-shadow: var(--shadow-glow); }
.device-icon-card svg { width: 32px; height: 32px; fill: var(--primary); margin-bottom: 0.5rem; }
.device-icon-card span { display: block; font-size: 0.78rem; font-weight: 600; color: var(--text-light); }

/* ==========================================================================
   COMPATIBLE APPS
   ========================================================================== */
.apps-section { background: var(--bg-dark); }
.apps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.app-card { text-align: center; padding: 2rem 1rem; background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-xl); 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(-8px); border-color: var(--border-glow); box-shadow: var(--shadow-glow); }
.app-card img { width: 72px; height: 72px; border-radius: var(--radius-md); margin: 0 auto 1rem; object-fit: contain; }
.app-card h3 { font-size: 0.95rem; margin-bottom: 0.25rem; }
.app-card p { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0; }

/* ==========================================================================
   COMPARISON TABLE
   ========================================================================== */
.comparison-section { background: var(--bg-section-alt); }
.comparison-table { width: 100%; border-collapse: collapse; margin-top: 2rem; border-radius: var(--radius-xl); overflow: hidden; }
.comparison-table thead th { background: var(--bg-card); padding: 1rem; font-weight: 700; font-size: 0.95rem; color: var(--text-white); border-bottom: 2px solid var(--primary); }
.comparison-table thead th:first-child { text-align: left; }
.comparison-table thead th:nth-child(2) { color: var(--primary); }
.comparison-table tbody td { padding: 0.85rem 1rem; border-bottom: 1px solid var(--border-subtle); font-size: 0.9rem; color: var(--text-light); }
.comparison-table tbody td:first-child { font-weight: 600; color: var(--text-white); }
.comparison-table tbody tr:hover { background: rgba(0,200,255,0.03); }
.comparison-table .check { color: var(--accent-teal); font-weight: 700; font-size: 1.1rem; text-align: center; }
.comparison-table .cross { color: var(--secondary); font-weight: 700; font-size: 1.1rem; text-align: center; }
.comparison-highlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2.5rem; }

/* ==========================================================================
   REVIEWS
   ========================================================================== */
.reviews-section { background: var(--bg-dark); }
.reviews-header { text-align: center; margin-bottom: 2.5rem; }
.aggregate-rating { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 1rem; }
.aggregate-rating .score { font-size: 2.5rem; font-weight: 800; color: var(--accent-gold); }
.aggregate-rating .stars { color: var(--accent-gold); font-size: 1.2rem; }
.aggregate-rating .count { color: var(--text-muted); font-size: 0.9rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.review-card { padding: 1.75rem; }
.review-card .review-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.review-avatar { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; color: #fff; flex-shrink: 0; }
.review-name { font-weight: 700; font-size: 0.95rem; color: var(--text-white); }
.review-date { font-size: 0.78rem; color: var(--text-muted); }
.review-stars { color: var(--accent-gold); font-size: 0.85rem; margin-bottom: 0.75rem; }
.review-headline { font-weight: 700; font-size: 1rem; color: var(--text-white); margin-bottom: 0.5rem; }
.review-text { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; margin-bottom: 0; }

/* ==========================================================================
   GUARANTEE ROW
   ========================================================================== */
.guarantee-section { background: var(--bg-section-alt); }
.guarantee-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.guarantee-item { padding: 2rem 1rem; background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-xl); transition: var(--transition); }
.guarantee-item:hover { border-color: var(--border-glow); transform: translateY(-3px); }
.guarantee-icon { font-size: 2.5rem; margin-bottom: 0.75rem; display: block; }
.guarantee-item h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.guarantee-item p { font-size: 0.85rem; margin-bottom: 0; color: var(--text-muted); line-height: 1.5; }

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.usps-section { background: var(--bg-dark); }

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-section { background: var(--bg-section-alt); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); margin-bottom: 0.75rem; overflow: hidden; transition: var(--transition); }
.faq-item:hover { border-color: var(--border-glow); }
.faq-item.active { border-color: rgba(0,200,255,0.3); box-shadow: var(--shadow-glow); }
.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); background: none; border: none; width: 100%; text-align: left; font-family: var(--font-family); transition: var(--transition); }
.faq-question:hover { color: var(--primary); }
.faq-question svg { width: 20px; height: 20px; stroke: var(--text-muted); fill: none; flex-shrink: 0; transition: transform 0.3s ease; }
.faq-item.active .faq-question svg { transform: rotate(45deg); stroke: var(--primary); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-answer-inner { padding: 0 1.5rem 1.25rem; font-size: 0.92rem; color: var(--text-light); line-height: 1.7; }
.faq-item.active .faq-answer { max-height: 500px; }

/* WhatsApp CTA Box below FAQ */
.faq-whatsapp-cta { max-width: 800px; margin: 2rem auto 0; background: linear-gradient(135deg, rgba(37,211,102,0.1), rgba(37,211,102,0.05)); border: 1px solid rgba(37,211,102,0.3); border-radius: var(--radius-xl); padding: 2rem; text-align: center; }
.faq-whatsapp-cta h3 { color: #25D366; margin-bottom: 0.5rem; }
.faq-whatsapp-cta p { margin-bottom: 1.25rem; }

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta-section { background: linear-gradient(135deg, #0d1527 0%, #131b33 50%, #0f1829 100%); position: relative; overflow: hidden; padding: 5rem 0; text-align: center; }
.cta-section::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at center, rgba(0,200,255,0.05) 0%, transparent 50%); animation: cta-pulse 6s ease-in-out infinite; }
@keyframes cta-pulse { 0%, 100% { transform: scale(1); opacity: 0.5; } 50% { transform: scale(1.1); opacity: 1; } }
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.cta-section p { margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ==========================================================================
   PAYMENT STRIP
   ========================================================================== */
.payment-strip { background: var(--bg-darker); padding: 2rem 0; border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }

/* ==========================================================================
   BLOG POSTS
   ========================================================================== */
.blog-section { background: var(--bg-dark); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.blog-card { overflow: hidden; }
.blog-card .blog-image { width: 100%; height: 200px; object-fit: cover; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.blog-card .blog-content { padding: 1.5rem; }
.blog-card .blog-meta { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.blog-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.blog-card h3 a { color: var(--text-white); }
.blog-card h3 a:hover { color: var(--primary); }
.blog-card p { font-size: 0.88rem; margin-bottom: 1rem; }
.blog-card .read-more { font-weight: 600; font-size: 0.88rem; color: var(--primary); display: inline-flex; align-items: center; gap: 4px; }
.blog-card .read-more:hover { color: var(--accent-teal); gap: 8px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer { background: var(--bg-darker); padding: 4rem 0 2rem; border-top: 1px solid var(--border-subtle); }
footer .footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 2rem; }
footer h4 { color: var(--primary); font-weight: 700; font-size: 1rem; margin-bottom: 1.25rem; }
footer p, footer a { color: var(--text-muted) !important; font-size: 0.9rem; }
footer a:hover { color: var(--primary) !important; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 0.6rem; }
footer ul li a { color: var(--text-muted); font-size: 0.88rem; }
footer ul li a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid var(--border-subtle); padding-top: 1.5rem; margin-top: 2.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { color: var(--text-muted) !important; font-size: 0.82rem; }
.footer-social { display: flex; gap: 0.75rem; justify-content: center; margin-top: 2rem; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: var(--bg-card); border: 1px solid var(--border-subtle); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.footer-social a:hover { border-color: var(--primary); background: rgba(0,200,255,0.1); }
.footer-social a svg { width: 16px; height: 16px; fill: var(--text-muted); }
.footer-social a:hover svg { fill: var(--primary); }

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.floating-whatsapp { position: fixed; bottom: 28px; right: 28px; background: #25D366; width: 60px; height: 60px; 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: var(--transition-smooth); animation: whatsapp-pulse 2s ease-in-out infinite; }
.floating-whatsapp:hover { transform: scale(1.12); box-shadow: 0 8px 32px rgba(37,211,102,0.6); animation: none; }
.floating-whatsapp svg { width: 32px; height: 32px; fill: #fff; }
@keyframes whatsapp-pulse { 0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.4); } 50% { box-shadow: 0 6px 24px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0.1); } }

/* ==========================================================================
   404 PAGE
   ========================================================================== */
.error-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; background: var(--bg-dark); }
.error-page .error-code { font-size: 8rem; font-weight: 900; background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }

/* ==========================================================================
   LEGAL PAGES
   ========================================================================== */
.legal-page { padding-top: 120px; padding-bottom: 4rem; }
.legal-page .container { max-width: 800px; }
.legal-page h1 { font-size: 2rem; margin-bottom: 0.5rem; }
.legal-page h2 { text-align: left; font-size: 1.4rem; margin-top: 2rem; }
.legal-page p, .legal-page li { font-size: 0.95rem; line-height: 1.8; }
.legal-page ul { margin-left: 1.5rem; margin-bottom: 1rem; }
.legal-page ul li { margin-bottom: 0.5rem; color: var(--text-light); }

/* ==========================================================================
   BLOG / ARTICLE PAGES
   ========================================================================== */
.article-page { padding-top: 110px; }
.article-page .container { max-width: 820px; }
.article-hero { text-align: center; margin-bottom: 2.5rem; }
.article-hero img { width: 100%; border-radius: var(--radius-xl); margin-bottom: 1.5rem; }
.article-hero .article-meta { font-size: 0.85rem; color: var(--text-muted); }
.article-content h2 { text-align: left; font-size: 1.5rem; margin-top: 2.5rem; }
.article-content h3 { font-size: 1.2rem; margin-top: 1.5rem; }
.article-content p { font-size: 1rem; line-height: 1.8; }
.article-content ul, .article-content ol { margin-left: 1.5rem; margin-bottom: 1.25rem; }
.article-content li { margin-bottom: 0.6rem; color: var(--text-light); font-size: 0.95rem; }
.article-content table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; border-radius: var(--radius-lg); overflow: hidden; }
.article-content table th { background: var(--bg-card); padding: 0.85rem 1rem; font-weight: 700; color: var(--text-white); border-bottom: 2px solid var(--primary); text-align: left; }
.article-content table td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--border-subtle); color: var(--text-light); }
.article-content table tr:hover { background: rgba(0,200,255,0.03); }
.article-content blockquote { border-left: 4px solid var(--primary); background: var(--bg-card); padding: 1.25rem 1.5rem; margin: 1.5rem 0; border-radius: 0 var(--radius-md) var(--radius-md) 0; }
.article-content blockquote p { margin-bottom: 0; font-style: italic; }
.article-toc { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-xl); padding: 1.5rem 2rem; margin-bottom: 2rem; }
.article-toc h3 { font-size: 1.1rem; margin-bottom: 0.75rem; color: var(--primary); }
.article-toc ul { list-style: none; margin: 0; }
.article-toc ul li { margin-bottom: 0.4rem; }
.article-toc ul li a { color: var(--text-light); font-size: 0.9rem; }
.article-toc ul li a:hover { color: var(--primary); }
.key-takeaway { background: linear-gradient(135deg, rgba(0,200,255,0.08), rgba(0,229,199,0.05)); border: 1px solid rgba(0,200,255,0.2); border-radius: var(--radius-lg); padding: 1.25rem 1.5rem; margin: 1.5rem 0; }
.key-takeaway strong { color: var(--primary); }

/* Installation page */
.installation-page { padding-top: 110px; }
.install-step { display: grid; grid-template-columns: 48px 1fr; gap: 1.25rem; margin-bottom: 2rem; align-items: start; }
.install-step-number { width: 48px; height: 48px; background: var(--gradient-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.2rem; color: var(--bg-dark); flex-shrink: 0; }
.install-step h3 { margin-bottom: 0.5rem; }
.install-step p { font-size: 0.92rem; margin-bottom: 0; }

/* Pricing page */
.pricing-page { padding-top: 110px; }

/* Blog listing page */
.blog-listing-page { padding-top: 110px; }

/* ==========================================================================
   RESPONSIVE — TABLET (≤1024px)
   ========================================================================== */
@media (max-width: 1024px) {
  nav { position: absolute; top: 72px; left: 0; width: 100%; background: var(--bg-card); flex-direction: column; padding: 1.5rem; display: none; border-bottom: 1px solid var(--border-subtle); box-shadow: 0 16px 48px rgba(0,0,0,0.5); }
  nav.active { display: flex; }
  nav ul { flex-direction: column; align-items: center; gap: 1rem; }
  .mobile-menu-btn { display: block; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .features-grid .feature-wide { grid-column: span 2; }
  .sport-split { grid-template-columns: 1fr; gap: 2rem; }
  .download-grid { grid-template-columns: repeat(2, 1fr); }
  .apps-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   RESPONSIVE — TABLET (≤768px)
   ========================================================================== */
@media (max-width: 768px) {
  section { padding: 3rem 0 !important; }
  .container { padding: 0 1rem; }

  /* Hero */
  .hero { min-height: auto; padding: 100px 0 0 !important; }
  .hero h1 { font-size: 1.7rem; }
  .hero p { font-size: 0.95rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 320px; }

  /* Stats */
  .stats-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 1.5rem; }
  .stat-item { background: rgba(0,0,0,0.3); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); padding: 0.85rem 0.5rem; }
  .stat-number { font-size: 1.4rem; }
  .stat-label { font-size: 0.75rem; }

  /* Hero channels */
  .hero-channels-marquee .marquee-track img { height: 34px; padding: 4px 8px; }

  /* Typography */
  h2 { font-size: 1.4rem; margin-bottom: 0.75rem; }
  h3 { font-size: 1.05rem; }
  .section-subtitle { font-size: 0.88rem; margin-bottom: 1.5rem; }

  /* Buttons */
  .btn { padding: 0.75rem 1.5rem; font-size: 0.88rem; }

  /* Grids */
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .features-grid .feature-wide { grid-column: span 1; }
  .steps-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .guarantee-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .comparison-highlights { grid-template-columns: 1fr; }
  .download-grid { grid-template-columns: 1fr 1fr; }
  .apps-grid { grid-template-columns: 1fr 1fr; }
  .devices-icon-grid { grid-template-columns: repeat(3, 1fr); }

  /* Cards */
  .card { padding: 1.25rem; }

  /* Pricing */
  .pricing-card.featured { transform: scale(1); }
  .pricing-card.featured:hover { transform: scale(1.02); }
  .pricing-card.featured { order: -1; }
  .countdown-timer { gap: 0.5rem; }
  .countdown-item { padding: 0.5rem 0.75rem; min-width: 60px; }
  .countdown-item .number { font-size: 1.4rem; }

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

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

  /* Table */
  .comparison-table { font-size: 0.82rem; }
  .comparison-table thead th, .comparison-table tbody td { padding: 0.65rem 0.5rem; }
}

/* ==========================================================================
   RESPONSIVE — PHONE (≤480px)
   ========================================================================== */
@media (max-width: 480px) {
  .container { padding: 0 0.75rem; }
  section { padding: 2rem 0 !important; }

  /* Hero */
  .hero { padding: 90px 0 0 !important; }
  .hero h1 { font-size: 1.4rem; line-height: 1.25; }
  .hero p { font-size: 0.85rem; }
  .hero-channels-marquee .marquee-track img { height: 28px; padding: 3px 6px; }

  /* Stats row */
  .stats-row { gap: 8px; }
  .stat-number { font-size: 1.2rem; }
  .stat-label { font-size: 0.68rem; }

  /* Typography */
  h2 { font-size: 1.2rem; }
  h3 { font-size: 0.95rem; }

  /* Buttons */
  .btn { padding: 0.7rem 1.2rem; font-size: 0.82rem; width: 100%; }

  /* Grids */
  .grid-4 { grid-template-columns: 1fr; }
  .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; }
  .devices-icon-grid { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
  .download-grid { grid-template-columns: 1fr; }
  .apps-grid { grid-template-columns: 1fr 1fr; }

  /* Marquees */
  .marquee-movies .marquee-track img { height: 110px; }
  .marquee-devices .marquee-track img { height: 60px; }
  .marquee-track-wrapper::before, .marquee-track-wrapper::after { width: 20px; }

  /* Floating WhatsApp */
  .floating-whatsapp { width: 48px; height: 48px; bottom: 16px; right: 16px; }
  .floating-whatsapp svg { width: 26px; height: 26px; }

  /* Footer */
  footer .footer-grid { grid-template-columns: 1fr; }
  footer { padding: 2.5rem 0 1.5rem; }

  /* Countdown */
  .countdown-timer { gap: 0.4rem; }
  .countdown-item { min-width: 52px; padding: 0.4rem 0.5rem; }
  .countdown-item .number { font-size: 1.2rem; }
  .countdown-item .label { font-size: 0.6rem; }

  /* Pricing tabs */
  .pricing-tabs { flex-direction: column; align-items: center; }
  .pricing-tab { width: 100%; max-width: 260px; text-align: center; }
}
