﻿:root {
  --bg: #000000;
  --panel: #0a0a0d;
  --panel-soft: #141417;
  --text: #ffffff;
  --muted: #d8d8dc;
  --red: #ff1018;
  --red-dark: #b60007;
  --accent: #ffffff;
  --accent-soft: #f2f2f2;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Tahoma, Arial, sans-serif;
  line-height: 1.7;
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 20% 18%, rgba(240, 11, 18, 0.2), transparent 28rem),
    radial-gradient(circle at 78% 12%, rgba(255, 255, 255, 0.08), transparent 24rem),
    radial-gradient(circle at 85% 70%, rgba(240, 11, 18, 0.1), transparent 24rem);
  z-index: -2;
}

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

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

.page-shell {
  overflow: hidden;
}

.section {
  padding: 92px clamp(18px, 5vw, 72px);
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  display: flex;
  width: min(1120px, calc(100% - 32px));
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 9, 13, 0.76);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

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

.brand img {
  width: 64px;
  height: 48px;
  border-radius: 8px;
  object-fit: contain;
  background: transparent;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 26px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.main-nav a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  letter-spacing: 0;
}

.main-nav a:hover,
.site-footer a:hover,
.main-nav a[aria-current="page"] {
  color: var(--accent);
}

.header-cta,
.btn,
.plan a,
.lang-switch,
.whatsapp-float {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 800;
}

.header-cta,
.btn.primary,
.plan a,
.whatsapp-float {
  color: #ffffff;
  background: var(--red);
  box-shadow: 0 12px 28px rgba(240, 11, 18, 0.28);
}

.lang-switch {
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.lang-switch img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
}

.header-cta {
  padding: 0 18px;
  white-space: nowrap;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 38px;
  padding-top: 142px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 9, 13, 0.96) 0%, rgba(8, 9, 13, 0.76) 46%, rgba(8, 9, 13, 0.36) 100%),
    url("/assets/hero-streaming.jpg") center / cover;
  z-index: -2;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 130px;
  content: "";
  background: linear-gradient(transparent, var(--bg));
  z-index: -1;
}

.spark {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: floatSpark 4.5s ease-in-out infinite;
}

.spark-red {
  top: 22%;
  right: 13%;
  background: var(--red);
  box-shadow: 0 0 0 12px rgba(242, 15, 18, 0.1), 0 0 28px var(--red);
}

.spark-white {
  bottom: 22%;
  left: 16%;
  background: #ffffff;
  box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.08), 0 0 28px rgba(255, 255, 255, 0.8);
  animation-delay: 1.2s;
}

.hero-content {
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: #ffffff;
  font-weight: 900;
}

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

h1 {
  max-width: 640px;
  margin-bottom: 18px;
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.28;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
  overflow-wrap: anywhere;
}

h2 {
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.25;
  overflow-wrap: anywhere;
}

h3 {
  font-size: 22px;
  overflow-wrap: anywhere;
}

.hero-copy {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(16px, 1.7vw, 20px);
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  margin: 30px 0 24px;
}

.btn {
  padding: 0 24px;
  text-align: center;
}

.btn.secondary {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.trust-row span {
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #f4f5f8;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

.hero-card {
  position: relative;
  display: grid;
  gap: 18px;
  align-self: end;
  margin-bottom: 60px;
  padding: 22px;
  border: 1px solid rgba(240, 11, 18, 0.45);
  border-radius: 8px;
  background: rgba(16, 19, 27, 0.86);
  box-shadow: var(--shadow);
}

.hero-card::before {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  content: "";
  background: linear-gradient(135deg, rgba(240, 11, 18, 0.38), transparent 44%, rgba(255, 255, 255, 0.12));
  z-index: -1;
}

.hero-card img {
  width: 230px;
  margin-inline: auto;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.42));
  animation: logoPulse 3.2s ease-in-out infinite;
}

.hero-card span,
.old-price,
.section-head p,
.media-copy p,
.feature p,
.faq-list p,
.site-footer p {
  color: var(--muted);
}

.hero-card strong {
  display: block;
  margin: 4px 0;
  color: #ffffff;
  font-size: 24px;
}

.hero-card small {
  color: #fff;
  text-decoration: line-through;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature,
.plan,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.stat {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(255, 16, 24, 0.34);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 28%, rgba(255, 16, 24, 0.18), transparent 9rem),
    radial-gradient(circle at 84% 74%, rgba(255, 255, 255, 0.08), transparent 8rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.025));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.035);
  text-align: center;
  isolation: isolate;
  animation: statPulse 3.8s ease-in-out infinite;
}

