:root {
  --bg: #0b0b0f;
  --bg-soft: #12121a;
  --surface: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.12);
  --text: #ffffff;
  --muted: #b3b3c7;
  --accent: #e50914;
  --accent-2: #ff3b6b;
  --success: #25d366;
  --gradient: linear-gradient(135deg, #e50914 0%, #ff3b6b 60%, rgba(255, 59, 107, 0.0) 100%);
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.5);
  --radius: 22px;
  --container: 1200px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --nav-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(1200px 600px at 20% 0%, rgba(229, 9, 20, 0.16), transparent 55%),
    radial-gradient(900px 500px at 80% 10%, rgba(255, 59, 107, 0.12), transparent 55%),
    linear-gradient(180deg, #07070a 0%, var(--bg) 40%, #07070a 100%);
  color: var(--text);
  overflow-x: hidden;
  min-width: 320px;
}

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

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

button {
  font: inherit;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  font-family: "Poppins", sans-serif;
  margin: 0;
  letter-spacing: -0.03em;
}

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

.section-spacing-sm {
  margin-top: 26px;
}

.top-gap {
  margin-top: 18px !important;
}

.top-offer-bar {
  position: relative;
  z-index: 20;
  background: linear-gradient(90deg, #b20710 0%, #e50914 52%, #b20710 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 24px rgba(229, 9, 20, 0.28);
}

.top-offer-inner {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  color: #fff;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 0;
  flex-wrap: wrap;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.countdown-chip {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(0, 212, 255, 0.12);
  border: 1px solid rgba(0, 212, 255, 0.22);
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.12);
  font-weight: 700;
  min-width: 126px;
}

.countdown-chip {
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  color: #fff;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 55;
  transition: all 0.35s var(--ease);
  background: rgba(10, 10, 14, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .nav-shell {
  background: rgba(10, 10, 14, 0.98);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
}

.nav-shell {
  margin: 0 auto;
  width: min(100%, 100%);
  min-height: var(--nav-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 30px;
  border-radius: 0;
  border: 1px solid transparent;
  transition: inherit;
  background: rgba(10, 10, 14, 0.94);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--gradient);
  box-shadow: 0 16px 36px rgba(0, 212, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 13px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.04));
}

.brand-mark span {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  font-weight: 800;
}

.brand-text strong {
  display: block;
  font-size: 1rem;
  line-height: 1.1;
}

.brand-text small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-family: "Inter", sans-serif;
}

.nav-links {
  display: none;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-links a,
.mobile-menu a {
  color: var(--muted);
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  transition: color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.footer-links a:hover,
.footer-contact a:hover {
  color: var(--text);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: transparent;
  color: #e50914;
  transform: translateY(-1px);
  outline: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}

.lang-switch-wrap {
  display: inline-flex;
  align-items: center;
}

.lang-switcher {
  min-height: 44px;
  border-radius: 999px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-weight: 600;
  outline: none;
}

.lang-switcher option {
  color: #111;
}

.lang-suggest {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 90px;
  z-index: 90;
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(14, 14, 20, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
}

.lang-suggest p {
  margin: 0;
  color: #e7e7f0;
  line-height: 1.5;
  font-size: 0.94rem;
}

.lang-suggest-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.lang-suggest button {
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 700;
  color: #fff;
}

.lang-suggest .primary {
  background: linear-gradient(135deg, #e50914 0%, #ff3b6b 100%);
  border-color: rgba(229, 9, 20, 0.45);
}

.lang-suggest .ghost {
  background: rgba(255, 255, 255, 0.06);
}

.btn,
.nav-cta,
.pricing-btn,
.cta-banner .btn,
.blog-hero .btn {
  min-height: 48px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
  will-change: transform;
}

.btn:hover,
.nav-cta:hover,
.pricing-btn:hover,
.faq-item summary:hover,
.blog-card:hover {
  transform: translateY(-2px);
}

.btn-primary,
.nav-cta,
.pricing-btn,
.cta-banner .btn,
.blog-hero .btn {
  background: linear-gradient(135deg, #e50914 0%, #ff3b6b 100%);
  color: #fff;
  box-shadow: 0 18px 50px rgba(229, 9, 20, 0.22);
}

.nav-cta {
  background: linear-gradient(90deg, #b20710 0%, #e50914 52%, #b20710 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.menu-toggle {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.menu-toggle::before {
  transform: translateY(-6px);
}

.menu-toggle::after {
  transform: translateY(6px);
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: rotate(-45deg);
}

.mobile-menu {
  width: 100%;
  margin: 0;
  padding: 10px 20px 16px;
  border-radius: 0;
  background: rgba(10, 10, 14, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 8px;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-menu a {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

section {
  position: relative;
}

.hero,
.blog-hero {
  padding: 28px 0 26px;
  overflow: clip;
}

.blog-hero::before,
.blog-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  pointer-events: none;
  opacity: 0.8;
}

.blog-hero::before {
  top: 10%;
  left: -16%;
  width: 320px;
  height: 320px;
  background: rgba(229, 9, 20, 0.18);
}

.blog-hero::after {
  top: 8%;
  right: -14%;
  width: 320px;
  height: 320px;
  background: rgba(255, 59, 107, 0.14);
}

.particle-field {
  display: none;
}

.particle-field span:nth-child(1) {
  width: 140px;
  height: 140px;
  left: 6%;
  top: 16%;
  animation-duration: 18s;
}

.particle-field span:nth-child(2) {
  width: 90px;
  height: 90px;
  left: 24%;
  top: 68%;
  animation-duration: 14s;
  animation-delay: -4s;
}

.particle-field span:nth-child(3) {
  width: 110px;
  height: 110px;
  right: 18%;
  top: 22%;
  animation-duration: 16s;
  animation-delay: -8s;
}

.particle-field span:nth-child(4) {
  width: 56px;
  height: 56px;
  right: 8%;
  top: 60%;
  animation-duration: 12s;
  animation-delay: -3s;
}

.particle-field span:nth-child(5) {
  width: 72px;
  height: 72px;
  left: 54%;
  top: 10%;
  animation-duration: 15s;
  animation-delay: -10s;
}

.particle-field span:nth-child(6) {
  width: 120px;
  height: 120px;
  left: 72%;
  top: 72%;
  animation-duration: 19s;
  animation-delay: -6s;
}

@keyframes floatParticle {

  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(0.95);
    opacity: 0.25;
  }

  50% {
    transform: translate3d(0, -24px, 0) scale(1.08);
    opacity: 0.7;
  }
}

.hero-grid,
.blog-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #d5efff;
  font-size: 0.84rem;
  margin-bottom: 18px;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #19f39b;
  box-shadow: 0 0 0 0 rgba(25, 243, 155, 0.6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(25, 243, 155, 0.55);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(25, 243, 155, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(25, 243, 155, 0);
  }
}

.hero h1,
.blog-hero h1 {
  font-size: clamp(2.3rem, 8.5vw, 4.8rem);
  line-height: 1.02;
  max-width: 14ch;
}

.hero h1 {
  max-width: 16ch;
}

.hero-title-top {
  display: block;
  font-size: clamp(1rem, 2.2vw, 1.45rem);
  line-height: 1.2;
  letter-spacing: 0;
  color: #dbe2f3;
  font-weight: 600;
  margin-bottom: 8px;
}

.hero-title-main {
  display: block;
  font-size: clamp(2.2rem, 6.2vw, 4.8rem);
  line-height: 1.02;
}

.gradient-text {
  color: var(--accent);
  text-shadow: 0 0 22px rgba(229, 9, 20, 0.25);
}

.hero-copy p,
.blog-hero-copy p,
.section-head p,
.feature-card p,
.pricing-card p,
.device-card p,
.testimonial-card p,
.faq-item p,
.footer-note,
.article-card p,
.blog-card p,
.blog-list p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-copy p,
.blog-hero-copy p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 58ch;
  margin: 18px 0 24px;
}

.hero-actions,
.blog-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

.hero-proofline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.hero-proofline span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.35);
  color: #f0f4ff;
  font-size: 0.83rem;
  font-weight: 600;
}

.hero-proofline span::before {
  content: "✓";
  margin-right: 8px;
  color: #7fffb2;
  font-weight: 800;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero-badge,
.live-badge {
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #dce3f6;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(14px);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 78vh;
  display: flex;
  align-items: center;
}

.hero-bg-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  opacity: 1;
  pointer-events: none;
  transform: none;
  filter: none;
}

.hero-section-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  opacity: 1;
  filter: brightness(0.58) saturate(1.05) contrast(1.02);
  transition: none !important;
  animation: none !important;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(6, 7, 10, 0.74) 0%, rgba(6, 7, 10, 0.74) 48%, rgba(6, 7, 10, 0.74) 100%),
    radial-gradient(900px 420px at 100% 0%, rgba(229, 9, 20, 0.25), transparent 60%);
  opacity: 1;
  transition: none !important;
  animation: none !important;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: 30px;
  padding-right: 30px;
}

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

.hero-copy {
  max-width: 760px;
}

.hero-visual {
  position: relative;
  min-height: 420px;
}

.hero-video-card {
  position: relative;
  min-height: 420px;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
  background: #09090d;
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transform: scale(1.04);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 7, 10, 0.2) 0%, rgba(6, 7, 10, 0.68) 100%),
    radial-gradient(900px 380px at 100% 0%, rgba(229, 9, 20, 0.25), transparent 60%);
  pointer-events: none;
}

.visual-card,
.article-card,
.blog-card,
.blog-panel {
  position: relative;
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.visual-card::before,
.glass-card::before,
.article-card::before,
.blog-card::before,
.blog-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(123, 47, 247, 0.12), transparent 42%, rgba(0, 212, 255, 0.12));
  pointer-events: none;
}

