/* ============================================
   IPTV Canada — Cinematic Design System
   iptvscanada.com | v2.0
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Palette — Cinematic Rose */
  --brand: #e11d48;
  --brand-hover: #f43f5e;
  --brand-glow: rgba(225, 29, 72, 0.4);
  --brand-subtle: rgba(225, 29, 72, 0.1);
  --brand-deep: rgba(225, 29, 72, 0.06);

  /* Accent — Cyan */
  --accent: #5de6ff;
  --accent-subtle: rgba(93, 230, 255, 0.15);

  /* Glow & Ambient */
  --glow-soft: 0 0 60px rgba(225, 29, 72, 0.15);
  --glow-medium: 0 0 40px rgba(225, 29, 72, 0.25);
  --glow-intense: 0 0 80px rgba(225, 29, 72, 0.35), 0 0 120px rgba(225, 29, 72, 0.15);

  /* Backgrounds — Cinematic void palette */
  --bg-deepest: #131314;
  --bg-primary: #0e0e0f;
  --bg-secondary: #1c1b1c;
  --bg-tertiary: #201f20;
  --bg-elevated: #2a2a2b;

  /* Text */
  --text-primary: #e5e2e3;
  --text-secondary: #e5bdbe;
  --text-muted: #9aa3b4;
  --text-accent: var(--brand);

  /* Borders & Glass */
  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-medium: rgba(255, 255, 255, 0.12);
  --border-accent: rgba(225, 29, 72, 0.3);
  --glass-bg: rgba(28, 27, 28, 0.4);
  --glass-blur: blur(24px);

  /* Functional */
  --success: #22c55e;
  --danger: #ef4444;
  --info: #3b82f6;
  --warning: #f59e0b;

  /* Typography — Inter only */
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Inter', system-ui, -apple-system, sans-serif;

  /* Type Scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Radius — More rounded for cinematic feel */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-fast: 0.15s ease;
  --ease-base: 0.25s ease;
  --ease-slow: 0.4s cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 30px var(--brand-glow);
  --shadow-card-hover: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(225, 29, 72, 0.08);

  /* Layout */
  --container-max: 1280px;
  --header-height: 72px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--text-primary);
  background-color: #131314;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  image-rendering: auto;
}

a {
  color: var(--brand);
  text-decoration: none;
  transition: color var(--ease-fast);
}

a:hover {
  color: var(--brand-hover);
}

p a,
.faq-answer a,
.section-subtitle a {
  text-decoration: underline;
  text-decoration-color: rgba(196, 30, 42, 0.4);
  text-underline-offset: 3px;
  transition: color var(--ease-fast), text-decoration-color var(--ease-fast);
}

p a:hover,
.faq-answer a:hover,
.section-subtitle a:hover {
  text-decoration-color: var(--brand-hover);
}

ul, ol {
  list-style: none;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

h1 { font-size: var(--text-5xl); font-weight: 900; }
h2 { font-size: var(--text-4xl); font-weight: 800; }
h3 { font-size: var(--text-2xl); font-weight: 700; }
h4 { font-size: var(--text-xl); font-weight: 700; }
h5 { font-size: var(--text-lg); font-weight: 600; }
h6 { font-size: var(--text-base); font-weight: 600; }

p {
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

.section-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brand);
  margin-bottom: var(--space-md);
  padding: 6px 16px;
  background: var(--brand-deep);
  border: 1px solid rgba(196, 30, 42, 0.2);
  border-radius: var(--radius-full);
}

.section-title {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-4xl));
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
}

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

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

.section {
  padding: var(--space-4xl) 0;
  position: relative;
}