.stat::before,
.stat::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.stat::before {
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, transparent 35%, rgba(255, 255, 255, 0.22) 48%, transparent 61%, transparent 100%);
  transform: translateX(120%);
  animation: statSweep 3.6s ease-in-out infinite;
  z-index: -1;
}

.stat::after {
  width: 150px;
  height: 150px;
  right: 50%;
  bottom: -98px;
  border: 1px solid rgba(255, 16, 24, 0.35);
  border-radius: 50%;
  box-shadow: 0 0 0 22px rgba(255, 16, 24, 0.035), 0 0 70px rgba(255, 16, 24, 0.16);
  transform: translateX(50%);
  animation: statRing 4.4s ease-in-out infinite;
}

.stat strong {
  display: block;
  color: #ffffff;
  font-size: clamp(36px, 6vw, 66px);
  line-height: 1;
  text-shadow: 0 0 24px rgba(255, 16, 24, 0.42), 0 8px 24px rgba(0, 0, 0, 0.4);
  transform-origin: center;
  animation: statNumber 2.8s ease-in-out infinite;
}

.stat span {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-weight: 800;
}

.section-head {
  width: min(760px, 100%);
  margin: 0 auto 38px;
  text-align: center;
}

.feature-grid,
.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature {
  padding: 28px;
}

.icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--red);
  font-weight: 900;
}

.media-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 42px;
  align-items: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(242, 15, 18, 0.06));
}

.world-cup {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 36px;
  align-items: center;
  background:
    radial-gradient(circle at 82% 36%, rgba(255, 16, 24, 0.17), transparent 22rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 16, 24, 0.07));
}

.world-cup::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.06) 42%, transparent 62%);
  transform: translateX(120%);
  animation: statSweep 5s ease-in-out infinite;
  pointer-events: none;
}

.world-cup-media,
.world-cup-copy {
  position: relative;
}

.world-cup-media {
  overflow: hidden;
  border: 1px solid rgba(255, 16, 24, 0.38);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

.world-cup-media img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  transform: scale(1.02);
  animation: worldImage 7s ease-in-out infinite;
}

.world-cup-copy {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(10px);
}

.world-cup-copy p {
  color: var(--muted);
}

.world-cup-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.world-cup-points span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 16, 24, 0.12);
  font-size: 13px;
  font-weight: 800;
}

.device-stack {
  position: relative;
  min-height: 540px;
}

.screen-main {
  width: 100%;
  height: 520px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.screen-float {
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: min(48%, 420px);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.55));
  animation: floatDevice 4.8s ease-in-out infinite;
}

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

.plan {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 28px;
  text-align: center;
}

.plan.featured {
  border-color: rgba(240, 11, 18, 0.72);
  background: linear-gradient(180deg, rgba(240, 11, 18, 0.2), rgba(255, 255, 255, 0.04));
  transform: translateY(-14px);
}

.badge {
  position: absolute;
  top: -15px;
  right: 18px;
  padding: 5px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.price {
  margin-bottom: 6px;
  color: var(--accent);
  font-weight: 900;
}

.price span {
  font-size: 54px;
  line-height: 1;
}

.old-price {
  margin-bottom: 22px;
  text-decoration: line-through;
}

.plan a {
  width: 100%;
  margin-top: auto;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.inner-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  padding-top: 148px;
  text-align: center;
}

.inner-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(8, 9, 13, 0.82), rgba(8, 9, 13, 0.96)),
    url("/assets/hero-streaming.jpg") center / cover;
  z-index: -2;
}

.inner-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 110px;
  content: "";
  background: linear-gradient(transparent, var(--bg));
  z-index: -1;
}

.inner-hero .section-head {
  margin-bottom: 0;
}

.inner-hero h1 {
  margin-inline: auto;
  font-size: clamp(30px, 4.2vw, 46px);
}

.plan-list {
  display: grid;
  gap: 9px;
  min-height: 286px;
  margin: 0 0 22px;
  padding: 0;
  color: var(--muted);
  font-size: 15px;
  list-style: none;
  text-align: right;
}

.plan-list li {
  position: relative;
  padding-right: 20px;
  line-height: 1.45;
}

.plan-list li::before {
  position: absolute;
  top: 9px;
  right: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  content: "";
}

html[dir="ltr"] .plan-list,
html[dir="ltr"] .home-apps-grid article,
html[dir="ltr"] .apps-group-head {
  text-align: left;
}

html[dir="ltr"] .plan-list li {
  padding-right: 0;
  padding-left: 20px;
}