.visual-screen {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 360px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.9)), url('https://image.tmdb.org/t/p/w1280/q6y0Go1tsGEsmtFryDOJo3dEmqu.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 22px;
}

.screen-top,
.screen-bottom,
.testimonial-meta,
.footer-bottom,
.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.screen-bottom {
  align-items: flex-end;
}

.screen-chip,
.screen-rating,
.screen-card,
.article-chip,
.blog-pill {
  background: rgba(0, 0, 0, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 12px 14px;
}

.screen-chip {
  color: #f2f6ff;
  font-size: 0.92rem;
}

.screen-rating {
  color: #ffe38a;
  font-weight: 700;
}

.screen-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 10px;
}

.screen-content p {
  margin: 0;
  color: #d8def0;
  max-width: 36ch;
}

.screen-card strong,
.article-card strong {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.section-head {
  text-align: center;
  margin-bottom: 26px;
}

.section-head p {
  max-width: 58ch;
  margin: 12px auto 0;
}

.logos-marquee,
.channels-row {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.logos-track,
.channel-track {
  display: flex;
  width: max-content;
  gap: 14px;
  padding: 16px 0;
  animation: marquee 24s linear infinite;
  will-change: transform;
}

.channel-track.reverse {
  animation-direction: reverse;
  animation-duration: 28s;
}

.logo-pill,
.channel-pill {
  min-width: max-content;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #edf7ff;
  font-weight: 600;
}

.channel-pill {
  background: rgba(255, 255, 255, 0.04);
  color: #d9e8f6;
}

@keyframes marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.stats {
  padding: 28px 0 16px;
}

.stats-grid,
.features-grid,
.pricing-grid,
.device-grid,
.testimonial-grid,
.footer-grid,
.blog-grid,
.article-grid {
  display: grid;
  gap: 16px;
}

.glass-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.stat-card,
.feature-card,
.testimonial-card,
.device-card,
.pricing-card,
.faq-item,
.cta-banner {
  padding: 22px;
}

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

.stat-card strong {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-bottom: 8px;
}

.stat-card span,
.price-suffix,
.testimonial-meta span:last-child {
  color: var(--muted);
}

.stat-card small {
  display: block;
  font-size: 0.75rem;
  color: #7f8499;
  margin-top: 4px;
  font-weight: 500;
}

.device-card p {
  font-size: 0.95rem;
}

.features,
.channels-preview,
.pricing,
.devices,
.testimonials,
.faq,
.cta-section,
.blog-content,
.blog-articles {
  padding: 80px 0;
}

.feature-icon,
.device-icon,
.blog-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: rgba(229, 9, 20, 0.12);
  border: 1px solid rgba(229, 9, 20, 0.22);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
}

.feature-card h3,
.pricing-card h3,
.testimonial-card h3,
.device-card h3,
.article-card h2,
.blog-card h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.channels-grid {
  display: grid;
  gap: 14px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  position: relative;
  isolation: isolate;
}

.pricing-card.popular {
  border-color: rgba(0, 212, 255, 0.32);
  transform: translateY(-4px);
}

.pricing-card.popular::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: var(--gradient);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.8;
  pointer-events: none;
}

