/* ==========================================================================
   EAGLECAST — PREMIUM ULTRA-HD IPTV DESIGN SYSTEM 2026
   Palette: Electric Amber Gold · Cyber Sapphire · Emerald Mint · Neon Rose
   Typography: Plus Jakarta Sans · Mobile-First Responsive Architecture
   ========================================================================== */

/* --- Custom Properties & Design Tokens --- */
:root {
  --bg-dark: #080c16;
  --bg-darker: #05080e;
  --bg-card: #0f172a;
  --bg-card-hover: #152238;
  --bg-card-alt: #131d31;
  --bg-light: #0d1527;
  --bg-section-alt: #0a0f1d;
  --bg-glass: rgba(15, 23, 42, 0.75);

  --primary: #f59e0b;
  --primary-light: #fbbf24;
  --primary-dark: #d97706;
  --primary-glow: rgba(245, 158, 11, 0.28);

  --secondary: #3b82f6;
  --secondary-light: #60a5fa;
  --secondary-dark: #1d4ed8;
  --secondary-glow: rgba(59, 130, 246, 0.25);

  --accent-emerald: #10b981;
  --accent-emerald-glow: rgba(16, 185, 129, 0.25);
  --accent-rose: #f43f5e;
  --accent-rose-glow: rgba(244, 63, 94, 0.25);
  --accent-cyan: #06b6d4;

  --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  --gradient-blue: linear-gradient(135deg, #2563eb 0%, #38bdf8 100%);
  --gradient-brand: linear-gradient(135deg, #f59e0b 0%, #3b82f6 50%, #10b981 100%);
  --gradient-card: linear-gradient(145deg, rgba(17, 27, 49, 0.85) 0%, rgba(11, 18, 33, 0.75) 100%);
  --gradient-card-highlight: linear-gradient(145deg, rgba(30, 41, 69, 0.95) 0%, rgba(15, 23, 42, 0.9) 100%);
  --gradient-hero: radial-gradient(circle at 50% 20%, rgba(59, 130, 246, 0.15) 0%, rgba(245, 158, 11, 0.08) 35%, rgba(8, 12, 22, 0.98) 75%);

  --text-white: #f8fafc;
  --text-light: #94a3b8;
  --text-muted: #64748b;
  --text-dark: #0f172a;

  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-card: rgba(245, 158, 11, 0.12);
  --border-glow-gold: rgba(245, 158, 11, 0.35);
  --border-glow-blue: rgba(59, 130, 246, 0.35);

  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 8px 30px rgba(245, 158, 11, 0.25);
  --shadow-blue: 0 8px 30px rgba(59, 130, 246, 0.25);
  --shadow-emerald: 0 8px 30px rgba(16, 185, 129, 0.3);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container-width: 1240px;
  --font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

/* --- Base & 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-color: var(--bg-dark);
}

body {
  overflow-x: hidden;
  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;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-light);
}

ul, ol {
  list-style: none;
}

button, input, select {
  font-family: inherit;
}

/* --- Layout Container --- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.3rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.8rem, 3.8vw, 2.7rem);
  text-align: center;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
}

.text-gradient-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-blue {
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  color: var(--primary-light);
  margin-bottom: 1.5rem;
}

.eyebrow-blue {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.25);
  color: var(--secondary-light);
}

.eyebrow-emerald {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.25);
  color: var(--accent-emerald);
}

.section-subtitle {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
  font-size: 1.15rem;
  color: var(--text-light);
}

.section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* --- Buttons & CTAs --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-gold);
  color: #000;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(245, 158, 11, 0.35);
  color: #000;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
  color: var(--text-white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  box-shadow: var(--shadow-emerald);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
  transform: translateY(-2px);
  color: #ffffff;
  box-shadow: 0 12px 35px rgba(16, 185, 129, 0.45);
}

.btn-block {
  width: 100%;
}

.btn-lg {
  padding: 1.1rem 2.2rem;
  font-size: 1.1rem;
  border-radius: var(--radius-lg);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

/* --- Header & Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(8, 12, 22, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(5, 8, 14, 0.96);
  border-bottom: 1px solid rgba(245, 158, 11, 0.15);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.02em;
}

.brand-logo svg {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
  filter: drop-shadow(0 0 12px rgba(245, 158, 11, 0.5));
}

.brand-logo:hover svg {
  transform: scale(1.08) translateY(-1px);
  filter: drop-shadow(0 0 16px rgba(245, 158, 11, 0.75));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-white);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hamburger-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-white);
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger-btn svg {
  width: 28px;
  height: 28px;
}

/* Dropdown Mega-Menu */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  cursor: pointer;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: -20px;
  min-width: 260px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
}

.nav-dropdown-menu.dropdown-open {
  display: block;
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}

.nav-dropdown-item:hover {
  background: rgba(245, 158, 11, 0.08);
  color: var(--primary-light);
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background: var(--bg-darker);
  padding: 2rem 1.5rem;
  overflow-y: auto;
  z-index: 999;
  border-top: 1px solid var(--border-subtle);
}

.mobile-nav-drawer.open {
  display: block;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.mobile-nav-link {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-white);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

/* --- Section 2: Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 5rem;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('media/hereimage.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  mix-blend-mode: luminosity;
  pointer-events: none;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 780px;
  margin: 0 auto 2.5rem;
}

.hero-ctas {
  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;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-gold);
}

.stat-value {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Pure CSS Infinite Marquee */
@keyframes marquee-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-right {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.marquee-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 1.25rem 0;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 2.5rem;
  animation: marquee-left 35s linear infinite;
}

.marquee-track-reverse {
  display: flex;
  width: max-content;
  gap: 2.5rem;
  animation: marquee-right 38s linear infinite;
}

.marquee-track:hover, .marquee-track-reverse:hover {
  animation-play-state: paused;
}

.channel-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 70px;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  filter: grayscale(40%) brightness(0.9);
  transition: var(--transition);
}

.channel-logo-item:hover {
  filter: grayscale(0%) brightness(1.1);
  border-color: var(--primary);
  background: rgba(245, 158, 11, 0.05);
}

.channel-logo-item img {
  max-height: 42px;
  width: auto;
  object-fit: contain;
}

/* --- Section 3: Intro & Trust Section --- */
.intro-section {
  padding: 6rem 0;
  background: var(--bg-darker);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.trust-pills-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.trust-pill-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.trust-pill-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-gold);
  opacity: 0;
  transition: var(--transition);
}

.trust-pill-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-glow-gold);
  box-shadow: var(--shadow-md);
}

