:root {
  --bg: #070b12;
  --bg-2: #0c1020;
  --panel: rgba(15, 20, 35, 0.86);
  --panel-solid: #111827;
  --line: rgba(166, 183, 213, 0.17);
  --text: #f8fbff;
  --muted: #9ca8ba;
  --violet: #7c3cff;
  --cyan: #2bd8ff;
  --emerald: #31d986;
  --gold: #f2b84b;
  --rose: #f94d73;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.44);
  --radius: 8px;
  --display: "Arial Narrow", "Impact", sans-serif;
  --body: "DM Sans", "Inter", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--body);
  color: var(--text);
  background:
    radial-gradient(circle at 12% 18%, rgba(124, 60, 255, 0.2), transparent 28rem),
    radial-gradient(circle at 82% 12%, rgba(43, 216, 255, 0.14), transparent 26rem),
    linear-gradient(180deg, #070912 0%, #080d16 38%, #0a1018 100%);
  min-width: 320px;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to bottom, #000 0 45%, transparent 88%);
  z-index: -1;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

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

.skip-link:focus {
  width: auto;
  height: auto;
  margin: 1rem;
  padding: 0.75rem 1rem;
  clip: auto;
  z-index: 10;
  background: var(--text);
  color: var(--bg);
}

.notice {
  position: relative;
  z-index: 5;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.55rem 3rem;
  border-bottom: 1px solid rgba(124, 60, 255, 0.34);
  background: linear-gradient(90deg, rgba(10, 11, 25, 0.97), rgba(18, 12, 36, 0.97));
  color: var(--muted);
  font-weight: 800;
  font-size: 0.86rem;
}

.notice[hidden] {
  display: none;
}

.notice__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.notice__link {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(124, 60, 255, 0.66);
  border-radius: 999px;
  padding: 0.25rem 1.35rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(124, 60, 255, 0.16);
}

.notice__close {
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
  color: #6e7788;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 4;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 10, 19, 0.86);
  backdrop-filter: blur(18px);
}

.nav {
  position: relative;
  max-width: 1320px;
  min-height: 70px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: max-content;
}

.brand__mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(124, 60, 255, 0.58);
  border-radius: var(--radius);
  color: var(--cyan);
  background: linear-gradient(135deg, rgba(124, 60, 255, 0.32), rgba(43, 216, 255, 0.08));
}

.brand strong {
  display: block;
  font-size: 1rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.brand b {
  color: #8f72ff;
}

.brand small {
  display: block;
  margin-top: 0.28rem;
  color: #778397;
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 900;
}

.nav__menu a {
  transition: color 0.18s ease;
}

.nav__menu a:hover,
.nav__menu a:focus-visible {
  color: var(--text);
}

.nav__cta,
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 0.78rem 1.25rem;
  color: var(--text);
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.06);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.nav__cta {
  border-color: rgba(124, 60, 255, 0.66);
  background: rgba(124, 60, 255, 0.22);
}

.button--primary {
  border-color: transparent;
  background: linear-gradient(135deg, #823cff, #4d7dff 55%, #1fc7d4);
  box-shadow: 0 15px 36px rgba(88, 84, 255, 0.32);
}

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

.button:hover,
.nav__cta:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.28);
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.section-grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  gap: 4rem;
  align-items: center;
}