.plan-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
  margin-bottom: 18px;
}

.plan-badge,
.save-badge,
.popular-badge,
.blog-category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.plan-badge,
.blog-category {
  background: rgba(255, 255, 255, 0.06);
  color: #dae2f5;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.popular-badge {
  background: rgba(0, 212, 255, 0.16);
  color: #baf6ff;
  border: 1px solid rgba(0, 212, 255, 0.28);
}

.price-line {
  display: flex;
  align-items: end;
  gap: 10px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.old-price {
  color: #7f8499;
  text-decoration: line-through;
  font-size: 0.96rem;
}

.new-price {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
}

.save-badge {
  background: rgba(25, 243, 155, 0.15);
  color: #83ffc3;
  border: 1px solid rgba(25, 243, 155, 0.2);
  margin: 14px 0 18px;
  width: fit-content;
}

.plan-list,
.blog-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 12px;
}

.plan-list li,
.blog-list li {
  display: flex;
  gap: 10px;
  color: #dfe7f3;
  line-height: 1.6;
}

.plan-list li::before,
.blog-list li::before {
  content: "✓";
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
  margin-top: 1px;
}

.pricing-btn {
  width: 100%;
  margin-top: auto;
}

.device-card,
.blog-card {
  text-align: center;
}

.device-icon {
  margin: 0 auto 14px;
  font-size: 1.7rem;
}

