/* IPTV TV CZ — Premium Dark Theme */
:root {
  --bg-primary: #0a0b0f;
  --bg-secondary: #12141c;
  --bg-card: #181b26;
  --bg-card-hover: #1e2230;
  --accent: #2563eb;
  --accent-light: #60a5fa;
  --accent-glow: rgba(37, 99, 235, 0.35);
  --accent-secondary: #38bdf8;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border: rgba(148, 163, 184, 0.12);
  --border-accent: rgba(37, 99, 235, 0.45);
  --gradient-hero: linear-gradient(135deg, #0a0b0f 0%, #0f1a2e 50%, #0f172a 100%);
  --gradient-card: linear-gradient(145deg, #181b26 0%, #12141c 100%);
  --gradient-btn: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px var(--accent-glow);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --header-height: 72px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1200px;
}

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

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

body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-secondary); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.125rem, 2.5vw, 1.5rem); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-light);
  margin-bottom: 0.75rem;
}

.section-title { margin-bottom: 1rem; }
.section-desc {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  max-width: 640px;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(10, 11, 15, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(10, 11, 15, 0.95);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-primary);
  text-decoration: none;
}

.logo:hover { color: var(--text-primary); }
.logo-icon { width: 36px; height: 36px; }

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-desktop a {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  font-weight: 500;
}

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

.header-cta { display: none; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-primary);
  padding: 2rem 1.25rem;
  transform: translateX(100%);
  transition: transform var(--transition);
  z-index: 999;
  overflow-y: auto;
}

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

.nav-mobile ul { list-style: none; }
.nav-mobile li { border-bottom: 1px solid var(--border); }
.nav-mobile a {
  display: block;
  padding: 1rem 0;
  color: var(--text-primary);
  font-size: 1.125rem;
  font-weight: 500;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--gradient-btn);
  color: #fff;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
  color: #fff;
  box-shadow: var(--shadow-glow);
}

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

.btn-secondary:hover {
  background: rgba(37, 99, 235, 0.1);
  color: var(--text-primary);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.btn-whatsapp:hover {
  color: #fff;
  background: #20bd5a;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 3rem) 0 4rem;
  background: var(--gradient-hero);
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, var(--bg-primary) 0%, rgba(10, 11, 15, 0.92) 42%, rgba(10, 11, 15, 0.75) 100%),
    radial-gradient(ellipse 80% 60% at 70% 40%, var(--accent-glow) 0%, transparent 55%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content { max-width: 640px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent-light);
  margin-bottom: 1.5rem;
}

.hero h1 { margin-bottom: 1.25rem; }
.hero h1 span { color: var(--accent-light); }

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.stat-item strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-primary);
}

.stat-item span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hero-channel-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.hero-channel-logos img {
  height: 36px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  opacity: 0.85;
  filter: brightness(1.1);
  transition: opacity var(--transition);
}

.hero-channel-logos img:hover { opacity: 1; }

.hero-visual {
  position: relative;
  display: block;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .hero-visual {
    margin-top: 0;
  }
}

.hero-showcase {
  position: relative;
  min-height: 420px;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.hero-showcase-main {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-accent);
  box-shadow: var(--shadow-lg), 0 0 60px var(--accent-glow);
}

.hero-showcase-main img {
  width: 100%;
  height: auto;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.hero-showcase-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.4rem 0.85rem;
  background: rgba(37, 99, 235, 0.9);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 100px;
}

.hero-poster {
  position: absolute;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--border-accent);
  box-shadow: var(--shadow-md);
  background: var(--bg-card);
  animation: float-poster 6s ease-in-out infinite;
}

.hero-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-poster--1 {
  width: clamp(100px, 28%, 130px);
  top: -8%;
  right: -4%;
  animation-delay: 0s;
}

.hero-poster--2 {
  width: clamp(95px, 26%, 120px);
  bottom: 12%;
  left: -6%;
  animation-delay: 1.2s;
}

