:root {
  --accent: #c52556;
  --accent-dark: #c02554;
  --accent-hover: #a81f48;
  --bg: #000001;
  --text: #fffafa;
  --text-muted: #f1ecfb;
  --text-soft: #c8c8c8;
  --card-gradient: linear-gradient(180deg, #5c5b5c 0%, #2a2a2a 100%);
  --content-box-bg: linear-gradient(165deg, #141414 0%, #0a0a0a 100%);
  --content-text: #e8e8e8;
  --content-text-muted: #b8b8b8;
  --support-section-bg: #1e1e1e;
  --tab-gradient: linear-gradient(180deg, #5c5b5c 0%, #2a2a2a 100%);
  --tab-hover: linear-gradient(180deg, #5c5b5c 0%, #2a2a2a 100%);
  --btn-secondary-gradient: linear-gradient(182deg, #252525 34%, #787878 100%);
  --max-width: 1140px;
  --header-height: 100px;
}

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

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  margin: 0;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: clip;
}

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

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

.container {
  width: min(100% - 32px, var(--max-width));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: relative;
  z-index: 100;
  height: var(--header-height);
  background: transparent;
}

.site-header.header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.site-header.header-solid {
  background: rgba(0, 0, 1, 0.96);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.header-inner {
  display: flex;
  align-items: center;
  height: var(--header-height);
  gap: 12px;
}

.header-logo {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff6b35 0%, #c52556 38%, #7b2cbf 68%, #00b4d8 100%);
  box-shadow: 0 4px 16px rgba(197, 37, 86, 0.35);
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-name {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

.logo-tagline {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.header-solid .logo-name,
.header-solid .logo-tagline {
  color: inherit;
}

.header-solid .logo-tagline {
  color: rgba(255, 255, 255, 0.55);
}

.main-nav {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 0;
}

.main-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lang-globe {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.lang-pills {
  display: flex;
  gap: 3px;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 4px 6px 4px 10px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.lang-flag {
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transform: translateY(-1px);
}

.lang-btn.active {
  background: linear-gradient(135deg, rgba(197, 37, 86, 0.85), rgba(150, 20, 60, 0.9));
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  box-shadow: 0 2px 12px rgba(197, 37, 86, 0.35);
}

.main-nav a {
  display: block;
  padding: 0 15px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: #fff;
  line-height: 1.5;
  transition: color 0.25s;
}

.main-nav a:hover,
.main-nav a.active { color: var(--accent); }

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--accent);
  border-radius: 3px;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
  z-index: 102;
  position: relative;
}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 98;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.nav-backdrop.visible {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

body.menu-open {
  overflow: hidden;
  touch-action: none;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  margin: 5px 0;
  transition: 0.3s;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  padding: 300px 0 120px;
  overflow: hidden;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
  transform: scale(1.02);
}

.hero-slide.active {
  opacity: 1;
  animation: hero-kenburns 8s ease-out forwards;
}

@keyframes hero-kenburns {
  from { transform: scale(1.02); }
  to { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 52%;
  width: 100%;
}

.hero h1 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 20px;
  color: #fff;
}

.hero p {
  font-family: Arial, sans-serif;
  font-weight: 400;
  color: var(--text);
  font-size: 16px;
  margin: 0 0 12px;
  max-width: 90%;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

/* Buttons — matched to reference site */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 12px 24px;
  box-shadow: 0 4px 14px rgba(197, 37, 86, 0.35);
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
  box-shadow: 0 6px 18px rgba(197, 37, 86, 0.45);
}

.btn-secondary {
  background: var(--btn-secondary-gradient);
  color: #fff;
  padding: 12px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.btn-secondary:hover {
  color: #fff;
  filter: brightness(1.08);
}

.btn-cta {
  background: var(--accent-dark);
  color: #fff;
  padding: 14px 28px;
  border-radius: 7px;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 15px;
}

.btn-order {
  display: block;
  width: 100%;
  background: #fff;
  color: var(--accent);
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 12px 25px;
  border-radius: 4px;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-order:hover {
  background: #f8f8f8;
  color: var(--accent-dark);
  transform: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn-whatsapp {
  background: #fff;
  color: #181818;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 8px;
  min-width: 180px;
}

.btn-whatsapp:hover {
  background: #f5f5f5;
  color: #181818;
  transform: translateY(-1px);
}

.btn-submit {
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  padding: 14px 24px;
}

/* Sections */
section { padding: 70px 0; }

.section-alt {
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.section-devices {
  padding: 60px 0;
  background: linear-gradient(180deg, #000001 0%, #0d0d0d 50%, #000001 100%);
  overflow: hidden;
}

.devices-showcase {
  display: grid;
  grid-template-columns: minmax(140px, 200px) minmax(0, 1fr);
  gap: 28px 36px;
  align-items: center;
  max-width: 100%;
}

.devices-showcase-brand {
  text-align: center;
  min-width: 0;
}

.devices-4k-badge {
  width: clamp(120px, 24vw, 168px);
  aspect-ratio: 1;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b35 0%, #c52556 38%, #7b2cbf 68%, #00b4d8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 36px rgba(197, 37, 86, 0.35);
}

.devices-4k-badge span {
  font-size: clamp(2.2rem, 7vw, 3.25rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.devices-showcase-tagline {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}

.devices-showcase-more {
  margin: 0;
  font-size: 13px;
  color: var(--text-soft);
}

.devices-app-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  min-width: 0;
}

.devices-app-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 10px;
  min-height: 78px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  text-align: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.devices-app-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(197, 37, 86, 0.35);
}

.devices-app-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(197, 37, 86, 0.16);
  color: #ff8fab;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.devices-app-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-soft);
  line-height: 1.25;
  word-break: break-word;
}

.section-title {
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: clamp(24px, 3.2vw, 32px);
  font-weight: 600;
  margin: 0 0 14px;
  color: #fff;
  position: relative;
  padding-bottom: 18px;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent), #ff6b8a, var(--accent), transparent);
  border-radius: 2px;
  box-shadow: 0 0 16px rgba(197, 37, 86, 0.5);
}

.section-subtitle {
  text-align: center;
  max-width: 720px;
  margin: 8px auto 44px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
}

.page-hero-sub {
  color: var(--text-muted);
  max-width: 720px;
  margin: 14px auto 0;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
}

/* Feature cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #1a1a1a 0%, #111 50%, #0d0d0d 100%);
  border-radius: 14px;
  padding: 32px 26px;
  min-height: 200px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}

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

.feat-hd::before { background: linear-gradient(90deg, #c52556, #ff6b8a); }
.feat-hd:hover { border-color: rgba(197, 37, 86, 0.4); }
.feat-hd .feature-icon-ring { background: rgba(197, 37, 86, 0.18); border-color: rgba(197, 37, 86, 0.4); color: #ff6b8a; }

.feat-library::before { background: linear-gradient(90deg, #3b82f6, #60a5fa); }
.feat-library:hover { border-color: rgba(59, 130, 246, 0.4); }
.feat-library .feature-icon-ring { background: rgba(59, 130, 246, 0.18); border-color: rgba(59, 130, 246, 0.4); color: #60a5fa; }

.feat-devices::before { background: linear-gradient(90deg, #10b981, #34d399); }
.feat-devices:hover { border-color: rgba(16, 185, 129, 0.4); }
.feat-devices .feature-icon-ring { background: rgba(16, 185, 129, 0.18); border-color: rgba(16, 185, 129, 0.4); color: #34d399; }

.feat-support::before { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.feat-support:hover { border-color: rgba(245, 158, 11, 0.4); }
.feat-support .feature-icon-ring { background: rgba(245, 158, 11, 0.18); border-color: rgba(245, 158, 11, 0.4); color: #fbbf24; }

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 12px;
  color: #fff;
}

.feature-card p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.devices-image {
  text-align: center;
  padding: 20px 0;
}

.devices-image img {
  margin: 0 auto;
  max-width: 800px;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.4));
}

/* Steps section */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  background: var(--card-gradient);
  border-radius: 14px;
  padding: 40px 28px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  transition: border-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.step-card:hover {
  border-color: rgba(197, 37, 86, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(197, 37, 86, 0.15);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent) 0%, #8c1437 100%);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(197, 37, 86, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.step-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 12px;
  color: #fff;
}

.step-card p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Watch categories — image-led premium cards */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  padding: 0;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.category-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 18px 18px 0 0;
  z-index: 3;
}

.category-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  flex-shrink: 0;
}

.category-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.category-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}

.category-media-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  z-index: 2;
}

.category-body {
  padding: 22px 22px 24px;
  flex: 1;
}

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

.category-card:hover .category-media-img {
  transform: scale(1.06);
}

.category-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #fff;
}

.category-card p {
  margin: 0;
  font-size: 13px;
  color: rgba(241, 236, 251, 0.82);
  line-height: 1.7;
}

.cat-sports {
  background: linear-gradient(165deg, #1a0a10 0%, #120608 40%, #0d0d0d 100%);
}
.cat-sports .category-card-accent { background: linear-gradient(90deg, #ff4d6d, #c52556); }
.cat-sports .category-media-badge {
  background: rgba(197, 37, 86, 0.75);
  border-color: rgba(255, 77, 109, 0.45);
  box-shadow: 0 6px 20px rgba(197, 37, 86, 0.35);
}
.cat-sports:hover { border-color: rgba(255, 77, 109, 0.45); box-shadow: 0 16px 40px rgba(197, 37, 86, 0.25); }

.cat-movies {
  background: linear-gradient(165deg, #0a0e1a 0%, #080a12 40%, #0d0d0d 100%);
}
.cat-movies .category-card-accent { background: linear-gradient(90deg, #60a5fa, #3b82f6); }
.cat-movies .category-media-badge {
  background: rgba(37, 99, 235, 0.75);
  border-color: rgba(96, 165, 250, 0.45);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}
.cat-movies:hover { border-color: rgba(96, 165, 250, 0.45); box-shadow: 0 16px 40px rgba(59, 130, 246, 0.2); }

.cat-global {
  background: linear-gradient(165deg, #061410 0%, #080d0b 40%, #0d0d0d 100%);
}
.cat-global .category-card-accent { background: linear-gradient(90deg, #34d399, #10b981); }
.cat-global .category-media-badge {
  background: rgba(5, 150, 105, 0.75);
  border-color: rgba(52, 211, 153, 0.45);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}
.cat-global:hover { border-color: rgba(52, 211, 153, 0.45); box-shadow: 0 16px 40px rgba(16, 185, 129, 0.2); }

.cat-kids {
  background: linear-gradient(165deg, #1a1206 0%, #120d04 40%, #0d0d0d 100%);
}
.cat-kids .category-card-accent { background: linear-gradient(90deg, #fbbf24, #f59e0b); }
.cat-kids .category-media-badge {
  background: rgba(217, 119, 6, 0.78);
  border-color: rgba(251, 191, 36, 0.45);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
}
.cat-kids:hover { border-color: rgba(251, 191, 36, 0.45); box-shadow: 0 16px 40px rgba(245, 158, 11, 0.2); }

/* Pricing tabs — pink inactive, gray gradient active (matches reference) */
.pricing-tabs-bar {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.pricing-tabs {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 10px 14px;
  background: #1a1a1a;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-tab {
  padding: 15px 35px;
  min-height: 47px;
  background: var(--accent);
  border: none;
  border-radius: 42px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  cursor: pointer;
  transition: background 0.2s ease, filter 0.2s ease;
}

.pricing-tab:hover:not(.active) {
  filter: brightness(1.08);
}

.pricing-tab.active {
  background: var(--tab-gradient);
  color: #fff;
  font-weight: 400;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.pricing-panel { display: none; }
.pricing-panel.active { display: block; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Pricing cards — full pink like reference */
.pricing-card {
  background: var(--accent);
  border-radius: 6px;
  overflow: visible;
  text-align: center;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.pricing-card-featured {
  background: linear-gradient(180deg, #e8326a 0%, var(--accent) 35%, #9e1a42 100%);
  border: 2px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    0 0 0 1px rgba(251, 191, 36, 0.25),
    0 22px 50px rgba(197, 37, 86, 0.5);
  transform: scale(1.04);
  z-index: 2;
}

.pricing-card-featured:hover {
  transform: scale(1.06) translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(251, 191, 36, 0.4),
    0 28px 56px rgba(197, 37, 86, 0.55);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #1a1a1a;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(251, 191, 36, 0.45);
  z-index: 3;
}

.popular-badge i { font-size: 10px; }

.price-per-month {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  padding: 0 20px 8px;
  letter-spacing: 0.2px;
}

.price-per-month-base {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(197, 37, 86, 0.28);
}

.pricing-card .header {
  padding: 24px 20px 0;
}

.pricing-card .header h2 {
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 16px;
  color: #fff;
  position: relative;
  padding-bottom: 16px;
}

.pricing-card .header h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: #dbdbdb;
}

.pricing-card .price {
  padding: 16px 20px 20px;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.pricing-card .price .currency {
  font-size: 22px;
  vertical-align: super;
  margin-right: 2px;
}

.pricing-card .body {
  padding: 0 20px 12px;
  flex: 1;
}

.pricing-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

.pricing-card li {
  padding: 10px 0;
  font-size: 14px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.pricing-card li::before {
  content: "✓";
  color: #fff;
  margin-right: 8px;
  font-weight: bold;
}

.pricing-card .footer {
  padding: 16px 20px 24px;
}

/* About section */
.about-section {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: center;
}

.about-logo img {
  width: 220px;
  margin: 0 auto;
}

.about-content {
  background: var(--card-gradient);
  border-radius: 8px;
  padding: 32px;
}

.about-content h3 {
  font-size: 24px;
  margin: 0 0 16px;
  color: #fff;
}

.about-content p {
  color: var(--text-muted);
  margin: 0 0 12px;
  font-size: 15px;
}

/* Flip boxes — reference layout */
.section-flip { padding: 70px 0; }

.flip-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.flip-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.flip-box {
  perspective: 1000px;
  height: 214px;
}

.flip-box-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
  transform-style: preserve-3d;
}

.flip-box:hover .flip-box-inner { transform: rotateY(180deg); }

.flip-box-front,
.flip-box-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 8px;
  padding: 29px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flip-box-front {
  background: #fff;
  text-align: left;
}

.flip-box-back {
  background: var(--accent-dark);
  transform: rotateY(180deg);
  align-items: center;
  justify-content: center;
  text-align: center;
}

.flip-box-front i {
  font-size: 28px;
  color: var(--accent-dark);
  margin-bottom: 14px;
}

.flip-box-front h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 10px;
  color: #222;
}

.flip-box-front p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.flip-box-front p strong {
  color: var(--accent-dark);
  font-weight: 600;
}

.flip-box-back h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  color: #fff;
}

.streaming-panel {
  padding-top: 20px;
}

.streaming-panel h2 {
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 16px;
  color: #fff;
}

.streaming-panel p {
  color: var(--text-muted);
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.7;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.testimonial-card {
  background: var(--card-gradient);
  border-radius: 10px;
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.25s ease, transform 0.2s ease;
}

.testimonial-card:hover {
  border-color: rgba(197, 37, 86, 0.35);
  transform: translateY(-2px);
}

.testimonial-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 12px;
  color: #fff;
}

.testimonial-card p {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
  margin: 0 0 16px;
  line-height: 1.6;
}

.testimonial-card .author {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

/* FAQ Accordion */
.accordion-item {
  border: 1px solid rgba(244, 243, 252, 0.2);
  border-radius: 10px;
  margin-bottom: 8px;
  overflow: hidden;
  background: rgba(244, 243, 252, 0.03);
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}

.accordion-header:hover,
.accordion-item.open .accordion-header { color: #fff; }

.accordion-header svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.accordion-item.open .accordion-header svg { transform: rotate(180deg); }

.accordion-content {
  display: none;
  padding: 0 20px 18px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.7;
}

.accordion-item.open .accordion-content { display: block; }

.accordion-content ul { padding-left: 20px; }
.accordion-content li { margin-bottom: 6px; }
.accordion-content strong { color: #fff; }

/* Support banner */
.section-support {
  background: var(--support-section-bg);
  padding: 70px 0;
}

.support-banner {
  background: var(--card-gradient);
  border-radius: 25px;
  padding: 40px 15px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.support-left {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 25px;
}

.support-icon svg {
  width: 70px;
  height: 70px;
  fill: #fff;
  flex-shrink: 0;
}

.support-text h3 {
  margin: 0 0 6px;
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}

.support-text p {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
}

.support-action {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
}

/* Footer */
.site-footer {
  padding: 0;
  border-top: 1px solid rgba(244, 243, 252, 0.12);
  background: #0a0a0a;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding: 50px 0 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand img {
  width: 51px;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
  max-width: 320px;
}

.footer-nav h4,
.footer-cta h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
  margin: 0 0 16px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}

.footer-inner p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

.footer-inner p span { color: var(--accent); }

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li { margin-bottom: 8px; }

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--accent); }

.footer-cta p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 16px;
}

.footer-cta .btn {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  text-align: center;
}

/* Inner pages */
.page-hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
}

.page-hero-branded {
  background: #0a0a0a;
  border-bottom: 1px solid rgba(197, 37, 86, 0.15);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(197, 37, 86, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 100%, rgba(197, 37, 86, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.page-hero-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  margin: 0;
  color: #fff;
}

.page-content {
  padding: 40px 0 80px;
}

.page-content .content-box {
  background: var(--content-box-bg);
  border-radius: 12px;
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.page-content .content-box h2,
.page-content .content-box h3,
.page-content .content-box h4 {
  color: #fff;
}

.page-content .content-box p,
.page-content .content-box li {
  color: var(--content-text);
}

.page-content h2 {
  font-size: 22px;
  margin: 32px 0 12px;
  color: #fff;
}

.page-content h2:first-child { margin-top: 0; }

.page-content h3 {
  font-size: 18px;
  margin: 20px 0 10px;
  color: #fff;
}

.page-content p,
.page-content li {
  color: var(--text-soft);
  font-size: 15px;
}

.page-content hr {
  border: none;
  border-top: 1px solid rgba(244, 243, 252, 0.15);
  margin: 28px 0;
}

.page-content a:not(.btn) { color: var(--accent); }

/* Contact form */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: start;
}

.contact-form {
  max-width: none;
  margin: 0;
}

.contact-whatsapp-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 16px;
  line-height: 1.5;
}

.btn-whatsapp-submit,
.btn-whatsapp-direct {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-aside h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #fff;
}

.contact-aside p {
  margin: 0 0 18px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.contact-info-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.contact-info-list i {
  color: var(--accent);
  width: 18px;
  margin-right: 8px;
}

.footer-company {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 10px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(244, 243, 252, 0.2);
  border-radius: 6px;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s;
}

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

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

/* Installation tabs — branded colors */
.install-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
  justify-content: center;
}

.install-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: none;
  border-radius: 42px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.install-tab:hover { transform: translateY(-2px); filter: brightness(1.1); }
.install-tab.active { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4); }

.install-tab-android { background: linear-gradient(135deg, #3ddc84 0%, #1faa59 100%); }
.install-tab-desktop { background: linear-gradient(135deg, #4a9eff 0%, #2563eb 100%); }
.install-tab-smarttv { background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%); }
.install-tab-formuler { background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%); }
.install-tab-firetv { background: linear-gradient(135deg, #ff9900 0%, #e47911 100%); }

.prose h4 {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--accent);
  margin: 24px 0 10px;
}

.prose code {
  background: rgba(0, 0, 0, 0.45);
  color: #ffb3c8;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 13px;
  word-break: break-all;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.install-intro {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(197, 37, 86, 0.3);
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 28px;
}

.install-intro i {
  font-size: 22px;
  color: var(--accent);
  flex-shrink: 0;
}

.install-intro p {
  margin: 0;
  font-size: 15px;
  color: var(--content-text);
}

.content-box-branded {
  background: var(--content-box-bg);
  border: 1px solid rgba(197, 37, 86, 0.2);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.install-panel { display: none; }
.install-panel.active { display: block; }

.prose h2 { font-size: 22px; margin: 28px 0 12px; color: #fff; }
.prose h3 { font-size: 18px; margin: 20px 0 10px; color: #fff; }
.prose p, .prose li { color: var(--content-text); font-size: 15px; line-height: 1.75; }
.prose strong { color: #fff; }
.prose ul, .prose ol { padding-left: 24px; }
.prose hr { border: none; border-top: 1px solid rgba(244, 243, 252, 0.15); margin: 24px 0; }
.prose a:not(.btn) { color: var(--accent); }

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
}

.prose table th,
.prose table td {
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
  color: var(--content-text);
}

.prose table th {
  background: rgba(197, 37, 86, 0.22);
  color: #fff;
  font-weight: 600;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(12, 4, 8, 0.92) 0%, rgba(32, 8, 18, 0.96) 50%, rgba(18, 6, 12, 0.94) 100%);
  color: #fff;
  padding: 14px 28px 14px 20px;
  border-radius: 16px;
  margin-bottom: 28px;
  border: 1px solid rgba(197, 37, 86, 0.55);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 12px 40px rgba(197, 37, 86, 0.35),
    0 4px 16px rgba(0, 0, 0, 0.45);
}

.hero-badge-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.08) 50%, transparent 60%);
  animation: badge-shine 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes badge-shine {
  0%, 100% { transform: translateX(-120%); }
  50% { transform: translateX(120%); }
}

.hero-badge-num {
  position: relative;
  z-index: 1;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;
  background: linear-gradient(160deg, #ff8fab 0%, #c52556 45%, #ff4d7a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 18px rgba(197, 37, 86, 0.6));
}

.hero-badge-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.hero-badge-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.75);
}

.hero-badge-brand {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: #fff;
}

.btn-glow {
  box-shadow: 0 0 24px rgba(197, 37, 86, 0.45);
}

.trust-strip {
  position: relative;
  background: linear-gradient(180deg, #0d0d0d 0%, #0a0a0a 100%);
  border-bottom: 1px solid rgba(197, 37, 86, 0.12);
  padding: 44px 0;
  overflow: hidden;
}

.trust-strip-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.trust-badge {
  text-align: center;
  padding: 22px 14px;
  background: var(--card-gradient);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.25s ease, transform 0.2s ease;
}

.trust-badge:hover {
  border-color: rgba(197, 37, 86, 0.4);
  transform: translateY(-3px);
}

.trust-icon-wrap {
  width: 52px;
  height: 52px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(197, 37, 86, 0.15);
  border-radius: 50%;
  border: 1px solid rgba(197, 37, 86, 0.3);
}

.trust-icon-wrap i { font-size: 22px; color: var(--accent); margin: 0; }
.trust-badge h3 { font-size: 13px; font-weight: 600; margin: 0 0 6px; color: #fff; }
.trust-badge p { font-size: 11px; color: var(--text-muted); margin: 0; line-height: 1.5; }

.value-banner {
  position: relative;
  background: linear-gradient(135deg, #150810 0%, #0a0a0a 40%, #080d15 100%);
  border-top: 1px solid rgba(197, 37, 86, 0.2);
  border-bottom: 1px solid rgba(197, 37, 86, 0.2);
  padding: 56px 0;
  overflow: hidden;
}

.value-banner-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(197, 37, 86, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.value-inner { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; position: relative; z-index: 1; }
.value-text { flex: 1; min-width: 260px; }
.value-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(197, 37, 86, 0.2);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  border: 1px solid rgba(197, 37, 86, 0.3);
}
.value-text h2 { font-size: clamp(22px, 3vw, 30px); margin: 0 0 10px; color: #fff; }
.value-text p { margin: 0; color: var(--text-muted); font-size: 15px; max-width: 520px; }
.value-stat { text-align: center; padding: 0 20px; }
.value-number { display: block; font-size: 56px; font-weight: 800; color: var(--accent); line-height: 1; text-shadow: 0 0 40px rgba(197, 37, 86, 0.4); }
.value-label { font-size: 13px; color: var(--text-muted); line-height: 1.4; }

.section-pricing {
  background: linear-gradient(180deg, #0a0a0a 0%, #000001 100%);
  position: relative;
}

.section-pricing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 37, 86, 0.4), transparent);
}

.feature-icon-ring {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(197, 37, 86, 0.15);
  border: 2px solid rgba(197, 37, 86, 0.35);
  border-radius: 50%;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 20px;
}

.category-icon-ring {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 26px;
}

/* Legacy category rings — superseded by .category-icon-hero */

.channel-region-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.channel-region-titles {
  flex: 1;
  min-width: 0;
}

.channel-region-head h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.channel-region-tagline {
  margin: 4px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
  line-height: 1.3;
}

.testimonial-stars {
  color: #ffd700;
  font-size: 13px;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.blog-card {
  overflow: hidden;
  padding: 0;
  background: var(--card-gradient);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
  border-color: rgba(197, 37, 86, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}

.blog-card-visual {
  height: 120px;
  background-size: cover;
}

.blog-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.blog-card-full .blog-card-img { height: 220px; }

.blog-visual-0 { background: linear-gradient(135deg, #c52556 0%, #6b1530 100%); }
.blog-visual-1 { background: linear-gradient(135deg, #2563eb 0%, #1e3a5f 100%); }
.blog-visual-2 { background: linear-gradient(135deg, #e47911 0%, #7c3d00 100%); }
.blog-visual-3 { background: linear-gradient(135deg, #3ddc84 0%, #1a6b40 100%); }

.blog-card-body { padding: 24px; }

.blog-read-more i { font-size: 11px; margin-left: 4px; transition: transform 0.2s; }
.blog-card:hover .blog-read-more i { transform: translateX(4px); }

.comparison-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid rgba(197, 37, 86, 0.25);
  margin-bottom: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.95), rgba(10, 10, 10, 0.98));
}

.comparison-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 720px; }
.comparison-table th, .comparison-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.comparison-table thead th {
  background: #1a1a1a;
  font-weight: 600;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.comparison-table tbody tr:nth-child(even) { background: rgba(255, 255, 255, 0.015); }
.comparison-table tbody tr:hover { background: rgba(197, 37, 86, 0.06); }
.comparison-table tbody td:first-child { font-weight: 500; color: #e8e8e8; }
.comparison-table .col-highlight { background: rgba(197, 37, 86, 0.18); color: var(--accent); font-weight: 700; }
.comparison-table .col-us { color: #fff; font-weight: 600; background: rgba(74, 222, 128, 0.06); }
.comparison-table .col-us i { color: #4ade80; margin-right: 6px; }
.comparison-table .col-bad { color: #f87171; }
.comparison-table .col-mid { color: var(--text-muted); }
.comparison-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.channel-regions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.channel-chips { display: flex; flex-wrap: wrap; gap: 8px; }

.channels-cta-box {
  background: var(--card-gradient);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  border: 1px solid rgba(197, 37, 86, 0.2);
}
.channels-cta-box h2 { margin: 0 0 10px; font-size: 24px; color: #fff; }
.channels-cta-box p { margin: 0 0 24px; color: var(--text-muted); }
.channels-cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.section-cta { text-align: center; margin-top: 36px; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-grid-full { grid-template-columns: repeat(2, 1fr); }
.blog-card h3, .blog-card h2 { font-size: 17px; margin: 8px 0 10px; line-height: 1.4; }
.blog-card h3 a, .blog-card h2 a { color: #fff; transition: color 0.2s; }
.blog-card h3 a:hover, .blog-card h2 a:hover { color: var(--accent); }
.blog-card p { font-size: 14px; color: var(--text-muted); margin: 0 0 14px; line-height: 1.6; }
.blog-read-more { font-size: 13px; font-weight: 600; color: var(--accent); }
.blog-article-cta {
  margin-top: 32px;
  padding: 32px;
  background: var(--content-box-bg);
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(197, 37, 86, 0.25);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
}
.blog-article-cta h3 { margin: 0 0 8px; color: #fff; }
.blog-article-cta p { margin: 0 0 20px; color: var(--content-text-muted); }
.blog-article-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.blog-related {
  margin-top: 28px;
}
.blog-related h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
}
.blog-related-list {
  margin: 0 0 16px;
  padding-left: 1.2rem;
}
.blog-related-list li { margin-bottom: 8px; }
.blog-related-list a { color: var(--accent); text-decoration: none; }
.blog-related-list a:hover { text-decoration: underline; }
.about-page h2 { margin-top: 1.5rem; }
.blog-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.blog-cta-btn-label {
  color: #fff;
  -webkit-text-fill-color: #fff;
}
.blog-cta-btn-primary {
  background: var(--accent);
  color: #fff;
  border: none;
  box-shadow: 0 4px 14px rgba(197, 37, 86, 0.35);
}
.blog-cta-btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(197, 37, 86, 0.45);
}
.blog-cta-btn-secondary {
  background: #2d2d2d;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}
.blog-cta-btn-secondary:hover {
  background: #3a3a3a;
  color: #fff;
  transform: translateY(-1px);
}
.page-content .blog-article-cta a.blog-cta-btn,
.page-content .blog-article-cta a.blog-cta-btn:hover,
.page-content .blog-article-cta .blog-cta-btn-label {
  color: #fff;
  -webkit-text-fill-color: #fff;
}

.pricing-card { position: relative; }
.save-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #fff 0%, #f5f5f5 100%);
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding: 5px 11px;
  border-radius: 20px;
  z-index: 1;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.price-was {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  padding: 0 20px 10px;
}

.price-was s { color: rgba(255, 255, 255, 0.5); }

.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px 14px 18px;
  background: linear-gradient(135deg, #2ee06a 0%, #25d366 50%, #1ebe57 100%);
  color: #fff;
  border-radius: 50px;
  font-size: 30px;
  box-shadow:
    0 8px 32px rgba(37, 211, 102, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.15) inset;
  z-index: 999;
  transition: transform 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
  overflow: visible;
  text-decoration: none;
}

.floating-whatsapp-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50px;
  background: rgba(37, 211, 102, 0.35);
  animation: wa-pulse 2.2s ease-out infinite;
  z-index: -1;
}

.floating-whatsapp-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50px;
  border: 2px solid rgba(37, 211, 102, 0.45);
  animation: wa-ring 2.2s ease-out infinite;
  z-index: -2;
}

@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  70%, 100% { transform: scale(1.35); opacity: 0; }
}

@keyframes wa-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

.floating-whatsapp-label {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 14px 40px rgba(37, 211, 102, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset;
  color: #fff;
}

.install-hero-img,
.install-step-img {
  display: block;
  width: 100%;
  max-width: 720px;
  margin: 20px auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.35);
}

.install-hero-img {
  max-width: 100%;
  margin-bottom: 28px;
}

.prose .install-step-img { margin: 24px auto; }

.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  z-index: 998;
  background: #141414;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}
.sticky-mobile-cta[hidden] { display: none; }
.sticky-mobile-cta a {
  flex: 1;
  text-align: center;
  padding: 14px 12px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.sticky-cta-plans { background: var(--card-gradient); color: #fff; }
.sticky-cta-order { background: var(--accent); color: #fff; }

/* Section atmosphere & premium polish */
.section-watch,
.section-channels-preview,
.section-channels-full,
.section-steps,
.section-about,
.section-testimonials,
.section-blog,
.section-features {
  position: relative;
  overflow: hidden;
}

.section-watch .container,
.section-channels-preview .container,
.section-channels-full .container,
.section-steps .container,
.section-about .container,
.section-testimonials .container,
.section-blog .container {
  position: relative;
  z-index: 1;
}

.section-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 45% at 50% -10%, rgba(197, 37, 86, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 50% 35% at 90% 60%, rgba(59, 130, 246, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 40% 30% at 10% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 45%);
}

.section-mesh-pink {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(197, 37, 86, 0.14) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 0% 50%, rgba(255, 77, 109, 0.06) 0%, transparent 50%);
}

.section-mesh-blue {
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, rgba(59, 130, 246, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 50% 35% at 100% 70%, rgba(96, 165, 250, 0.06) 0%, transparent 50%);
}

.section-mesh-gold {
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(251, 191, 36, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 40% 30% at 20% 80%, rgba(197, 37, 86, 0.06) 0%, transparent 45%);
}

.section-channels-preview {
  padding: 80px 0;
  background: linear-gradient(180deg, #000001 0%, #08080c 50%, #000001 100%);
}

.section-channels-full {
  background: linear-gradient(180deg, #0a0a0a 0%, #060608 100%);
}

.channel-region-card {
  position: relative;
  background: linear-gradient(160deg, rgba(28, 28, 32, 0.95) 0%, rgba(14, 14, 16, 0.98) 100%);
  border-radius: 16px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.channel-region-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.channel-icon-wrap {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  flex-shrink: 0;
  font-size: 22px;
  transition: transform 0.25s ease;
  overflow: hidden;
}

.channel-flag-img {
  width: 36px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  object-fit: cover;
}

.region-usa .channel-icon-wrap,
.region-uk .channel-icon-wrap,
.region-canada .channel-icon-wrap,
.region-europe .channel-icon-wrap {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.channel-region-card:hover .channel-icon-wrap {
  transform: scale(1.06);
}

.region-usa .channel-icon-wrap { background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(239, 68, 68, 0.2)); border: 1px solid rgba(96, 165, 250, 0.35); color: #60a5fa; }
.region-usa:hover { border-color: rgba(96, 165, 250, 0.35); }
.region-uk .channel-icon-wrap { background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(29, 78, 216, 0.15)); border: 1px solid rgba(59, 130, 246, 0.35); color: #3b82f6; }
.region-uk:hover { border-color: rgba(59, 130, 246, 0.35); }
.region-canada .channel-icon-wrap { background: linear-gradient(135deg, rgba(239, 68, 68, 0.25), rgba(255, 255, 255, 0.08)); border: 1px solid rgba(239, 68, 68, 0.35); color: #f87171; }
.region-canada:hover { border-color: rgba(239, 68, 68, 0.35); }
.region-europe .channel-icon-wrap { background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(139, 92, 246, 0.15)); border: 1px solid rgba(139, 92, 246, 0.35); color: #a78bfa; }
.region-europe:hover { border-color: rgba(139, 92, 246, 0.35); }
.region-mideast .channel-icon-wrap { background: linear-gradient(135deg, rgba(16, 185, 129, 0.3), rgba(5, 150, 105, 0.15)); border: 1px solid rgba(52, 211, 153, 0.35); color: #34d399; }
.region-mideast:hover { border-color: rgba(52, 211, 153, 0.35); }
.region-latam .channel-icon-wrap { background: linear-gradient(135deg, rgba(245, 158, 11, 0.3), rgba(234, 88, 12, 0.15)); border: 1px solid rgba(251, 191, 36, 0.35); color: #fbbf24; }
.region-latam:hover { border-color: rgba(251, 191, 36, 0.35); }
.region-sports .channel-icon-wrap { background: linear-gradient(135deg, rgba(197, 37, 86, 0.35), rgba(255, 77, 109, 0.15)); border: 1px solid rgba(255, 77, 109, 0.35); color: #ff6b8a; }
.region-movies .channel-icon-wrap { background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(37, 99, 235, 0.15)); border: 1px solid rgba(96, 165, 250, 0.35); color: #60a5fa; }
.region-kids .channel-icon-wrap { background: linear-gradient(135deg, rgba(251, 191, 36, 0.3), rgba(245, 158, 11, 0.15)); border: 1px solid rgba(251, 191, 36, 0.35); color: #fbbf24; }
.region-news .channel-icon-wrap { background: linear-gradient(135deg, rgba(148, 163, 184, 0.25), rgba(100, 116, 139, 0.15)); border: 1px solid rgba(148, 163, 184, 0.35); color: #94a3b8; }
.region-music .channel-icon-wrap { background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), rgba(219, 39, 119, 0.15)); border: 1px solid rgba(244, 114, 182, 0.35); color: #f472b6; }
.region-premium .channel-icon-wrap { background: linear-gradient(135deg, rgba(251, 191, 36, 0.3), rgba(197, 37, 86, 0.2)); border: 1px solid rgba(255, 215, 0, 0.35); color: #fcd34d; }

.channel-chip {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.channel-chip:hover {
  background: rgba(197, 37, 86, 0.12);
  border-color: rgba(197, 37, 86, 0.25);
}

.channel-chip-hot {
  background: rgba(197, 37, 86, 0.14);
  border-color: rgba(255, 77, 109, 0.35);
  color: #fff;
  font-weight: 600;
}

.channel-chip-hot i {
  font-size: 10px;
  color: #ff6b8a;
  margin-right: 2px;
}

.channel-chip-hot:hover {
  background: rgba(197, 37, 86, 0.22);
  border-color: rgba(255, 77, 109, 0.5);
}

.channel-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: -28px auto 48px;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.channel-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 20px 16px;
  background: linear-gradient(160deg, rgba(28, 28, 32, 0.95), rgba(14, 14, 16, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  text-align: center;
}

.channel-stat i {
  font-size: 20px;
  color: #ff6b8a;
  margin-bottom: 4px;
}

.channel-stat strong {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

.channel-stat span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.channel-count {
  margin-left: auto;
  font-size: 11px;
  color: #fff;
  background: linear-gradient(135deg, rgba(197, 37, 86, 0.35), rgba(255, 77, 109, 0.2));
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 700;
  border: 1px solid rgba(197, 37, 86, 0.3);
}

.section-cta-channels {
  margin-top: 48px;
  text-align: center;
}

.btn-channel-cta {
  font-size: 16px;
  padding: 18px 36px;
  border-radius: 50px;
  gap: 10px;
  box-shadow: 0 0 32px rgba(197, 37, 86, 0.4), 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-channel-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 48px rgba(197, 37, 86, 0.55), 0 12px 32px rgba(0, 0, 0, 0.35);
}

.step-card {
  background: linear-gradient(165deg, #1a1a1a 0%, #111 60%, #0a0a0a 100%);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.step-number {
  background: linear-gradient(135deg, #c52556 0%, #ff4d7a 100%);
  box-shadow: 0 6px 24px rgba(197, 37, 86, 0.45);
}

.section-about {
  padding: 80px 0;
  background: linear-gradient(180deg, #000001 0%, #0a0608 50%, #000001 100%);
}

.about-content {
  background: linear-gradient(165deg, rgba(28, 28, 32, 0.95) 0%, rgba(16, 16, 18, 0.98) 100%);
  border-radius: 16px;
  border: 1px solid rgba(197, 37, 86, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.about-logo img {
  filter: drop-shadow(0 0 40px rgba(197, 37, 86, 0.25));
}

.testimonial-card {
  background: linear-gradient(165deg, #1a1a1a 0%, #111 60%, #0d0d0d 100%);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.testimonial-card:hover {
  border-color: rgba(251, 191, 36, 0.3);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 13px;
  margin-bottom: 12px;
  letter-spacing: 3px;
  text-shadow: 0 0 12px rgba(251, 191, 36, 0.4);
}

.blog-card {
  background: linear-gradient(165deg, #1a1a1a 0%, #111 60%, #0d0d0d 100%);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.blog-card:hover {
  border-color: rgba(59, 130, 246, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.blog-date {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--accent);
  background: rgba(197, 37, 86, 0.12);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 10px;
}

.trust-badge {
  background: linear-gradient(165deg, #1a1a1a 0%, #111 60%, #0d0d0d 100%);
  border-radius: 14px;
}

.trust-badge:hover {
  box-shadow: 0 10px 28px rgba(197, 37, 86, 0.15);
}

.accordion-item {
  background: linear-gradient(165deg, rgba(28, 28, 32, 0.6) 0%, rgba(16, 16, 18, 0.8) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.accordion-item.open {
  border-color: rgba(197, 37, 86, 0.3);
  background: linear-gradient(165deg, rgba(32, 12, 20, 0.5) 0%, rgba(16, 16, 18, 0.9) 100%);
}

.comparison-table-wrap {
  border-radius: 16px;
  border: 1px solid rgba(197, 37, 86, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.comparison-table thead th {
  background: linear-gradient(180deg, #1a1a1a 0%, #141414 100%);
}

.comparison-table .col-highlight {
  background: linear-gradient(180deg, rgba(197, 37, 86, 0.18) 0%, rgba(197, 37, 86, 0.08) 100%);
}

.support-banner {
  background: linear-gradient(135deg, #1a1020 0%, #141414 50%, #101018 100%);
  border: 1px solid rgba(197, 37, 86, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.channel-logo {
  width: 18px;
  height: 18px;
  border-radius: 3px;
  margin-right: 4px;
  vertical-align: middle;
  flex-shrink: 0;
}

/* Channel search */
.channel-search-bar {
  margin-bottom: 32px;
}

.channel-search-input-wrap {
  position: relative;
  max-width: 560px;
  margin: 0 auto 16px;
}

.channel-search-input-wrap i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.35);
  font-size: 15px;
}

.channel-search-input {
  width: 100%;
  padding: 16px 20px 16px 48px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.channel-search-input:focus {
  border-color: rgba(197, 37, 86, 0.5);
  box-shadow: 0 0 0 3px rgba(197, 37, 86, 0.12);
}

.channel-search-input::placeholder { color: rgba(255, 255, 255, 0.35); }

.channel-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.channel-filter-btn {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.7);
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.channel-filter-btn:hover,
.channel-filter-btn.active {
  background: rgba(197, 37, 86, 0.18);
  border-color: rgba(197, 37, 86, 0.4);
  color: #fff;
}

.channel-search-empty {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  margin-top: 16px;
}

.channel-region-card[hidden] { display: none !important; }

/* Testimonials with avatars */
.testimonial-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #8b1a42);
  border: 2px solid rgba(197, 37, 86, 0.35);
  flex-shrink: 0;
}

.testimonial-author-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-name {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.testimonial-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.testimonial-flag {
  border-radius: 2px;
}

/* Value banner tiers */
.value-tiers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.value-tier {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  min-width: 110px;
}

.value-tier-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.value-tier-save {
  font-size: 13px;
  font-weight: 700;
  color: #ff6b8a;
}

.value-tier-mo {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

/* Payment methods */
.payment-methods {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.payment-methods-compact { margin-top: 0; }

.payment-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-right: 4px;
}

.payment-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 20px;
}

.payment-icon .fa-bitcoin { color: #f7931a; }
.payment-icon .fa-cc-paypal { color: #009cde; }

.page-content .payment-methods,
.payment-methods-wrap .payment-methods {
  justify-content: center;
  margin: 8px auto 40px;
}

/* Uptime widget */
.uptime-widget {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.3);
  border-radius: 50px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
}

.uptime-widget strong { color: #34d399; }

.uptime-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.8);
  animation: uptime-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes uptime-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.trust-strip-top {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.uptime-bar {
  padding: 16px 0 0;
  margin-bottom: 8px;
}

.uptime-bar-inner {
  display: flex;
  justify-content: center;
}

.footer-brand .uptime-widget {
  margin-top: 14px;
}

.section-faq { padding: 80px 0; }

/* Responsive */
@media (max-width: 1024px) {
  .features-grid,
  .pricing-grid,
  .testimonials-grid,
  .categories-grid { grid-template-columns: repeat(2, 1fr); }

  .steps-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .channel-regions-grid { grid-template-columns: repeat(2, 1fr); }
  .channel-stats-bar { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .streaming-panel { grid-column: 1 / -1; }

  .about-section { grid-template-columns: 1fr; text-align: center; }

  .hero { padding: calc(var(--header-height) + 48px) 0 80px; }
  .hero-content { max-width: 100%; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 22px; }
  .hero-badge-copy { min-width: 0; }
  .pricing-tabs { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 768px) {
  :root { --header-height: 68px; }

  .container {
    width: min(100% - 24px, var(--max-width));
  }

  .menu-toggle { display: block; margin-left: auto; }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 88vw);
    max-width: 100%;
    height: 100dvh;
    height: 100vh;
    background: #1a1a1a;
    padding: calc(var(--header-height) + 20px) 20px 24px;
    transition: transform 0.3s ease;
    transform: translateX(100%);
    z-index: 101;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    overflow-y: auto;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.45);
  }

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

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    flex: 1;
  }

  .main-nav a {
    line-height: 1.4;
    padding: 14px 12px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .main-nav .lang-switcher {
    margin-top: 16px;
    width: 100%;
    justify-content: center;
    flex-shrink: 0;
    padding: 8px 10px;
  }

  .header-logo { flex: 1 1 auto; max-width: calc(100% - 52px); }

  .logo { gap: 8px; }

  .logo-icon { width: 40px; height: 40px; }

  .logo-name { font-size: 14px; }

  .logo-tagline { font-size: 8px; letter-spacing: 0.05em; }

  .logo-wordmark { min-width: 0; }

  .header-inner { flex-wrap: nowrap; gap: 8px; }

  .site-header.header-overlay {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

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

  .hero {
    padding: calc(var(--header-height) + 28px) 0 56px;
    min-height: auto;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.78) 55%,
      rgba(0, 0, 0, 0.88) 100%
    );
  }

  .hero-slide { background-position: center top; }

  .hero-content { max-width: 100%; }

  .hero h1 {
    font-size: clamp(22px, 6.2vw, 28px);
    margin-bottom: 14px;
  }

  .hero p {
    font-size: 14px;
    line-height: 1.55;
    max-width: 100%;
    margin-bottom: 10px;
  }

  .hero-badge {
    padding: 10px 14px;
    gap: 10px;
    margin-bottom: 18px;
    max-width: 100%;
    border-radius: 12px;
  }

  .hero-badge-num { font-size: 26px; }

  .hero-badge-label { font-size: 9px; letter-spacing: 1.5px; }

  .hero-badge-brand { font-size: 12px; }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    margin-top: 20px;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .features-grid,
  .pricing-grid,
  .testimonials-grid,
  .flip-columns { grid-template-columns: 1fr; }

  .devices-showcase {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .devices-app-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .pricing-tab { padding: 12px 24px; font-size: 14px; }

  .support-banner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px 20px;
  }

  .support-left {
    flex-direction: column;
    padding: 0;
    text-align: center;
  }

  .support-action { padding: 0; }

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

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

  .page-content .content-box { padding: 24px; }

  .btn { font-size: 15px; }
  .btn-whatsapp { font-size: 16px; padding: 14px 24px; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .channel-regions-grid { grid-template-columns: 1fr; }
  .channel-stats-bar { grid-template-columns: repeat(2, 1fr); margin-top: -16px; }
  .blog-grid, .blog-grid-full { grid-template-columns: 1fr; }
  .blog-article-cta-actions { flex-direction: column; align-items: stretch; }
  .blog-cta-btn { width: 100%; min-width: 0; }
  .footer-top { grid-template-columns: 1fr; text-align: center; }
  .footer-brand p { max-width: none; margin: 0 auto; }
  .footer-cta .btn { max-width: 280px; margin-inline: auto; }
  .value-tiers { justify-content: center; }
  .channel-filter-pills { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; -webkit-overflow-scrolling: touch; }
  .value-inner { flex-direction: column; text-align: center; }
  .value-text p { max-width: none; }

  .floating-whatsapp,
  .sticky-mobile-cta {
    display: none !important;
  }

  body.has-sticky-cta { padding-bottom: 0; }
}

@media (max-width: 400px) {
  .devices-app-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