html[dir="ltr"] .plan-list li::before {
  right: auto;
  left: 0;
}

html[dir="ltr"] .home-apps-grid article::before {
  right: auto;
  left: 0;
}

.cta-band {
  text-align: center;
  background:
    linear-gradient(rgba(8, 9, 13, 0.82), rgba(8, 9, 13, 0.92)),
    url("/assets/remote-streaming.jpg") center / cover;
}

.cta-band > div {
  width: min(760px, 100%);
  margin: 0 auto;
}

.content-catalog {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(240, 11, 18, 0.06));
}

.apps-preview,
.apps-section {
  background: linear-gradient(180deg, rgba(240, 11, 18, 0.06), rgba(255, 255, 255, 0.02));
}

.apps-preview .section-head {
  margin-bottom: 28px;
}

.apps-preview .section-head h2 {
  font-size: clamp(24px, 3vw, 36px);
}

.apps-preview .section-head p {
  max-width: 620px;
  margin-inline: auto;
}

.home-apps-grid {
  display: grid;
  width: min(980px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.home-apps-grid article {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  text-align: right;
}

.home-apps-grid article::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 4px;
  background: var(--red);
  content: "";
}

.home-apps-grid article.featured {
  border-color: rgba(255, 16, 24, 0.5);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 16, 24, 0.16), transparent 10rem),
    rgba(255, 255, 255, 0.055);
}

.app-mini-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.home-apps-grid strong {
  display: block;
  color: #ffffff;
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.12;
}

.home-apps-grid p {
  margin: 8px 0 0;
  color: var(--muted);
}

.app-highlight {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0 auto 28px;
  width: min(980px, 100%);
}

.app-highlight.secondary-codes {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(680px, 100%);
}

.app-highlight > div,
.app-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.app-highlight > div {
  padding: 24px;
  text-align: center;
}

.app-highlight span,
.code-row span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.app-highlight strong {
  display: block;
  color: var(--accent);
  font-size: clamp(28px, 5vw, 46px);
  line-height: 1.1;
}

.app-highlight p,
.app-card p {
  color: var(--muted);
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.featured-apps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 38px;
}

.app-card-main {
  min-height: 330px;
  border-color: rgba(255, 16, 24, 0.48);
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 16, 24, 0.18), transparent 10rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035));
}

.app-tag {
  width: max-content;
  max-width: 100%;
  margin-bottom: 14px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.apps-group {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.apps-group-head {
  margin-bottom: 18px;
}

.apps-group-head h2 {
  margin-bottom: 0;
  font-size: clamp(24px, 3vw, 34px);
}

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

.app-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: 24px;
}

.app-card h3 {
  color: var(--accent);
}

.app-card a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 0 18px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--red);
  font-weight: 800;
  text-align: center;
}

.code-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 12px 0 18px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
  direction: ltr;
}

.code-row strong {
  color: var(--accent);
  font-size: 24px;
}

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

.catalog-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.catalog-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--red);
  content: "";
}

.catalog-card h3 {
  margin-bottom: 16px;
  color: var(--accent);
}

.catalog-card ul {
  display: grid;
  gap: 8px;
  max-height: 430px;
  margin: 0;
  padding: 0 0 0 4px;
  overflow: auto;
  color: var(--muted);
  list-style: none;
  direction: ltr;
  text-align: left;
  scrollbar-color: var(--red) rgba(255, 255, 255, 0.08);
}

.catalog-card li {
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.seo-section {
  background:
    linear-gradient(rgba(8, 9, 13, 0.82), rgba(8, 9, 13, 0.94)),
    url("/assets/hero-streaming.jpg") center / cover fixed;
}

.faq-list {
  display: grid;
  width: min(880px, 100%);
  margin: 0 auto;
  gap: 12px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--accent);
  font-weight: 900;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 34px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #050608;
}

.site-footer img {
  width: 120px;
  margin-bottom: 10px;
  border-radius: 8px;
  background: transparent;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 14px;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  min-width: 96px;
  padding: 0 18px;
}

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

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

@keyframes floatSpark {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -18px, 0) scale(1.25);
  }
}

@keyframes logoPulse {
  0%,
  100% {
    transform: rotate(-2deg) scale(1);
  }
  50% {
    transform: rotate(2deg) scale(1.04);
  }
}

@keyframes floatDevice {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -18px, 0);
  }
}

@keyframes statPulse {
  0%,
  100% {
    border-color: rgba(255, 16, 24, 0.26);
    transform: translateY(0);
  }
  50% {
    border-color: rgba(255, 16, 24, 0.72);
    transform: translateY(-5px);
  }
}