.trust-pill-card:hover::before {
  opacity: 1;
}

.trust-icon-box {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: rgba(245, 158, 11, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.trust-icon-box svg {
  width: 28px;
  height: 28px;
}

.trust-checkmarks-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding: 1.25rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
}

.trust-check-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-white);
}

.trust-check-item svg {
  width: 18px;
  height: 18px;
  color: var(--accent-emerald);
}

/* --- Section 3b: Region Cards (USA, UK, Canada) --- */
.region-section {
  padding: 6rem 0;
  background: var(--bg-dark);
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.region-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.region-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow-blue);
  box-shadow: var(--shadow-blue);
}

.region-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.region-flag {
  width: 52px;
  height: 38px;
  border-radius: var(--radius-xs);
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.region-title {
  font-size: 1.5rem;
  font-weight: 800;
}

.region-badge {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-emerald);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.region-sports-list {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.region-sports-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--text-light);
}

.region-sports-item svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

/* --- Section 4: Dual Marquee (Movies & Series) --- */
.marquee-section {
  padding: 5rem 0;
  background: var(--bg-darker);
  overflow: hidden;
}

.poster-card {
  width: 190px;
  height: 280px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  background: #111;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.poster-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.poster-card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.8);
  border: 1px solid var(--primary);
}

.poster-card:hover img {
  transform: scale(1.08);
}

/* --- Section 5: How It Works --- */
.steps-section {
  padding: 6rem 0;
  background: var(--bg-dark);
  position: relative;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
  position: relative;
}

.step-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow-gold);
  box-shadow: var(--shadow-gold);
}

.step-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
}

.step-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: rgba(245, 158, 11, 0.12);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.step-icon-wrap svg {
  width: 32px;
  height: 32px;
}

/* --- Sections 6 & 7: Pricing Section & Switcher --- */
.pricing-section {
  padding: 7rem 0;
  background: var(--bg-section-alt);
  position: relative;
  overflow: hidden;
}

