@import url("https://fonts.googleapis.com/css2?family=League+Spartan:wght@400;500;600;700;800;900&display=swap");

:root {
  --bg: #020817;
  --panel: #071a38;
  --panel-2: #0b2852;
  --red: #087cf0;
  --red-2: #25a7ff;
  --white: #ffffff;
  --muted: #a9bad1;
  --green: #35d4a4;
  --gold: #8bdcff;
  --radius: 14px;
  --container: 1356px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: clip;
}
body {
  margin: 0;
  color: var(--white);
  background: var(--bg);
  font-family: "League Spartan", Arial, sans-serif;
  font-size: 19px;
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 1000; background: var(--red); padding: 10px 14px; border-radius: var(--radius); }
.skip-link:focus { top: 16px; }
.burgundy { background: var(--panel); }
.deep, .section-dark { background: var(--bg); }
section { scroll-margin-top: 140px; }
.eyebrow {
  margin: 0 0 20px;
  color: var(--red-2);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}
.gold { color: var(--gold); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}
h1 { font-size: clamp(52px, 6.4vw, 104px); max-width: 1120px; }
h2 { font-size: clamp(40px, 4.6vw, 68px); }
h3 { font-size: 29px; }
p { color: var(--muted); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 15px 30px;
  border-radius: var(--radius);
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-2); }
.btn-ghost { border-color: rgba(255,255,255,0.24); background: rgba(255,255,255,0.06); }
.icon { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2.25; stroke-linecap: round; stroke-linejoin: round; }

.site-header { position: fixed; top: 24px; left: 0; right: 0; z-index: 100; pointer-events: none; transition: top 200ms ease; }
.navbar {
  width: min(1640px, calc(100% - 64px));
  min-height: 96px;
  padding: 0 34px;
  display: flex;
  align-items: center;
  gap: 18px;
  background: linear-gradient(90deg, rgba(11, 1, 2, 0.94), rgba(24, 8, 10, 0.9));
  backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  pointer-events: auto;
  box-shadow: var(--shadow);
}
.site-header.is-scrolled { top: 14px; }
.site-header.is-scrolled .navbar { background: rgba(2, 8, 23, 0.96); box-shadow: 0 18px 80px rgba(8, 124, 240, 0.22); }
.brand { min-width: 135px; display: inline-flex; align-items: center; }
.brand-mark {
  display: inline-flex;
  align-items: baseline;
  color: var(--red-2);
  font-size: clamp(30px, 2.5vw, 42px);
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1;
  text-shadow: 0 0 20px rgba(37, 167, 255, 0.42);
}
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: 4px; margin-left: auto; min-width: 0; flex: 1 1 auto; }
.desktop-nav > a, .dropdown > button {
  color: #d8d1d2;
  min-height: 58px;
  padding: 0 10px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.desktop-nav > a:hover, .dropdown > button:hover,
.desktop-nav > a.is-active { background: rgba(255,255,255,0.08); color: var(--white); }
.desktop-nav > a:first-child { background: rgba(255,255,255,0.14); color: var(--white); padding-inline: 24px; }
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 240px;
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(12, 3, 4, 0.98);
  border: 1px solid rgba(255,255,255,0.09);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 180ms ease;
}
.dropdown:hover .dropdown-menu, .dropdown:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 10px 12px; border-radius: 6px; color: var(--muted); }
.dropdown-menu a:hover { background: rgba(217,9,9,0.18); color: var(--white); }
.nav-cta { margin-left: 10px; min-width: 148px; min-height: 58px; padding-inline: 20px; white-space: nowrap; }
.menu-toggle, .close-menu { display: none; border: 0; color: var(--white); background: rgba(255,255,255,0.1); border-radius: var(--radius); width: 52px; height: 52px; place-items: center; }
.mobile-panel { display: none; }

.hero { min-height: 100vh; position: relative; overflow: hidden; contain: paint; display: grid; place-items: center; padding: 190px 0 90px; }
.hero-media, .hero-overlay { position: absolute; inset: 0; }
.hero-overlay { background: radial-gradient(circle at center, rgba(10,1,2,0.4), rgba(10,1,2,0.88) 58%, rgba(10,1,2,0.94)); z-index: 2; }
.page-hero-media {
  z-index: 0;
  opacity: 0.72;
  filter: saturate(1.08) contrast(1.08);
}
.page-hero-media .hero-row {
  height: 33.34%;
}
.page-hero-media .hero-strip img {
  width: 30vw;
  min-width: 330px;
}
.hero-row { height: 33.4%; overflow: hidden; opacity: 0.78; }
.hero-strip { height: 100%; display: flex; width: max-content; animation: slide-left 44s linear infinite; }
.hero-row-1 .hero-strip { animation-name: slide-right; animation-duration: 48s; }
.hero-row-2 .hero-strip { animation-duration: 54s; }
.hero-strip img { width: 28vw; min-width: 300px; height: 100%; object-fit: cover; filter: saturate(1.04) contrast(1.1); }
@keyframes slide-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes slide-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.hero-content { position: relative; z-index: 3; text-align: center; display: grid; justify-items: center; }
.hero-content p:not(.eyebrow) { max-width: 760px; color: #d9d4d4; font-size: 25px; }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 20px; }

.split-section, .pricing-section, .benefits-section, .faq-section { padding: 112px 0; }
.cinematic-content-section {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(10,1,2,0.96), rgba(10,1,2,0.86) 48%, rgba(10,1,2,0.95)),
    var(--cinematic-bg) center/cover no-repeat;
  overflow: hidden;
}
.cinematic-content-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 72% 28%, rgba(217,9,9,0.24), transparent 34%),
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: auto, 84px 84px, 84px 84px;
  opacity: 0.76;
}
.cinematic-content-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  z-index: -1;
  background: linear-gradient(transparent, var(--bg));
}
.split-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(48px, 6vw, 82px); align-items: center; }
.copy-block > p:not(.eyebrow) { max-width: 720px; font-size: 25px; }
.check-list { list-style: none; padding: 0; margin: 32px 0; display: grid; gap: 15px; }
.check-list li { display: flex; align-items: center; gap: 14px; font-weight: 700; color: #eee9e9; }
.check-list .icon { color: var(--green); }
.image-stage { position: relative; min-height: 520px; }
.image-stage > img:first-child { width: 100%; height: 560px; object-fit: cover; border-radius: 18px; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,0.08); }
.stat-badge {
  position: absolute;
  width: 210px;
  min-height: 150px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 22px;
  border-radius: var(--radius);
  color: #06120e;
  font-weight: 800;
}
.stat-badge span { font-size: 15px; letter-spacing: 0.28em; }
.stat-badge strong { display: block; color: #000; font-size: 44px; line-height: 1; }
.stat-badge.gold { top: -20px; right: 18px; background: var(--gold); }
.stat-badge.green { top: 160px; left: -18px; background: #a8d8c8; }

[data-reveal] { opacity: 0; transform: translateY(34px) scale(0.98); transition: opacity 700ms ease, transform 700ms ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0) scale(1); }
.section-intro { min-height: 500px; display: grid; place-items: center; text-align: center; border-top: 1px solid rgba(255,255,255,0.03); }
.section-intro h2 { margin: 0; }
.who-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgba(242,227,148,0.09), transparent 28%),
    radial-gradient(circle at 8% 70%, rgba(217,9,9,0.2), transparent 34%),
    linear-gradient(135deg, #120406 0%, #1a080a 44%, #080102 100%);
}
.who-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,0.042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.042) 1px, transparent 1px);
  background-size: 104px 104px;
  mask-image: linear-gradient(to bottom, transparent, #000 16%, #000 86%, transparent);
}
.who-stage {
  padding: 16px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 34px 90px rgba(0,0,0,0.38);
}
.who-stage > img:first-child {
  height: 540px;
  border-radius: 18px;
  box-shadow: none;
}
.content-stage .play-shape { position: absolute; top: -28px; width: 140px; height: 118px; clip-path: polygon(0 0, 100% 50%, 0 100%); border-radius: 22px; z-index: 2; opacity: 0.86; }
.play-gold { left: -50px; background: var(--gold); transform: rotate(5deg); }
.play-red { left: 78px; background: #e05050; top: 58px !important; transform: rotate(8deg); }
.content-copy .highlight-box { background: linear-gradient(135deg, rgba(106,156,137,0.96), rgba(71,122,105,0.96)); color: var(--white); padding: 28px 34px; margin: 28px 0; font-size: 25px; font-weight: 800; border-radius: 0; }
.feature-bridge {
  min-height: auto;
  padding: 84px 0 74px;
  position: relative;
  overflow: hidden;
  text-align: left;
  background:
    radial-gradient(circle at 76% 20%, rgba(217,9,9,0.24), transparent 32%),
    radial-gradient(circle at 18% 76%, rgba(242,227,148,0.08), transparent 30%),
    linear-gradient(180deg, #090102 0%, #170608 100%);
}
.feature-bridge::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,0.046) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.046) 1px, transparent 1px);
  background-size: 88px 88px;
  opacity: 0.68;
}
.feature-bridge-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(330px, 0.62fr);
  grid-template-areas:
    "copy proof"
    "visual visual";
  gap: 34px 54px;
  align-items: end;
}
.feature-bridge-copy { grid-area: copy; max-width: 840px; }
.feature-bridge-copy h2 { max-width: 780px; }
.feature-bridge-copy p:not(.eyebrow) {
  max-width: 700px;
  margin: 18px 0 0;
  color: #d7d0d0;
  font-size: 22px;
}
.feature-proof-grid {
  grid-area: proof;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.feature-proof-grid span {
  min-height: 76px;
  display: grid;
  align-items: center;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: #f4eeee;
  font-weight: 900;
  line-height: 1.14;
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}
.feature-proof-grid span:first-child {
  background: rgba(217,9,9,0.9);
  border-color: rgba(217,9,9,0.9);
}
.feature-visual-strip {
  grid-area: visual;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 18px;
  margin-top: 2px;
  align-items: stretch;
}
.feature-visual-strip img {
  width: 100%;
  height: clamp(170px, 18vw, 260px);
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 24px 70px rgba(0,0,0,0.34);
}
.feature-visual-strip img:nth-child(2) { transform: none; }

.section-title { text-align: center; max-width: 920px; }
.section-title p:not(.eyebrow) { color: var(--white); }
.poster-section { padding: 110px 0; overflow: hidden; contain: paint; }
.cinematic-poster-section {
  position: relative;
  background:
    radial-gradient(circle at 18% 8%, rgba(217,9,9,0.22), transparent 32%),
    radial-gradient(circle at 78% 46%, rgba(242,227,148,0.08), transparent 34%),
    linear-gradient(180deg, #070000 0%, #130607 44%, #070000 100%);
}
.cinematic-poster-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 118px 118px;
  mask-image: linear-gradient(transparent, #000 20%, #000 78%, transparent);
}
.cinematic-poster-section .section-title,
.cinematic-poster-section .poster-bottom,
.cinematic-poster-section .poster-row {
  position: relative;
  z-index: 1;
}
.poster-row {
  display: flex;
  gap: 34px;
  padding-left: max(24px, calc((100vw - var(--container)) / 2));
  width: max-content;
  will-change: transform;
}
.poster-row-primary { margin: 70px 0 26px; animation: posters 38s linear infinite alternate; }
.poster-row-secondary { margin: 0 0 44px; animation: posters-reverse 52s linear infinite alternate; opacity: 0.76; }
.poster-row img {
  width: min(350px, 72vw);
  aspect-ratio: 0.76;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 26px 88px rgba(0,0,0,0.58);
  border: 1px solid rgba(255,255,255,0.11);
  filter: saturate(1.08) contrast(1.04);
}
.poster-row-secondary img {
  width: min(310px, 64vw);
  aspect-ratio: 1.22;
}
@keyframes posters { from { transform: translateX(0); } to { transform: translateX(-14%); } }
@keyframes posters-reverse { from { transform: translateX(-18%); } to { transform: translateX(0); } }
.poster-bottom { text-align: center; display: grid; justify-items: center; gap: 20px; }
.poster-bottom p { font-size: 28px; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; margin-top: 58px; }
.pricing-card { overflow: hidden; border-radius: 18px; background: #120708; min-height: 720px; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,0.08); }
.plan-ribbon { height: 58px; display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--green); color: var(--white); font-weight: 900; }
.plan-ribbon .icon { color: var(--red); fill: var(--red); stroke: var(--red); }
.plan-body {
  min-height: 662px;
  padding: 42px 30px 36px;
  text-align: center;
  background: linear-gradient(rgba(8,0,1,0.5), rgba(8,0,1,0.82)), var(--card-image) center/cover;
}
.plan-art {
  width: min(76%, 270px);
  height: 165px;
  margin: 0 auto 34px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 18px 50px rgba(0,0,0,0.42);
}
.plan-duration { color: var(--white); font-size: 29px; font-weight: 900; margin-bottom: 0; }
.plan-price { display: block; color: var(--red); font-size: clamp(58px, 5vw, 76px); line-height: 1; font-weight: 900; }
.plan-renew { color: #ded8d8; font-weight: 700; }
.plan-features { list-style: none; margin: 28px 0 38px; padding: 0; display: grid; gap: 1px; }
.plan-features li { min-height: 64px; display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 14px 18px; background: rgba(255,255,255,0.18); color: #ded9d9; text-align: left; font-weight: 700; line-height: 1.25; overflow-wrap: anywhere; }
.plan-features .icon { color: var(--green); flex: 0 0 auto; }
.pricing-note { display: grid; justify-items: center; gap: 12px; margin-top: 34px; }
.pricing-note a { color: var(--gold); font-weight: 800; }

.trial-section { position: relative; min-height: 710px; display: flex; align-items: center; background: linear-gradient(90deg, rgba(10,1,2,0.92), rgba(10,1,2,0.35)), var(--trial-image) center/cover; overflow: hidden; }
.trial-section::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px); background-size: 76px 76px; opacity: 0.22; }
.trial-content { position: relative; z-index: 1; max-width: 720px; }
.trial-price { display: flex; align-items: center; gap: 24px; margin: 30px 0 8px; }
.trial-price span { width: 92px; height: 92px; border-radius: 50%; display: grid; place-items: center; background: var(--white); color: var(--bg); }
.trial-price strong { color: var(--red); font-size: 72px; line-height: 1; }
.trial-price small { color: var(--white); font-size: 24px; }
.trial-note { color: var(--white); font-weight: 800; font-size: 25px; }

.trial-page-hero {
  position: relative;
  min-height: 940px;
  overflow: hidden;
  padding: 220px 0 120px;
  background:
    radial-gradient(circle at 75% 28%, rgba(229, 0, 0, 0.28), transparent 34%),
    linear-gradient(105deg, rgba(10, 1, 2, 0.96), rgba(10, 1, 2, 0.78) 48%, rgba(10, 1, 2, 0.92)),
    var(--trial-page-image) center/cover;
}
.trial-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 78px 78px;
  opacity: 0.17;
}
.trial-page-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 60px;
  align-items: center;
}
.trial-page-copy h1 {
  max-width: 1060px;
  font-size: clamp(54px, 7.5vw, 116px);
  line-height: 0.94;
  margin-bottom: 34px;
}
.trial-page-copy > p:not(.eyebrow) {
  max-width: 820px;
  color: rgba(255,255,255,0.82);
  font-size: 28px;
  line-height: 1.48;
}
.trial-page-card {
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 28px;
  padding: 42px;
  background: linear-gradient(145deg, rgba(35, 18, 19, 0.92), rgba(8, 2, 3, 0.9));
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.trial-page-card strong {
  display: block;
  color: var(--red);
  font-size: clamp(64px, 6vw, 96px);
  line-height: 0.92;
  margin: 8px 0 18px;
}
.trial-page-card small {
  display: block;
  color: var(--white);
  font-size: 24px;
  margin-top: 10px;
}
.trial-page-card p:not(.eyebrow) {
  color: rgba(255,255,255,0.76);
  font-size: 21px;
}
.trial-page-card ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}
.trial-page-card li {
  min-height: 98px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  text-align: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
}
.trial-page-card b {
  display: block;
  color: var(--gold);
  font-size: 24px;
}
.trial-page-card span {
  display: block;
  color: rgba(255,255,255,0.68);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.trial-page-section {
  padding: 112px 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(229,0,0,0.12), transparent 32%),
    var(--bg);
}
.section-heading.center {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 58px;
}
.section-heading.center p:not(.eyebrow) {
  color: rgba(255,255,255,0.72);
  font-size: 23px;
}
.trial-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.trial-page-item {
  min-height: 280px;
  padding: 34px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 18px 50px rgba(0,0,0,0.22);
}
.trial-page-item > span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(242, 227, 148, 0.12);
  color: var(--gold);
  margin-bottom: 28px;
}
.trial-page-item h3 {
  font-size: 30px;
  margin-bottom: 12px;
}
.trial-page-item p {
  color: rgba(255,255,255,0.68);
  font-size: 19px;
}
.trial-page-process {
  background:
    linear-gradient(90deg, rgba(10,1,2,0.94), rgba(37,7,8,0.8)),
    url("../assets/optimized/cinema-wide-1.webp") center/cover;
}
.trial-page-process-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 58px;
  align-items: center;
}
.trial-page-steps {
  display: grid;
  gap: 18px;
}
.trial-page-steps article {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 24px;
  padding: 28px;
  border-radius: 22px;
  background: rgba(255,255,255,0.075);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
}
.trial-page-steps span {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
  font-size: 24px;
}
.trial-page-steps h3 {
  font-size: 30px;
  margin-bottom: 8px;
}
.trial-page-steps p {
  color: rgba(255,255,255,0.72);
  font-size: 19px;
}
.trial-page-best {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 48px;
  align-items: center;
}
.trial-page-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.trial-page-pill-grid span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  border-radius: 999px;
  background: rgba(242, 227, 148, 0.1);
  color: var(--white);
  border: 1px solid rgba(242,227,148,0.22);
  font-size: 18px;
  font-weight: 900;
}
.trial-page-pill-grid .icon {
  width: 20px;
  color: var(--gold);
}
.trial-page-faq {
  background: var(--bg-soft);
}
.trial-page-final {
  background:
    linear-gradient(120deg, rgba(10,1,2,0.92), rgba(10,1,2,0.64)),
    url("../assets/optimized/cinema-wide-5.webp") center/cover;
}

