:root {
  --bg: #f8fbff;
  --surface: #ffffff;
  --surface-soft: #eef6ff;
  --text: #10162f;
  --muted: #64708a;
  --blue: #1f75ff;
  --violet: #8a2cff;
  --magenta: #cc2edb;
  --teal: #12b8b0;
  --line: rgba(31, 117, 255, 0.16);
  --shadow: 0 18px 45px rgba(19, 32, 75, 0.1);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 10% 10%, rgba(138, 44, 255, 0.1), transparent 26rem),
    radial-gradient(circle at 86% 18%, rgba(18, 184, 176, 0.12), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 44%, #ffffff 100%);
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  border-color: rgba(31, 117, 255, 0.12);
  box-shadow: 0 10px 30px rgba(19, 32, 75, 0.08);
}

.navbar {
  width: min(calc(100% - 32px), var(--max));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
  color: #121a35;
}

.brand img {
  width: 38px;
  height: 38px;
}

.brand span {
  font-size: 1.28rem;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.91rem;
  font-weight: 800;
}

.nav-panel a {
  position: relative;
  color: #19213c;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-panel a:hover {
  color: var(--violet);
  transform: translateY(-1px);
}

.nav-panel a.is-active {
  color: var(--violet);
}

.nav-panel a.is-active:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -11px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--violet));
}

.nav-cta,
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 10px;
  border: 0;
  font-weight: 900;
  font-size: 0.91rem;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  white-space: nowrap;
}

.nav-cta,
.btn-primary {
  color: #fff !important;
  background: linear-gradient(120deg, var(--blue), var(--violet), var(--magenta), var(--blue));
  background-size: 250% 250%;
  box-shadow: 0 14px 30px rgba(138, 44, 255, 0.25);
  animation: gradientShift 7s ease infinite;
}

.btn-secondary {
  color: #17203a;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(19, 32, 75, 0.08);
}

.btn-outline {
  color: var(--violet);
  background: #fff;
  border: 1px solid rgba(138, 44, 255, 0.35);
}

.btn img {
  width: 20px;
  height: 20px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.menu-toggle img {
  width: 24px;
  height: 24px;
}

.menu-toggle .close-icon {
  display: none;
}

.menu-toggle.is-open .menu-icon {
  display: none;
}

.menu-toggle.is-open .close-icon {
  display: block;
}

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

.page-main {
  min-height: calc(100vh - 78px);
}

.page-hero {
  display: grid;
  justify-items: center;
  padding: 78px 0 18px;
  text-align: center;
}

.page-hero .eyebrow {
  margin-bottom: 16px;
}

.page-hero h1 {
  margin-bottom: 16px;
  max-width: 850px;
  font-size: clamp(2.45rem, 6vw, 4.65rem);
  line-height: 1.02;
}

.page-hero p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 30px;
  padding: 56px 0 44px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--violet);
  background: rgba(138, 44, 255, 0.1);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  max-width: 680px;
  font-size: clamp(2.45rem, 6vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h1::first-line {
  color: #111831;
}

.hero-copy p,
.section-heading p,
.sport-content p,
.contact-card p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.hero-copy .eyebrow {
  margin-bottom: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
  animation: heroFloat 5.5s ease-in-out infinite;
}

.hero-media picture {
  width: 100%;
}

.hero-media img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  filter: drop-shadow(0 28px 42px rgba(18, 27, 56, 0.16));
}

.stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  padding: 18px 0 76px;
}

.stat-card {
  min-height: 138px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 30px rgba(19, 32, 75, 0.06);
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.stat-card:hover,
.price-card:hover,
.poster-card:hover {
  transform: translateY(-7px);
  border-color: rgba(138, 44, 255, 0.35);
  box-shadow: var(--shadow);
}

.stat-card img {
  width: 35px;
  height: 35px;
}

.stat-card strong {
  font-size: 1.03rem;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.85rem;
}

.section-heading {
  max-width: 710px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading .eyebrow {
  margin-bottom: 13px;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.channels,
.entertainment,
.testimonials,
.pricing,
.faq,
.contact {
  padding: 64px 0;
}

.logo-marquee {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 36px rgba(19, 32, 75, 0.08);
}

.logo-marquee::before,
.logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: 90px;
  height: 100%;
  pointer-events: none;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #fff, transparent);
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #fff, transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.logo-track figure {
  width: 190px;
  height: 104px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 28px;
  border-right: 1px solid rgba(31, 117, 255, 0.1);
}

.logo-track img {
  max-width: 130px;
  max-height: 52px;
  object-fit: contain;
}

.channel-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.channel-logo-grid figure {
  min-height: 132px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 30px rgba(19, 32, 75, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.channel-logo-grid figure:hover {
  transform: translateY(-6px);
  border-color: rgba(138, 44, 255, 0.35);
  box-shadow: var(--shadow);
}

.channel-logo-grid img {
  max-width: 170px;
  max-height: 68px;
  object-fit: contain;
}

.poster-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  overflow-x: auto;
  padding: 4px 2px 18px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(138, 44, 255, 0.45) transparent;
}

.poster-grid::-webkit-scrollbar {
  height: 8px;
}

.poster-grid::-webkit-scrollbar-track {
  background: transparent;
}

.poster-grid::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--violet));
}