/* Countdown Urgency Timer */
.countdown-box {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.5rem;
  background: rgba(244, 63, 94, 0.12);
  border: 1px solid rgba(244, 63, 94, 0.3);
  border-radius: var(--radius-full);
  margin-bottom: 2rem;
}

.countdown-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-rose);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.countdown-timer {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: monospace;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-white);
}

.timer-unit {
  background: #000;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-xs);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Pricing Toggle Switcher */
.pricing-switcher-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 3.5rem;
}

.pricing-switcher {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.4rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
}

.pricing-switch-btn {
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
}

.pricing-switch-btn.active {
  background: var(--gradient-gold);
  color: #000;
  box-shadow: var(--shadow-sm);
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.pricing-grid-multi {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

/* Pricing Tier Headers */
.pricing-tier-header {
  text-align: center;
  margin: 4rem auto 2rem;
  max-width: 760px;
}

.pricing-tier-header.first {
  margin-top: 1.5rem;
}

.pricing-tier-title {
  font-size: 1.65rem;
  font-weight: 800;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  color: var(--text-white);
}

.pricing-tier-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.pricing-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  background: var(--gradient-card-highlight);
  border: 2px solid var(--primary);
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.22);
  transform: scale(1.03);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.plan-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-white);
  margin-bottom: 1.25rem;
}

.plan-badge.badge-featured {
  background: var(--gradient-gold);
  color: #000;
}

.plan-badge.badge-free {
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-emerald);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.plan-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.plan-pricing-wrap {
  margin: 1.5rem 0 1rem;
}

.plan-old-price {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 0.25rem;
}

.plan-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.plan-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.plan-price {
  font-size: 3rem;
  font-weight: 900;
  color: var(--text-white);
  line-height: 1;
}

.plan-period {
  font-size: 1rem;
  color: var(--text-light);
}

.plan-monthly-calc {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-emerald);
  margin-top: 0.35rem;
}

.plan-features-list {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex-grow: 1;
}

.plan-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-white);
}

.plan-feature-item svg {
  width: 18px;
  height: 18px;
  color: var(--accent-emerald);
  flex-shrink: 0;
}

/* --- Section 8: Features Grid --- */
.features-section {
  padding: 6rem 0;
  background: var(--bg-dark);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-box {
  background: var(--gradient-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  transition: var(--transition);
}

.feature-box:hover {
  transform: translateY(-5px);
  border-color: var(--border-glow-blue);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(59, 130, 246, 0.12);
  color: var(--secondary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

.feature-media-box {
  grid-column: span 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  min-height: 280px;
}

.feature-media-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Section 9: Download Platform Row --- */
.download-section {
  padding: 5rem 0;
  background: var(--bg-darker);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.download-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: var(--transition);
}

.download-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}

.download-card svg {
  width: 44px;
  height: 44px;
  color: var(--primary);
  margin: 0 auto 1rem;
}

/* --- Section 10: Sport Showcase --- */
.sport-showcase {
  padding: 7rem 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.sport-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.sport-visual-wrap {
  position: relative;
}

.sport-hero-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
}

.sport-float-badge {
  position: absolute;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-glow-gold);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-md);
  animation: float-badge 4s ease-in-out infinite;
}

.sport-float-badge.top-badge {
  top: -20px;
  right: -20px;
}

.sport-float-badge.bottom-badge {
  bottom: -20px;
  left: -20px;
  animation-delay: 2s;
}

@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.sport-checklist {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0 2.5rem;
}

.sport-check-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 1.05rem;
  color: var(--text-white);
}

.sport-check-item svg {
  width: 20px;
  height: 20px;
  color: var(--accent-rose);
  flex-shrink: 0;
}

/* --- Section 10b: Devices Grid & Marquee --- */
.devices-section {
  padding: 6rem 0;
  background: var(--bg-darker);
}

.devices-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.device-item-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);
  display: block;
  text-decoration: none;
  color: inherit;
}

.device-item-card:hover {
  border-color: var(--secondary-light);
  transform: translateY(-4px);
}

.device-item-card svg {
  width: 36px;
  height: 36px;
  color: var(--secondary-light);
  margin: 0 auto 0.75rem;
}

.device-item-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-white);
}

