/* ========================================
   TOKENS
   ======================================== */

:root {
  --bg: #050505;
  --bg-2: #111111;
  --accent: #E50914;
  --accent-hover: #c7070f;
  --white: #FFFFFF;
  --muted: #B3B3B3;
  --border: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.12);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.25rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: 2rem;
  --fs-4xl: 2.5rem;
  --fs-5xl: 3.5rem;

  --container: 1200px;
  --gutter: 24px;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ========================================
   RESET
   ======================================== */

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

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

body {
  font-family: var(--font);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--white);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

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

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

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

ul, ol {
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

::selection {
  background: var(--accent);
  color: var(--white);
}

/* ========================================
   LAYOUT
   ======================================== */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: 120px 0;
}

.section__header {
  margin-bottom: 64px;
}

.section__label {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.section__title {
  font-size: var(--fs-4xl);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section__desc {
  font-size: var(--fs-lg);
  color: var(--muted);
  margin-top: 16px;
  max-width: 480px;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: var(--fs-sm);
  font-weight: 600;
  line-height: 1;
  padding: 12px 24px;
  border-radius: 6px;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn--outline {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.btn--outline:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.btn--lg {
  padding: 16px 32px;
  font-size: var(--fs-base);
}

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

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

/* ========================================
   HEADER
   ======================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}

.header--solid {
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 40px;
}

.logo__img {
  height: 36px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
  margin-right: 40px;
}

.nav__link {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}

.nav__link:hover {
  color: var(--white);
}

.header__right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.menu-toggle span {
  width: 20px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translateY(4.5px) translateX(4.5px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translateY(-4.5px) translateX(4.5px);
}

/* ========================================
   HERO
   ======================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('../img/hero.png') center center / cover no-repeat;
}

.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(5, 5, 5, 0.55) 0%,
      rgba(5, 5, 5, 0.45) 30%,
      rgba(5, 5, 5, 0.6) 60%,
      rgba(5, 5, 5, 0.95) 90%,
      #050505 100%
    );
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(5, 5, 5, 0.7) 0%,
      transparent 40%,
      transparent 60%,
      rgba(5, 5, 5, 0.5) 100%
    );
}

.hero__glow,
.hero__screen,
.hero__screen-content,
.hero__ambient {
  display: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 120px;
  padding-bottom: 80px;
}

.hero__label {
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero__sub {
  font-size: var(--fs-lg);
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* TRUST STRIP */
.trust-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  border-top: 1px solid var(--border);
  background: rgba(5, 5, 5, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 20px 0;
}

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-strip__stars {
  color: #FBBF24;
  font-size: var(--fs-sm);
  letter-spacing: 2px;
}

.trust-strip__number {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--white);
}

.trust-strip__text {
  font-size: var(--fs-sm);
  color: var(--muted);
}

.trust-strip__divider {
  width: 1px;
  height: 24px;
  background: var(--border);
}

/* ========================================
   LOGO WALL
   ======================================== */

.logos {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-2);
}

.logos__track {
  display: flex;
  width: max-content;
  animation: marquee 50s linear infinite;
}

.logos__slide {
  display: flex;
  align-items: center;
  gap: 56px;
  padding-right: 56px;
}

.logos__item {
  font-size: var(--fs-base);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
  transition: color 0.3s;
}

.logos__item:hover {
  color: rgba(255, 255, 255, 0.45);
}

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

@media (prefers-reduced-motion: reduce) {
  .logos__track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
    justify-content: center;
  }
  .logos__slide:nth-child(2) {
    display: none;
  }
}

/* ========================================
   FEATURES
   ======================================== */

.features {
  border-bottom: 1px solid var(--border);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 40px;
}

.feature {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.3s, background 0.3s;
}

.feature:hover {
  border-color: var(--border-light);
  background: rgba(255, 255, 255, 0.02);
}

.feature__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--accent);
  margin-bottom: 20px;
  background: rgba(229, 9, 20, 0.06);
}

.feature__title {
  font-size: var(--fs-base);
  font-weight: 600;
  margin-bottom: 8px;
}

.feature__desc {
  font-size: var(--fs-sm);
  color: var(--muted);
  line-height: 1.6;
}

/* ========================================
   CHANNEL CATEGORIES
   ======================================== */

.channels {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}

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

.channel-card:nth-child(1),
.channel-card:nth-child(2) {
  grid-column: span 3;
}

.channel-card:nth-child(n+3) {
  grid-column: span 2;
}

.channel-card {
  padding: 32px 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.3s, transform 0.3s;
}

.channel-card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
}

.channel-card__visual {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-bottom: 20px;
  color: var(--white);
}