.hero-poster--3 {
  width: clamp(80px, 22%, 100px);
  bottom: -4%;
  right: 18%;
  animation-delay: 2.4s;
}

.hero-live-badge {
  position: absolute;
  top: 50%;
  right: -8px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(10, 11, 15, 0.9);
  border: 1px solid rgba(239, 68, 68, 0.5);
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  backdrop-filter: blur(8px);
}

.hero-live-dot {
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulse-live 1.5s ease infinite;
}

@keyframes float-poster {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse-live {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.6); }
  50% { opacity: 0.85; box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
}

/* Visual showcase row */
.visual-showcase {
  padding: 4rem 0;
  background: var(--bg-secondary);
}

.visual-showcase-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.visual-tile {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 10;
  min-height: 200px;
}

.visual-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.visual-tile:hover img {
  transform: scale(1.06);
}

.visual-tile-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  background: linear-gradient(0deg, rgba(10, 11, 15, 0.92) 0%, rgba(10, 11, 15, 0.2) 55%, transparent 100%);
}

.visual-tile-overlay h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.visual-tile-overlay p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin: 0;
}

/* Visual feature cards */
.card--visual {
  padding: 0;
  overflow: hidden;
}

.card--visual .card-body {
  padding: 1.5rem 2rem 2rem;
}

.card-image {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: var(--bg-secondary);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.card--visual:hover .card-image img {
  transform: scale(1.06);
}

.card-image--poster img {
  object-fit: contain;
  padding: 0.5rem;
  background: linear-gradient(160deg, #0f1a2e 0%, var(--bg-secondary) 100%);
}

.card--visual .card-icon { display: none; }

/* Banner */
.banner-strip {
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.2) 0%, rgba(56, 189, 248, 0.15) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  text-align: center;
}

.banner-strip p {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
}

.banner-strip a {
  color: var(--accent-secondary);
  font-weight: 700;
}

/* Sections */
section { padding: 5rem 0; }
section:nth-child(even) { background: var(--bg-secondary); }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

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

/* Cards Grid */
.cards-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

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

.card-icon {
  width: 52px;
  height: 52px;
  background: rgba(37, 99, 235, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.card h3 { margin-bottom: 0.75rem; }
.card p { color: var(--text-secondary); font-size: 0.9375rem; }

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

/* Devices */
.devices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.device-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.device-item:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
}

.device-item svg { width: 40px; height: 40px; color: var(--accent-light); }
.device-item span { font-size: 0.875rem; font-weight: 600; text-align: center; }

/* Pricing */
.pricing-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.pricing-card {
  position: relative;
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

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

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

.pricing-card.featured::before {
  content: 'Nejoblíbenější';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-btn);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: 100px;
}

.pricing-duration {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.pricing-price span { font-size: 1rem; font-weight: 500; color: var(--text-muted); }

.pricing-features {
  list-style: none;
  margin: 1.5rem 0;
  text-align: left;
}

.pricing-features li {
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-features li::before {
  content: '✓';
  color: var(--accent-secondary);
  font-weight: 700;
}

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

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--bg-card);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: background var(--transition);
}

.faq-question:hover { background: var(--bg-card-hover); }

.faq-question .icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transition: transform var(--transition);
  color: var(--accent-light);
}

.faq-item.open .faq-question .icon { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
}

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

/* Testimonials */
.testimonials-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.testimonial-stars { color: #fbbf24; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text { color: var(--text-secondary); font-style: italic; margin-bottom: 1.25rem; line-height: 1.7; }
.testimonial-author { font-weight: 600; font-size: 0.9375rem; }
.testimonial-location { font-size: 0.8125rem; color: var(--text-muted); }

/* Trust */
.trust-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.trust-item strong { font-size: 1.5rem; font-weight: 800; color: var(--accent-light); }
.trust-item span { font-size: 0.875rem; color: var(--text-muted); }

/* Trial CTA */
.cta-section {
  background: linear-gradient(135deg, #0c1929 0%, #0f172a 50%, #0a0b0f 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 5rem 0;
}

.cta-section--visual {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.cta-section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-section-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-section-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 11, 15, 0.92) 0%, rgba(12, 35, 64, 0.85) 50%, rgba(10, 11, 15, 0.88) 100%);
}

.cta-section-inner {
  position: relative;
  z-index: 1;
}

.cta-section h2 { margin-bottom: 1rem; }
.cta-section p { color: var(--text-secondary); max-width: 560px; margin: 0 auto 2rem; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* Why us */
.why-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

.why-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-accent);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}