/* --- Section 11: Compatible Apps Grid --- */
.apps-section {
  padding: 6rem 0;
  background: var(--bg-dark);
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.app-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  display: block;
  text-decoration: none;
  color: inherit;
}

.app-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-glow-gold);
  box-shadow: var(--shadow-gold);
}

.app-icon-img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-lg);
  margin: 0 auto 1.25rem;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.app-card-title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

/* --- Section 12: Comparison Table --- */
.comparison-section {
  padding: 6rem 0;
  background: var(--bg-darker);
}

.table-wrap {
  overflow-x: auto;
  margin-bottom: 3.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th, .comparison-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.comparison-table th {
  background: rgba(255, 255, 255, 0.03);
  font-size: 1.05rem;
  font-weight: 800;
}

.comparison-table th.brand-col {
  background: rgba(245, 158, 11, 0.12);
  color: var(--primary-light);
  border-bottom: 2px solid var(--primary);
}

.comparison-table td.brand-col {
  background: rgba(245, 158, 11, 0.03);
  font-weight: 700;
  color: var(--text-white);
}

.table-icon-yes {
  color: var(--accent-emerald);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.table-icon-no {
  color: var(--accent-rose);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* --- Section 13: Reviews (Option B Trustpilot-Style) --- */
.reviews-section {
  padding: 7rem 0;
  background: var(--bg-dark);
}

.trustpilot-aggregate-card {
  background: var(--gradient-card-highlight);
  border: 1px solid var(--border-glow-gold);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  box-shadow: var(--shadow-gold);
}

.aggregate-main {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.aggregate-score {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary-light);
  line-height: 1;
}

.aggregate-stars {
  display: flex;
  gap: 4px;
  color: #00b67a;
  font-size: 1.4rem;
}

.aggregate-subratings {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.subrating-item {
  text-align: center;
}

.subrating-label {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0.35rem;
}

.subrating-val {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-white);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 182, 122, 0.4);
}

.review-card-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2px solid var(--primary);
}

.review-author-name {
  font-weight: 700;
  font-size: 1rem;
}

.review-date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.review-stars-row {
  display: flex;
  gap: 3px;
  color: #00b67a;
  margin-bottom: 1rem;
}

.review-headline {
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-white);
}

/* --- Section 14: Guarantee Row --- */
.guarantee-row {
  padding: 4rem 0;
  background: var(--bg-darker);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.guarantee-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: rgba(16, 185, 129, 0.12);
  color: var(--accent-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.guarantee-title {
  font-size: 1rem;
  font-weight: 700;
}

.guarantee-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- Section 15: Why Choose Us (USPs) --- */
.usps-section {
  padding: 6rem 0;
  background: var(--bg-dark);
}

.usps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.usp-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.25rem 1.75rem;
  transition: var(--transition);
}

.usp-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

/* --- Section 16: FAQ Accordion --- */
.faq-section {
  padding: 6rem 0;
  background: var(--bg-darker);
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--border-glow-gold);
}

.faq-question {
  width: 100%;
  padding: 1.35rem 1.75rem;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  color: var(--text-white);
  font-size: 1.1rem;
  font-weight: 700;
}

.faq-icon {
  width: 24px;
  height: 24px;
  color: var(--primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 1.75rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.7;
}

/* Green WhatsApp CTA widget right below FAQ */
.faq-whatsapp-box {
  max-width: 860px;
  margin: 3.5rem auto 0;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(5, 150, 105, 0.18) 100%);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

/* --- Section 17: Call To Action --- */
.cta-section {
  padding: 7rem 0;
  background: radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.15) 0%, rgba(8, 12, 22, 0.98) 75%);
  text-align: center;
  position: relative;
}

.cta-box {
  max-width: 800px;
  margin: 0 auto;
}

/* --- Section 18: Payment Strip --- */
.payment-strip {
  padding: 2.5rem 0;
  background: var(--bg-darker);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  text-align: center;
}

.payment-strip img {
  max-height: 38px;
  width: auto;
  margin: 0 auto;
  filter: brightness(0.9) contrast(1.1);
}

