/* === css/variables.css === */
/* ============================================
   IPTV Premium 24 - Design System Variables
   Modern Premium Light Theme
   ============================================ */

:root {
  /* ─────────────────────────────────────────
     Color Palette
     ───────────────────────────────────────── */

  --color-black: #1a1a2e;
  --color-white: #ffffff;

  /* Background Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --bg-card: #ffffff;
  --bg-card-hover: #f8fafc;
  --bg-glass: rgba(255, 255, 255, 0.95);
  --bg-glass-hover: rgba(255, 255, 255, 0.98);
  --bg-hero: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --bg-hero-overlay: rgba(102, 126, 234, 0.03);
  --bg-dark: #0f172a;
  --bg-dark-secondary: #1e293b;

  /* Accent Colors */
  --accent-primary: #4f46e5;
  --accent-secondary: #7c3aed;
  --accent-tertiary: #06b6d4;
  --accent-success: #10b981;
  --accent-warning: #f59e0b;
  --accent-gold: #eab308;
  --accent-danger: #ef4444;

  /* Gradient Definitions */
  --gradient-primary: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  --gradient-secondary: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
  --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #eab308 50%, #fbbf24 100%);
  --gradient-success: linear-gradient(135deg, #059669 0%, #10b981 100%);
  --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-light: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  --gradient-card: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  --gradient-mesh: radial-gradient(at 40% 20%, rgba(79, 70, 229, 0.08) 0px, transparent 50%),
                   radial-gradient(at 80% 0%, rgba(124, 58, 237, 0.06) 0px, transparent 50%),
                   radial-gradient(at 0% 50%, rgba(6, 182, 212, 0.06) 0px, transparent 50%),
                   radial-gradient(at 80% 50%, rgba(79, 70, 229, 0.04) 0px, transparent 50%),
                   radial-gradient(at 0% 100%, rgba(124, 58, 237, 0.06) 0px, transparent 50%);

  /* Text Colors */
  --text-primary: #1e293b;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-accent: #4f46e5;
  --text-light: #ffffff;
  --text-on-primary: #ffffff;

  /* Border Colors */
  --border-primary: #e2e8f0;
  --border-secondary: #cbd5e1;
  --border-accent: rgba(79, 70, 229, 0.3);
  --border-glow: rgba(79, 70, 229, 0.5);

  /* ─────────────────────────────────────────
     Typography
     ───────────────────────────────────────── */

  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --text-xs: clamp(0.8125rem, 0.75rem + 0.3vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 0.9375rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.0625rem);
  --text-lg: clamp(1.125rem, 1.05rem + 0.35vw, 1.1875rem);
  --text-xl: clamp(1.25rem, 1.15rem + 0.5vw, 1.375rem);
  --text-2xl: clamp(1.5rem, 1.35rem + 0.75vw, 1.75rem);
  --text-3xl: clamp(1.875rem, 1.65rem + 1.1vw, 2.25rem);
  --text-4xl: clamp(2.25rem, 1.95rem + 1.5vw, 2.75rem);
  --text-5xl: clamp(2.75rem, 2.25rem + 2.5vw, 3.75rem);
  --text-6xl: clamp(3.25rem, 2.75rem + 2.5vw, 4.5rem);

  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;

  --leading-none: 1;
  --leading-tight: 1.25;
  --leading-snug: 1.4;
  --leading-normal: 1.6;
  --leading-relaxed: 1.75;
  --leading-loose: 2;

  --tracking-tighter: -0.05em;
  --tracking-tight: -0.025em;
  --tracking-normal: 0;
  --tracking-wide: 0.025em;
  --tracking-wider: 0.05em;

  /* ─────────────────────────────────────────
     Spacing Scale
     ───────────────────────────────────────── */

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* ─────────────────────────────────────────
     Layout
     ───────────────────────────────────────── */

  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1200px;
  --container-2xl: 1400px;

  --header-height: 80px;
  --section-padding: clamp(4rem, 8vw, 7rem);

  /* ─────────────────────────────────────────
     Border Radius
     ───────────────────────────────────────── */

  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-3xl: 2rem;
  --radius-full: 9999px;

  /* ─────────────────────────────────────────
     Shadows
     ───────────────────────────────────────── */

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 0 30px rgba(79, 70, 229, 0.2);
  --shadow-glow-lg: 0 0 60px rgba(79, 70, 229, 0.3);
  --shadow-glow-gold: 0 0 30px rgba(234, 179, 8, 0.3);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-card-hover: 0 8px 30px rgba(79, 70, 229, 0.15);

  /* ─────────────────────────────────────────
     Transitions
     ───────────────────────────────────────── */

  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
  --transition-slower: 500ms ease;

  --ease-in-out-cubic: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out-cubic: cubic-bezier(0.33, 1, 0.68, 1);
  --ease-in-cubic: cubic-bezier(0.32, 0, 0.67, 0);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* ─────────────────────────────────────────
     Z-Index Scale
     ───────────────────────────────────────── */

  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-tooltip: 600;
}

@media (prefers-contrast: high) {
  :root {
    --text-primary: #0f172a;
    --text-secondary: #334155;
    --border-primary: #94a3b8;
  }
}


/* === css/base.css === */
/* ============================================
   IPTV Premium 24 - Base Styles
   Reset, Typography, Global Styles
   ============================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--font-normal);
  line-height: var(--leading-normal);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

ul, ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}

button {
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

::selection {
  background-color: rgba(79, 70, 229, 0.15);
  color: var(--accent-primary);
}

/* ─────────────────────────────────────────
   Background Mesh
   ───────────────────────────────────────── */

.bg-mesh {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-mesh);
  pointer-events: none;
  z-index: -1;
}