@keyframes statSweep {
  0%,
  35% {
    transform: translateX(120%);
  }
  70%,
  100% {
    transform: translateX(-120%);
  }
}

@keyframes statRing {
  0%,
  100% {
    opacity: 0.45;
    transform: translateX(50%) scale(0.95);
  }
  50% {
    opacity: 0.9;
    transform: translateX(50%) scale(1.08);
  }
}

@keyframes statNumber {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.055);
  }
}

@keyframes worldImage {
  0%,
  100% {
    transform: scale(1.02);
  }
  50% {
    transform: scale(1.07);
  }
}

@media (max-width: 980px) {
  .site-header {
    top: 10px;
    width: min(760px, calc(100% - 24px));
    gap: 12px;
  }

  .main-nav {
    max-width: 52vw;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: thin;
  }

  .hero,
  .media-band,
  .world-cup {
    grid-template-columns: 1fr;
  }

  .hero-card {
    width: min(420px, 100%);
    margin: 0;
  }

  .stats,
  .feature-grid,
  .plans,
  .home-apps-grid,
  .app-highlight,
  .featured-apps,
  .apps-grid,
  .apps-grid.compact,
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plan.featured {
    transform: none;
  }

  .device-stack {
    min-height: 420px;
  }

  .screen-main {
    height: 420px;
  }

  .catalog-card ul {
    max-height: 360px;
  }

  .world-cup-media img {
    height: 380px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 64px 16px;
  }

  .site-header {
    display: grid;
    grid-template-columns: 1fr auto;
    width: calc(100% - 18px);
    padding: 8px;
  }

  .brand span {
    display: inline;
    font-size: 15px;
  }

  .brand img {
    width: 56px;
    height: 42px;
  }

  .main-nav {
    grid-column: 1 / -1;
    order: 3;
    max-width: 100%;
    padding: 2px 2px 4px;
    font-size: 13px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 14px;
  }

  .lang-switch {
    min-height: 38px;
    padding: 0 10px;
  }

  .hero {
    min-height: auto;
    gap: 28px;
    padding-top: 150px;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(8, 9, 13, 0.92) 0%, rgba(8, 9, 13, 0.82) 54%, rgba(8, 9, 13, 0.98) 100%),
      url("/assets/hero-streaming.jpg") center / cover;
  }

  h1 {
    font-size: clamp(28px, 8vw, 34px);
  }

  h2 {
    font-size: clamp(24px, 7vw, 31px);
  }

  h3 {
    font-size: 20px;
  }

  .hero-copy {
    font-size: 15.5px;
  }

  .world-cup-copy {
    padding: 22px;
  }

  .world-cup-media img {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .world-cup-points span {
    flex: 1 1 calc(50% - 8px);
    text-align: center;
  }

  .hero-actions,
  .trust-row {
    align-items: stretch;
  }

  .hero-actions .btn {
    flex: 1 1 100%;
  }

  .trust-row span {
    flex: 1 1 calc(50% - 8px);
    text-align: center;
  }

  .stats,
  .feature-grid,
  .plans,
  .home-apps-grid,
  .app-highlight,
  .featured-apps,
  .apps-grid,
  .apps-grid.compact,
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .inner-hero {
    min-height: 440px;
    padding-top: 150px;
  }

  .plan-list {
    min-height: auto;
    font-size: 14.5px;
  }

  .stat,
  .feature,
  .plan,
  .app-highlight > div,
  .app-card,
  .catalog-card {
    padding: 22px;
  }

  .app-card {
    min-height: auto;
  }

  .price span {
    font-size: 48px;
  }

  .device-stack {
    min-height: auto;
  }

  .screen-main {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .screen-float {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(82%, 360px);
    margin: -34px auto 0;
  }

  .catalog-card ul {
    max-height: none;
    overflow: visible;
  }

  .seo-section {
    background:
      linear-gradient(rgba(8, 9, 13, 0.82), rgba(8, 9, 13, 0.94)),
      url("/assets/hero-streaming.jpg") center / cover;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    gap: 10px 14px;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    min-width: 86px;
    min-height: 40px;
  }
}

@media (max-width: 380px) {
  .section {
    padding-right: 12px;
    padding-left: 12px;
  }

  .site-header {
    width: calc(100% - 12px);
  }

  .brand span {
    display: none;
  }

  .main-nav {
    gap: 10px;
    font-size: 12px;
  }

  .btn,
  .plan a {
    padding-right: 14px;
    padding-left: 14px;
  }

  .hero-card strong {
    font-size: 21px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}