/* --- Section 19: Blog Grid (Homepage & Blog Page) --- */
.blog-section {
  padding: 6rem 0;
  background: var(--bg-dark);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-grid-4 {
  grid-template-columns: repeat(2, 1fr);
}

.blog-card {
  background: var(--gradient-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 {
  transform: translateY(-6px);
  border-color: var(--border-glow-gold);
  box-shadow: var(--shadow-md);
}

.blog-card-thumb {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-thumb img {
  transform: scale(1.06);
}

.blog-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-tag {
  align-self: flex-start;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(245, 158, 11, 0.12);
  color: var(--primary-light);
  margin-bottom: 1rem;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.blog-excerpt {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.blog-meta-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-subtle);
  padding-top: 1rem;
}

/* --- Section 20: Footer --- */
.site-footer {
  background: #04060a;
  border-top: 1px solid var(--border-subtle);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  margin: 1.25rem 0 1.5rem;
  max-width: 320px;
}

.footer-col-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-white);
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links-list a {
  color: var(--text-light);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-links-list a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 0.85rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--text-muted);
}

.footer-social a:hover {
  border-color: var(--primary);
  background: rgba(245, 158, 11, 0.12);
  color: var(--primary);
  transform: translateY(-3px);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* --- Floating WhatsApp Button --- */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 62px;
  height: 62px;
  background: #25d366;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 1000;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
  color: #fff;
}

.floating-whatsapp svg {
  width: 34px;
  height: 34px;
}

.floating-whatsapp::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: var(--radius-full);
  border: 2px solid #25d366;
  animation: pulse-ring 2s infinite;
  pointer-events: none;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 0; }
  100% { transform: scale(0.95); opacity: 0; }
}

/* --- Article / Single Blog Page Layout --- */
.article-header {
  padding: 140px 0 3rem;
  background: var(--gradient-hero);
  text-align: center;
}

.article-body-wrap {
  padding: 4rem 0 6rem;
  max-width: 840px;
  margin: 0 auto;
}

.article-body-wrap h2 {
  text-align: left;
  margin: 2.5rem 0 1rem;
}

.article-body-wrap h3 {
  margin: 1.75rem 0 0.75rem;
}

.article-body-wrap p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.article-toc {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  margin-bottom: 3rem;
}

.article-toc-title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--primary-light);
}

.article-toc ol {
  list-style: decimal;
  margin-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.article-toc a {
  color: var(--text-light);
  font-weight: 600;
}

.article-toc a:hover {
  color: var(--primary);
}

.key-takeaway-box {
  background: rgba(245, 158, 11, 0.08);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}

.process-guide-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 2rem 0;
}

.process-step-item {
  display: flex;
  gap: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.process-step-num {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--gradient-gold);
  color: #000;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* --- Legal Pages Content Layout --- */
.legal-header {
  padding: 140px 0 3rem;
  background: var(--bg-darker);
  border-bottom: 1px solid var(--border-subtle);
  text-align: center;
}

.legal-content-wrap {
  padding: 4rem 0 6rem;
  max-width: 900px;
  margin: 0 auto;
}

.legal-content-wrap h2 {
  text-align: left;
  font-size: 1.6rem;
  margin: 2rem 0 1rem;
}

.legal-content-wrap p, .legal-content-wrap ul {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.75;
}

.legal-content-wrap ul {
  list-style: disc;
  margin-left: 1.5rem;
}

/* --- 404 Error Page Layout --- */
.error-page-wrap {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 1.5rem 5rem;
}

.error-404-number {
  font-size: clamp(6rem, 15vw, 11rem);
  font-weight: 900;
  line-height: 1;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  .pricing-grid-multi {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sport-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .devices-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .download-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .guarantee-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .usps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .region-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions .btn {
    display: none;
  }
  .hamburger-btn {
    display: block;
  }
  .pricing-grid-multi {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  .trust-pills-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .apps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .devices-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .download-grid {
    grid-template-columns: 1fr;
  }
  .guarantee-grid {
    grid-template-columns: 1fr;
  }
  .usps-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .trustpilot-aggregate-card {
    flex-direction: column;
    text-align: center;
  }
  .aggregate-main {
    flex-direction: column;
  }
  .aggregate-subratings {
    justify-content: center;
  }
  .faq-whatsapp-box {
    flex-direction: column;
    text-align: center;
  }
  .floating-whatsapp {
    bottom: 18px;
    right: 18px;
    width: 54px;
    height: 54px;
  }
}