.benefit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px 42px; margin-top: 60px; }
.benefit-item { display: flex; gap: 22px; }
.benefit-item .icon { color: var(--green); width: 52px; height: 52px; flex: 0 0 auto; }
.benefit-item h3 { margin-bottom: 10px; }
.floating-image { position: absolute; right: -20px; top: 110px; width: 44% !important; height: 250px !important; border-radius: var(--radius); object-fit: cover; }
.experience-badge { position: absolute; left: -24px; bottom: 70px; width: 205px; min-height: 205px; background: var(--red); display: grid; place-items: center; text-align: center; border-radius: var(--radius); padding: 18px; }
.experience-badge span { color: var(--gold); letter-spacing: 0.28em; font-weight: 800; font-size: 15px; }
.experience-badge strong { display: block; color: var(--white); font-size: 56px; line-height: 1.05; }

.testimonial-section { padding: 112px 0; overflow: hidden; contain: paint; }
.testimonial-wrap { background-image: linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px); background-size: 92px 92px; }
.testimonial-shell { position: relative; margin-top: 70px; }
.testimonial-track { display: grid; grid-auto-flow: column; grid-auto-columns: calc(50% - 20px); gap: 40px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.testimonial-track::-webkit-scrollbar { display: none; }
.testimonial-card { scroll-snap-align: start; min-height: 310px; padding: 38px; border-radius: var(--radius); background: rgba(255,255,255,0.045); border: 1px solid rgba(255,255,255,0.08); }
.review-head { display: flex; align-items: center; gap: 20px; margin-bottom: 28px; }
.avatar { width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; color: var(--bg); background: #e8e1e2; font-weight: 900; }
.stars { color: var(--red); letter-spacing: 0.1em; }
.testimonial-control { position: absolute; top: 50%; translate: 0 -50%; width: 48px; height: 48px; border: 0; background: transparent; color: var(--gold); font-size: 46px; cursor: pointer; z-index: 2; }
.testimonial-control.left { left: -54px; }
.testimonial-control.right { right: -54px; }

.stats-section { padding: 0 0 110px; }
.stats-card { display: grid; grid-template-columns: repeat(5, 1fr); gap: 28px; background: var(--gold); color: #050303; border-radius: 24px; padding: 70px 80px; }
.stat-column strong { display: block; font-size: 60px; line-height: 1; font-weight: 900; }
.stat-column span { display: block; margin-top: 24px; color: #6b6240; text-transform: uppercase; letter-spacing: 0.24em; font-size: 15px; font-weight: 800; }

.faq-list { display: grid; gap: 18px; margin-top: 52px; }
.faq-item { border-radius: var(--radius); background: rgba(255,255,255,0.09); overflow: hidden; }
.faq-item h3 { margin: 0; }
.faq-item button { width: 100%; border: 0; background: transparent; color: #e8e2e2; padding: 28px 32px; display: flex; justify-content: space-between; text-align: left; cursor: pointer; }
.faq-item b::before { content: "+"; color: var(--gold); font-size: 34px; line-height: 1; }
.faq-item.is-open b::before { content: "−"; }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 240ms ease; border-top: 1px solid transparent; }
.faq-answer p { overflow: hidden; margin: 0; padding: 0 32px; }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; border-top-color: rgba(255,255,255,0.08); }
.faq-item.is-open .faq-answer p { padding-block: 24px 32px; }
.faq-stage::before { content: ""; position: absolute; left: -36px; top: 34px; width: 54px; height: 54px; border-radius: var(--radius); background: #050c2a; z-index: 1; }

.final-cta { padding: 118px 0; text-align: center; }
.final-cta p { max-width: 720px; margin: 0 auto 30px; font-size: 25px; }
.final-cta .btn .icon { width: 20px; }

.site-footer { background: #070000; background-image: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px); background-size: 120px 120px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 0.8fr 0.8fr 1fr; gap: 70px; padding: 100px 0 82px; }
.site-footer a { display: block; color: var(--muted); margin: 10px 0; }
.site-footer h3 { font-size: 27px; }
.country-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.country-chips a { display: inline-flex; margin: 0; padding: 8px 14px; border-radius: 999px; border: 1px solid rgba(217,9,9,0.32); background: rgba(255,255,255,0.04); }
.country-chips a:hover,
.country-chips a:focus-visible {
  color: var(--white);
  border-color: rgba(217,9,9,0.82);
  background: rgba(217,9,9,0.18);
  transform: translateY(-2px);
}
.country-chips .footer-chip-featured {
  color: var(--white);
  border-color: rgba(255,255,255,0.28);
  background: linear-gradient(135deg, rgba(217,9,9,0.96), rgba(115,0,0,0.82));
  box-shadow: 0 14px 34px rgba(217,9,9,0.22);
}
.copyright { background: var(--red); text-align: center; padding: 24px; font-weight: 700; }

.service-hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 190px 0 112px;
  background:
    radial-gradient(circle at 16% 12%, rgba(217,9,9,0.28), transparent 34%),
    radial-gradient(circle at 82% 24%, rgba(242,227,148,0.1), transparent 30%),
    linear-gradient(135deg, #080102 0%, #170506 58%, #080102 100%);
}

.service-hero-grid-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(90deg, rgba(5,0,1,0.94), rgba(5,0,1,0.62) 48%, rgba(5,0,1,0.92)),
    radial-gradient(circle at 22% 18%, rgba(217,9,9,0.3), transparent 34%),
    radial-gradient(circle at 78% 30%, rgba(242,227,148,0.12), transparent 30%),
    linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: auto, auto, auto, 104px 104px, 104px 104px;
  mask-image: linear-gradient(transparent, #000 18%, #000 82%, transparent);
  opacity: 0.82;
}

.service-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 220px;
  background: linear-gradient(transparent, var(--bg));
}

.service-hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.55fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: end;
}

.service-hero-copy h1 {
  font-size: clamp(52px, 5.8vw, 92px);
}

.service-hero-copy p:not(.eyebrow) {
  max-width: 800px;
  color: #eee7e8;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.35;
}

.service-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.service-hero-panel {
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.11);
  box-shadow: 0 28px 90px rgba(0,0,0,0.42);
  backdrop-filter: blur(18px);
}

.service-hero-panel div {
  min-height: 132px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(217,9,9,0.28), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.1);
}

.service-hero-panel strong {
  color: var(--white);
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1;
}

.service-hero-panel span {
  color: #e7dcdd;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 14px;
}

.service-strategy-section,
.service-country-section,
.service-city-section,
.service-benefit-section,
.service-faq-section {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
}

.service-strategy-section,
.service-benefit-section {
  background:
    radial-gradient(circle at 88% 12%, rgba(217,9,9,0.16), transparent 30%),
    linear-gradient(180deg, #0a0102, #130607);
}

.service-section-head {
  max-width: 940px;
  margin: 0 auto 48px;
  text-align: center;
}

.service-section-head.compact {
  max-width: 860px;
}

.service-section-head p:not(.eyebrow) {
  margin-inline: auto;
  max-width: 780px;
  font-size: 21px;
  line-height: 1.45;
}

.service-strategy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-strategy-grid article,
.service-country-card,
.service-city-card {
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,0.085), rgba(255,255,255,0.032));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 22px 70px rgba(0,0,0,0.28);
}

.service-strategy-grid article {
  min-height: 300px;
  padding: 28px;
}

.service-strategy-grid .icon {
  color: var(--gold);
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
}

.service-strategy-grid h3 {
  font-size: 32px;
}

.service-strategy-grid p,
.service-city-card p {
  font-size: 18px;
  line-height: 1.42;
}

.service-country-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.service-country-card {
  min-height: 330px;
  padding: clamp(30px, 4vw, 50px);
}

.service-country-card span {
  color: var(--gold);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-country-card h2 {
  margin: 16px 0;
}

.service-filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 54px;
}

.service-filter-row a,
.service-keywords span,
.service-sports span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
}

.service-filter-row a {
  color: #f1e9e9;
  background: rgba(255,255,255,0.065);
  border: 1px solid rgba(217,9,9,0.28);
}

.service-filter-row a:hover {
  background: var(--red);
  color: var(--white);
}

.service-city-group {
  scroll-margin-top: 145px;
}

.service-city-group + .service-city-group {
  margin-top: 74px;
}

.service-city-group > h3 {
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(34px, 3.4vw, 52px);
}

.service-city-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-city-card {
  display: grid;
  align-content: start;
  min-height: 430px;
  padding: 24px;
}

.service-city-head {
  display: grid;
  gap: 5px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}

.service-city-head span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-city-head strong {
  color: var(--white);
  font-size: 34px;
  line-height: 1;
}

.service-city-head small {
  color: #d7cccd;
  font-size: 16px;
}

.service-keywords,
.service-sports {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.service-keywords span {
  color: #f4ecec;
  background: rgba(217,9,9,0.16);
  border: 1px solid rgba(217,9,9,0.26);
}

.service-sports span {
  color: #111;
  background: var(--gold);
}

.service-city-card p {
  margin: 18px 0 0;
}

.service-city-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.service-city-links a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 48px;
  padding: 11px 13px;
  border-radius: 12px;
  color: var(--white);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 15px;
  font-weight: 900;
}

.service-city-links a:first-child {
  background: var(--red);
}

.service-city-links .icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.service-benefit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: start;
}

.service-benefit-grid p:not(.eyebrow) {
  max-width: 620px;
  font-size: 21px;
}

.service-blueprint-list {
  display: grid;
  gap: 14px;
}

.service-blueprint-list article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 88px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
}

.service-blueprint-list strong {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  color: #090102;
  background: var(--gold);
  font-size: 21px;
}

.service-blueprint-list span {
  color: #f1e9e9;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.16;
}

.service-faq-list {
  max-width: 980px;
  margin-inline: auto;
}

.city-hero {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 190px 0 118px;
  background:
    radial-gradient(circle at 18% 12%, rgba(217,9,9,0.26), transparent 34%),
    radial-gradient(circle at 82% 24%, rgba(242,227,148,0.1), transparent 32%),
    linear-gradient(135deg, #080102 0%, #180607 54%, #080102 100%);
}

.city-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(90deg, rgba(5,0,1,0.96), rgba(5,0,1,0.58) 46%, rgba(5,0,1,0.92)),
    radial-gradient(circle at 18% 12%, rgba(217,9,9,0.32), transparent 34%),
    radial-gradient(circle at 82% 24%, rgba(242,227,148,0.12), transparent 32%),
    linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: auto, auto, auto, 108px 108px, 108px 108px;
  mask-image: linear-gradient(transparent, #000 16%, #000 84%, transparent);
}

.city-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 220px;
  background: linear-gradient(transparent, var(--bg));
}

.city-hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.5fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: end;
}