/* ─────────────────────────────────────────
   Typography
   ───────────────────────────────────────── */

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(79, 70, 229, 0.08);
  border: 1px solid rgba(79, 70, 229, 0.15);
  border-radius: var(--radius-full);
  color: var(--accent-primary);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  letter-spacing: var(--tracking-wide);
  margin-bottom: var(--space-6);
}

.section-title {
  font-size: var(--text-4xl);
  font-weight: var(--font-extrabold);
  line-height: var(--leading-tight);
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.section-title .highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  max-width: 700px;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ─────────────────────────────────────────
   Utility Classes
   ───────────────────────────────────────── */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-center {
  text-align: center;
}

.text-muted {
  color: var(--text-muted);
}


/* === css/components.css === */
/* ============================================
   IPTV Premium 24 - Components
   Reusable UI Components
   ============================================ */

/* ─────────────────────────────────────────
   Buttons
   ───────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-8);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  line-height: var(--leading-snug);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-on-primary);
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--accent-primary);
  border-color: var(--accent-primary);
}

.btn-outline-dark:hover {
  background: var(--accent-primary);
  color: var(--text-on-primary);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gradient-gold);
  color: #1a1a2e;
  font-weight: var(--font-bold);
  box-shadow: 0 4px 15px rgba(234, 179, 8, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(234, 179, 8, 0.4);
}

.btn-success {
  background: var(--gradient-success);
  color: var(--text-on-primary);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.btn-lg {
  padding: var(--space-4) var(--space-10);
  font-size: var(--text-lg);
  border-radius: var(--radius-xl);
}

.btn-sm {
  padding: var(--space-2) var(--space-5);
  font-size: var(--text-sm);
}

.btn-block {
  width: 100%;
}

.btn svg {
  width: 18px;
  height: 18px;
}

/* ─────────────────────────────────────────
   Cards
   ───────────────────────────────────────── */

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: all var(--transition-base);
}

.card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  background: rgba(79, 70, 229, 0.08);
  color: var(--accent-primary);
}

.card-icon svg {
  width: 28px;
  height: 28px;
}

.card-title {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.card-text {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

/* ─────────────────────────────────────────
   Pricing Cards
   ───────────────────────────────────────── */

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  text-align: center;
  position: relative;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.pricing-card.featured {
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-glow);
  transform: scale(1.03);
  z-index: 2;
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-6px);
  box-shadow: var(--shadow-glow-lg);
}

.pricing-card.gold {
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-glow-gold);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: var(--space-1) var(--space-5);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--font-bold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  white-space: nowrap;
}

.pricing-badge-popular {
  background: var(--gradient-primary);
  color: var(--text-on-primary);
}

.pricing-badge-best {
  background: var(--gradient-gold);
  color: #1a1a2e;
}

.pricing-duration {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.pricing-connections {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-6);
}

.pricing-price {
  margin-bottom: var(--space-6);
}

.pricing-price .currency {
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  color: var(--accent-primary);
  vertical-align: top;
}

.pricing-price .amount {
  font-size: var(--text-5xl);
  font-weight: var(--font-extrabold);
  color: var(--accent-primary);
  line-height: 1;
}

.pricing-price .period {
  display: block;
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-top: var(--space-1);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-8);
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  text-align: left;
}

.pricing-features li svg {
  width: 18px;
  height: 18px;
  color: var(--accent-success);
  flex-shrink: 0;
}

.pricing-card .btn {
  margin-top: auto;
}

/* ─────────────────────────────────────────
   Badges
   ───────────────────────────────────────── */

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
}