.testimonial-card .stars {
  letter-spacing: 0.18em;
  color: #ffcf5a;
  margin-bottom: 16px;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
}

.faq-item {
  padding: 0;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.faq-icon::after {
  transform: rotate(90deg);
}

.faq-item[open] .faq-icon::after {
  transform: rotate(0deg);
  opacity: 0;
}

.faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
}

.faq-item[open] .faq-content {
  grid-template-rows: 1fr;
}

.faq-content>div {
  overflow: hidden;
}

.faq-content p {
  padding: 0 22px 22px;
  margin: 0;
}

.cta-banner {
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.92), rgba(255, 59, 107, 0.88));
  border-radius: 30px;
  display: grid;
  gap: 18px;
  text-align: center;
  padding: 34px 24px;
  box-shadow: 0 24px 60px rgba(0, 212, 255, 0.22);
}

.cta-banner {
  box-shadow: 0 24px 60px rgba(229, 9, 20, 0.22);
}

/* Netflix-style poster rows (transform-only marquee) */
.rows {
  padding: 28px 0 8px;
}

.row {
  margin: 22px 0;
}

.row-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.row-head h2 {
  font-size: clamp(1.25rem, 2.3vw, 1.65rem);
}

.row-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.row-viewport {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.row-viewport::before,
.row-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 72px;
  z-index: 2;
  pointer-events: none;
}

.row-viewport::before {
  left: 0;
  background: linear-gradient(90deg, rgba(11, 11, 15, 0.95), rgba(11, 11, 15, 0));
}

.row-viewport::after {
  right: 0;
  background: linear-gradient(270deg, rgba(11, 11, 15, 0.95), rgba(11, 11, 15, 0));
}

.row-track {
  display: flex;
  gap: 12px;
  padding: 16px;
  width: max-content;
  animation: rowMarquee 34s linear infinite;
  will-change: transform;
}

.row-track.reverse {
  animation-direction: reverse;
  animation-duration: 40s;
}