.section-pad {
  max-width: 1320px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.hero {
  min-height: 640px;
  padding-top: 3.3rem;
  padding-bottom: 3.3rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  max-width: 100%;
  margin: 0 0 1rem;
  border: 1px solid rgba(124, 60, 255, 0.48);
  border-radius: 999px;
  padding: 0.42rem 0.9rem;
  color: #c3b7ff;
  background: rgba(124, 60, 255, 0.14);
  font-size: 0.74rem;
  font-weight: 1000;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 0 4px rgba(49, 217, 134, 0.16);
}

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

h1,
h2 {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 1.15rem;
  max-width: 660px;
  font-size: clamp(3.6rem, 5.6vw, 5.8rem);
  line-height: 0.9;
  overflow-wrap: break-word;
}

h2 {
  font-size: clamp(2.45rem, 5vw, 4.75rem);
  line-height: 0.94;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.25;
}

.hero h1,
.experience h2 {
  background: linear-gradient(90deg, #ffffff 0 42%, #936fff 52%, #45d9ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead,
.section-head p,
.promo p,
.reseller p,
.page-hero p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.countdown {
  margin: 1.7rem 0 1.4rem;
}

.countdown__label {
  display: block;
  margin-bottom: 0.65rem;
  color: #69768b;
  font-size: 0.72rem;
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.countdown__items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.countdown__items span {
  width: 72px;
  min-height: 64px;
  display: grid;
  place-items: center;
  gap: 0.1rem;
  border: 1px solid rgba(124, 60, 255, 0.42);
  border-radius: var(--radius);
  background: rgba(124, 60, 255, 0.16);
}

.countdown strong {
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
}

.countdown small {
  color: #7d89a0;
  font-size: 0.6rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.5rem;
  margin: 0;
}

.hero__stats div {
  display: grid;
  grid-template-columns: auto;
}

.hero__stats dt {
  font-size: 1.1rem;
  font-weight: 1000;
}

.hero__stats dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.hero__media {
  min-width: 0;
}

.hero__content {
  min-width: 0;
}

.screen {
  position: relative;
  border: 1px solid rgba(124, 60, 255, 0.6);
  border-radius: var(--radius);
  padding: 0.45rem;
  background: linear-gradient(135deg, rgba(124, 60, 255, 0.25), rgba(43, 216, 255, 0.08));
  box-shadow: var(--shadow);
}

.screen::before {
  content: "";
  position: absolute;
  inset: 0.45rem;
  border-radius: 6px;
  background: linear-gradient(to top, rgba(7, 10, 18, 0.66), transparent 48%);
  pointer-events: none;
}

.screen img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
}

.screen__badge {
  position: absolute;
  min-width: 98px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 0.7rem 0.8rem;
  background: rgba(10, 13, 25, 0.9);
  box-shadow: var(--shadow);
}

.screen__badge strong {
  display: block;
  color: #9b76ff;
  font-family: var(--display);
  font-size: 1.35rem;
}

.screen__badge small {
  color: #7a8799;
  font-size: 0.65rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.screen__badge--top {
  right: -1.2rem;
  top: 1.2rem;
}

.screen__badge--left {
  left: -1.2rem;
  top: 1.8rem;
}

.screen__badge--bottom {
  left: 2rem;
  bottom: -1.4rem;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 2.1rem;
}

.hero__chips span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.78rem;
  font-weight: 900;
}

.channels {
  max-width: 1320px;
  margin: 0 auto;
  padding: 4.4rem 1.5rem 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.7rem;
}

.section-head--center {
  display: block;
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.section-head h2 {
  margin-bottom: 0.25rem;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--muted);
  font-weight: 1000;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.category-card {
  position: relative;
  min-height: 128px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(to top, rgba(3, 6, 12, 0.9), rgba(3, 6, 12, 0.1)),
    var(--card-bg),
    url("../images/worldcup-streaming-hero.png");
  background-size: cover;
  background-position: var(--card-pos, center);
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.18), transparent 4rem),
    linear-gradient(135deg, rgba(124, 60, 255, 0.15), transparent);
}

.category-card span {
  position: absolute;
  left: 1rem;
  bottom: 0.85rem;
  z-index: 1;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.category-card--sports { --card-pos: 52% 55%; --card-bg: linear-gradient(135deg, rgba(49, 217, 134, 0.25), transparent); }
.category-card--movies { --card-pos: 20% 58%; --card-bg: linear-gradient(135deg, rgba(249, 77, 115, 0.3), transparent); }
.category-card--news { --card-pos: 38% 38%; --card-bg: linear-gradient(135deg, rgba(43, 216, 255, 0.25), transparent); }
.category-card--kids { --card-pos: 70% 42%; --card-bg: linear-gradient(135deg, rgba(242, 184, 75, 0.28), transparent); }
.category-card--docs { --card-pos: 82% 50%; --card-bg: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent); }
.category-card--shows { --card-pos: 88% 64%; --card-bg: linear-gradient(135deg, rgba(124, 60, 255, 0.3), transparent); }

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-left: 0;
  border-right: 0;
  margin-top: 3.5rem;
}

.feature-strip div {
  min-height: 118px;
  display: grid;
  grid-template-columns: 50px 1fr;
  grid-template-rows: auto auto;
  gap: 0.25rem 1rem;
  align-content: center;
  padding: 1.6rem;
  border-right: 1px solid var(--line);
}

.feature-strip div:last-child {
  border-right: 0;
}

.feature-strip i,
.benefit-card > i,
.steps i {
  grid-row: span 2;
  width: 50px;
  height: 50px;
  padding: 0.8rem;
  border: 1px solid rgba(124, 60, 255, 0.42);
  border-radius: var(--radius);
  color: var(--cyan);
  background: rgba(124, 60, 255, 0.16);
}

.feature-strip strong {
  align-self: end;
  font-size: 1rem;
}

.feature-strip span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.experience {
  max-width: none;
  border-top: 1px solid rgba(124, 60, 255, 0.2);
  background: linear-gradient(180deg, rgba(24, 10, 55, 0.38), rgba(7, 11, 18, 0));
}

.experience > .section-head,
.experience > .benefit-grid {
  max-width: 1320px;
}

.benefit-grid,
.plans,
.steps,
.blog-grid,
.article-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.benefit-grid {
  margin: 3rem auto 0;
}

.benefit-card,
.plan-card,
.steps article,
.review-card,
.blog-grid article,
.article-card,
.match-card,
.legal-copy article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.18);
}