.section--alt {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section--alt::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 240px;
  background: radial-gradient(ellipse, rgba(196, 30, 42, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(19, 19, 20, 0.75);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background var(--ease-base), box-shadow var(--ease-base), border-color var(--ease-base);
}

.header.scrolled {
  background: rgba(19, 19, 20, 0.95);
  backdrop-filter: blur(32px) saturate(2);
  -webkit-backdrop-filter: blur(32px) saturate(2);
  box-shadow: 0 1px 0 var(--border-subtle), 0 4px 30px rgba(0, 0, 0, 0.5);
  border-bottom-color: rgba(255, 255, 255, 0.07);
}

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

.header__logo {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.04em;
  color: var(--brand);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.header__logo img {
  height: 52px;
  width: auto;
}

.header__logo span {
  color: var(--text-primary);
  font-style: italic;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.header__nav a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--ease-fast);
  position: relative;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: width var(--ease-base);
}

.header__nav a:hover,
.header__nav a.active {
  color: var(--text-primary);
}

.header__nav a:hover::after,
.header__nav a.active::after {
  width: 100%;
}

.header__cta {
  margin-left: var(--space-md);
}

.header__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  position: relative;
  z-index: 1010;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  margin: 6px 0;
  transition: all var(--ease-base);
  border-radius: 2px;
}

.header__toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.header__toggle.open span:nth-child(2) {
  opacity: 0;
}

.header__toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 12px 28px;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--ease-base);
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(225, 29, 72, 0.3);
  font-weight: 700;
  text-shadow: none;
  position: relative;
  overflow: hidden;
}

.header__cta .btn--primary {
  color: #ffffff !important;
}

.header__cta .btn--sm {
  color: #ffffff;
}

.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.08) 50%, transparent 100%);
  opacity: 0;
  transition: opacity var(--ease-base);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #f43f5e 0%, #e11d48 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(225, 29, 72, 0.4), 0 0 60px rgba(225, 29, 72, 0.15);
}

.btn--primary:hover::before {
  opacity: 1;
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-medium);
}

.btn--outline:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-subtle);
}

.btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 8px 16px;
}

.btn--ghost:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.btn--lg {
  font-size: var(--text-base);
  padding: 16px 36px;
  border-radius: var(--radius-lg);
}

.btn--sm {
  font-size: var(--text-xs);
  padding: 8px 16px;
}

.btn--block {
  width: 100%;
}

.btn:disabled,
.btn.loading {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

.btn .spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

/* ---------- Cards ---------- */
.card {
  background: linear-gradient(145deg, #1c1b1c, rgba(28, 27, 28, 0.6));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(225, 29, 72, 0.25) 50%, transparent 100%);
  opacity: 0;
  transition: opacity var(--ease-base);
}

.card:hover {
  border-color: rgba(225, 29, 72, 0.15);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.card:hover::before {
  opacity: 1;
}

.glass-card {
  background: rgba(28, 27, 28, 0.5);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10, 12, 16, 0.97) 0%, rgba(10, 12, 16, 0.85) 45%, rgba(10, 12, 16, 0.5) 100%),
    linear-gradient(to top, rgba(10, 12, 16, 1) 0%, transparent 35%);
}

.hero__bg::before {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 20%;
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(196, 30, 42, 0.1) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: var(--space-4xl) 0;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--brand-subtle);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--brand);
  margin-bottom: var(--space-lg);
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: var(--space-lg);
}

.hero__title span {
  color: var(--brand);
}

.hero__desc {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
}

.hero__trust {
  display: flex;
  gap: var(--space-xl);
  font-size: var(--text-sm);
  color: var(--text-muted);
  flex-wrap: wrap;
}

.hero__trust span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  font-weight: 500;
}

.text-gradient {
  background: linear-gradient(135deg, var(--brand) 0%, #ff6b6b 50%, var(--brand) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
  0% { background-position: 0% center; }
  50% { background-position: 100% center; }
  100% { background-position: 0% center; }
}

.hero__stats {
  display: flex;
  gap: var(--space-2xl);
  margin-top: var(--space-3xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid var(--border-subtle);
}

.hero__stat-value {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--brand);
  text-shadow: 0 0 20px rgba(196, 30, 42, 0.3);
}

.hero__stat-label {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-top: var(--space-xs);
}

/* ---------- Features Grid ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.feature-card {
  text-align: center;
  padding: var(--space-2xl) var(--space-xl);
}

.feature-card__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(225, 29, 72, 0.12) 0%, rgba(225, 29, 72, 0.04) 100%);
  border: 1px solid rgba(225, 29, 72, 0.2);
  border-radius: var(--radius-lg);
  margin: 0 auto var(--space-lg);
  font-size: 28px;
  box-shadow: 0 0 30px rgba(225, 29, 72, 0.08);
  transition: all var(--ease-base);
}

.feature-card:hover .feature-card__icon {
  box-shadow: 0 0 40px rgba(225, 29, 72, 0.2);
  transform: scale(1.1);
  border-color: rgba(225, 29, 72, 0.4);
}

.feature-card__title {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.feature-card__desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---------- Pricing Section ---------- */
.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

.pricing-tab {
  padding: 10px 20px;
  font-size: var(--text-sm);
  font-weight: 500;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--ease-fast);
  font-family: var(--font-body);
}