.city-hero-copy h1 {
  font-size: clamp(50px, 5.5vw, 86px);
}

.city-hero-copy p:not(.eyebrow) {
  max-width: 840px;
  color: #eee7e8;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.35;
}

.city-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.city-signal-panel,
.city-device-card,
.city-proof-card,
.city-reseller-card {
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 28px 90px rgba(0,0,0,0.38);
}

.city-signal-panel {
  padding: 28px;
  backdrop-filter: blur(16px);
}

.city-signal-panel > span,
.city-proof-card > span {
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.city-signal-panel strong,
.city-proof-card strong {
  display: block;
  margin: 14px 0;
  color: var(--white);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
}

.city-signal-panel div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.city-signal-panel em {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  color: #0b0405;
  background: var(--gold);
  font-style: normal;
  font-size: 14px;
  font-weight: 900;
}

.city-section {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
}

.city-local-section,
.city-faq-section {
  background:
    radial-gradient(circle at 88% 10%, rgba(217,9,9,0.14), transparent 30%),
    linear-gradient(180deg, #0a0102, #130607);
}

.city-two-col,
.city-experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: start;
}

.city-two-col p:not(.eyebrow),
.city-device-card p,
.city-proof-card p,
.city-reseller-card p,
.city-related-head p {
  max-width: 740px;
  font-size: 21px;
  line-height: 1.45;
}

.city-local-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.city-local-grid article {
  min-height: 220px;
  padding: 24px;
  border-radius: 20px;
  background: rgba(255,255,255,0.065);
  border: 1px solid rgba(255,255,255,0.09);
}

.city-local-grid .icon {
  color: var(--gold);
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
}

.city-local-grid h3 {
  font-size: 30px;
}

.city-experience-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  align-items: stretch;
}

.city-device-card,
.city-proof-card {
  padding: clamp(28px, 4vw, 48px);
}

.city-device-card ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.city-device-card li {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 62px;
  padding: 14px;
  border-radius: 15px;
  background: rgba(255,255,255,0.06);
}

.city-device-card .icon,
.city-proof-card a .icon,
.city-related-grid .icon {
  flex: 0 0 auto;
  color: var(--gold);
}

.city-device-card li span {
  color: #f0e9e9;
  font-weight: 800;
  line-height: 1.15;
}

.city-proof-card {
  display: grid;
  align-content: center;
}

.city-proof-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--gold);
  font-weight: 900;
}

.city-pricing .section-title p:not(.eyebrow) {
  margin-inline: auto;
}

.city-reseller-cta {
  background:
    radial-gradient(circle at 18% 18%, rgba(217,9,9,0.18), transparent 28%),
    linear-gradient(180deg, #120506, #080102);
}

.city-lifetime-section {
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(7,1,2,0.97), rgba(7,1,2,0.78), rgba(7,1,2,0.94)),
    var(--city-lifetime-bg) center / cover no-repeat;
}

.city-lifetime-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(217,9,9,0.24), transparent 30%),
    radial-gradient(circle at 78% 34%, rgba(242,227,148,0.12), transparent 28%),
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: auto, auto, 92px 92px, 92px 92px;
}

.city-lifetime-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: center;
  padding: clamp(28px, 5vw, 58px);
  border-radius: 30px;
  background: rgba(8,1,2,0.78);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 34px 110px rgba(0,0,0,0.5);
  backdrop-filter: blur(18px);
}

.city-lifetime-media {
  overflow: hidden;
  min-height: 420px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(217,9,9,0.18), rgba(242,227,148,0.08));
  border: 1px solid rgba(255,255,255,0.12);
}

.city-lifetime-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.05);
}

.city-lifetime-copy > p:not(.eyebrow) {
  max-width: 760px;
  font-size: 22px;
  line-height: 1.42;
}

.city-lifetime-copy .lifetime-price {
  margin: 28px 0;
}

.city-trial-section {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(7,1,2,0.94), rgba(7,1,2,0.5), rgba(7,1,2,0.9)),
    var(--trial-image) center / cover no-repeat;
}

.city-trial-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 22%, rgba(217,9,9,0.22), transparent 30%),
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: auto, 82px 82px, 82px 82px;
  opacity: 0.7;
}

.city-trial-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.city-trial-grid h2 {
  max-width: 820px;
}

.city-trial-grid p:not(.eyebrow) {
  max-width: 760px;
  color: #eee7e8;
  font-size: 24px;
  line-height: 1.38;
}

.city-trial-card {
  display: grid;
  justify-items: start;
  gap: 16px;
  padding: clamp(28px, 4vw, 44px);
  border-radius: 26px;
  background: rgba(8,1,2,0.78);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 100px rgba(0,0,0,0.46);
  backdrop-filter: blur(18px);
}

.city-trial-card > span {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #080102;
  background: var(--gold);
}

.city-trial-card > span .icon {
  width: 38px;
  height: 38px;
}

.city-trial-card strong {
  color: var(--red);
  font-size: clamp(56px, 5vw, 76px);
  line-height: 1;
}

.city-trial-card small {
  color: var(--white);
  font-size: 22px;
}

.city-trial-card p {
  margin: 0;
  color: #f1e7e7;
  font-weight: 800;
  line-height: 1.25;
}

.city-reseller-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(30px, 5vw, 58px);
}

.city-reseller-card h2 {
  margin-bottom: 18px;
}

.city-faq-list {
  margin-top: 0;
}

.city-related-head {
  max-width: 900px;
  margin-bottom: 34px;
}

.city-related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.city-related-grid a {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  border-radius: 16px;
  color: var(--white);
  background: rgba(255,255,255,0.065);
  border: 1px solid rgba(255,255,255,0.1);
  font-weight: 900;
  line-height: 1.1;
}

.city-related-grid a:first-child {
  background: var(--red);
}

.reseller-city-hero .city-hero-bg {
  background-image:
    linear-gradient(90deg, rgba(5,0,1,0.98), rgba(5,0,1,0.5) 50%, rgba(5,0,1,0.94)),
    radial-gradient(circle at 72% 20%, rgba(217,9,9,0.34), transparent 34%),
    radial-gradient(circle at 28% 78%, rgba(242,227,148,0.13), transparent 30%),
    linear-gradient(rgba(255,255,255,0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.052) 1px, transparent 1px);
}

.reseller-city-command {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 42px);
  background:
    radial-gradient(circle at 78% 0%, rgba(242,227,148,0.16), transparent 32%),
    linear-gradient(145deg, rgba(255,255,255,0.13), rgba(255,255,255,0.04)),
    rgba(8,1,2,0.74);
  border-color: rgba(242,227,148,0.18);
}

.reseller-city-command::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  pointer-events: none;
}

.reseller-city-command > * {
  position: relative;
  z-index: 1;
}

.reseller-city-command ul,
.reseller-city-plan-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.reseller-city-command ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.reseller-city-command li {
  min-height: 94px;
  display: grid;
  align-content: center;
  padding: 14px;
  border-radius: 16px;
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.09);
}

.reseller-city-command b {
  color: var(--gold);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 0.92;
}

.reseller-city-command small {
  margin-top: 8px;
  color: #eee7e8;
  font-weight: 900;
  line-height: 1.05;
}

.reseller-city-strategy {
  background:
    radial-gradient(circle at 84% 10%, rgba(217,9,9,0.16), transparent 30%),
    radial-gradient(circle at 18% 84%, rgba(242,227,148,0.08), transparent 28%),
    linear-gradient(180deg, #080102, #130607 62%, #080102);
}

.reseller-strategy-grid article {
  position: relative;
  min-height: 248px;
  padding: 28px;
  overflow: hidden;
}

.reseller-strategy-grid article::after {
  content: "";
  position: absolute;
  inset: auto -24px -42px auto;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(217,9,9,0.14);
}

.reseller-strategy-grid article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  border-radius: 16px;
  color: #080102;
  background: var(--gold);
  font-weight: 900;
}

.reseller-market-strip {
  padding: 0 0 112px;
  background: #080102;
}

.reseller-market-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(217,9,9,0.2), rgba(242,227,148,0.08)),
    rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow);
}

.reseller-market-grid article {
  min-height: 142px;
  padding: 22px;
  border-radius: 18px;
  background: rgba(0,0,0,0.24);
  border: 1px solid rgba(255,255,255,0.08);
}

.reseller-market-grid span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.reseller-market-grid strong {
  display: block;
  margin: 10px 0;
  color: var(--white);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 0.95;
}

.reseller-market-grid p {
  margin: 0;
  color: #eee7e8;
  font-weight: 800;
  line-height: 1.18;
}

.reseller-cinema-section {
  position: relative;
  overflow: hidden;
  padding: 118px 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(217,9,9,0.24), transparent 32%),
    radial-gradient(circle at 84% 44%, rgba(242,227,148,0.1), transparent 32%),
    linear-gradient(180deg, #070102, #140608 48%, #070102);
}

.reseller-cinema-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 112px 112px;
  mask-image: linear-gradient(transparent, #000 18%, #000 82%, transparent);
}

.reseller-cinema-head {
  position: relative;
  z-index: 1;
  max-width: 940px;
  margin-bottom: 44px;
}

.reseller-cinema-head p:not(.eyebrow) {
  max-width: 760px;
  font-size: 23px;
}

.reseller-cinema-track {
  position: relative;
  z-index: 1;
  display: flex;
  width: max-content;
  gap: 22px;
  animation: resellerCinema 46s linear infinite;
}

.reseller-cinema-section:hover .reseller-cinema-track {
  animation-play-state: paused;
}

@keyframes resellerCinema {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.reseller-cinema-slide {
  position: relative;
  width: min(620px, 82vw);
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background: #100607;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 34px 110px rgba(0,0,0,0.42);
}

.reseller-cinema-slide img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.04);
}

.reseller-cinema-slide figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 20px;
  border-radius: 18px;
  background: rgba(7,1,2,0.78);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(18px);
}

.reseller-cinema-slide strong {
  display: block;
  color: var(--gold);
  font-size: 27px;
  line-height: 1;
}

.reseller-cinema-slide span {
  display: block;
  margin-top: 8px;
  color: #eee7e8;
  font-weight: 800;
  line-height: 1.22;
}

.reseller-city-plans {
  background:
    radial-gradient(circle at 84% 8%, rgba(242,227,148,0.11), transparent 30%),
    linear-gradient(180deg, #0b0203, #160708 54%, #080102);
}

.reseller-city-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}

.reseller-city-plan-card {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 3vw, 34px);
  border-radius: 26px;
  background:
    radial-gradient(circle at 78% 8%, rgba(217,9,9,0.2), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.035)),
    rgba(12,3,4,0.94);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 28px 90px rgba(0,0,0,0.38);
  transition: transform 200ms ease, border-color 200ms ease;
}

.reseller-city-plan-card:hover {
  transform: translateY(-8px);
  border-color: rgba(217,9,9,0.56);
}

.reseller-city-plan-card.featured {
  border-color: rgba(242,227,148,0.58);
  background:
    radial-gradient(circle at 74% 8%, rgba(242,227,148,0.18), transparent 30%),
    radial-gradient(circle at 12% 88%, rgba(106,156,137,0.14), transparent 28%),
    linear-gradient(145deg, rgba(217,9,9,0.2), rgba(255,255,255,0.04)),
    rgba(14,4,5,0.96);
}

.reseller-city-plan-card h3 {
  margin-bottom: 10px;
}

.reseller-city-plan-card > p {
  min-height: 52px;
  line-height: 1.28;
}

.reseller-city-plan-card ul {
  display: grid;
  gap: 12px;
  margin: 2px 0 28px;
}

.reseller-city-plan-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #eee7e8;
  font-weight: 800;
  line-height: 1.18;
}

.reseller-city-plan-card li .icon {
  width: 18px;
  height: 18px;
  color: var(--green);
  flex: 0 0 auto;
}

.reseller-city-plan-card .btn {
  width: 100%;
  margin-top: auto;
}

.legal-hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 190px 0 112px;
  background: #080102;
}

.legal-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5,0,1,0.98), rgba(5,0,1,0.68) 48%, rgba(5,0,1,0.94)),
    radial-gradient(circle at 20% 20%, rgba(217,9,9,0.3), transparent 34%),
    radial-gradient(circle at 82% 28%, rgba(242,227,148,0.12), transparent 30%),
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: auto, auto, auto, 104px 104px, 104px 104px;
}

.legal-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 220px;
  background: linear-gradient(transparent, var(--bg));
}

.legal-hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.48fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: end;
}

.legal-hero-copy h1 {
  font-size: clamp(54px, 6vw, 92px);
}

.legal-hero-copy p:not(.eyebrow) {
  max-width: 860px;
  color: #eee7e8;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.35;
}

.legal-updated {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  margin-top: 20px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #080102;
  background: var(--gold);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-summary-card {
  padding: clamp(26px, 4vw, 40px);
  border-radius: 26px;
  background:
    radial-gradient(circle at 78% 0%, rgba(242,227,148,0.16), transparent 32%),
    linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04)),
    rgba(8,1,2,0.78);
  border: 1px solid rgba(242,227,148,0.18);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.legal-summary-card > span,
.legal-nav > span {
  display: block;
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.legal-summary-card article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 8px 14px;
  margin-top: 20px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(0,0,0,0.24);
  border: 1px solid rgba(255,255,255,0.09);
}

.legal-summary-card .icon {
  grid-row: span 2;
  color: var(--green);
}

.legal-summary-card strong {
  color: var(--white);
  font-size: 23px;
  line-height: 1;
}

.legal-summary-card p {
  margin: 0;
  line-height: 1.25;
}

.legal-content-section {
  padding: 112px 0;
  background:
    radial-gradient(circle at 86% 12%, rgba(217,9,9,0.14), transparent 30%),
    linear-gradient(180deg, #0a0102, #130607 58%, #080102);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.32fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 138px;
  display: grid;
  gap: 9px;
  padding: 24px;
  border-radius: 20px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 24px 70px rgba(0,0,0,0.28);
}

.legal-nav a {
  padding: 10px 12px;
  border-radius: 10px;
  color: #d9d2d3;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.1;
}

.legal-nav a:hover {
  color: var(--white);
  background: rgba(217,9,9,0.18);
}

.legal-article-list {
  display: grid;
  gap: 18px;
}

.legal-article {
  scroll-margin-top: 150px;
  padding: clamp(24px, 4vw, 38px);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035)),
    rgba(12,3,4,0.84);
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 24px 70px rgba(0,0,0,0.24);
}

.legal-article h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 3vw, 44px);
}

.legal-article p {
  margin: 0;
  color: #d9d2d3;
  font-size: 22px;
  line-height: 1.42;
}