.badge-primary {
  background: rgba(79, 70, 229, 0.1);
  color: var(--accent-primary);
}

.badge-success {
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent-success);
}

.badge-warning {
  background: rgba(245, 158, 11, 0.1);
  color: var(--accent-warning);
}

/* ─────────────────────────────────────────
   FAQ Accordion
   ───────────────────────────────────────── */

.faq-item {
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-3);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item.active {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  background: var(--bg-card);
  cursor: pointer;
  text-align: left;
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.faq-question:hover {
  color: var(--accent-primary);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow) var(--ease-out-cubic);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 var(--space-6) var(--space-6);
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

/* ─────────────────────────────────────────
   Stat Badge
   ───────────────────────────────────────── */

.stat-badge {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-5);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  color: var(--text-light);
}

.stat-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
}

.stat-badge-icon svg {
  width: 20px;
  height: 20px;
}

.stat-badge-value {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
}

.stat-badge-label {
  font-size: var(--text-xs);
  opacity: 0.8;
}

/* ─────────────────────────────────────────
   Step Cards
   ───────────────────────────────────────── */

.step-card {
  text-align: center;
  padding: var(--space-8);
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  font-size: var(--text-2xl);
  font-weight: var(--font-extrabold);
  background: var(--gradient-primary);
  color: var(--text-on-primary);
}

.step-title {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.step-text {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

/* ─────────────────────────────────────────
   Comparison Table
   ───────────────────────────────────────── */

.comparison-table {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-primary);
  background: var(--bg-card);
}

.comparison-table thead th {
  padding: var(--space-5) var(--space-6);
  font-weight: var(--font-bold);
  font-size: var(--text-base);
  text-align: center;
  background: var(--bg-tertiary);
  color: var(--text-primary);
}

.comparison-table thead th:first-child {
  text-align: left;
}

.comparison-table thead th.us-col {
  background: var(--accent-primary);
  color: var(--text-on-primary);
}

.comparison-table tbody td {
  padding: var(--space-4) var(--space-6);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  border-top: 1px solid var(--border-primary);
  text-align: center;
}

.comparison-table tbody td:first-child {
  text-align: left;
  font-weight: var(--font-medium);
  color: var(--text-primary);
}

.comparison-table .check {
  color: var(--accent-success);
}

.comparison-table .cross {
  color: var(--accent-danger);
}

/* ─────────────────────────────────────────
   Testimonial Cards
   ───────────────────────────────────────── */

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.testimonial-stars {
  display: flex;
  gap: var(--space-1);
  margin-bottom: var(--space-4);
  color: var(--accent-warning);
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.testimonial-text {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-5);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-on-primary);
  font-weight: var(--font-bold);
  font-size: var(--text-sm);
}

.testimonial-name {
  font-weight: var(--font-semibold);
  color: var(--text-primary);
  font-size: var(--text-sm);
}

.testimonial-role {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* ─────────────────────────────────────────
   Feature List
   ───────────────────────────────────────── */

.feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-4) 0;
}

.feature-list-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(79, 70, 229, 0.08);
  color: var(--accent-primary);
}

.feature-list-icon svg {
  width: 22px;
  height: 22px;
}

.feature-list-title {
  font-weight: var(--font-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-1);
}

.feature-list-text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

/* ─────────────────────────────────────────
   Device / App Cards
   ───────────────────────────────────────── */

.device-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-6);
  background: var(--bg-card);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: all var(--transition-base);
}

.device-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.device-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(79, 70, 229, 0.08);
  color: var(--accent-primary);
}

.device-card-icon svg {
  width: 28px;
  height: 28px;
}

.device-card-name {
  font-weight: var(--font-semibold);
  color: var(--text-primary);
  font-size: var(--text-sm);
}

/* ─────────────────────────────────────────
   VOD / Content Cards
   ───────────────────────────────────────── */

.vod-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-dark);
  aspect-ratio: 2/3;
  position: relative;
  transition: all var(--transition-base);
}

.vod-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-2xl);
}

.vod-card-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vod-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-4);
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: var(--text-light);
}

.vod-card-title {
  font-weight: var(--font-semibold);
  font-size: var(--text-sm);
}

.vod-card-meta {
  font-size: var(--text-xs);
  opacity: 0.7;
}

/* ─────────────────────────────────────────
   Sport / Match Cards
   ───────────────────────────────────────── */

.match-card {
  background: var(--bg-card);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  transition: all var(--transition-base);
}

.match-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.match-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  flex: 1;
  text-align: center;
}

.match-team-logo {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
}

.match-team-name {
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
}

.match-vs {
  font-weight: var(--font-bold);
  color: var(--text-muted);
  font-size: var(--text-sm);
}