.row-viewport:hover .row-track {
  animation-play-state: paused;
}

@keyframes rowMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.tile {
  position: relative;
  width: 128px;
  flex: 0 0 128px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: translate3d(0, 0, 0);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
  will-change: transform;
}

.tile:hover {
  transform: translate3d(0, -6px, 0) scale(1.04);
  border-color: rgba(229, 9, 20, 0.42);
}

.tile img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
}

.tile .tile-label {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 700;
  font-size: 0.85rem;
}

.tile.wide {
  width: 190px;
  flex: 0 0 190px;
}

.tile.wide img {
  aspect-ratio: 16 / 9;
}

.cta-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.footer {
  padding: 10px 0 34px;
}

.footer-shell {
  padding: 28px 24px;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-contact a {
  color: var(--muted);
  transition: color 0.3s var(--ease);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 24px;
  padding-top: 18px;
  color: #8e93a8;
  font-size: 0.92rem;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: transform, opacity;
}

.reveal.in-view {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.live-toast,
.whatsapp-float {
  position: fixed;
  z-index: 70;
}

.live-toast {
  left: 16px;
  bottom: 18px;
  max-width: min(92vw, 320px);
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 12, 18, 0.92);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
  transform: translate3d(0, 22px, 0);
  opacity: 0;
  transition: transform 0.45s var(--ease), opacity 0.45s var(--ease);
  pointer-events: none;
}

.live-toast.visible {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.live-toast-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(37, 211, 102, 0.16);
  border: 1px solid rgba(37, 211, 102, 0.22);
  flex: 0 0 42px;
}

.live-toast strong {
  display: block;
  margin-bottom: 3px;
  font-size: 0.95rem;
}

.live-toast span {
  color: var(--muted);
  font-size: 0.86rem;
}

.whatsapp-float {
  right: 16px;
  bottom: 18px;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #1ebe5d, #25d366);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.35);
  color: #fff;
  font-size: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 20px 48px rgba(37, 211, 102, 0.42);
}

.blog-hero-copy,
.blog-aside {
  position: relative;
  z-index: 1;
}

.blog-hero-copy h1 {
  max-width: 10ch;
}

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

.blog-card {
  padding: 24px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.blog-card:hover {
  border-color: rgba(0, 212, 255, 0.28);
  box-shadow: 0 20px 50px rgba(0, 212, 255, 0.12);
}

.blog-card h2 {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
}

.blog-meta,
.article-meta {
  color: #d8def0;
  font-size: 0.92rem;
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.blog-card a.inline-link,
.article-card a.inline-link {
  color: #b6efff;
  font-weight: 700;
}

.blog-panel {
  padding: 24px;
}

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

.article-card h2 {
  font-size: clamp(1.45rem, 2vw, 1.8rem);
}

.article-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

@media (min-width: 768px) {
  .container {
    width: min(calc(100% - 48px), var(--container));
  }

  .hero,
  .blog-hero {
    padding: 40px 0 36px;
  }

  .hero-actions,
  .blog-hero-actions {
    flex-direction: row;
    align-items: center;
  }

  .hero-proofline span {
    font-size: 0.86rem;
  }

  .stats-grid,
  .features-grid,
  .pricing-grid,
  .testimonial-grid,
  .footer-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .cta-banner {
    padding: 42px;
  }
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }

  .menu-toggle,
  .mobile-menu {
    display: none !important;
  }

  .nav-shell {
    padding-left: 90px;
    padding-right: 90px;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-copy {
    max-width: 780px;
    transform: none;
  }

  .blog-hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 36px;
  }

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

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

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

  .device-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

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

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
  }

  .blog-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }

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

@media (min-width: 1280px) {
  .hero .container {
    padding-left: 90px;
    padding-right: 90px;
  }
}

@media (max-width: 1023.98px) {
  .nav-cta {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .lang-switcher {
    min-height: 42px;
    padding: 0 10px;
    font-size: 0.9rem;
  }

  .lang-suggest {
    bottom: 84px;
  }
}

@media (prefers-reduced-motion: reduce) {

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

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