.legal-support-cta {
  padding: 0 0 112px;
  background: #080102;
}

.legal-support-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 5vw, 58px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 12%, rgba(242,227,148,0.12), transparent 32%),
    linear-gradient(135deg, rgba(217,9,9,0.2), rgba(255,255,255,0.05)),
    rgba(12,3,4,0.9);
  border: 1px solid rgba(255,255,255,0.11);
  box-shadow: var(--shadow);
}

.legal-support-card p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 22px;
  line-height: 1.38;
}

.checkout-frame {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  padding: 24px;
}

.checkout-frame.is-open {
  display: grid;
  place-items: center;
}

.checkout-frame-open {
  overflow: hidden;
}

.checkout-frame-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4,0,1,0.78);
  backdrop-filter: blur(18px);
}

.checkout-frame-panel {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  height: min(840px, calc(100vh - 48px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 84% 0%, rgba(242,227,148,0.12), transparent 32%),
    linear-gradient(135deg, rgba(217,9,9,0.18), rgba(255,255,255,0.045)),
    #080102;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 40px 140px rgba(0,0,0,0.68);
}

.checkout-frame-head {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.checkout-frame-head span {
  display: block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.checkout-frame-head h2 {
  margin: 6px 0 0;
  font-size: clamp(26px, 3vw, 42px);
}

.checkout-frame-head p {
  max-width: 620px;
  margin: 6px 0 0;
  color: rgba(255,255,255,0.68);
  font-size: 15px;
  line-height: 1.45;
}

.checkout-frame-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.checkout-frame-actions a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  color: #080102;
  background: var(--gold);
  font-size: 14px;
  font-weight: 900;
}

.checkout-frame-actions button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255,255,255,0.08);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.checkout-frame-body {
  position: relative;
  min-height: 0;
  background: #f8f8f8;
}

.checkout-frame-body iframe {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

.checkout-frame-loading {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 24px;
  color: #080102;
  text-align: center;
}

.checkout-frame-loading strong {
  font-size: 26px;
}

.checkout-frame-loading p {
  max-width: 420px;
  color: #4d4546;
}

.checkout-frame-loading.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.upishi-hero {
  position: relative;
  min-height: 820px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 190px 0 110px;
  background:
    linear-gradient(90deg, rgba(8,1,2,0.92), rgba(8,1,2,0.42)),
    linear-gradient(180deg, rgba(96,0,0,0.34), rgba(8,1,2,0.98)),
    url("../assets/optimized/more-to-stream.webp?v=upishi-1") center/cover no-repeat;
}

.upishi-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.024) 1px, transparent 1px);
  background-size: 118px 118px;
  opacity: 0.44;
  pointer-events: none;
}

.upishi-orbit {
  position: absolute;
  width: 520px;
  height: 520px;
  right: 6vw;
  top: 18%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(242,227,148,0.18), transparent 56%),
    conic-gradient(from 120deg, transparent, rgba(217,9,9,0.42), transparent, rgba(242,227,148,0.22), transparent);
  filter: blur(22px);
  opacity: 0.78;
  animation: slowRotate 18s linear infinite;
}

@keyframes slowRotate {
  to { transform: rotate(360deg); }
}

.upishi-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.62fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: end;
}

.upishi-copy h1 {
  max-width: 960px;
  margin: 18px 0 22px;
  font-size: clamp(58px, 8vw, 128px);
  line-height: 0.92;
}

.upishi-copy p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255,255,255,0.78);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.34;
}

.upishi-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.upishi-trust-panel {
  padding: 34px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(242,227,148,0.16), transparent 36%),
    linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.035)),
    rgba(16,5,6,0.86);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 34px 120px rgba(0,0,0,0.45);
  backdrop-filter: blur(18px);
}

.upishi-trust-panel span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.upishi-trust-panel strong {
  display: block;
  margin-top: 12px;
  color: var(--white);
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1;
}

.upishi-trust-panel p {
  margin: 18px 0 0;
  color: rgba(255,255,255,0.72);
  font-size: 18px;
  line-height: 1.5;
}

.upishi-account-section {
  padding: 170px 0 90px;
  background:
    radial-gradient(circle at 8% 18%, rgba(217,9,9,0.2), transparent 30%),
    radial-gradient(circle at 82% 20%, rgba(242,227,148,0.08), transparent 28%),
    linear-gradient(180deg, #080102, #140707 42%, #080102);
}

.upishi-frame-section {
  padding: 110px 0;
  background:
    radial-gradient(circle at 8% 18%, rgba(217,9,9,0.2), transparent 30%),
    radial-gradient(circle at 82% 20%, rgba(242,227,148,0.08), transparent 28%),
    linear-gradient(180deg, #080102, #140707 42%, #080102);
}

.upishi-frame-shell {
  overflow: hidden;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.09), rgba(255,255,255,0.03)),
    rgba(8,1,2,0.94);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 44px 150px rgba(0,0,0,0.62);
}

.upishi-frame-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 4vw, 44px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.upishi-frame-head h1,
.upishi-frame-head h2 {
  margin: 8px 0 10px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
}

.upishi-frame-head p:not(.eyebrow) {
  max-width: 820px;
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 19px;
  line-height: 1.45;
}

.upishi-frame-head a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 14px 22px;
  border-radius: 999px;
  color: #080102;
  background: var(--gold);
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(242,227,148,0.14);
}

.upishi-tabs,
.upishi-product-strip {
  display: flex;
  gap: 12px;
  padding: 0 clamp(24px, 5vw, 58px);
  overflow-x: auto;
}

.upishi-tabs {
  padding-top: 26px;
}

.upishi-product-strip {
  padding-top: 16px;
  padding-bottom: 26px;
}

.upishi-tabs button,
.upishi-product-strip a {
  flex: 0 0 auto;
  min-height: 50px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.84);
  background: rgba(255,255,255,0.06);
  padding: 12px 19px;
  font-weight: 900;
  cursor: pointer;
}

.upishi-tabs button.is-active,
.upishi-tabs button:hover,
.upishi-product-strip a:hover {
  color: var(--white);
  background: var(--red);
  border-color: rgba(217,9,9,0.8);
}

.upishi-frame-wrap {
  position: relative;
  margin: 0 clamp(14px, 2vw, 28px) clamp(14px, 2vw, 28px);
  overflow: hidden;
  min-height: 1000px;
  border-radius: 28px;
  background: #f8f8f8;
  border: 1px solid rgba(255,255,255,0.1);
}

.upishi-frame-wrap iframe {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 1000px;
  height: 1000px;
  display: block;
  border: 0;
  background: #fff;
}

.upishi-loader {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: 24px;
  color: #080102;
  text-align: center;
  background:
    radial-gradient(circle at 50% 26%, rgba(217,9,9,0.08), transparent 28%),
    #f8f8f8;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.upishi-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.upishi-loader span {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 5px solid rgba(217,9,9,0.16);
  border-top-color: var(--red);
  animation: spin 0.85s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.upishi-loader strong {
  font-size: 26px;
}

.upishi-loader p {
  max-width: 440px;
  color: #5e5354;
}

.channel-hero {
  position: relative;
  min-height: 820px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 190px 0 110px;
  background: var(--channel-hero-image) center/cover no-repeat;
}
.channel-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,1,2,0.98) 0%, rgba(10,1,2,0.82) 34%, rgba(10,1,2,0.42) 70%, rgba(10,1,2,0.72) 100%),
    radial-gradient(circle at 78% 30%, rgba(217,9,9,0.22), transparent 36%);
}
.channel-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(280px, 0.52fr);
  gap: clamp(34px, 5vw, 80px);
  align-items: end;
}
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
  color: #d9d0d1;
  font-size: 16px;
  font-weight: 800;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span::before {
  content: "/";
  margin-right: 10px;
  color: rgba(255,255,255,0.42);
}
.channel-hero-copy p:not(.eyebrow) {
  max-width: 780px;
  color: #eee7e8;
  font-size: clamp(22px, 2vw, 28px);
}
.channel-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.channel-hero-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(9, 1, 2, 0.76);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.channel-hero-card div {
  min-height: 132px;
  padding: 24px 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035));
  border: 1px solid rgba(255,255,255,0.08);
}
.channel-hero-card strong {
  display: block;
  color: var(--gold);
  font-size: clamp(38px, 4vw, 58px);
  line-height: 0.95;
}
.channel-hero-card span {
  display: block;
  margin-top: 12px;
  color: #d9d2d3;
  font-weight: 800;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.channel-directory-section {
  padding: 112px 0;
  background:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    #0a0102;
  background-size: 92px 92px;
}
.channel-directory-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: clamp(32px, 5vw, 74px);
  align-items: end;
}
.channel-directory-head p:not(.eyebrow) {
  max-width: 820px;
  font-size: 23px;
}
.channel-counts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.channel-counts div {
  min-height: 122px;
  padding: 22px;
  border-radius: 16px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.09);
}
.channel-counts strong {
  display: block;
  color: var(--red-2);
  font-size: 46px;
  line-height: 0.95;
}
.channel-counts span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.15;
}
.channel-searchbar {
  position: relative;
  margin: 48px 0 20px;
}
.channel-searchbar .icon {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red-2);
}
.channel-searchbar input {
  width: 100%;
  min-height: 74px;
  padding: 18px 24px 18px 66px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  color: var(--white);
  background: rgba(255,255,255,0.06);
  outline: none;
  box-shadow: 0 18px 50px rgba(0,0,0,0.22);
}
.channel-searchbar input:focus {
  border-color: rgba(217,9,9,0.78);
  box-shadow: 0 0 0 4px rgba(217,9,9,0.14), 0 18px 50px rgba(0,0,0,0.24);
}
.channel-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.channel-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 9px 15px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  color: #e5dddd;
  background: rgba(255,255,255,0.055);
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}
.channel-tab:hover { transform: translateY(-1px); border-color: rgba(217,9,9,0.46); }
.channel-tab.is-active {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}
.channel-tab small {
  min-width: 34px;
  padding: 2px 8px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(0,0,0,0.28);
  font-size: 13px;
  font-weight: 900;
}
.channel-browser {
  display: grid;
  grid-template-columns: minmax(250px, 330px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.channel-sidebar,
.channel-panel,
.channel-assurance {
  border-radius: 22px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.channel-sidebar { overflow: hidden; }
.channel-sidebar-title {
  padding: 20px 22px;
  color: var(--gold);
  background: rgba(217,9,9,0.16);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 17px;
  font-weight: 900;
}
.channel-country-list {
  display: grid;
  max-height: none;
  overflow: visible;
  padding: 10px;
}
.channel-country {
  width: 100%;
  display: grid;
  gap: 2px;
  padding: 14px 13px;
  border: 0;
  border-radius: 12px;
  color: #f0eaea;
  text-align: left;
  background: transparent;
  cursor: pointer;
}
.channel-country:hover,
.channel-country.is-active {
  background: rgba(217,9,9,0.16);
}
.channel-country span {
  font-weight: 900;
  line-height: 1.1;
  overflow-wrap: anywhere;
}
.channel-country small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.15;
}
.channel-panel { overflow: visible; }
.channel-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 28px;
  background: linear-gradient(90deg, rgba(217,9,9,0.2), rgba(255,255,255,0.035));
  border-bottom: 1px solid rgba(255,255,255,0.09);
}
.channel-panel-head span {
  display: block;
  color: var(--gold);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.channel-panel-head h3 {
  margin: 7px 0 0;
  overflow-wrap: anywhere;
}
.channel-panel-head p {
  margin: 0;
  color: #efe8e8;
  font-weight: 800;
  text-align: right;
  align-self: center;
  min-width: max-content;
}
.channel-search-note {
  display: none;
  padding: 14px 28px;
  color: #f5eeee;
  background: rgba(242,227,148,0.12);
  border-bottom: 1px solid rgba(242,227,148,0.16);
}
.channel-search-note.is-visible { display: block; }
.channel-groups {
  display: grid;
  padding: 12px;
  max-height: none;
  overflow: visible;
}
.channel-group {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid transparent;
}
.channel-group + .channel-group { margin-top: 8px; }
.channel-group.is-open {
  border-color: rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.035);
}
.channel-group-head {
  width: 100%;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border: 0;
  color: #f4eded;
  text-align: left;
  background: transparent;
  cursor: pointer;
}
.channel-group-head span {
  font-weight: 900;
  line-height: 1.2;
  overflow-wrap: anywhere;
}
.channel-group-head small {
  flex: 0 0 auto;
  min-width: 40px;
  padding: 3px 9px;
  border-radius: 999px;
  color: var(--white);
  text-align: center;
  background: rgba(217,9,9,0.78);
  font-size: 14px;
  font-weight: 900;
}
.channel-group-body {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows 220ms ease;
}
.channel-group.is-open .channel-group-body { grid-template-rows: 1fr; }
.channel-chip-grid {
  min-height: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 8px;
  padding: 0 18px 18px;
}
.channel-chip {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 10px;
  color: #ddd5d6;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.055);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.15;
  overflow-wrap: anywhere;
}
.channel-chip mark {
  color: #080303;
  background: var(--gold);
  border-radius: 3px;
  padding: 0 2px;
}
.channel-more,
.channel-auto-more,
.channel-auto-loader {
  color: var(--gold);
  background: rgba(242,227,148,0.11);
  border-color: rgba(242,227,148,0.22);
}
.channel-auto-loader {
  min-height: 64px;
  display: grid;
  place-items: center;
  margin-top: 10px;
  border: 1px solid rgba(242,227,148,0.22);
  border-radius: 14px;
  font-weight: 900;
}
.channel-empty {
  padding: 64px 24px;
  text-align: center;
}
.channel-empty strong { color: var(--white); }
.channel-empty p { margin: 8px auto 0; max-width: 440px; }
.channel-assurance {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 36px;
  padding: clamp(26px, 4vw, 42px);
  background:
    linear-gradient(135deg, rgba(217,9,9,0.2), rgba(242,227,148,0.09)),
    rgba(255,255,255,0.045);
}
.channel-assurance h2 { font-size: clamp(36px, 4vw, 58px); }
.channel-assurance p:not(.eyebrow) {
  max-width: 860px;
  margin-bottom: 0;
  font-size: 23px;
}
.channel-assurance-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

@media (max-width: 1080px) {
  .desktop-nav, .nav-cta { display: none; }
  .menu-toggle { display: grid; margin-left: auto; }
  .navbar { width: min(var(--container), calc(100% - 48px)); min-height: 92px; padding: 0 24px; }
  .mobile-panel {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(420px, 92vw);
    padding: 26px;
    flex-direction: column;
    gap: 12px;
    background: rgba(10,1,2,0.98);
    transform: translateX(105%);
    transition: transform 220ms ease;
    pointer-events: auto;
  }
  .mobile-panel.is-open { transform: translateX(0); }
  .mobile-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
  .close-menu { display: grid; }
  .mobile-panel a { padding: 13px 12px; border-radius: var(--radius); color: #e4dddd; }
  .mobile-pages { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 12px; display: grid; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 980px) {
  body { font-size: 18px; }
  .container { width: min(100% - 32px, var(--container)); }
  .split-grid, .pricing-grid, .footer-grid { grid-template-columns: 1fr; gap: 42px; }
  .hero { padding-top: 160px; }
  h1 { font-size: clamp(46px, 13vw, 72px); }
  h2 { font-size: clamp(38px, 10vw, 56px); }
  .hero-strip img { min-width: 240px; }
  .section-intro { min-height: 390px; }
  .feature-bridge { padding: 70px 0 74px; }
  .feature-bridge-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "proof"
      "visual";
  }
  .feature-proof-grid { max-width: 720px; }
  .pricing-card { min-height: auto; }
  .benefit-grid { grid-template-columns: 1fr; gap: 28px; }
  .testimonial-track { grid-auto-columns: 88%; }
  .stats-card { grid-template-columns: 1fr 1fr; padding: 42px; }
  .channel-hero { min-height: auto; padding: 160px 0 78px; }
  .channel-hero-grid,
  .channel-directory-head,
  .channel-browser,
  .channel-assurance {
    grid-template-columns: 1fr;
  }
  .channel-hero-card { max-width: 620px; }
  .channel-sidebar { order: 1; }
  .channel-panel { order: 2; }
  .channel-country-list,
  .channel-groups {
    max-height: none;
    overflow: visible;
  }
  .channel-assurance-actions { justify-content: flex-start; }
}

@media (max-width: 620px) {
  .site-header { top: 14px; }
  .brand { min-width: auto; }
  .brand-mark { font-size: 27px; }
  .navbar { width: calc(100% - 28px); min-height: 76px; }
  .hero-content p:not(.eyebrow), .copy-block > p:not(.eyebrow), .final-cta p { font-size: 20px; }
  .split-section, .pricing-section, .benefits-section, .faq-section, .poster-section, .testimonial-section, .final-cta { padding: 78px 0; }
  .image-stage { min-height: auto; }
  .image-stage > img:first-child { height: 420px; }
  .who-stage { padding: 10px; border-radius: 18px; }
  .stat-badge { position: static; width: 100%; margin-top: 14px; min-height: 110px; }
  .feature-bridge { padding: 60px 0; }
  .feature-bridge-copy p:not(.eyebrow) { font-size: 19px; }
  .feature-proof-grid { grid-template-columns: 1fr; }
  .feature-visual-strip {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
  }
  .feature-visual-strip::-webkit-scrollbar { display: none; }
  .feature-visual-strip img {
    flex: 0 0 min(78vw, 320px);
    height: 170px;
  }
  .feature-visual-strip img:nth-child(2) { transform: none; }
  .content-stage .play-shape { width: 88px; height: 76px; }
  .trial-price { align-items: flex-start; }
  .trial-price strong { font-size: 52px; }
  .stats-card { grid-template-columns: 1fr; border-radius: var(--radius); }
  .poster-row { gap: 18px; }
  .poster-row-primary { margin-top: 42px; }
  .poster-row-secondary { margin-bottom: 34px; }
  .poster-row-secondary img { width: min(270px, 74vw); }
  .testimonial-control { display: none; }
  .floating-image, .experience-badge { position: static; width: 100% !important; height: 180px !important; margin-top: 14px; }
  .experience-badge { height: auto !important; min-height: 150px; }
  .wa-icon { width: 34px; height: 34px; }
  .whatsapp-pill strong { font-size: 16px; }
  .whatsapp-pill small { font-size: 12px; }
  .channel-hero { padding: 134px 0 62px; }
  .breadcrumb { font-size: 15px; margin-bottom: 18px; }
  .channel-hero-card,
  .channel-counts {
    grid-template-columns: 1fr;
  }
  .channel-hero-card div,
  .channel-counts div {
    min-height: 98px;
  }
  .channel-directory-section { padding: 78px 0; }
  .channel-directory-head {
    gap: 24px;
  }
  .channel-searchbar input {
    min-height: 66px;
    padding-right: 16px;
    font-size: 17px;
  }
  .channel-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 0 2px 12px;
    margin-inline: -2px;
    scrollbar-width: thin;
  }
  .channel-tab {
    width: auto;
    flex: 0 0 auto;
    justify-content: space-between;
    min-width: max-content;
    min-height: 52px;
    padding-inline: 16px;
  }
  .channel-browser {
    gap: 16px;
  }
  .channel-sidebar {
    border-radius: 18px;
  }
  .channel-sidebar-title {
    padding: 16px 18px;
    font-size: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .channel-country-list {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(190px, 76%);
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 12px;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
  }
  .channel-country {
    min-height: 74px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    scroll-snap-align: start;
  }
  .channel-country.is-active {
    border-color: rgba(217,9,9,0.62);
    box-shadow: 0 14px 35px rgba(217,9,9,0.18);
  }
  .channel-panel-head {
    display: grid;
    padding: 22px;
  }
  .channel-panel-head p {
    text-align: left;
    min-width: 0;
  }
  .channel-chip-grid {
    grid-template-columns: 1fr;
    padding-inline: 12px;
    gap: 7px;
  }
  .channel-chip {
    min-height: 42px;
    font-size: 15px;
  }
  .channel-groups {
    padding: 8px;
  }
  .channel-group-head {
    min-height: 58px;
    padding-inline: 14px;
  }
  .channel-group-head small {
    font-size: 12px;
  }
  .channel-assurance-actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 1ms !important; scroll-behavior: auto !important; transition-duration: 1ms !important; }
}

/* Premium proof, lifetime offer, and chat-removal refinements */
.who-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.google-trust {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-width: min(100%, 360px);
  min-height: 78px;
  padding: 10px 15px;
  border-radius: 18px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 18px 48px rgba(0,0,0,0.22);
}
.google-trust img { width: 96px; height: auto; }
.google-trust strong { display: flex; align-items: center; gap: 7px; color: var(--white); font-size: 22px; line-height: 1; }
.google-trust strong span { color: #ff9f1a; font-size: 14px; letter-spacing: 0.02em; }
.google-trust p { margin: 5px 0 0; color: #f2eeee; font-weight: 900; line-height: 1.08; }
.google-trust small { display: block; margin-top: 3px; color: #c9bebe; line-height: 1.18; }

.lifetime-section {
  position: relative;
  padding: 118px 0;
  background:
    linear-gradient(90deg, rgba(10,1,2,0.96), rgba(10,1,2,0.72) 48%, rgba(10,1,2,0.94)),
    var(--lifetime-bg) center/cover no-repeat;
  overflow: hidden;
}
.lifetime-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 26% 22%, rgba(217,9,9,0.22), transparent 30%),
    linear-gradient(rgba(255,255,255,0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.052) 1px, transparent 1px);
  background-size: auto, 90px 90px, 90px 90px;
  opacity: 0.75;
}
.lifetime-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  padding: clamp(28px, 5vw, 58px);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(242,227,148,0.14), rgba(217,9,9,0.12)), rgba(19,8,9,0.88);
  border: 1px solid rgba(242,227,148,0.2);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.lifetime-media img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.34);
}
.lifetime-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--gold);
  color: #080303;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.lifetime-copy > p:not(.eyebrow) { font-size: 23px; max-width: 760px; }