.benefit-card {
  min-height: 330px;
  padding: 2rem;
}

.benefit-card--featured {
  border-color: rgba(124, 60, 255, 0.65);
  background: linear-gradient(180deg, rgba(124, 60, 255, 0.18), rgba(43, 216, 255, 0.05));
}

.benefit-card h3 {
  margin: 1.2rem 0 0.8rem;
  font-family: var(--display);
  font-size: 2rem;
  text-transform: uppercase;
}

.benefit-card p,
.plan-card p,
.steps p,
.review-card p,
.blog-grid p,
.article-card p,
.legal-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.4rem;
}

.tags span {
  border: 1px solid rgba(43, 216, 255, 0.28);
  border-radius: 999px;
  padding: 0.28rem 0.65rem;
  color: #78dcff;
  background: rgba(43, 216, 255, 0.08);
  font-size: 0.75rem;
  font-weight: 1000;
}

.promo,
.reseller {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.match-card {
  padding: 1.5rem;
  background:
    linear-gradient(rgba(8, 12, 20, 0.7), rgba(8, 12, 20, 0.86)),
    url("../images/worldcup-streaming-hero.png") center / cover;
}

.match-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.match-card__top span,
.plan-card__label,
.article-card span,
.blog-grid span {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.match-card__top strong {
  color: var(--text);
  font-family: var(--display);
  font-size: 2.5rem;
}

.match-card ul,
.plan-card ul {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.match-card li,
.plan-card li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #cbd5e1;
}

.match-card li i,
.plan-card li i {
  width: 18px;
  min-width: 18px;
  color: var(--emerald);
}

.pricing {
  max-width: none;
  background:
    radial-gradient(circle at 50% 0%, rgba(242, 184, 75, 0.13), transparent 22rem),
    linear-gradient(180deg, rgba(5, 10, 18, 0), rgba(8, 12, 20, 0.68));
}

.pricing > .section-head,
.pricing > .plans {
  max-width: 1320px;
  margin-inline: auto;
}

.segmented,
.country-filter {
  display: inline-flex;
  gap: 0.35rem;
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.25rem;
  background: rgba(255, 255, 255, 0.05);
}

.segmented button,
.country-filter button {
  min-height: 36px;
  border: 0;
  border-radius: 6px;
  padding: 0.45rem 0.9rem;
  color: var(--muted);
  background: transparent;
  font-weight: 1000;
}

.segmented button.is-active,
.country-filter button.is-active {
  color: var(--text);
  background: rgba(124, 60, 255, 0.52);
}

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

.free-test {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 0.65rem;
  max-width: 620px;
  margin: 1.2rem auto 0;
  border: 1px solid rgba(49, 217, 134, 0.42);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  color: #dfffee;
  background: rgba(49, 217, 134, 0.1);
}

.free-test i {
  width: 22px;
  color: var(--emerald);
}

.free-test strong {
  font-weight: 1000;
}

.free-test span {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.free-test__link {
  grid-column: 1 / -1;
  justify-self: center;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(49, 217, 134, 0.55);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  color: #06140d;
  background: var(--emerald);
  font-size: 0.78rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.plan-card {
  position: relative;
  padding: 1.6rem;
}

.plan-card--popular {
  border-color: rgba(43, 216, 255, 0.48);
  transform: translateY(-0.7rem);
  background: linear-gradient(180deg, rgba(43, 216, 255, 0.14), rgba(124, 60, 255, 0.1));
}

.plan-card__ribbon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
  color: #052013;
  background: var(--emerald);
  font-size: 0.7rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.plan-card h3 {
  margin: 0.65rem 0 0.35rem;
  font-family: var(--display);
  font-size: 2.15rem;
  text-transform: uppercase;
}

.price {
  display: flex;
  align-items: start;
  gap: 0.15rem;
  margin: 1.2rem 0;
}

.price span {
  margin-top: 0.35rem;
  color: var(--gold);
  font-weight: 1000;
}

.price strong {
  font-family: var(--display);
  font-size: 3.4rem;
  line-height: 0.9;
}

.plan-card .button {
  width: 100%;
  margin-top: 1.4rem;
}

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

.steps article {
  position: relative;
  min-height: 230px;
  padding: 1.5rem;
}

.steps article span {
  position: absolute;
  right: 1.2rem;
  top: 1rem;
  color: rgba(255, 255, 255, 0.1);
  font-family: var(--display);
  font-size: 4rem;
}

.steps h3 {
  margin: 1rem 0 0.5rem;
}

.devices {
  max-width: none;
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding-block: 1.1rem;
}

.device-marquee {
  display: flex;
  gap: 0.8rem;
  width: max-content;
  animation: marquee 26s linear infinite;
  will-change: transform;
}

.device-marquee span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  font-weight: 1000;
}

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

.countries {
  text-align: center;
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.country-grid span {
  min-height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #d7deec;
  background: rgba(255, 255, 255, 0.045);
  font-weight: 900;
}

.country-grid span[hidden] {
  display: none;
}

.reseller__actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: end;
}

.reviews {
  overflow: hidden;
}

.review-controls {
  display: flex;
  gap: 0.5rem;
}

.review-controls button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.review-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.review-card {
  min-height: 220px;
  padding: 1.5rem;
  opacity: 0.62;
  transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.review-card.is-active {
  opacity: 1;
  transform: translateY(-0.3rem);
  border-color: rgba(242, 184, 75, 0.5);
}

.stars {
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

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

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

.faq {
  max-width: 980px;
}

.accordion {
  display: grid;
  gap: 0.8rem;
}

.accordion__item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.accordion__item button {
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  padding: 1rem 1.2rem;
  color: var(--text);
  background: transparent;
  font-weight: 1000;
  text-align: left;
}

.accordion__item button i {
  transition: transform 0.2s ease;
}

.accordion__item.is-open button i {
  transform: rotate(180deg);
}

.accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.2s ease;
}

.accordion__panel p {
  overflow: hidden;
  margin: 0;
  padding: 0 1.2rem;
  color: var(--muted);
  line-height: 1.65;
}

.accordion__item.is-open .accordion__panel {
  grid-template-rows: 1fr;
}

.accordion__item.is-open .accordion__panel p {
  padding-bottom: 1.2rem;
}

.blog-grid article,
.article-card {
  padding: 1.5rem;
}

.blog-grid h3,
.article-card h2 {
  margin: 0.65rem 0 0.45rem;
}

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

.footer {
  border-top: 1px solid var(--line);
  padding: 2rem 1.5rem;
  background: rgba(5, 8, 14, 0.8);
}

.footer__top {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--muted);
  font-weight: 900;
}

.footer__note {
  max-width: 1320px;
  margin: 1.2rem auto 0;
  color: #6d788d;
  font-size: 0.85rem;
}

.whatsapp {
  position: fixed;
  right: 1.3rem;
  bottom: 1.3rem;
  z-index: 3;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #052013;
  background: var(--emerald);
  box-shadow: 0 18px 45px rgba(49, 217, 134, 0.34);
}

.order-modal {
  width: min(560px, calc(100vw - 2rem));
  border: 1px solid rgba(124, 60, 255, 0.45);
  border-radius: var(--radius);
  padding: 0;
  color: var(--text);
  background: var(--panel-solid);
  box-shadow: var(--shadow);
}

.order-modal::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(5px);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.order-modal__body {
  padding: 1.6rem;
}

.order-form {
  display: grid;
  gap: 0.9rem;
}

.order-form label {
  display: grid;
  gap: 0.42rem;
  color: #d4dbea;
  font-size: 0.85rem;
  font-weight: 1000;
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.8rem 0.9rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
}

.order-form textarea {
  resize: vertical;
}

.payment-methods {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  border: 0;
}

.payment-methods legend {
  margin-bottom: 0.15rem;
  color: #d4dbea;
  font-size: 0.85rem;
  font-weight: 1000;
}

.payment-method {
  position: relative;
  display: block;
}

.payment-method input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.payment-method span {
  min-height: 66px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 0.1rem 0.75rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.045);
  transition: border-color 0.18s ease, background 0.18s ease;
}

.payment-method input:checked + span {
  border-color: rgba(49, 217, 134, 0.62);
  background: rgba(49, 217, 134, 0.11);
}

.payment-method i,
.payment-method svg {
  grid-row: 1 / 3;
  width: 38px;
  height: 38px;
  padding: 0.55rem;
  border: 1px solid rgba(49, 217, 134, 0.32);
  border-radius: var(--radius);
  color: var(--emerald);
  background: rgba(49, 217, 134, 0.08);
}

.payment-method strong {
  color: var(--text);
}

.payment-method small {
  color: var(--muted);
  line-height: 1.35;
}

.checkout-page {
  min-height: 100vh;
}

.checkout-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
}

.checkout-card {
  width: min(680px, 100%);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
}

.checkout-card .brand {
  margin-bottom: 1.4rem;
}

.checkout-card h1 {
  max-width: none;
  font-size: clamp(2.4rem, 8vw, 4rem);
  overflow-wrap: anywhere;
}

.checkout-card p {
  color: var(--muted);
  line-height: 1.65;
}

.checkout-card .button {
  width: 100%;
  margin-top: 0.75rem;
}

.checkout-summary,
.payment-details,
.proof-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin: 1rem 0;
  padding: 1rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
  line-height: 1.65;
}