.pricing-tab:hover {
  border-color: var(--border-medium);
  color: var(--text-primary);
}

.pricing-tab.active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-loading {
  grid-column: 1 / -1;
}

.pricing-card {
  background: #1c1b1c;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-xl);
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  border-color: rgba(225, 29, 72, 0.15);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(225, 29, 72, 0.06);
}

.pricing-card--popular {
  border-color: var(--brand);
  box-shadow: 0 0 40px rgba(225, 29, 72, 0.12), 0 0 80px rgba(225, 29, 72, 0.05);
  background: linear-gradient(160deg, rgba(225, 29, 72, 0.08) 0%, #1c1b1c 40%);
}

.pricing-card--popular:hover {
  border-color: var(--brand-hover);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.pricing-card__duration {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.pricing-card__note {
  font-size: var(--text-xs);
  color: var(--danger);
  font-weight: 500;
  margin-bottom: var(--space-lg);
}

.pricing-card__price {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: 800;
  margin-bottom: var(--space-lg);
}

.pricing-card__price .currency {
  font-size: var(--text-xl);
  vertical-align: super;
  margin-right: 2px;
}

.pricing-card__price .period {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-card__features {
  flex: 1;
  margin-bottom: var(--space-xl);
}

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

.pricing-card__features li::before {
  content: '\2713';
  color: var(--success);
  font-weight: 700;
  font-size: var(--text-xs);
  flex-shrink: 0;
}

/* ---------- Content Split ---------- */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.content-split--reverse > :first-child {
  order: 2;
}

.content-split--reverse > :last-child {
  order: 1;
}

/* ---------- Free Trial Form ---------- */
.trial-form {
  max-width: 560px;
  margin: 0 auto;
}

.trial-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

/* ---------- Forms ---------- */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-primary);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: border-color var(--ease-fast), box-shadow var(--ease-fast);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-subtle);
}

.form-input.error {
  border-color: var(--danger);
}

.form-error {
  font-size: var(--text-xs);
  color: var(--danger);
  margin-top: var(--space-xs);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* ---------- Phone Input (intl-tel-input) ---------- */
.iti {
  width: 100%;
}

.iti__tel-input {
  padding-left: 90px !important;
}

/* ---------- FAQ Accordion ---------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-lg) 0;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  text-align: left;
  transition: color var(--ease-fast);
}

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

.faq-question__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
  color: var(--text-muted);
  transition: transform var(--ease-base);
}

.faq-item.open .faq-question__icon {
  transform: rotate(45deg);
  color: var(--brand);
}

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

.faq-answer__inner {
  padding-bottom: var(--space-lg);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-answer__inner a {
  color: var(--brand);
  text-decoration: underline;
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.testimonial-card {
  padding: var(--space-2xl) var(--space-xl);
  position: relative;
  border-left: 3px solid var(--brand);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: Georgia, serif;
  font-size: 4rem;
  color: rgba(196, 30, 42, 0.12);
  line-height: 1;
  pointer-events: none;
}

.testimonial-card__stars {
  color: var(--warning);
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
  letter-spacing: 2px;
}

.testimonial-card__text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  font-style: italic;
}

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

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

/* ---------- Devices Section ---------- */
.devices-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-md);
  text-align: center;
}

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

.device-item {
  padding: var(--space-xl) var(--space-lg);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--bg-secondary), rgba(22, 27, 36, 0.5));
  border: 1px solid var(--border-subtle);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.device-item:hover {
  border-color: rgba(196, 30, 42, 0.3);
  background: linear-gradient(145deg, rgba(196, 30, 42, 0.08), var(--bg-secondary));
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(196, 30, 42, 0.06);
}

.device-item__icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
}

.device-item__name {
  font-size: var(--text-sm);
  font-weight: 600;
}

/* ---------- Comparison Table ---------- */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-xl) 0;
}

.comparison-table th,
.comparison-table td {
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
  font-size: var(--text-sm);
}

.comparison-table th {
  font-weight: 600;
  color: var(--text-primary);
  background: var(--bg-secondary);
}

.comparison-table td {
  color: var(--text-secondary);
}

.comparison-table tr:hover td {
  background: var(--bg-secondary);
}