.lifetime-price {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin: 26px 0;
}
.price-stack { display: grid; gap: 4px; }
.price-stack del {
  color: rgba(255,255,255,0.58);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 900;
  line-height: 1;
  text-decoration-color: var(--red);
  text-decoration-thickness: 4px;
}
.price-stack strong {
  color: var(--gold);
  font-size: clamp(64px, 7vw, 104px);
  line-height: 0.9;
  font-weight: 900;
}
.lifetime-price > span:last-child { color: #eee8e8; font-weight: 800; max-width: 380px; line-height: 1.3; }
.lifetime-features {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.lifetime-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 13px 15px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  color: #eee9e9;
  font-weight: 800;
  line-height: 1.2;
}
.lifetime-features .icon { color: var(--green); flex: 0 0 auto; }
.lifetime-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.lifetime-stats div {
  padding: 18px;
  border-radius: 14px;
  background: rgba(242,227,148,0.92);
  color: #080303;
}
.lifetime-stats strong { display: block; font-size: 34px; line-height: 1; }
.lifetime-stats span {
  display: block;
  margin-top: 9px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5f5531;
}
.faq-item.is-open b::before { content: "-"; }
.floating-actions { display: none !important; }

@media (max-width: 980px) {
  .lifetime-card { grid-template-columns: 1fr; gap: 42px; }
  .lifetime-section { padding: 78px 0; }
  .lifetime-media img { height: 380px; }
  .lifetime-features { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .who-actions { align-items: stretch; }
  .google-trust {
    grid-template-columns: 82px 1fr;
    min-width: 100%;
  }
  .lifetime-card { padding: 22px; border-radius: 18px; }
  .lifetime-media img { height: 300px; }
  .lifetime-stats { grid-template-columns: 1fr; }
}

/* Reseller page */
.reseller-hero,
.reseller-section,
.reseller-final-cta {
  position: relative;
  overflow: hidden;
}

.reseller-hero {
  min-height: 100vh;
  padding: 188px 0 108px;
  background:
    radial-gradient(circle at 78% 20%, rgba(217,9,9,0.22), transparent 34%),
    radial-gradient(circle at 18% 82%, rgba(242,227,148,0.11), transparent 30%),
    linear-gradient(135deg, #090102 0%, #160508 44%, #080102 100%);
}

.reseller-bg-grid {
  position: absolute;
  inset: 0;
  opacity: 0.46;
  background:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 78%, transparent);
  animation: resellerGrid 18s linear infinite;
}

@keyframes resellerGrid {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-86px, 86px, 0); }
}

.reseller-hero-grid,
.reseller-credit-grid,
.profit-grid,
.tools-grid-wrap,
.growth-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.reseller-hero-grid { grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr); }
.reseller-credit-grid,
.profit-grid,
.tools-grid-wrap,
.growth-grid { grid-template-columns: minmax(0, 1fr) minmax(360px, 0.76fr); }

.reseller-hero-copy h1 { max-width: 880px; }
.reseller-hero-copy > p:not(.eyebrow) {
  max-width: 720px;
  font-size: clamp(22px, 2vw, 28px);
  color: #ece4e5;
}

.reseller-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 36px 0 30px;
}

.reseller-trust-badges,
.reseller-plan-card ul,
.growth-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.reseller-trust-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.reseller-trust-badges span,
.reseller-plan-card li,
.growth-list li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #f4eeee;
  font-weight: 800;
  line-height: 1.2;
}

.reseller-trust-badges span {
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 15px;
}

.reseller-trust-badges .icon,
.reseller-plan-card .icon,
.growth-list .icon {
  color: var(--green);
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.reseller-dashboard-visual {
  position: relative;
  min-height: 560px;
  padding: clamp(24px, 3vw, 36px);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.03)),
    rgba(19,8,9,0.88);
  border: 1px solid rgba(255,255,255,0.13);
  box-shadow: 0 36px 120px rgba(0,0,0,0.58), 0 0 80px rgba(217,9,9,0.22);
  backdrop-filter: blur(24px);
}

.reseller-dashboard-visual::before,
.reseller-dashboard-visual::after,
.reseller-plan-card::before,
.calculator-card::before,
.reseller-final-card::before {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: inherit;
}

.reseller-dashboard-visual::before {
  inset: 0;
  background: radial-gradient(circle at 66% 20%, rgba(242,227,148,0.16), transparent 32%);
}

.reseller-dashboard-visual::after {
  inset: 18px;
  border: 1px solid rgba(255,255,255,0.08);
}

.dash-top,
.dash-wallet,
.dash-metrics,
.dash-chart {
  position: relative;
  z-index: 1;
}

.dash-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  color: #e9e0e1;
  font-weight: 900;
}

.dash-top strong {
  color: var(--gold);
  letter-spacing: 0.16em;
  font-size: 13px;
}

.dash-wallet {
  min-height: 192px;
  padding: 28px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 82% 24%, rgba(106,156,137,0.22), transparent 28%),
    linear-gradient(135deg, rgba(217,9,9,0.32), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.12);
}

.dash-wallet span,
.dash-metrics span,
.wallet-row span,
.wallet-grid span,
.calculator-results span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dash-wallet strong {
  display: block;
  margin-top: 12px;
  color: var(--gold);
  font-size: clamp(74px, 8vw, 120px);
  line-height: 0.86;
}

.dash-wallet small {
  display: inline-flex;
  margin-top: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.3);
  color: #fff;
  font-weight: 900;
}

.dash-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 16px 0;
}

.dash-metrics div,
.wallet-grid div,
.calculator-results div {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
}

.dash-metrics strong,
.wallet-grid strong,
.calculator-results strong {
  display: block;
  margin-top: 7px;
  color: var(--white);
  font-size: 34px;
  line-height: 1;
}

.dash-chart {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 12px;
  height: 138px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(0,0,0,0.22);
}

.dash-chart i {
  display: block;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, var(--red-2), rgba(242,227,148,0.82));
  min-height: 34px;
  box-shadow: 0 0 24px rgba(217,9,9,0.35);
}

.dash-chart i:nth-child(1) { height: 42%; }
.dash-chart i:nth-child(2) { height: 62%; }
.dash-chart i:nth-child(3) { height: 48%; }
.dash-chart i:nth-child(4) { height: 86%; }
.dash-chart i:nth-child(5) { height: 72%; }
.dash-chart i:nth-child(6) { height: 96%; }

.floating-analytics {
  position: absolute;
  z-index: 3;
  max-width: 220px;
  padding: 12px 15px;
  border-radius: 999px;
  background: rgba(8,1,2,0.82);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 18px 48px rgba(0,0,0,0.35);
  animation: resellerFloat 5s ease-in-out infinite;
}

.card-a { top: 96px; right: -18px; }
.card-b { top: 276px; left: -24px; animation-delay: 0.6s; }
.card-c { right: 34px; bottom: 96px; animation-delay: 1.1s; }
.card-d { left: 50%; bottom: 28px; transform: translateX(-50%); color: var(--green); animation-delay: 1.7s; }