.poster-card {
  position: relative;
  min-width: 0;
  scroll-snap-align: start;
  overflow: hidden;
  border: 1px solid rgba(31, 117, 255, 0.1);
  border-radius: var(--radius);
  background: #0d1326;
  box-shadow: 0 16px 34px rgba(19, 32, 75, 0.11);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.poster-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.poster-card div {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 42px 12px 12px;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(5, 9, 23, 0.9));
}

.poster-card strong,
.poster-card span {
  display: block;
}

.poster-card strong {
  font-size: 0.98rem;
}

.poster-card span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
}

.sport {
  padding: 58px 0;
}

.sport-banner {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.sport-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9, 15, 35, 0.88) 0%, rgba(15, 23, 53, 0.68) 42%, rgba(31, 117, 255, 0.12) 100%),
    linear-gradient(180deg, rgba(138, 44, 255, 0.1), rgba(18, 184, 176, 0.08));
}

.sport-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
}

.sport-content {
  width: min(620px, 100%);
  padding: clamp(28px, 6vw, 70px);
  color: #fff;
}

.sport-content .eyebrow {
  margin-bottom: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.sport-content h2 {
  color: #fff;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.sport-content p {
  color: rgba(255, 255, 255, 0.84);
}

.sport-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.sport-points span {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.sport-points img {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

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

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(19, 32, 75, 0.08);
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.price-card.featured {
  border-color: rgba(138, 44, 255, 0.45);
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, var(--blue), var(--violet), var(--magenta)) border-box;
}

.pack-head {
  margin-bottom: 16px;
}

.badge {
  position: absolute;
  top: -14px;
  right: 18px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  font-size: 0.72rem;
  font-weight: 900;
}

.price-card h3 {
  margin-bottom: 0;
  font-size: 1.08rem;
  text-transform: uppercase;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 2.65rem;
  line-height: 1;
  font-weight: 950;
  color: #111831;
}

.price small {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  text-align: left;
}

.price-card li {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 9px;
  color: #33405e;
  font-size: 0.92rem;
  line-height: 1.45;
}

.price-card li img {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

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

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 24px rgba(19, 32, 75, 0.06);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 22px;
  border: 0;
  background: transparent;
  color: #111831;
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-item button span {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 999px;
  background: rgba(138, 44, 255, 0.1);
}

.faq-item button span::before,
.faq-item button span::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 10px;
  height: 2px;
  border-radius: 2px;
  background: var(--violet);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.faq-item button span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open button span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

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

.faq-answer p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
  line-height: 1.7;
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 38px;
  border: 1px solid rgba(31, 117, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(31, 117, 255, 0.1), rgba(138, 44, 255, 0.12)),
    #fff;
  box-shadow: var(--shadow);
}

.contact-card h2 {
  margin-top: 12px;
}

.contact-card strong {
  display: inline-block;
  margin-top: 2px;
  font-size: 1.3rem;
}

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

.testimonial-card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(19, 32, 75, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.testimonial-card:hover {
  transform: translateY(-7px);
  border-color: rgba(138, 44, 255, 0.35);
  box-shadow: var(--shadow);
}

.quote-mark {
  height: 34px;
  color: var(--violet);
  font-size: 3.8rem;
  line-height: 0.8;
  font-weight: 950;
}

.testimonial-card p {
  margin: 10px 0 14px;
  color: #33405e;
  font-size: 0.95rem;
  line-height: 1.65;
}

.stars {
  margin-bottom: 18px;
  color: #ffb000;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

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

.reviewer img {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border: 3px solid #fff;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 10px 18px rgba(19, 32, 75, 0.12);
}

.reviewer strong,
.reviewer span {
  display: block;
}

.reviewer strong {
  color: #111831;
}

.reviewer span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.86rem;
}

.mini-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 64px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(31, 117, 255, 0.08), rgba(138, 44, 255, 0.1)),
    #fff;
  box-shadow: var(--shadow);
}

.mini-cta h2 {
  max-width: 760px;
  margin-top: 12px;
  margin-bottom: 0;
  font-size: clamp(1.6rem, 3vw, 2.55rem);
}

.mini-cta .btn {
  flex: 0 0 auto;
}

.footer {
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-inner {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 34px 0;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  color: #27324f;
  font-weight: 800;
}

.footer p {
  margin: 0;
}

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

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

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

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

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    display: grid;
    justify-items: center;
  }

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

  .poster-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(210px, 31vw);
  }

  .sport-banner {
    min-height: 520px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-inner .brand,
  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 820px) {
  .navbar {
    min-height: 68px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-panel {
    position: fixed;
    top: 68px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 2px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  }

  .nav-panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-panel a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 8px;
  }

  .nav-panel a.is-active:not(.nav-cta)::after {
    display: none;
  }

  .nav-panel a.is-active:not(.nav-cta) {
    background: rgba(138, 44, 255, 0.08);
  }

  .nav-panel a:hover {
    background: rgba(138, 44, 255, 0.08);
    transform: none;
  }

  .nav-cta {
    margin-top: 8px;
    justify-content: center;
  }

  .hero {
    min-height: auto;
    padding: 42px 0 30px;
  }

  .hero-media img {
    max-height: none;
  }

  .channels,
  .entertainment,
  .testimonials,
  .pricing,
  .faq,
  .contact {
    padding: 48px 0;
  }

  .contact-card {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px;
  }

  .contact-card .btn {
    width: 100%;
  }

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

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

  .mini-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px;
  }

  .mini-cta .btn {
    width: 100%;
  }
}