.why-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why-visual-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  padding: 0.5rem 1rem;
  background: rgba(37, 99, 235, 0.92);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
}

.why-side {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.why-list { list-style: none; }

.why-list li {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.why-list li:last-child { border-bottom: none; }

.why-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(34, 211, 238, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-secondary);
  font-weight: 700;
  font-size: 0.875rem;
}

.why-list h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.why-list p { font-size: 0.875rem; color: var(--text-secondary); }

/* Blog */
.blog-hero {
  padding: calc(var(--header-height) + 3rem) 0 3rem;
  background: var(--gradient-hero);
}

.blog-hero .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.article-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 3rem 1.25rem 5rem;
}

.article-content h2 {
  margin: 2.5rem 0 1rem;
  padding-top: 0.5rem;
}

.article-content h3 { margin: 1.75rem 0 0.75rem; color: var(--accent-light); }

.article-content p {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.article-content ul, .article-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--text-secondary);
}

.article-content li { margin-bottom: 0.5rem; line-height: 1.7; }

.article-content a { text-decoration: underline; }

.article-toc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  margin-bottom: 2.5rem;
}

.article-toc h3 { font-size: 1rem; margin-bottom: 1rem; }
.article-toc ol { margin: 0; padding-left: 1.25rem; }
.article-toc a { color: var(--text-secondary); font-size: 0.9375rem; }
.article-toc a:hover { color: var(--accent-light); }

.breadcrumbs {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.breadcrumbs a { color: var(--text-secondary); }
.breadcrumbs span { margin: 0 0.5rem; }

.blog-cards {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.blog-card-link {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}

.blog-card-link:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  color: inherit;
}

.blog-card-body { padding: 1.5rem 2rem; }
.blog-card-body h3 { margin-bottom: 0.5rem; }
.blog-card-body p { color: var(--text-secondary); font-size: 0.9375rem; }
.blog-card-meta { font-size: 0.8125rem; color: var(--text-muted); margin-top: 1rem; }

/* Contact */
.contact-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.contact-info-card h3 { margin-bottom: 1.5rem; }

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(37, 99, 235, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item h4 { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 0.25rem; font-weight: 500; }
.contact-item a, .contact-item p { color: var(--text-primary); font-weight: 600; }

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
}

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

/* Legal */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: calc(var(--header-height) + 3rem) 1.25rem 5rem;
}

.legal-content h1 { margin-bottom: 1.5rem; }
.legal-content h2 { margin: 2rem 0 1rem; font-size: 1.25rem; }
.legal-content p, .legal-content li { color: var(--text-secondary); margin-bottom: 1rem; line-height: 1.7; }
.legal-content ul { margin-left: 1.5rem; }

/* Footer */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin-top: 1rem;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.625rem; }
.footer-col a { color: var(--text-secondary); font-size: 0.9375rem; }
.footer-col a:hover { color: var(--text-primary); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-bottom p { font-size: 0.875rem; color: var(--text-muted); }

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 998;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 1.25rem;
  transform: translateY(100%);
  transition: transform var(--transition);
  box-shadow: var(--shadow-lg);
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.cookie-inner p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.cookie-inner a { text-decoration: underline; }

.cookie-buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* Page header */
.page-hero {
  position: relative;
  padding: calc(var(--header-height) + 3rem) 0 3rem;
  background: var(--gradient-hero);
  text-align: center;
  overflow: hidden;
}

.page-hero--visual .page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero--visual .page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.page-hero--visual .page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(10, 11, 15, 0.85) 100%);
}