@keyframes resellerFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

.reseller-section {
  padding: clamp(82px, 8vw, 128px) 0;
  background:
    radial-gradient(circle at 9% 12%, rgba(217,9,9,0.12), transparent 30%),
    var(--bg);
}

.reseller-section:nth-of-type(odd) {
  background:
    radial-gradient(circle at 88% 22%, rgba(242,227,148,0.08), transparent 28%),
    #100608;
}

.reseller-section-head {
  max-width: 900px;
  margin-bottom: 36px;
}

.reseller-section-head p:not(.eyebrow) {
  max-width: 780px;
  font-size: 22px;
}

.reseller-card-grid,
.reseller-pricing-grid,
.sell-card-grid,
.reseller-feature-grid,
.credit-rule-grid,
.profit-example-grid {
  display: grid;
  gap: 18px;
}

.reseller-card-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.reseller-pricing-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; }
.sell-card-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.reseller-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.credit-rule-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.profit-example-grid { grid-template-columns: 1fr 1fr; }

.reseller-glass-card,
.credit-rule-card,
.sell-card,
.reseller-feature-grid article,
.profit-example-grid article,
.growth-timeline article {
  min-width: 0;
  padding: 26px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035));
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 24px 70px rgba(0,0,0,0.28);
}

.reseller-glass-card > span {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 14px;
  background: rgba(217,9,9,0.18);
  color: var(--red-2);
}

.reseller-glass-card p,
.credit-rule-card p,
.sell-card p,
.growth-timeline p {
  margin-bottom: 0;
  line-height: 1.35;
}

.credit-rule-card strong,
.sell-card strong {
  display: inline-flex;
  margin: 6px 0 12px;
  color: var(--gold);
  font-size: 24px;
}

.reseller-wallet-visual,
.calculator-card,
.growth-visual,
.reseller-final-card {
  position: relative;
  min-width: 0;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(217,9,9,0.17), rgba(255,255,255,0.06)),
    rgba(18,7,8,0.9);
  border: 1px solid rgba(255,255,255,0.11);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.reseller-wallet-visual {
  padding: clamp(24px, 4vw, 38px);
}

.wallet-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.wallet-row strong {
  color: var(--gold);
  font-size: clamp(70px, 7vw, 112px);
  line-height: 0.85;
}

.wallet-bars {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.wallet-bars i {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red-2), var(--gold));
  box-shadow: 0 0 22px rgba(217,9,9,0.25);
}

.wallet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.wallet-grid strong { font-size: 30px; }

.reseller-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 28px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 70% 8%, rgba(217,9,9,0.25), transparent 28%),
    linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    #130608;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 28px 80px rgba(0,0,0,0.38);
  transition: transform 200ms ease, border-color 200ms ease;
}

.reseller-plan-card:hover {
  transform: translateY(-8px);
  border-color: rgba(217,9,9,0.5);
}

.reseller-plan-card.featured {
  border-color: rgba(242,227,148,0.55);
  background:
    radial-gradient(circle at 68% 6%, rgba(242,227,148,0.18), transparent 28%),
    radial-gradient(circle at 8% 86%, rgba(106,156,137,0.16), transparent 24%),
    linear-gradient(145deg, rgba(217,9,9,0.24), rgba(255,255,255,0.04)),
    #160708;
  transform: translateY(-12px);
}

.reseller-plan-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--gold);
  color: #080303;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reseller-plan-visual {
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  align-content: center;
  margin-bottom: 24px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(217,9,9,0.34), rgba(242,227,148,0.12)),
    rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}

.reseller-plan-visual span {
  color: var(--gold);
  font-size: 42px;
  font-weight: 900;
  line-height: 0.9;
}

.reseller-plan-visual small {
  color: var(--muted);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reseller-plan-card h3 { margin-bottom: 10px; }
.reseller-plan-card > p { min-height: 58px; line-height: 1.35; }
.reseller-plan-price {
  display: block;
  margin: 10px 0 24px;
  color: var(--red-2);
  font-size: clamp(54px, 5vw, 76px);
  line-height: 0.9;
  font-weight: 900;
}

.reseller-plan-card ul {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.reseller-plan-card .btn { margin-top: auto; width: 100%; }

.calculator-card {
  padding: clamp(24px, 4vw, 34px);
}

.calculator-card label {
  display: grid;
  gap: 8px;
  margin-bottom: 15px;
  color: #efe8e8;
  font-weight: 900;
}

.calculator-card select,
.calculator-card input {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.24);
  color: var(--white);
  outline: none;
}

.calculator-card option { color: #080303; }

.profit-visual {
  position: relative;
  height: 160px;
  margin-bottom: 24px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 52%, rgba(217,9,9,0.22), transparent 38%),
    rgba(0,0,0,0.2);
  overflow: hidden;
}

.profit-line {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 42px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red-2), var(--gold), var(--green));
  transform: rotate(-9deg);
}

.profit-orbit {
  position: absolute;
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--gold);
  font-weight: 900;
}

.orbit-a { left: 10%; bottom: 28px; }
.orbit-b { left: 42%; top: 32px; }
.orbit-c { right: 9%; top: 16px; }

.calculator-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0;
}

.calculator-results strong { color: var(--gold); overflow-wrap: anywhere; }
.calculator-card > p { margin-bottom: 0; font-size: 16px; line-height: 1.3; }

.profit-example-grid article p {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 12px;
  margin-bottom: 9px;
  line-height: 1.2;
}

.profit-example-grid strong { color: var(--gold); }
.profit-example-grid span { color: #e9e1e1; }

.sell-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
}

.sell-card h3 { font-size: 25px; }

.tools-grid-wrap { align-items: start; }
.reseller-feature-grid article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.reseller-feature-grid .icon { color: var(--red-2); }
.reseller-feature-grid h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.08;
}

.growth-visual {
  min-height: 520px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-content: center;
}

.growth-visual > span {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(242,227,148,0.12);
  transform: translate(-50%, -50%) scale(var(--scale, 1));
}

.growth-visual > span:nth-child(2) { --scale: 1.35; }
.growth-visual > span:nth-child(3) { --scale: 1.7; }
.growth-visual > span:nth-child(4) { --scale: 2.05; }

.growth-device {
  position: relative;
  z-index: 1;
  min-height: 128px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-weight: 900;
}

.growth-list {
  display: grid;
  gap: 12px;
}

.growth-list li {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
}

.growth-timeline {
  display: grid;
  gap: 14px;
}

.growth-timeline article span {
  color: var(--red-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.growth-timeline h3 { margin: 8px 0; }

.reseller-faq-section .split-grid {
  align-items: start;
}

.reseller-faq-section h2,
.reseller-final-card h2 {
  max-width: 780px;
}

.reseller-final-cta {
  padding: 110px 0;
  background:
    radial-gradient(circle at 52% 10%, rgba(217,9,9,0.22), transparent 34%),
    #070102;
}

.reseller-final-card {
  padding: clamp(30px, 6vw, 70px);
  text-align: center;
}

.reseller-final-card::before {
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(242,227,148,0.12), transparent),
    radial-gradient(circle at 50% 0%, rgba(217,9,9,0.2), transparent 42%);
}

.reseller-final-card > * {
  position: relative;
  z-index: 1;
}

.reseller-final-card h2,
.reseller-final-card p {
  margin-left: auto;
  margin-right: auto;
}

.reseller-final-card p {
  max-width: 760px;
  font-size: 23px;
}

.reseller-final-card > div {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 1180px) {
  .reseller-card-grid.four,
  .sell-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reseller-pricing-grid { grid-template-columns: 1fr; }
  .reseller-plan-card.featured { transform: none; }
}

@media (max-width: 980px) {
  .reseller-hero { padding: 154px 0 82px; min-height: auto; }
  .reseller-hero-grid,
  .reseller-credit-grid,
  .profit-grid,
  .tools-grid-wrap,
  .growth-grid {
    grid-template-columns: 1fr;
  }
  .reseller-dashboard-visual,
  .growth-visual { min-height: 460px; }
  .card-a { right: 12px; }
  .card-b { left: 12px; }
  .credit-rule-grid,
  .reseller-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .reseller-hero { padding-top: 132px; }
  .reseller-hero-actions .btn,
  .reseller-final-card .btn { width: 100%; }
  .reseller-dashboard-visual,
  .growth-visual { min-height: auto; }
  .floating-analytics {
    position: static;
    display: inline-flex;
    margin: 8px 6px 0 0;
    animation: none;
    transform: none;
  }
  .reseller-card-grid.four,
  .sell-card-grid,
  .credit-rule-grid,
  .reseller-feature-grid,
  .profit-example-grid,
  .calculator-results,
  .wallet-grid,
  .dash-metrics {
    grid-template-columns: 1fr;
  }
  .reseller-glass-card,
  .credit-rule-card,
  .sell-card,
  .reseller-feature-grid article,
  .profit-example-grid article,
  .growth-timeline article,
  .reseller-plan-card,
  .calculator-card,
  .reseller-wallet-visual {
    padding: 22px;
    border-radius: 16px;
  }
  .reseller-plan-visual {
    width: 96px;
    height: 96px;
    border-radius: 18px;
  }
  .reseller-plan-visual span { font-size: 34px; }
  .profit-example-grid article p { grid-template-columns: 1fr; }
  .growth-visual { grid-template-columns: 1fr; padding: 22px; }
  .growth-device { min-height: 92px; }
}

@media (prefers-reduced-motion: reduce) {
  .reseller-bg-grid,
  .floating-analytics { animation: none !important; }
}

/* Reseller visual polish */
.reseller-hero::before,
.reseller-device-band::before,
.growth-section::before,
.reseller-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7,1,2,0.94), rgba(7,1,2,0.62), rgba(7,1,2,0.9)),
    var(--reseller-network-image, var(--reseller-devices-image)) center / cover no-repeat;
  opacity: 0.72;
  filter: saturate(1.16) contrast(1.06);
}

.reseller-device-band::before {
  background:
    linear-gradient(90deg, rgba(7,1,2,0.93), rgba(7,1,2,0.78), rgba(7,1,2,0.42)),
    var(--reseller-devices-image) center / cover no-repeat;
  opacity: 0.62;
}

.reseller-hero > *,
.reseller-device-band > *,
.growth-section > *,
.reseller-final-cta > * {
  position: relative;
  z-index: 1;
}

.reseller-dashboard-visual,
.reseller-wallet-visual,
.growth-visual,
.device-showcase {
  overflow: hidden;
  isolation: isolate;
}

.reseller-dashboard-visual {
  padding: 0;
  min-height: 620px;
}

.reseller-dashboard-visual .reseller-visual-img,
.reseller-wallet-visual .reseller-visual-img,
.growth-visual .reseller-visual-img,
.device-showcase img,
.reseller-proof-strip img,
.profit-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.12) contrast(1.08);
}

.reseller-dashboard-visual .reseller-visual-img,
.reseller-wallet-visual .reseller-visual-img,
.growth-visual .reseller-visual-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.reseller-dashboard-visual::before {
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,1,2,0.05), rgba(5,1,2,0.42) 55%, rgba(5,1,2,0.9)),
    radial-gradient(circle at 70% 16%, rgba(242,227,148,0.2), transparent 32%);
}

.reseller-dashboard-visual::after {
  z-index: 2;
  inset: 18px;
  border-color: rgba(255,255,255,0.11);
}

.dash-top,
.dash-wallet,
.dash-metrics,
.dash-chart,
.wallet-row,
.wallet-bars,
.wallet-grid,
.reseller-wallet-visual > p {
  position: relative;
  z-index: 3;
}

.dash-top {
  padding: 28px 30px 0;
}

.dash-wallet,
.dash-metrics,
.dash-chart {
  margin-left: 30px;
  margin-right: 30px;
}

.dash-wallet {
  margin-top: 110px;
  background:
    linear-gradient(135deg, rgba(5,1,2,0.82), rgba(217,9,9,0.32)),
    rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
}

.dash-chart {
  margin-bottom: 30px;
  background: rgba(5,1,2,0.54);
  backdrop-filter: blur(14px);
}

.reseller-proof-strip {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 18px;
  margin-top: clamp(30px, 5vw, 58px);
}

.reseller-proof-strip figure,
.device-showcase {
  position: relative;
  min-height: 360px;
  margin: 0;
  border-radius: 24px;
  background: rgba(18,7,8,0.84);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 90px rgba(0,0,0,0.42);
}

.reseller-proof-strip figure:nth-child(2) {
  transform: translateY(34px);
}

.reseller-proof-strip figure::after,
.device-showcase::after,
.reseller-wallet-visual::after,
.growth-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 32%, rgba(5,1,2,0.88));
}

.reseller-proof-strip figcaption,
.device-showcase figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  display: grid;
  gap: 5px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(5,1,2,0.68);
  border: 1px solid rgba(255,255,255,0.13);
  backdrop-filter: blur(16px);
}

.reseller-proof-strip strong,
.device-showcase strong {
  color: var(--white);
  font-size: 22px;
}

.reseller-proof-strip span,
.device-showcase span {
  color: #ddd2d3;
  line-height: 1.25;
}

.reseller-credit-section {
  background:
    radial-gradient(circle at 16% 16%, rgba(217,9,9,0.16), transparent 30%),
    radial-gradient(circle at 88% 74%, rgba(106,156,137,0.12), transparent 32%),
    #0b0304;
}

.reseller-wallet-visual {
  min-height: 590px;
}

.reseller-wallet-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5,1,2,0.08), rgba(5,1,2,0.72)),
    radial-gradient(circle at 50% 15%, rgba(242,227,148,0.12), transparent 38%);
}

.wallet-row {
  margin: 30px 30px 140px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(5,1,2,0.6);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
}

.wallet-bars,
.wallet-grid,
.reseller-wallet-visual > p {
  margin-left: 30px;
  margin-right: 30px;
}

.reseller-wallet-visual > p {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(5,1,2,0.58);
  border: 1px solid rgba(255,255,255,0.1);
}

.reseller-pricing-section {
  scroll-margin-top: 180px;
}

.reseller-pricing-section .reseller-section-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.reseller-pricing-grid {
  gap: 22px;
}

.reseller-plan-card {
  overflow: hidden;
  min-height: 760px;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025)),
    #100405;
}

.reseller-plan-card::before {
  inset: 0 0 auto;
  z-index: 0;
  height: 210px;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(8,1,2,0.18), rgba(8,1,2,0.9)),
    var(--plan-image) center / cover no-repeat;
  opacity: 0.58;
  transition: opacity 200ms ease, transform 300ms ease;
}