.proof-box {
  border-color: rgba(49, 217, 134, 0.28);
  background: rgba(49, 217, 134, 0.075);
}

.proof-box strong {
  display: block;
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.proof-box p {
  margin: 0 0 0.8rem;
}

.proof-box .button {
  margin-top: 0;
}

.payment-details {
  display: grid;
  gap: 0.75rem;
}

.payment-details div {
  display: grid;
  gap: 0.2rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.75rem;
}

.payment-details div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.payment-details span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.payment-details strong {
  color: var(--text);
  font-size: 1.05rem;
  overflow-wrap: anywhere;
}

.subpage {
  background:
    radial-gradient(circle at 22% 0%, rgba(124, 60, 255, 0.18), transparent 30rem),
    linear-gradient(180deg, #070912 0%, #0a1018 100%);
}

.page-hero {
  max-width: 980px;
  margin: 0 auto;
  padding: 6rem 1.5rem 3rem;
  text-align: center;
}

.page-hero h1 {
  max-width: none;
  margin-inline: auto;
}

.article-list {
  max-width: 980px;
  grid-template-columns: 1fr;
}

.article-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--cyan);
  font-weight: 1000;
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
}

.legal-nav {
  position: sticky;
  top: 92px;
  align-self: start;
  display: grid;
  gap: 0.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.65rem;
  background: rgba(255, 255, 255, 0.04);
}