.page-hero--visual .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

/* Utilities */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

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

/* Responsive */
@media (min-width: 640px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .devices-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 640px) {
  .visual-showcase-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
  .header-cta { display: inline-flex; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; align-items: center; }
  .card-image { height: 200px; }
  .cookie-inner { flex-direction: row; align-items: center; }
  .cookie-inner p { flex: 1; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

@media (min-width: 1024px) {
  .cards-grid.features-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid.pricing-full { grid-template-columns: repeat(5, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
  .devices-grid { grid-template-columns: repeat(6, 1fr); }
  .blog-cards { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1280px) {
  .pricing-grid.pricing-full { grid-template-columns: repeat(5, 1fr); }
}

/* Media strips — auto-scroll galleries */
.media-strip-section {
  padding: 3.5rem 0;
  overflow: hidden;
  background: var(--bg-primary);
}

.media-strip-section--vod {
  background: var(--bg-secondary);
  padding-top: 2.5rem;
}

.media-strip-heading {
  margin-bottom: 2rem;
}

.media-strip-shell {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.media-strip-shell::before,
.media-strip-shell::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(48px, 8vw, 120px);
  z-index: 2;
  pointer-events: none;
}

.media-strip-shell::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-primary) 0%, transparent 100%);
}

.media-strip-section--vod .media-strip-shell::before {
  background: linear-gradient(90deg, var(--bg-secondary) 0%, transparent 100%);
}

.media-strip-shell::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg-primary) 0%, transparent 100%);
}

.media-strip-section--vod .media-strip-shell::after {
  background: linear-gradient(270deg, var(--bg-secondary) 0%, transparent 100%);
}

.media-strip {
  display: flex;
  gap: 0.75rem;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-behavior: auto;
  padding: 0.5rem 0.25rem 0.75rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.media-strip::-webkit-scrollbar {
  display: none;
}

.media-strip-item {
  flex: 0 0 auto;
  margin: 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.media-strip-item img {
  display: block;
  width: 100%;
  transition: transform var(--transition);
}

.media-strip-item:hover img {
  transform: scale(1.04);
}

/* Channels — small logos */
.media-strip--channels {
  gap: 0.5rem;
}

.media-strip--channels .media-strip-item {
  flex-basis: clamp(120px, 22vw, 180px);
  min-width: clamp(120px, 22vw, 180px);
  padding: 0.65rem 1rem;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-strip--channels .media-strip-item img {
  height: clamp(40px, 8vw, 52px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* Movies & sport — large posters */
.media-strip-stack {
  display: grid;
  gap: 1rem;
}

.media-strip--movies,
.media-strip--sport {
  gap: 1rem;
}

.media-strip--movies .media-strip-item,
.media-strip--sport .media-strip-item {
  flex-basis: clamp(240px, 58vw, 440px);
  min-width: clamp(240px, 58vw, 440px);
  border-color: var(--border-accent);
}

.media-strip--movies .media-strip-item img,
.media-strip--sport .media-strip-item img {
  height: clamp(200px, 32vw, 280px);
  width: 100%;
  object-fit: contain;
  background: var(--bg-secondary);
}

@media (min-width: 1024px) {
  .media-strip--channels .media-strip-item {
    flex-basis: clamp(140px, 14vw, 200px);
    min-width: clamp(140px, 14vw, 200px);
  }

  .media-strip--channels .media-strip-item img {
    height: 56px;
  }

  .media-strip--movies .media-strip-item,
  .media-strip--sport .media-strip-item {
    flex-basis: clamp(320px, 28vw, 480px);
    min-width: clamp(320px, 28vw, 480px);
  }

  .media-strip--movies .media-strip-item img,
  .media-strip--sport .media-strip-item img {
    height: clamp(220px, 22vw, 300px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .media-strip {
    overflow-x: auto;
  }

  .hero-poster {
    animation: none;
  }

  .hero-live-dot {
    animation: none;
  }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