.check { color: var(--success); font-weight: 700; }
.cross { color: var(--text-muted); }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, rgba(196, 30, 42, 0.08) 0%, var(--bg-secondary) 30%, var(--bg-tertiary) 100%);
  border: 1px solid rgba(196, 30, 42, 0.15);
  border-radius: var(--radius-xl);
  padding: var(--space-4xl) var(--space-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(196, 30, 42, 0.12) 0%, transparent 55%);
  pointer-events: none;
  animation: pulse-glow 4s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
  from { opacity: 0.6; }
  to { opacity: 1; }
}

.cta-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196, 30, 42, 0.4), transparent);
}

.cta-banner > * {
  position: relative;
  z-index: 1;
}

/* ---------- Sliders / Carousels ---------- */
.slider-track {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: var(--space-md);
}

.slider-track::-webkit-scrollbar {
  display: none;
}

.slider-track > * {
  scroll-snap-align: start;
  flex-shrink: 0;
}

/* ---------- Steps / How It Works ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-xl);
  counter-reset: step-counter;
}

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

.step-card__number {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand) 0%, #a11820 100%);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--text-xl);
  border-radius: 50%;
  margin: 0 auto var(--space-lg);
  box-shadow: 0 4px 20px rgba(196, 30, 42, 0.3), 0 0 40px rgba(196, 30, 42, 0.1);
}

.step-card__title {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.step-card__desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---------- Trending / Poster Slider ---------- */
.trending {
  padding: var(--space-3xl) 0 var(--space-4xl);
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-deepest) 0%, var(--bg-primary) 50%, var(--bg-deepest) 100%);
}

.trending::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(196, 30, 42, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.trending__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-xl);
}

.trending__title {
  font-size: clamp(var(--text-2xl), 3vw, var(--text-3xl));
  font-weight: 700;
  letter-spacing: -0.02em;
}

.trending__link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--brand);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--ease-base);
}

.trending__link:hover {
  gap: 10px;
  color: var(--brand-hover);
}

.trending__track-wrapper {
  position: relative;
  overflow: hidden;
  margin: 0 calc(var(--space-xl) * -1);
  padding: 0 var(--space-xl);
  mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
}

.trending__track {
  display: flex;
  gap: var(--space-lg);
  animation: poster-scroll 25s linear infinite;
  width: max-content;
}

.trending__track:hover {
  animation-play-state: paused;
}

@keyframes poster-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.poster-card {
  flex-shrink: 0;
  width: 180px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 2px solid transparent;
}

.poster-card:hover {
  transform: scale(1.08) translateY(-8px);
  border-color: var(--brand);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(196, 30, 42, 0.15);
  z-index: 10;
}

.poster-card img {
  width: 100%;
  height: 266px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.poster-card:hover img {
  transform: scale(1.05);
}

.poster-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.9) 100%);
  opacity: 0;
  transition: opacity var(--ease-base);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: var(--space-md);
  gap: 4px;
}

.poster-card:hover .poster-card__overlay {
  opacity: 1;
}

.poster-card__badge {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.poster-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
}

/* ---------- Footer ---------- */
.footer {
  background: #0a0a0b;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: var(--space-4xl) 0 var(--space-xl);
}


.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

.footer__brand p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  max-width: 280px;
  margin-top: var(--space-md);
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
}

.footer__links li {
  margin-bottom: var(--space-sm);
}

.footer__links a {
  font-size: var(--text-sm);
  color: var(--text-muted);
  transition: color var(--ease-fast);
}

.footer__links a:hover {
  color: var(--brand);
}

.footer__bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* ---------- Thank You / Confirmation Pages ---------- */
.confirmation {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-4xl) var(--space-xl);
}

.confirmation__icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.15);
  border-radius: 50%;
  margin: 0 auto var(--space-xl);
  font-size: 40px;
}

.confirmation__title {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-md);
}

.confirmation__text {
  max-width: 500px;
  margin: 0 auto var(--space-2xl);
}

/* ---------- Legal Pages ---------- */
.legal-page {
  padding-top: calc(var(--header-height) + var(--space-3xl));
  padding-bottom: var(--space-4xl);
}

.legal-page h1 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-2xl);
}

.legal-page h2 {
  font-size: var(--text-2xl);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}

.legal-page p,
.legal-page li {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.8;
}

.legal-page ul,
.legal-page ol {
  list-style: disc;
  padding-left: var(--space-xl);
  margin-bottom: var(--space-md);
}