.reseller-plan-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent) 0 0 / 220% 100% no-repeat;
  opacity: 0.45;
}

.reseller-plan-card:hover::before {
  opacity: 0.72;
  transform: scale(1.035);
}

.reseller-plan-card > * {
  position: relative;
  z-index: 1;
}

.reseller-plan-card.featured {
  transform: none;
  border-color: rgba(242,227,148,0.58);
  box-shadow: 0 34px 100px rgba(0,0,0,0.45), 0 0 0 1px rgba(242,227,148,0.12) inset;
}

.reseller-plan-card.featured:hover {
  transform: translateY(-8px);
}

.reseller-plan-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  width: auto;
  max-width: calc(100% - 44px);
  padding: 8px 13px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), #fff4a8);
  color: #0a0102;
  box-shadow: 0 12px 32px rgba(242,227,148,0.18);
  line-height: 1;
  white-space: nowrap;
}

.reseller-plan-visual {
  width: 112px;
  height: 112px;
  margin: 20px 0 80px;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(242,227,148,0.18), rgba(217,9,9,0.36)),
    rgba(8,1,2,0.52);
  box-shadow: 0 20px 55px rgba(0,0,0,0.35);
  backdrop-filter: blur(12px);
}

.reseller-plan-visual span {
  font-size: 40px;
}

.reseller-plan-card h3 {
  min-height: 72px;
  margin-bottom: 8px;
  font-size: clamp(34px, 3vw, 44px);
  line-height: 0.96;
}

.reseller-plan-card > p {
  min-height: 58px;
  max-width: 430px;
  margin-bottom: 18px;
  color: #e3d9da;
  font-size: 18px;
}

.reseller-plan-price {
  margin: 6px 0 22px;
  font-size: clamp(58px, 5vw, 82px);
}

.reseller-plan-card ul {
  gap: 10px;
  margin-bottom: 24px;
}

.reseller-plan-card li {
  align-items: flex-start;
  padding: 0;
  font-size: 16px;
}

.reseller-plan-card .btn {
  min-height: 58px;
}

.profit-section {
  background:
    radial-gradient(circle at 78% 18%, rgba(242,227,148,0.1), transparent 26%),
    linear-gradient(180deg, #0b0304, #130608 48%, #090203);
}

.profit-visual {
  min-height: 210px;
}

.profit-visual img {
  position: absolute;
  inset: 0;
  opacity: 0.42;
}

.profit-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,1,2,0.18), rgba(5,1,2,0.72));
}

.profit-line,
.profit-orbit {
  z-index: 2;
}

.device-band-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.82fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}

.device-band-grid .reseller-section-head {
  margin-bottom: 24px;
}

.device-band-grid .sell-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.device-band-grid .sell-card {
  min-height: 0;
  padding: 20px;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.035)),
    rgba(9,1,2,0.64);
  border-color: rgba(255,255,255,0.11);
}

.device-band-grid .sell-card h3 {
  margin-bottom: 8px;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1;
}

.device-band-grid .sell-card strong {
  margin: 0 0 10px;
  padding: 7px 10px;
  width: fit-content;
  border-radius: 999px;
  background: rgba(242,227,148,0.12);
  color: var(--gold);
  font-size: 15px;
  line-height: 1.1;
}

.device-band-grid .sell-card p {
  font-size: 16px;
  line-height: 1.25;
}

.device-showcase {
  min-height: 600px;
}

.device-showcase img {
  position: absolute;
  inset: 0;
}

.reseller-tools-section {
  background:
    radial-gradient(circle at 15% 78%, rgba(217,9,9,0.16), transparent 30%),
    linear-gradient(180deg, #100506, #080202);
}

.growth-visual {
  padding: 0;
  min-height: 580px;
}

.growth-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5,1,2,0.08), rgba(5,1,2,0.7)),
    radial-gradient(circle at 55% 18%, rgba(217,9,9,0.18), transparent 30%);
}

.growth-visual > span {
  z-index: 2;
}

.growth-device {
  position: absolute;
  z-index: 3;
  min-height: 76px;
  padding: 0 18px;
  background: rgba(5,1,2,0.68);
  backdrop-filter: blur(14px);
}

.growth-device:nth-of-type(1) { left: 28px; top: 34px; }
.growth-device:nth-of-type(2) { right: 28px; top: 128px; }
.growth-device:nth-of-type(3) { left: 48px; bottom: 98px; }
.growth-device:nth-of-type(4) { right: 36px; bottom: 34px; }

.growth-section::before {
  background:
    linear-gradient(90deg, rgba(7,1,2,0.94), rgba(7,1,2,0.62), rgba(7,1,2,0.86)),
    var(--reseller-network-image) center / cover no-repeat;
}

.reseller-faq-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(217,9,9,0.16), transparent 30%),
    linear-gradient(180deg, #0a0203, #100607);
}

.reseller-faq-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}

.reseller-faq-copy {
  position: sticky;
  top: 150px;
  min-width: 0;
}

.reseller-faq-copy > p:not(.eyebrow) {
  max-width: 560px;
  font-size: 20px;
}

.reseller-faq-visual {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  margin: 32px 0 0;
  border-radius: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 90px rgba(0,0,0,0.42);
}

.reseller-faq-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.12) contrast(1.08);
}

.reseller-faq-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,1,2,0.05), rgba(5,1,2,0.78)),
    radial-gradient(circle at 74% 12%, rgba(242,227,148,0.12), transparent 34%);
}

.reseller-faq-visual figcaption {
  position: absolute;
  z-index: 1;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 18px;
  border-radius: 17px;
  background: rgba(5,1,2,0.72);
  border: 1px solid rgba(255,255,255,0.13);
  backdrop-filter: blur(16px);
}

.reseller-faq-visual strong {
  display: block;
  color: var(--white);
  font-size: 23px;
  line-height: 1.08;
}

.reseller-faq-visual span {
  display: block;
  margin-top: 8px;
  color: #ded3d4;
  line-height: 1.28;
}

.reseller-faq-section .faq-list {
  gap: 12px;
  margin-top: 0;
}

.reseller-faq-section .faq-item {
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,0.085), rgba(255,255,255,0.035));
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 18px 55px rgba(0,0,0,0.22);
}

.reseller-faq-section .faq-item button {
  min-height: 82px;
  align-items: center;
  gap: 20px;
  padding: 22px 26px;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.05;
}

.reseller-faq-section .faq-item b {
  flex: 0 0 auto;
}

.reseller-faq-section .faq-answer p {
  font-size: 18px;
  line-height: 1.45;
}

.reseller-final-cta::before {
  background:
    linear-gradient(180deg, rgba(7,1,2,0.72), rgba(7,1,2,0.95)),
    var(--reseller-network-image) center / cover no-repeat;
  opacity: 0.58;
}

/* Setup guide */
.setup-hero {
  position: relative;
  min-height: auto;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 185px 0 92px;
  background:
    radial-gradient(circle at 20% 10%, rgba(217,9,9,0.28), transparent 34%),
    radial-gradient(circle at 80% 18%, rgba(242,227,148,0.12), transparent 30%),
    #080102;
}

.setup-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--setup-hero-image) center / cover no-repeat;
  opacity: 0.3;
  transform: scale(1.04);
}

.setup-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,1,2,0.95), rgba(6,1,2,0.64) 48%, rgba(6,1,2,0.9)),
    linear-gradient(180deg, rgba(6,1,2,0.35), rgba(6,1,2,1));
}

.setup-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1.18fr);
  gap: clamp(34px, 4vw, 60px);
  align-items: center;
}

.setup-hero-copy p:not(.eyebrow) {
  max-width: 720px;
  color: #ded5d6;
  font-size: clamp(21px, 1.9vw, 27px);
  line-height: 1.35;
}

.setup-hero-copy h1 {
  font-size: clamp(50px, 5.5vw, 86px);
}

.setup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.setup-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.setup-badges span,
.setup-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--gold);
  background: rgba(242,227,148,0.09);
  border: 1px solid rgba(242,227,148,0.2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.setup-hero-panel {
  position: relative;
  min-height: 520px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.11);
  box-shadow: 0 40px 120px rgba(0,0,0,0.62), 0 0 70px rgba(217,9,9,0.2);
  background:
    radial-gradient(circle at 70% 20%, rgba(217,9,9,0.2), transparent 38%),
    linear-gradient(135deg, #080102, #180506);
}

.setup-hero-panel img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: contain;
  object-position: center;
  padding: clamp(14px, 2vw, 26px);
}

.setup-hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 28%, rgba(5,1,2,0.72)),
    radial-gradient(circle at 70% 18%, rgba(242,227,148,0.13), transparent 32%);
}

.setup-floating-card {
  position: absolute;
  z-index: 2;
  max-width: 260px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(8,1,2,0.78);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 55px rgba(0,0,0,0.4);
}

.setup-floating-card strong {
  display: block;
  color: var(--white);
  font-size: 24px;
  line-height: 1.05;
}

.setup-floating-card span {
  display: block;
  margin-top: 6px;
  color: #d8ced0;
  font-size: 15px;
  line-height: 1.25;
}

.setup-floating-card-one { left: 26px; bottom: 26px; }
.setup-floating-card-two { right: 26px; top: 26px; }

.setup-quick,
.setup-self-login,
.setup-apps-section,
.setup-devices-section,
.setup-troubleshooting,
.setup-local,
.setup-final-cta {
  padding: 112px 0;
  position: relative;
  overflow: hidden;
}

.setup-quick::before,
.setup-self-login::before,
.setup-apps-section::before,
.setup-devices-section::before,
.setup-troubleshooting::before,
.setup-local::before,
.setup-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 12%, rgba(217,9,9,0.16), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(242,227,148,0.08), transparent 24%);
  opacity: 0.9;
}

.setup-quick-grid,
.setup-self-grid,
.setup-field-grid,
.setup-section-head,
.setup-app-grid,
.setup-device-grid,
.setup-fix-grid,
.setup-local-panel,
.setup-final-panel {
  position: relative;
  z-index: 1;
}

.setup-quick-grid,
.setup-self-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 44px;
  align-items: center;
}

.setup-quick-grid p:not(.eyebrow),
.setup-self-grid p:not(.eyebrow),
.setup-section-head p,
.setup-centered p,
.setup-local-panel p,
.setup-final-panel p {
  max-width: 760px;
  font-size: 21px;
  line-height: 1.45;
}

.setup-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.setup-checklist div {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 94px;
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 18px 60px rgba(0,0,0,0.25);
}

.setup-checklist .icon {
  flex: 0 0 auto;
  color: #72d8a1;
}

.setup-checklist span {
  color: var(--white);
  font-size: 23px;
  font-weight: 800;
  line-height: 1.1;
}

.setup-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.setup-field-grid article {
  min-height: 150px;
  padding: 22px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 18px 60px rgba(0,0,0,0.25);
}

.setup-field-grid span {
  display: block;
  color: var(--gold);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.setup-field-grid p {
  margin: 12px 0 0;
  color: #ded4d5;
  font-size: 19px;
  line-height: 1.35;
}

.setup-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  gap: 44px;
  align-items: center;
  margin-bottom: 42px;
}

.setup-section-head.reverse {
  grid-template-columns: minmax(430px, 1.04fr) minmax(0, 0.96fr);
}

.setup-section-head img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 30px 100px rgba(0,0,0,0.45);
  padding: 16px;
  background:
    radial-gradient(circle at 50% 16%, rgba(217,9,9,0.22), transparent 42%),
    linear-gradient(135deg, #080102, #170506);
}

.setup-app-grid {
  display: grid;
  gap: 30px;
}

.setup-app-card {
  scroll-margin-top: 150px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.98fr);
  gap: 0;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.11);
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025));
  box-shadow: 0 28px 90px rgba(0,0,0,0.4);
}

.setup-card-image {
  order: 2;
  min-height: 0;
  display: grid;
  place-items: center;
  padding: clamp(22px, 3vw, 38px);
  background:
    radial-gradient(circle at 50% 18%, rgba(217,9,9,0.22), transparent 44%),
    linear-gradient(180deg, rgba(5,1,2,0.98), rgba(18,4,6,0.96));
  border-left: 1px solid rgba(255,255,255,0.08);
  border-bottom: 0;
}

.setup-card-image img {
  width: 100%;
  height: auto;
  max-height: 500px;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 24px 70px rgba(0,0,0,0.5);
}

.setup-card-body {
  order: 1;
  padding: clamp(26px, 3.5vw, 48px);
}

.setup-card-body .setup-steps {
  grid-template-columns: 1fr;
  align-items: stretch;
}

.setup-card-body .setup-steps li:last-child:nth-child(odd) {
  grid-column: auto;
}

.setup-card-body h3,
.setup-device-copy h3 {
  margin: 18px 0 10px;
  font-size: clamp(34px, 3.2vw, 52px);
}

.setup-card-body > p:not(.setup-kicker),
.setup-device-copy > p {
  font-size: 20px;
  line-height: 1.4;
}

.setup-downloader {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(217,9,9,0.2), rgba(255,255,255,0.035));
  border: 1px solid rgba(217,9,9,0.24);
}

.setup-downloader span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.setup-downloader strong {
  color: var(--white);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.05;
}

.setup-downloader p,
.setup-downloader small {
  margin: 0;
  color: #ded4d5;
  font-size: 17px;
  line-height: 1.35;
}

.setup-downloader code {
  color: var(--gold);
  font-family: inherit;
  overflow-wrap: anywhere;
}

.setup-steps {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
  counter-reset: setup;
}

.setup-steps li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(5,1,2,0.45);
  border: 1px solid rgba(255,255,255,0.075);
}

.setup-steps li > span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  color: #080102;
  background: linear-gradient(135deg, var(--gold), #fff4ad);
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
}

.setup-steps strong {
  display: block;
  color: var(--white);
  font-size: 22px;
  line-height: 1.08;
}

.setup-steps p {
  margin: 6px 0 0;
  color: #d8ced0;
  font-size: 18px;
  line-height: 1.35;
}

.setup-note {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(242,227,148,0.08);
  border: 1px solid rgba(242,227,148,0.18);
}

.setup-note .icon { flex: 0 0 auto; color: var(--gold); }
.setup-note p { margin: 0; color: #f0e5c2; font-size: 17px; line-height: 1.35; }

.setup-device-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.setup-device-card {
  scroll-margin-top: 150px;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.11);
  box-shadow: 0 28px 80px rgba(0,0,0,0.34);
}