@media (max-width: 620px) {
  body {
    background:
      radial-gradient(circle at 50% 0%, rgba(138, 44, 255, 0.12), transparent 22rem),
      linear-gradient(180deg, #fff 0%, var(--bg) 48%, #fff 100%);
  }

  .section-shell,
  .navbar,
  .footer-inner {
    width: min(calc(100% - 24px), var(--max));
  }

  .brand span {
    font-size: 1.08rem;
  }

  h1 {
    font-size: clamp(2.25rem, 12vw, 3.45rem);
  }

  .page-hero {
    padding: 48px 0 6px;
  }

  .page-hero h1 {
    font-size: clamp(2.15rem, 11vw, 3.1rem);
  }

  .page-hero p {
    font-size: 0.98rem;
  }

  h2 {
    font-size: clamp(1.8rem, 9vw, 2.45rem);
  }

  .hero-copy p,
  .section-heading p,
  .sport-content p,
  .contact-card p {
    font-size: 0.98rem;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .stats,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .poster-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(210px, 72vw);
    margin-inline: -12px;
    padding-inline: 12px;
  }

  .stats {
    padding-bottom: 44px;
  }

  .stat-card {
    min-height: 112px;
  }

  .logo-track figure {
    width: 152px;
    height: 88px;
    padding: 20px 22px;
  }

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

  .channel-logo-grid figure {
    min-height: 104px;
    padding: 22px;
  }

  .channel-logo-grid img {
    max-width: 150px;
    max-height: 56px;
  }

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

  .testimonial-card {
    padding: 20px;
  }

  .testimonial-card p {
    font-size: 0.92rem;
  }

  .poster-card img {
    aspect-ratio: 3 / 4;
  }

  .sport-banner {
    min-height: 520px;
    align-items: flex-end;
  }

  .sport-banner::before {
    background:
      linear-gradient(180deg, rgba(9, 15, 35, 0.24) 0%, rgba(9, 15, 35, 0.88) 100%),
      linear-gradient(90deg, rgba(138, 44, 255, 0.22), rgba(31, 117, 255, 0.12));
  }

  .sport-bg {
    object-position: center;
  }

  .sport-content {
    padding: 28px 20px;
  }

  .sport-points {
    display: grid;
  }

  .sport-points span {
    border-radius: 10px;
    white-space: normal;
  }

  .price-card {
    padding: 24px 18px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .mini-cta {
    margin-bottom: 48px;
    padding: 24px 18px;
  }
}

@media (max-width: 460px) {
  .pricing-grid {
    gap: 14px;
  }

  .price-card {
    padding: 18px;
  }

  .price-card.featured {
    padding-top: 48px;
  }

  .badge {
    top: 14px;
    right: 14px;
  }

  .pack-head {
    margin-bottom: 12px;
  }

  .price-card h3 {
    font-size: 1.18rem;
  }

  .price {
    margin-bottom: 16px;
    font-size: 2.25rem;
  }

  .price small {
    font-size: 0.8rem;
  }

  .price-card ul {
    gap: 9px;
    margin-bottom: 18px;
  }

  .price-card li {
    grid-template-columns: 18px 1fr;
    gap: 8px;
    font-size: 0.86rem;
    line-height: 1.38;
  }

  .price-card li img {
    width: 16px;
    height: 16px;
  }

  .price-card .btn {
    min-height: 44px;
  }
}

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