.match-info {
  text-align: center;
}

.match-league {
  font-size: var(--text-xs);
  color: var(--accent-primary);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-1);
}

.match-time {
  font-size: var(--text-xs);
  color: var(--text-muted);
}


/* === css/layout.css === */
/* ============================================
   IPTV Premium 24 - Layout
   Header, Footer, Navigation, Container, Grid
   ============================================ */

/* ─────────────────────────────────────────
   Container
   ───────────────────────────────────────── */

.container {
  width: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container-lg {
  max-width: var(--container-2xl);
}

.section {
  padding: var(--section-padding) 0;
}

.section-alt {
  background: var(--bg-secondary);
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.section-dark .section-title {
  color: var(--text-light);
}

.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

/* ─────────────────────────────────────────
   Grid System
   ───────────────────────────────────────── */

.grid {
  display: grid;
  gap: var(--space-6);
}

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

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.grid-6 {
  grid-template-columns: repeat(6, 1fr);
}

/* ─────────────────────────────────────────
   Header
   ───────────────────────────────────────── */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
  height: var(--header-height);
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-base);
}

.header.scrolled {
  background: rgba(15, 23, 42, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--text-light);
  flex-shrink: 0;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 20px;
  height: 20px;
  color: var(--text-light);
}

.logo-text {
  font-size: var(--text-lg);
  font-weight: var(--font-extrabold);
  letter-spacing: var(--tracking-tight);
  text-transform: uppercase;
}

/* Desktop Navigation */
.nav-main {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.nav-link {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.08);
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.header-cta .btn {
  padding: var(--space-2) var(--space-6);
  font-size: var(--text-sm);
}

/* Nav Actions — used by blog/article pages (article_standalone template) */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

/* Cart Button — used by blog/article pages */
.cart-btn {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.cart-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

/* Menu Toggle Button — used by blog/article pages */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  border-radius: var(--radius-md);
  color: var(--text-light);
  cursor: pointer;
}

/* Mobile Menu Overlay — used by blog/article pages */
.mobile-menu {
  display: none;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  cursor: pointer;
}

.mobile-toggle svg {
  width: 24px;
  height: 24px;
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(20px);
  z-index: var(--z-fixed);
  padding: var(--space-6);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--transition-slow) var(--ease-out-cubic);
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav-link {
  display: block;
  padding: var(--space-4) var(--space-4);
  font-size: var(--text-lg);
  font-weight: var(--font-medium);
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-fast);
}

.mobile-nav-link:hover {
  color: var(--text-light);
  padding-left: var(--space-6);
}

.mobile-nav .btn {
  margin-top: var(--space-6);
  width: 100%;
}

/* ─────────────────────────────────────────
   Footer
   ───────────────────────────────────────── */

.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-16) 0 var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}

.footer-brand {
  max-width: 320px;
}

.footer-brand .logo {
  margin-bottom: var(--space-5);
}

.footer-brand-text {
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--space-6);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition-fast);
}

.footer-social-link:hover {
  background: var(--accent-primary);
  color: var(--text-light);
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
}

.footer-col-title {
  font-size: var(--text-base);
  font-weight: var(--font-bold);
  color: var(--text-light);
  margin-bottom: var(--space-5);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-link {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition-fast);
}

.footer-link:hover {
  color: var(--text-light);
  padding-left: var(--space-2);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--accent-primary);
}

/* Footer Bottom */
.footer-bottom {
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-copy {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.5);
}

.footer-payment {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.footer-payment-icon {
  padding: var(--space-2) var(--space-3);
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  color: rgba(255, 255, 255, 0.7);
}

.footer-legal {
  display: flex;
  gap: var(--space-6);
}

.footer-legal-link {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast);
}

.footer-legal-link:hover {
  color: var(--text-light);
}

/* ─────────────────────────────────────────
   Responsive
   ───────────────────────────────────────── */