.legal-page a {
  color: var(--brand);
  text-decoration: underline;
}

/* ---------- Checkout Page ---------- */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-2xl);
  padding-top: calc(var(--header-height) + var(--space-3xl));
}

.checkout-summary {
  position: sticky;
  top: calc(var(--header-height) + var(--space-xl));
  align-self: start;
}

.checkout-summary__plan {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.checkout-summary__price {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--brand);
}

/* ---------- Channel Categories ---------- */
.channel-category {
  margin-bottom: var(--space-2xl);
}

.channel-category__title {
  font-size: var(--text-xl);
  font-weight: 600;
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: var(--space-md);
}

.channel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.channel-tag {
  font-size: var(--text-xs);
  padding: 7px 16px;
  background: linear-gradient(135deg, var(--bg-tertiary) 0%, rgba(30, 36, 48, 0.5) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-weight: 500;
  transition: all var(--ease-fast);
}

.channel-tag:hover {
  border-color: rgba(196, 30, 42, 0.3);
  color: var(--brand);
  background: var(--brand-deep);
}

/* ---------- Setup / App Tutorials ---------- */
.tutorial-section {
  margin-bottom: var(--space-3xl);
}

.tutorial-steps {
  counter-reset: tutorial;
}

.tutorial-step {
  display: flex;
  gap: var(--space-xl);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--border-subtle);
  counter-increment: tutorial;
}

.tutorial-step::before {
  content: counter(tutorial);
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-subtle);
  color: var(--brand);
  font-weight: 700;
  font-size: var(--text-sm);
  border-radius: 50%;
}