.setup-device-card > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  padding: 16px;
  background:
    radial-gradient(circle at 50% 18%, rgba(217,9,9,0.18), transparent 45%),
    linear-gradient(135deg, #080102, #170506);
  border-bottom: 1px solid rgba(255,255,255,0.09);
}

.setup-device-copy {
  padding: clamp(22px, 2.8vw, 38px);
}

.setup-device-copy > span {
  display: inline-flex;
  color: var(--gold);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.setup-device-copy .setup-steps li {
  grid-template-columns: 46px minmax(0, 1fr);
  padding: 14px;
}

.setup-device-copy .setup-steps li > span {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  font-size: 15px;
}

.setup-device-copy .setup-steps strong {
  display: none;
}

.setup-centered {
  max-width: 860px;
  margin: 0 auto 40px;
  text-align: center;
}

.setup-centered p { margin-inline: auto; }

.setup-fix-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.setup-fix-card {
  min-height: 240px;
  padding: 26px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.1);
}

.setup-fix-card .icon {
  color: var(--gold);
  margin-bottom: 18px;
}

.setup-fix-card h3 {
  font-size: 30px;
  margin-bottom: 12px;
}

.setup-fix-card p {
  font-size: 18px;
  line-height: 1.38;
}

.setup-local {
  background:
    linear-gradient(180deg, rgba(8,1,2,0.94), rgba(8,1,2,0.98)),
    url("../assets/setup/setup-devices.webp") center / cover no-repeat;
}

.setup-local-panel {
  max-width: 1040px;
  padding: clamp(30px, 5vw, 58px);
  border-radius: 28px;
  background: rgba(6,1,2,0.76);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 34px 110px rgba(0,0,0,0.45);
  backdrop-filter: blur(16px);
}

.setup-local-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.setup-local-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #f2e8e8;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 15px;
  font-weight: 800;
}

.setup-faq .image-stage img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.setup-final-cta {
  background:
    linear-gradient(180deg, rgba(8,1,2,0.88), rgba(8,1,2,0.98)),
    url("../assets/setup/setup-hero.webp") center / cover no-repeat;
}

.setup-final-panel {
  max-width: 980px;
  text-align: center;
  display: grid;
  justify-items: center;
  padding: clamp(38px, 6vw, 76px);
  border-radius: 30px;
  background: rgba(6,1,2,0.72);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 34px 110px rgba(0,0,0,0.45);
  backdrop-filter: blur(18px);
}

.setup-final-panel p { margin-inline: auto; }

@media (max-width: 1180px) {
  .service-hero-grid,
  .service-benefit-grid,
  .city-hero-grid,
  .city-two-col,
  .city-experience-grid,
  .city-lifetime-card,
  .city-trial-grid,
  .reseller-city-plan-grid,
  .reseller-market-grid,
  .legal-hero-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }
  .legal-nav {
    position: static;
  }
  .service-city-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .city-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-strategy-grid {
    grid-template-columns: 1fr;
  }
  .reseller-proof-strip,
  .device-band-grid,
  .reseller-faq-grid {
    grid-template-columns: 1fr;
  }
  .reseller-faq-copy {
    position: static;
  }
  .device-band-grid .sell-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .reseller-proof-strip figure:nth-child(2) {
    transform: none;
  }
  .reseller-proof-strip figure,
  .device-showcase {
    min-height: 430px;
  }
}

@media (max-width: 1120px) {
  .setup-hero-grid,
  .setup-quick-grid,
  .setup-self-grid,
  .setup-section-head,
  .setup-section-head.reverse,
  .setup-app-card {
    grid-template-columns: 1fr;
  }
  .setup-card-image {
    order: 1;
    border-left: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .setup-card-body {
    order: 2;
  }
  .setup-hero-panel {
    min-height: 440px;
  }
  .setup-hero-panel img {
    min-height: 440px;
  }
  .setup-device-grid,
  .setup-fix-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .service-hero {
    min-height: auto;
    padding: 136px 0 76px;
  }
  .city-hero {
    min-height: auto;
    padding: 136px 0 76px;
  }
  .service-hero-copy h1 {
    font-size: clamp(44px, 12vw, 58px);
  }
  .city-hero-copy h1 {
    font-size: clamp(42px, 11vw, 58px);
  }
  .service-hero-copy p:not(.eyebrow) {
    font-size: 21px;
  }
  .city-hero-copy p:not(.eyebrow) {
    font-size: 21px;
  }
  .service-hero-actions,
  .service-hero-actions .btn,
  .city-hero-actions,
  .city-hero-actions .btn {
    width: 100%;
  }
  .service-hero-panel div {
    min-height: 104px;
  }
  .service-strategy-section,
  .service-country-section,
  .service-city-section,
  .service-benefit-section,
  .service-faq-section,
  .city-section {
    padding: 78px 0;
  }
  .service-country-grid,
  .service-city-grid,
  .service-city-links,
  .city-local-grid,
  .city-related-grid,
  .reseller-city-command ul {
    grid-template-columns: 1fr;
  }
  .reseller-market-strip {
    padding-bottom: 78px;
  }
  .legal-hero {
    min-height: auto;
    padding: 136px 0 76px;
  }
  .legal-hero-copy h1 {
    font-size: clamp(42px, 11vw, 58px);
  }
  .legal-hero-copy p:not(.eyebrow) {
    font-size: 21px;
  }
  .legal-content-section {
    padding: 78px 0;
  }
  .legal-support-cta {
    padding-bottom: 78px;
  }
  .legal-support-card {
    display: grid;
  }
  .legal-support-card .btn {
    width: 100%;
  }
  .legal-article p {
    font-size: 19px;
  }
  .checkout-frame {
    padding: 10px;
  }
  .checkout-frame-panel {
    height: calc(100vh - 20px);
    border-radius: 18px;
  }
  .checkout-frame-head {
    display: grid;
    min-height: auto;
    padding: 16px;
  }
  .checkout-frame-actions {
    justify-content: space-between;
  }
  .reseller-cinema-section {
    padding: 78px 0;
  }
  .reseller-cinema-slide,
  .reseller-cinema-slide img {
    min-height: 360px;
    height: 360px;
  }
  .reseller-cinema-slide figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 16px;
  }
  .reseller-city-plan-card > p {
    min-height: 0;
  }
  .city-reseller-card {
    display: grid;
    align-items: start;
  }
  .city-reseller-card .btn {
    width: 100%;
  }
  .city-lifetime-card {
    padding: 22px;
    border-radius: 24px;
  }
  .city-lifetime-media,
  .city-lifetime-media img {
    min-height: 300px;
  }
  .city-trial-section {
    min-height: auto;
    padding: 78px 0;
  }
  .city-trial-grid p:not(.eyebrow) {
    font-size: 21px;
  }
  .city-trial-card .btn {
    width: 100%;
  }
  .service-city-card {
    min-height: auto;
  }
  .service-section-head {
    text-align: left;
  }
  .service-filter-row {
    justify-content: flex-start;
  }
  .service-blueprint-list article {
    grid-template-columns: 46px minmax(0, 1fr);
  }
  .service-blueprint-list strong {
    width: 46px;
    height: 46px;
    border-radius: 13px;
  }
  .service-blueprint-list span {
    font-size: 19px;
  }
  .reseller-dashboard-visual,
  .reseller-wallet-visual,
  .growth-visual,
  .device-showcase {
    min-height: 430px;
  }
  .reseller-plan-card {
    min-height: auto;
  }
  .reseller-plan-card h3,
  .reseller-plan-card > p {
    min-height: 0;
  }
  .reseller-plan-visual {
    margin-bottom: 64px;
  }
  .dash-top {
    padding: 18px 18px 0;
  }
  .dash-wallet,
  .dash-metrics,
  .dash-chart,
  .wallet-row,
  .wallet-bars,
  .wallet-grid,
  .reseller-wallet-visual > p {
    margin-left: 18px;
    margin-right: 18px;
  }
  .dash-wallet {
    margin-top: 84px;
    padding: 20px;
  }
  .dash-wallet strong,
  .wallet-row strong {
    font-size: 64px;
  }
  .dash-chart {
    display: none;
  }
  .reseller-proof-strip figure,
  .device-showcase,
  .reseller-faq-visual {
    min-height: 350px;
  }
  .reseller-plan-card {
    padding: 22px;
  }
  .reseller-plan-badge {
    top: 16px;
    right: 16px;
    font-size: 11px;
  }
  .reseller-plan-visual {
    width: 94px;
    height: 94px;
    margin: 12px 0 62px;
  }
  .reseller-plan-visual span {
    font-size: 32px;
  }
  .reseller-plan-card h3 {
    font-size: 34px;
  }
  .reseller-plan-price {
    font-size: 58px;
  }
  .reseller-faq-section .faq-item button {
    min-height: 70px;
    padding: 19px;
    font-size: 23px;
  }
  .device-band-grid .sell-card-grid {
    grid-template-columns: 1fr;
  }
  .device-band-grid .sell-card {
    padding: 18px;
  }
  .growth-device {
    min-height: 56px;
    font-size: 13px;
  }
  .setup-hero {
    min-height: auto;
    padding: 136px 0 70px;
  }
  .setup-hero-copy h1 {
    font-size: clamp(44px, 12vw, 58px);
  }
  .setup-hero-copy p:not(.eyebrow) {
    font-size: 21px;
  }
  .setup-actions {
    width: 100%;
  }
  .setup-actions .btn {
    width: 100%;
  }
  .setup-hero-panel,
  .setup-hero-panel img {
    min-height: 320px;
  }
  .setup-floating-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    max-width: none;
    margin: 12px;
  }
  .setup-floating-card-two {
    display: none;
  }
  .setup-checklist {
    grid-template-columns: 1fr;
  }
  .setup-field-grid {
    grid-template-columns: 1fr;
  }
  .setup-quick,
  .setup-self-login,
  .setup-apps-section,
  .setup-devices-section,
  .setup-troubleshooting,
  .setup-local,
  .setup-final-cta {
    padding: 78px 0;
  }
  .setup-section-head {
    gap: 24px;
    margin-bottom: 28px;
  }
  .setup-card-image img {
    max-height: 330px;
    aspect-ratio: 16 / 10;
  }
  .setup-card-body .setup-steps {
    grid-template-columns: 1fr;
  }
  .setup-card-body,
  .setup-device-copy {
    padding: 22px;
  }
  .setup-steps li,
  .setup-device-copy .setup-steps li {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    padding: 13px;
  }
  .setup-steps li > span,
  .setup-device-copy .setup-steps li > span {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 13px;
  }
  .setup-steps strong {
    font-size: 20px;
  }
  .setup-steps p {
    font-size: 17px;
  }
  .setup-checklist div {
    min-height: 78px;
  }
  .setup-checklist span {
    font-size: 21px;
  }
  .setup-fix-card {
    min-height: 0;
  }
  .setup-final-panel {
    border-radius: 24px;
  }
  .upishi-hero {
    min-height: auto;
    padding: 136px 0 76px;
  }
  .upishi-hero-grid {
    grid-template-columns: 1fr;
  }
  .upishi-copy h1 {
    font-size: clamp(44px, 12vw, 58px);
  }
  .upishi-copy p:not(.eyebrow) {
    font-size: 21px;
  }
  .upishi-hero-actions,
  .upishi-hero-actions .btn {
    width: 100%;
  }
  .upishi-trust-panel {
    padding: 22px;
  }
  .upishi-account-section,
  .upishi-frame-section {
    padding: 78px 0;
  }
  .upishi-frame-shell {
    border-radius: 22px;
  }
  .upishi-frame-head {
    display: grid;
    padding: 22px;
  }
  .upishi-frame-head h1,
  .upishi-frame-head h2 {
    font-size: clamp(38px, 11vw, 54px);
  }
  .upishi-frame-head p:not(.eyebrow) {
    font-size: 18px;
  }
  .upishi-frame-head a {
    width: 100%;
  }
  .upishi-tabs,
  .upishi-product-strip {
    padding-left: 18px;
    padding-right: 18px;
  }
  .upishi-frame-wrap {
    min-height: 1000px;
    margin: 0 10px 10px;
    border-radius: 18px;
  }
}

@media (max-width: 1180px) {
  .trial-page-hero-grid,
  .trial-page-process-grid,
  .trial-page-best {
    grid-template-columns: 1fr;
  }
  .trial-page-card {
    max-width: 560px;
  }
  .trial-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .trial-page-hero {
    min-height: auto;
    padding: 142px 0 76px;
  }
  .trial-page-copy h1 {
    font-size: clamp(44px, 12vw, 62px);
  }
  .trial-page-copy > p:not(.eyebrow),
  .section-heading.center p:not(.eyebrow) {
    font-size: 20px;
  }
  .trial-page-card {
    padding: 24px;
    border-radius: 22px;
  }
  .trial-page-card ul,
  .trial-page-grid {
    grid-template-columns: 1fr;
  }
  .trial-page-section {
    padding: 78px 0;
  }
  .trial-page-item {
    min-height: 0;
    padding: 24px;
  }
  .trial-page-steps article {
    grid-template-columns: 1fr;
    padding: 22px;
  }
  .trial-page-pill-grid span,
  .trial-page-copy .btn,
  .trial-page-process .btn,
  .trial-page-final .btn {
    width: 100%;
    justify-content: center;
  }
}

/* CANA TV ocean-blue brand treatment */
.navbar {
  background: rgba(2, 12, 32, 0.9);
  border-color: rgba(37, 167, 255, 0.2);
}

.dropdown-menu,
.mobile-panel {
  background: rgba(3, 15, 38, 0.98);
}

.dropdown-menu a:hover {
  background: rgba(37, 167, 255, 0.16);
}

.worldwide-hero {
  background:
    radial-gradient(circle at 18% 12%, rgba(8, 124, 240, 0.34), transparent 38%),
    radial-gradient(circle at 82% 24%, rgba(37, 167, 255, 0.18), transparent 34%),
    linear-gradient(135deg, #020817 0%, #061b3e 54%, #020817 100%);
}

.worldwide-hero .page-hero-media {
  opacity: 0.58;
  filter: hue-rotate(168deg) saturate(1.4) brightness(0.7) contrast(1.15);
}

.worldwide-hero .city-hero-bg {
  background-image:
    linear-gradient(90deg, rgba(2,8,23,0.97), rgba(3,18,48,0.56) 46%, rgba(2,8,23,0.93)),
    radial-gradient(circle at 18% 12%, rgba(8,124,240,0.42), transparent 36%),
    radial-gradient(circle at 82% 24%, rgba(37,167,255,0.18), transparent 34%),
    linear-gradient(rgba(86,181,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(86,181,255,0.07) 1px, transparent 1px);
}