.channel-card__visual--movies { background: rgba(229, 9, 20, 0.15); color: #E50914; }
.channel-card__visual--sports { background: rgba(34, 197, 94, 0.12); color: #22c55e; }
.channel-card__visual--kids { background: rgba(251, 191, 36, 0.12); color: #FBBF24; }
.channel-card__visual--news { background: rgba(59, 130, 246, 0.12); color: #3b82f6; }
.channel-card__visual--intl { background: rgba(168, 85, 247, 0.12); color: #a855f7; }

.channel-card__title {
  font-size: var(--fs-base);
  font-weight: 600;
  margin-bottom: 4px;
}

.channel-card__count {
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 12px;
}

.channel-card__desc {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

/* ========================================
   DEVICES
   ======================================== */

.devices {
  border-bottom: 1px solid var(--border);
}

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

.devices .section__desc {
  margin-left: auto;
  margin-right: auto;
}

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

.device {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 40px 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.3s;
}

.device:hover {
  border-color: var(--border-light);
}

.device__icon {
  color: var(--muted);
  transition: color 0.3s;
}

.device:hover .device__icon {
  color: var(--white);
}

.device__name {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--muted);
}

/* ========================================
   PRICING
   ======================================== */

.pricing {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}

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

.pricing .section__desc {
  margin-left: auto;
  margin-right: auto;
}

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

.price-card {
  padding: 40px 32px;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
}

.price-card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
}

.price-card--featured {
  border-color: var(--accent);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(229, 9, 20, 0.08) 0%, transparent 60%),
    rgba(229, 9, 20, 0.03);
  transform: scale(1.03);
}

.price-card--featured:hover {
  border-color: var(--accent);
  transform: scale(1.04);
}

.price-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: var(--fs-xs);
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.price-card__header {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.price-card__duration {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--muted);
  display: block;
  margin-bottom: 12px;
}

.price-card__amount {
  display: flex;
  align-items: flex-start;
  gap: 2px;
}

.price-card__currency {
  font-size: var(--fs-xl);
  font-weight: 600;
  margin-top: 6px;
  color: var(--muted);
}

.price-card__price {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}

.price-card__period {
  font-size: var(--fs-sm);
  color: var(--muted);
  display: block;
  margin-top: 8px;
}

.price-card__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.price-card__features li {
  font-size: var(--fs-sm);
  color: var(--muted);
  padding-left: 24px;
  position: relative;
}

.price-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg width='8' height='6' viewBox='0 0 8 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3l2 2 4-4' stroke='%23B3B3B3' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
}

.price-card--featured .price-card__features li::before {
  border-color: rgba(229, 9, 20, 0.4);
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='6' viewBox='0 0 8 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3l2 2 4-4' stroke='%23E50914' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* ========================================
   HOW IT WORKS
   ======================================== */

.steps {
  border-bottom: 1px solid var(--border);
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 40px;
  border: 1px solid var(--border);
  border-right: none;
}

.step:last-child {
  border-right: 1px solid var(--border);
}

.step::after {
  content: '';
  position: absolute;
  top: 72px;
  right: -12px;
  width: 24px;
  height: 1px;
  background: var(--accent);
  z-index: 1;
}

.step:last-child::after {
  display: none;
}

.step__number {
  font-size: 4.5rem;
  font-weight: 700;
  color: rgba(229, 9, 20, 0.15);
  line-height: 1;
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: 16px;
}

.step__title {
  font-size: var(--fs-xl);
  font-weight: 600;
  margin-bottom: 12px;
}

.step__desc {
  font-size: var(--fs-sm);
  color: var(--muted);
  line-height: 1.6;
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonials {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.testimonial {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.3s;
}

.testimonial:first-child {
  padding: 40px;
}

.testimonial:hover {
  border-color: var(--border-light);
}

.testimonial__stars {
  color: #FBBF24;
  font-size: var(--fs-sm);
  letter-spacing: 2px;
  display: block;
  margin-bottom: 16px;
}

.testimonial__text {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(229, 9, 20, 0.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-xs);
  font-weight: 600;
  flex-shrink: 0;
}

.testimonial__name {
  font-size: var(--fs-sm);
  font-weight: 600;
  display: block;
}

.testimonial__location {
  font-size: var(--fs-xs);
  color: var(--muted);
}

/* ========================================
   FAQ
   ======================================== */

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

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

.faq__list {
  max-width: 720px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  font-size: var(--fs-base);
  font-weight: 500;
  text-align: left;
  gap: 16px;
}

.faq__trigger:hover {
  color: var(--muted);
}

.faq__chevron {
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.3s var(--ease);
}

.faq__trigger[aria-expanded="true"] .faq__chevron {
  transform: rotate(180deg);
}

.faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease), opacity 0.3s;
  opacity: 0;
}

.faq__answer.open {
  opacity: 1;
}

.faq__answer p {
  font-size: var(--fs-sm);
  color: var(--muted);
  line-height: 1.7;
  padding-bottom: 20px;
}

/* ========================================
   CTA BANNER
   ======================================== */

.cta-banner {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 500px;
  background:
    radial-gradient(ellipse, rgba(229, 9, 20, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner__inner {
  position: relative;
}

.cta-banner__title {
  font-size: var(--fs-4xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.cta-banner__desc {
  font-size: var(--fs-lg);
  color: var(--muted);
  margin-bottom: 40px;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer__tagline {
  font-size: var(--fs-sm);
  color: var(--muted);
  margin-top: 16px;
  line-height: 1.6;
  max-width: 280px;
}

.footer__heading {
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 16px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.footer__link:hover {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
}

.footer__copy {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.3);
}

.footer__payments {
  display: flex;
  gap: 16px;
}

.footer__payments span {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.25);
  font-weight: 500;
}

/* ========================================
   SCROLL REVEAL
   ======================================== */

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

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

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

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

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

  .channel-card:nth-child(1),
  .channel-card:nth-child(2),
  .channel-card:nth-child(n+3) {
    grid-column: span 1;
  }

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

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

@media (max-width: 768px) {
  :root {
    --gutter: 20px;
  }

  .section {
    padding: 80px 0;
  }

  .section__title {
    font-size: var(--fs-3xl);
  }

  .nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 5, 5, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-right: 0;
  }

  .nav.open {
    display: flex;
  }

  .nav__link {
    font-size: var(--fs-xl);
  }

  .header__right .btn {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero__content {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .hero__sub br {
    display: none;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .trust-strip__inner {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .trust-strip__divider {
    display: none;
  }

  .features__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .channels__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .channel-card:nth-child(1),
  .channel-card:nth-child(2),
  .channel-card:nth-child(n+3) {
    grid-column: span 1;
  }

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

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

  .price-card--featured {
    order: -1;
  }

  .steps__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .step {
    border-right: 1px solid var(--border);
    border-bottom: none;
  }

  .step:last-child {
    border-bottom: 1px solid var(--border);
  }

  .step::after {
    top: auto;
    bottom: -8px;
    left: 60px;
    right: auto;
    width: 1px;
    height: 16px;
  }

  .step:last-child::after {
    display: none;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cta-banner {
    padding: 80px 0;
  }

  .cta-banner__title {
    font-size: var(--fs-3xl);
  }

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

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

}

@media (max-width: 480px) {
  :root {
    --gutter: 16px;
  }

  .section__title {
    font-size: var(--fs-2xl);
  }

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

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

/* ========================================
   NAV ACTIVE STATE
   ======================================== */

.nav__link.active {
  color: var(--white);
}

.logo__text {
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-left: 8px;
}

/* ========================================
   SUBPAGE: PAGE HERO
   ======================================== */

.page-hero {
  padding: 160px 0 80px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(229, 9, 20, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero__label {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.page-hero__title {
  font-size: var(--fs-4xl);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.page-hero__desc {
  font-size: var(--fs-lg);
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ========================================
   SUBPAGE: CONTENT SECTIONS
   ======================================== */

.content-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

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

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

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

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

.content-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.3s;
}

.content-card:hover {
  border-color: var(--border-light);
}

.content-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--accent);
  margin-bottom: 20px;
  background: rgba(229, 9, 20, 0.06);
}

.content-card__title {
  font-size: var(--fs-base);
  font-weight: 600;
  margin-bottom: 8px;
}

.content-card__desc {
  font-size: var(--fs-sm);
  color: var(--muted);
  line-height: 1.6;
}

.content-card__list {
  margin-top: 16px;
}

.content-card__list li {
  font-size: var(--fs-sm);
  color: var(--muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}

.content-card__list li:last-child {
  border-bottom: none;
}

/* ========================================
   PROSE (LEGAL PAGES)
   ======================================== */

.prose {
  max-width: 720px;
  margin: 0 auto;
}

.prose h2 {
  font-size: var(--fs-2xl);
  font-weight: 700;
  margin: 48px 0 16px;
  letter-spacing: -0.02em;
}

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

.prose h3 {
  font-size: var(--fs-lg);
  font-weight: 600;
  margin: 32px 0 12px;
}

.prose p {
  font-size: var(--fs-base);
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.prose ul, .prose ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }

.prose li {
  font-size: var(--fs-base);
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 8px;
}

.prose strong {
  color: var(--white);
  font-weight: 600;
}

.prose a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

/* ========================================
   CONTACT CARDS (SUPPORT PAGE)
   ======================================== */

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

.contact-card {
  padding: 40px 32px;
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: center;
  transition: border-color 0.3s;
}

.contact-card:hover {
  border-color: var(--border-light);
}

.contact-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--accent);
  background: rgba(229, 9, 20, 0.06);
}

.contact-card__title {
  font-size: var(--fs-base);
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-card__desc {
  font-size: var(--fs-sm);
  color: var(--muted);
  line-height: 1.6;
}

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

@media (max-width: 768px) {
  .page-hero {
    padding: 120px 0 60px;
  }

  .page-hero__title {
    font-size: var(--fs-3xl);
  }

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