.tutorial-step__content h4 {
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.tutorial-step__content p {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* ---------- Blog ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: var(--space-xl);
}

.blog-card {
  background: linear-gradient(145deg, var(--bg-secondary), rgba(22, 27, 36, 0.6));
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: rgba(196, 30, 42, 0.2);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.blog-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card__body {
  padding: var(--space-xl);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__category {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand);
  margin-bottom: var(--space-sm);
}

.blog-card__title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.blog-card__excerpt {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}

.blog-card__meta {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-subtle);
}

/* Blog post / article prose */
.prose {
  max-width: 760px;
  margin: 0 auto;
  padding-top: calc(var(--header-height) + var(--space-3xl));
  padding-bottom: var(--space-4xl);
}

.prose h1 {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  margin-bottom: var(--space-lg);
}

.prose h2 {
  font-size: var(--text-2xl);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}

.prose h3 {
  font-size: var(--text-xl);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.prose p {
  font-size: var(--text-base);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.prose ul,
.prose ol {
  list-style: disc;
  padding-left: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.prose li {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.prose ol {
  list-style: decimal;
}

.prose a {
  color: var(--brand);
  text-decoration: underline;
}

.prose img {
  border-radius: var(--radius-lg);
  margin: var(--space-xl) 0;
}

.prose blockquote {
  border-left: 3px solid var(--brand);
  padding-left: var(--space-xl);
  margin: var(--space-xl) 0;
  font-style: italic;
  color: var(--text-secondary);
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-xl) 0;
}

.prose th,
.prose td {
  padding: var(--space-sm) var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
  font-size: var(--text-sm);
}

.prose th {
  font-weight: 600;
  background: var(--bg-secondary);
}

.prose code {
  background: var(--bg-tertiary);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  padding-top: calc(var(--header-height) + var(--space-xl));
  padding-bottom: var(--space-md);
}

.breadcrumbs__list {
  display: flex;
  gap: var(--space-sm);
  font-size: var(--text-xs);
  color: var(--text-muted);
  flex-wrap: wrap;
}

.breadcrumbs__list a {
  color: var(--text-muted);
  text-decoration: none;
}

.breadcrumbs__list a:hover {
  color: var(--brand);
}

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

/* ---------- Animations ---------- */
@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ---------- Toast / Alerts ---------- */
.toast {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 500;
  z-index: 9999;
  animation: fadeInUp 0.3s ease;
  box-shadow: var(--shadow-lg);
}

.toast--success {
  background: var(--success);
  color: #fff;
}

.toast--error {
  background: var(--danger);
  color: #fff;
}

/* ============================================
   SCHEDULE & EVENTS
   ============================================ */

.schedule-preview { }
.schedule-pills { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.schedule-pill { display: flex; align-items: center; gap: 6px; padding: 8px 16px; background: var(--bg-tertiary); border: 1px solid var(--border-subtle); border-radius: var(--radius-full); text-decoration: none; color: var(--text-primary); transition: all 0.2s; }
.schedule-pill:hover { border-color: var(--pill-color); box-shadow: 0 0 12px color-mix(in srgb, var(--pill-color) 30%, transparent); }
.schedule-pill__emoji { font-size: 1.1rem; }
.schedule-pill__label { font-size: 0.85rem; font-weight: 600; }
.schedule-pill__count { font-size: 0.75rem; background: var(--pill-color); color: #fff; padding: 2px 8px; border-radius: var(--radius-full); font-weight: 700; }
.schedule-preview__cta { text-align: center; margin-top: 24px; }

.events-table { background: var(--bg-secondary); border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border-subtle); }
.events-table__header { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; padding: 12px 20px; background: var(--bg-tertiary); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); }
.events-table__row { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; padding: 14px 20px; border-top: 1px solid var(--border-subtle); align-items: center; transition: background 0.15s; }
.events-table__row:hover { background: var(--bg-tertiary); }
.events-table__col--event { font-weight: 600; display: flex; align-items: center; gap: 8px; }
.events-table__col--time { color: var(--brand); font-weight: 600; font-size: 0.9rem; }
.events-table__col--date { color: var(--text-secondary); font-size: 0.85rem; }
.events-table__col--channel { color: var(--text-muted); font-size: 0.85rem; }
.events-table__cat-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

.schedule-hero { padding: calc(var(--header-height) + 60px) 0 40px; background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-deepest) 100%); }
.schedule-hero__title { font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; margin-bottom: 16px; }
.schedule-hero__sub { color: var(--text-secondary); font-size: 1.1rem; max-width: 700px; line-height: 1.7; margin-bottom: 20px; }
.schedule-hero__badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; background: rgba(76, 175, 80, 0.1); border: 1px solid rgba(76, 175, 80, 0.3); border-radius: var(--radius-full); font-size: 0.8rem; font-weight: 600; color: #4CAF50; }

.live-dot { width: 8px; height: 8px; background: #4CAF50; border-radius: 50%; animation: pulse-dot 1.5s ease-in-out infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.3); } }

.schedule-categories { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; margin-bottom: 40px; }
.schedule-card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 28px 20px; background: var(--bg-secondary); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); text-decoration: none; color: var(--text-primary); transition: all 0.25s; }
.schedule-card:hover { border-color: var(--card-color); transform: translateY(-4px); box-shadow: 0 8px 24px color-mix(in srgb, var(--card-color) 20%, transparent); }
.schedule-card__emoji { font-size: 2.5rem; margin-bottom: 12px; }
.schedule-card__title { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.schedule-card__count { font-size: 0.8rem; color: var(--text-muted); }

.category-nav { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.category-nav__link { padding: 8px 16px; border-radius: var(--radius-full); font-size: 0.85rem; font-weight: 600; text-decoration: none; color: var(--text-secondary); background: var(--bg-secondary); border: 1px solid var(--border-subtle); transition: all 0.2s; }
.category-nav__link:hover { color: var(--text-primary); border-color: var(--nav-color, var(--brand)); }
.category-nav__link--active { background: var(--brand); color: #fff; border-color: var(--brand); }

.events-skeleton__row { display: flex; gap: 12px; padding: 16px 0; }
.events-skeleton__bar { height: 14px; background: var(--bg-tertiary); border-radius: 6px; animation: skeleton-pulse 1.5s ease-in-out infinite; }
.events-skeleton__bar--sm { width: 80px; }
@keyframes skeleton-pulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 0.8; } }

.events-empty { text-align: center; padding: 48px 20px; }
.events-empty__icon { font-size: 3rem; display: block; margin-bottom: 12px; }
.events-empty__text { color: var(--text-muted); font-size: 0.95rem; }

.schedule-full-table { margin-top: 40px; }
.schedule-full-table__title { font-size: 1.3rem; font-weight: 700; margin-bottom: 16px; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    position: static;
  }

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

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

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

  .content-split {
    gap: var(--space-2xl);
  }
}

@media (max-width: 768px) {
  :root {
    --text-5xl: 2.25rem;
    --text-4xl: 1.875rem;
    --text-3xl: 1.5rem;
    --space-4xl: 4rem;
  }

  /* Mobile Nav */
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-primary);
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--header-height) + var(--space-xl)) var(--space-xl) var(--space-xl);
    gap: var(--space-xs);
    transition: right var(--ease-slow);
    border-left: 1px solid var(--border-subtle);
    z-index: 1005;
    overflow-y: auto;
  }

  .header__nav.open {
    right: 0;
  }

  .header.nav-open {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 1006;
  }

  .header__nav a {
    font-size: var(--text-base);
    padding: var(--space-md) 0;
    width: 100%;
    display: block;
    border-bottom: 1px solid var(--border-subtle);
    position: relative;
    z-index: 1;
  }

  .header__nav a::after {
    display: none;
  }

  .header__cta {
    margin-left: 0;
    margin-top: var(--space-md);
    width: 100%;
  }

  .header__cta .btn {
    width: 100%;
  }

  .header__toggle {
    display: flex;
  }

  /* Mobile Nav Overlay */
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1004;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--ease-base);
  }

  .nav-overlay.active {
    opacity: 1;
    pointer-events: all;
  }

  /* Hero */
  .hero__stats {
    gap: var(--space-lg);
    flex-wrap: wrap;
  }

  .hero__bg::after {
    background: linear-gradient(
      to bottom,
      rgba(10, 12, 16, 0.85) 0%,
      rgba(10, 12, 16, 0.7) 100%
    );
  }

  .hero__content {
    padding: var(--space-2xl) 0;
  }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
  }

  .content-split {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .content-split--reverse > :first-child {
    order: 0;
  }

  .content-split--reverse > :last-child {
    order: 0;
  }

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

  .section-title {
    font-size: var(--text-2xl);
  }

  .pricing-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding-bottom: 0;
  }

  .trial-form .form-row {
    grid-template-columns: 1fr;
  }

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

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .checkout-layout {
    grid-template-columns: 1fr;
    padding-top: calc(var(--header-height) + var(--space-xl));
  }

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

  /* Trending */
  .trending {
    padding: var(--space-2xl) 0 var(--space-3xl);
  }

  .poster-card {
    width: 140px;
  }

  .poster-card img {
    height: 207px;
  }

  .trending__header {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  /* Schedule Mobile */
  .events-table__header, .events-table__row { grid-template-columns: 1fr 1fr; gap: 4px; }
  .events-table__col--date, .events-table__col--channel { display: none; }
  .events-table__header { padding: 10px 14px; }
  .events-table__row { padding: 12px 14px; }
  .schedule-categories { grid-template-columns: repeat(2, 1fr); }
}

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

  .hero__title {
    font-size: clamp(1.5rem, 7vw, 2rem);
    line-height: 1.2;
  }

  .hero__subtitle {
    font-size: var(--text-sm);
    line-height: 1.6;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    min-height: 52px;
    font-size: var(--text-base);
  }

  .hero__trust {
    flex-direction: column;
    gap: var(--space-xs);
    align-items: center;
  }

  .pricing-grid {
    max-width: 100%;
  }

  .pricing-card {
    padding: var(--space-xl) var(--space-lg);
  }

  .pricing-card__price {
    font-size: var(--text-4xl);
  }

  .pricing-tab {
    min-height: 44px;
    padding: 10px 6px;
    font-size: 0.7rem;
    text-align: center;
    white-space: nowrap;
  }

  .btn {
    min-height: 44px;
    padding: 12px 24px;
  }

  .btn--lg {
    min-height: 52px;
    padding: 14px 28px;
    font-size: var(--text-base);
  }

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

  .testimonial-card {
    padding: var(--space-xl) var(--space-lg);
  }

  .faq-question {
    padding: var(--space-md) 0;
    min-height: 48px;
    font-size: var(--text-sm);
  }

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

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

  .device-item {
    padding: var(--space-md) var(--space-sm);
  }

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

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

  .cta-banner {
    padding: var(--space-2xl) var(--space-lg);
  }

  .section-label {
    font-size: 0.65rem;
  }

  .section-subtitle {
    font-size: var(--text-sm);
  }

  .footer {
    padding: var(--space-2xl) 0 var(--space-lg);
  }

  /* Schedule Mobile small */
  .schedule-categories { grid-template-columns: 1fr; }
  .schedule-pills { gap: 6px; }
  .schedule-pill { padding: 6px 10px; font-size: 0.8rem; }
}

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

  .hero__title {
    font-size: clamp(1.35rem, 6.5vw, 1.75rem);
  }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