@media (max-width: 1024px) {
  .nav-main,
  .header-cta {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  /* blog/article pages: show hamburger and mobile overlay */
  .menu-toggle {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .mobile-nav {
    display: block;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-6 {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 var(--space-4);
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .grid-5,
  .grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }
}


/* === css/pages/home.css === */
/* ============================================
   IPTV Premium 24 - Home Page Styles
   Hero, Pricing, Sections specifiques accueil
   ============================================ */

/* ─────────────────────────────────────────
   Hero Section
   ───────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-height) + var(--space-16)) var(--space-6) var(--space-16);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: -2;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center bottom, rgba(0, 0, 0, 0.3) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-5);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  color: var(--text-light);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  margin-bottom: var(--space-8);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--accent-success);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-size: var(--text-6xl);
  font-weight: var(--font-extrabold);
  color: var(--text-light);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-6);
  letter-spacing: var(--tracking-tight);
}

.hero-subtitle {
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-4);
}

.hero-description {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.7);
  line-height: var(--leading-relaxed);
  max-width: 650px;
  margin: 0 auto var(--space-10);
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────
   Why Choose Section
   ───────────────────────────────────────── */

.why-section .card {
  text-align: center;
}

.why-section .card-icon {
  margin: 0 auto var(--space-5);
}

/* ─────────────────────────────────────────
   Pricing Section
   ───────────────────────────────────────── */

.pricing-section {
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  align-items: start;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-10);
}

.pricing-toggle-label {
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--text-secondary);
  cursor: pointer;
}

.pricing-toggle-label.active {
  color: var(--accent-primary);
  font-weight: var(--font-bold);
}

.pricing-toggle-switch {
  width: 52px;
  height: 28px;
  background: var(--bg-tertiary);
  border: 2px solid var(--border-primary);
  border-radius: var(--radius-full);
  position: relative;
  cursor: pointer;
  transition: all var(--transition-base);
}

.pricing-toggle-switch::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: var(--accent-primary);
  border-radius: var(--radius-full);
  transition: transform var(--transition-base);
}

.pricing-toggle-switch.active::after {
  transform: translateX(24px);
}

/* ─────────────────────────────────────────
   Engagements Section
   ───────────────────────────────────────── */

.engagements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

/* ─────────────────────────────────────────
   Activation Steps
   ───────────────────────────────────────── */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: var(--gradient-primary);
  opacity: 0.3;
  z-index: 0;
}

.step-card {
  position: relative;
  z-index: 1;
}

/* ─────────────────────────────────────────
   Premium Features (3 cols)
   ───────────────────────────────────────── */

.premium-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.premium-card {
  background: var(--bg-card);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  transition: all var(--transition-base);
}

.premium-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.premium-card-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-5);
  border-radius: var(--radius-2xl);
  background: rgba(79, 70, 229, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
}

.premium-card-icon svg {
  width: 36px;
  height: 36px;
}

.premium-card-title {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.premium-card-text {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

/* ─────────────────────────────────────────
   Comparison Section
   ───────────────────────────────────────── */

.comparison-section {
  overflow-x: auto;
}

/* ─────────────────────────────────────────
   Football Section
   ───────────────────────────────────────── */

.football-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

/* ─────────────────────────────────────────
   VOD Section
   ───────────────────────────────────────── */

.vod-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-5);
}

/* ─────────────────────────────────────────
   Compatibility Section
   ───────────────────────────────────────── */

.compat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-5);
}

/* ─────────────────────────────────────────
   Testimonials Section
   ───────────────────────────────────────── */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.testimonials-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  margin-bottom: var(--space-10);
  flex-wrap: wrap;
}

.testimonials-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

.testimonials-rating-value {
  font-size: var(--text-4xl);
  font-weight: var(--font-extrabold);
  color: var(--text-primary);
}

.testimonials-rating-stars {
  display: flex;
  gap: var(--space-1);
  color: var(--accent-warning);
}

.testimonials-rating-stars svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.testimonials-rating-count {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* ─────────────────────────────────────────
   FAQ Section
   ───────────────────────────────────────── */

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

/* ─────────────────────────────────────────
   CTA Section
   ───────────────────────────────────────── */

.cta-section {
  text-align: center;
  background: var(--gradient-primary);
  padding: var(--space-16) var(--space-6);
  border-radius: var(--radius-2xl);
  margin: 0 var(--space-6);
  color: var(--text-light);
}

.cta-title {
  font-size: var(--text-3xl);
  font-weight: var(--font-extrabold);
  margin-bottom: var(--space-4);
}

.cta-text {
  font-size: var(--text-lg);
  opacity: 0.85;
  margin-bottom: var(--space-8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────
   Scroll Reveal Animation
   ───────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out-cubic), transform 0.6s var(--ease-out-cubic);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────
   Responsive - Home
   ───────────────────────────────────────── */

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-6px);
  }

  .steps-grid::before {
    display: none;
  }

  .premium-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .football-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vod-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .compat-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .engagements-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + var(--space-10));
    padding-bottom: var(--space-10);
  }

  .hero-title {
    font-size: var(--text-4xl);
  }

  .hero-stats {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .premium-grid {
    grid-template-columns: 1fr;
  }

  .football-grid {
    grid-template-columns: 1fr;
  }

  .vod-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .compat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .cta-section {
    margin: 0;
    border-radius: 0;
  }
}