.legal-nav a {
  border-radius: 6px;
  padding: 0.65rem 0.75rem;
  color: var(--muted);
  font-weight: 900;
}

.legal-nav a:hover {
  color: var(--text);
  background: rgba(124, 60, 255, 0.22);
}

.legal-copy {
  display: grid;
  gap: 1rem;
}

.legal-copy article {
  padding: 1.4rem;
  scroll-margin-top: 100px;
}

.legal-copy h2 {
  font-size: 2rem;
}

@media (max-width: 1100px) {
  .section-grid,
  .hero {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .feature-strip,
  .steps,
  .country-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-strip div:nth-child(2) {
    border-right: 0;
  }

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

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

@media (max-width: 860px) {
  .notice {
    padding-right: 3.4rem;
  }

  .nav {
    min-height: 64px;
  }

  .nav__toggle {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    display: grid;
    z-index: 2;
    border-color: rgba(124, 60, 255, 0.72);
    background: rgba(124, 60, 255, 0.24);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
  }

  .nav__toggle::before {
    content: "";
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--text);
    box-shadow: 0 -6px 0 var(--text), 0 6px 0 var(--text);
  }

  .nav__toggle svg {
    display: none;
  }

  .nav__menu:not(.nav__menu--static) {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.6rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0.4rem;
    background: rgba(9, 12, 22, 0.98);
    box-shadow: var(--shadow);
  }

  .nav__menu:not(.nav__menu--static).is-open {
    display: flex;
  }

  .nav__menu:not(.nav__menu--static) a {
    padding: 0.82rem 0.9rem;
    border-radius: 6px;
  }

  .nav__menu:not(.nav__menu--static) a:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .nav__cta {
    display: none;
  }

  .nav__menu--static {
    display: none;
  }

  .section-grid,
  .section-pad,
  .channels {
    padding-inline: 1rem;
  }

  .section-grid,
  .section-pad {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .channels {
    padding-top: 3.5rem;
  }

  .section-head {
    display: block;
  }

  .section-link {
    margin-top: 0.8rem;
  }

  h1 {
    font-size: clamp(2.55rem, 10.5vw, 3.45rem);
  }

  .eyebrow {
    display: block;
    width: fit-content;
    font-size: 0.66rem;
    line-height: 1.35;
  }

  .eyebrow span {
    display: inline-block;
    margin-right: 0.45rem;
    vertical-align: middle;
  }

  .hero__actions .button,
  .reseller__actions .button {
    width: 100%;
  }

  .screen__badge {
    display: none;
  }

  .plans,
  .category-grid,
  .steps,
  .country-grid,
  .feature-strip {
    grid-template-columns: 1fr;
  }

  .plan-card--popular {
    transform: none;
  }

  .feature-strip div,
  .feature-strip div:nth-child(2) {
    min-height: 96px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem 1rem;
    padding: 1.2rem 0.9rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-strip div:last-child {
    border-bottom: 0;
  }

  .feature-strip i {
    width: 44px;
    height: 44px;
    min-width: 44px;
    padding: 0.68rem;
  }

  .feature-strip strong,
  .feature-strip span {
    flex: 1 1 calc(100% - 60px);
    display: block;
    min-width: 220px;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .feature-strip strong {
    align-self: center;
  }

  .feature-strip span {
    margin-left: 60px;
    flex-basis: calc(100% - 60px);
    line-height: 1.5;
  }

  .country-filter,
  .segmented {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .free-test {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 1rem;
  }

  .free-test i {
    width: 28px;
    height: 28px;
  }

  .free-test strong {
    font-size: 1rem;
  }

  .free-test__link {
    width: min(100%, 260px);
  }

  .plan-card {
    padding: 1.5rem;
  }

  .price strong {
    font-size: 3.05rem;
  }

  .plan-card li {
    align-items: flex-start;
    line-height: 1.45;
  }

  .devices {
    padding-inline: 0;
  }

  .device-marquee {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    padding: 0 1rem;
    animation: none;
  }

  .device-marquee span {
    display: grid;
    place-items: center;
    min-height: 42px;
    padding: 0.45rem 0.6rem;
    text-align: center;
  }

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

  .legal-nav {
    position: static;
  }

  .footer__top {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .nav {
    padding-inline: 1rem 4.75rem;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .brand small {
    display: none;
  }

  .notice__copy {
    max-width: 220px;
    text-align: center;
  }

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

  .countdown__items span {
    width: auto;
  }

  .hero__stats {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .section-head--center {
    text-align: left;
  }

  .pricing .section-head--center,
  .faq .section-head--center,
  .countries .section-head--center {
    text-align: center;
  }

  .pricing h2 {
    max-width: 340px;
    margin-inline: auto;
    font-size: clamp(2.05rem, 9.5vw, 2.65rem);
    overflow-wrap: anywhere;
  }

  .checkout-shell {
    align-items: start;
    padding: 1rem;
  }

  .checkout-card {
    padding: 1.25rem;
  }

  .checkout-card h1 {
    font-size: clamp(2rem, 10vw, 2.6rem);
    line-height: 0.98;
  }

  .plans {
    gap: 0.9rem;
  }

  .plan-card {
    padding: 1.35rem;
  }

  .plan-card h3 {
    font-size: 1.9rem;
  }

  .plan-card__ribbon {
    position: static;
    display: inline-flex;
    margin-bottom: 0.65rem;
  }

  .plan-card .button {
    min-height: 52px;
  }

  .review-controls {
    margin-top: 1rem;
  }

  .accordion__item button {
    min-height: 58px;
    padding: 0.9rem 1rem;
  }

  .hero__lead,
  .section-head p,
  .promo p,
  .reseller p,
  .page-hero p {
    font-size: 1rem;
  }

  .whatsapp {
    width: 50px;
    height: 50px;
  }
}
