:root {
  color-scheme: dark;
  --black: #060708;
  --ink: #101216;
  --panel: #171a1f;
  --gold: #d8ad43;
  --gold-strong: #f0cf66;
  --gold-soft: #f7e8b6;
  --silver: #a8aca7;
  --paper: #f5efe2;
  --paper-2: #ebe3d2;
  --muted: #d7d2c7;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.14);
  --dark-line: rgba(15, 17, 20, 0.12);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Tahoma, Arial, sans-serif;
  letter-spacing: 0;
  background: var(--black);
  color: var(--white);
  line-height: 1.8;
  overflow-x: hidden;
}

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

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

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

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(6, 7, 8, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand img {
  width: 54px;
  height: 66px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--gold-strong);
  font-size: 17px;
  line-height: 1.2;
}

.brand small {
  color: var(--silver);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.main-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: var(--radius);
  color: #ececec;
}

.main-nav a:hover,
.main-nav a.is-active {
  background: rgba(216, 173, 67, 0.13);
  color: var(--gold-strong);
}

.main-nav .nav-cta {
  background: var(--gold);
  color: #111;
  font-weight: 800;
}

.main-nav .nav-cta:hover {
  background: var(--gold-strong);
  color: #111;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: var(--white);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 78svh;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid rgba(216, 173, 67, 0.24);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(6, 7, 8, 0.92) 0%, rgba(6, 7, 8, 0.74) 50%, rgba(6, 7, 8, 0.38) 100%),
    url("assets/home-hero.webp");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero::after,
.image-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  z-index: -1;
  background: linear-gradient(0deg, var(--black), transparent);
}

.reseller-bg {
  background-image:
    linear-gradient(90deg, rgba(6, 7, 8, 0.94) 0%, rgba(6, 7, 8, 0.76) 55%, rgba(6, 7, 8, 0.42) 100%),
    url("assets/content-library.webp");
}

.apps-bg {
  background-image:
    linear-gradient(90deg, rgba(6, 7, 8, 0.94) 0%, rgba(6, 7, 8, 0.74) 55%, rgba(6, 7, 8, 0.36) 100%),
    url("assets/device-navigation.webp");
}

.pricing-bg {
  background-image:
    linear-gradient(90deg, rgba(6, 7, 8, 0.94) 0%, rgba(6, 7, 8, 0.74) 55%, rgba(6, 7, 8, 0.36) 100%),
    url("assets/sports-friends.webp");
}

.contact-bg {
  background-image:
    linear-gradient(90deg, rgba(6, 7, 8, 0.94) 0%, rgba(6, 7, 8, 0.74) 55%, rgba(6, 7, 8, 0.36) 100%),
    url("assets/remote-control.webp");
}

.hero-content {
  width: 100%;
  max-width: 620px;
  padding-block: 82px;
}

.eyebrow,
.section-kicker {
  margin-bottom: 12px;
  color: var(--gold-strong);
  font-weight: 800;
  font-size: 14px;
  overflow-wrap: anywhere;
}

.hero h1 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.25;
  color: var(--white);
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.hero-lead {
  width: 100%;
  max-width: 600px;
  margin-bottom: 26px;
  color: #f1eee6;
  font-size: 16px;
  overflow-wrap: anywhere;
}

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

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.3;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--gold);
  color: #101010;
}

.btn-primary:hover {
  background: var(--gold-strong);
}

.btn-secondary {
  border-color: rgba(216, 173, 67, 0.75);
  background: #151515;
  color: var(--gold-soft);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.btn-secondary:hover {
  background: var(--gold);
  color: #101010;
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.quick-points {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 160px));
  gap: 10px;
}

.quick-points span {
  min-height: 82px;
  padding: 14px;
  border: 1px solid rgba(216, 173, 67, 0.42);
  border-radius: var(--radius);
  background: rgba(6, 7, 8, 0.62);
  color: #f2efe8;
}

.quick-points strong {
  display: block;
  color: var(--gold-strong);
  font-size: 22px;
  line-height: 1.1;
}

.stats-band {
  background: var(--ink);
  border-bottom: 1px solid var(--line);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.stats-grid article {
  min-height: 132px;
  padding: 24px;
  background: #101216;
}

.stats-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-strong);
  font-size: 19px;
}

.stats-grid span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 84px 0;
}

.light-section {
  background: var(--paper);
  color: #171717;
}

.muted-section {
  background: var(--paper-2);
  color: #171717;
}

.dark-section {
  background: var(--black);
  color: var(--white);
}

.image-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.image-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(6, 7, 8, 0.92) 0%, rgba(6, 7, 8, 0.76) 54%, rgba(6, 7, 8, 0.5) 100%),
    url("assets/content-library.webp");
  background-size: cover;
  background-position: center;
}

.image-section.worldcup-section::before {
  background-image:
    linear-gradient(90deg, rgba(6, 7, 8, 0.92) 0%, rgba(6, 7, 8, 0.72) 54%, rgba(6, 7, 8, 0.44) 100%),
    url("assets/sports-friends.webp");
}

.image-section.apps-section::before {
  background-image:
    linear-gradient(90deg, rgba(6, 7, 8, 0.92) 0%, rgba(6, 7, 8, 0.74) 54%, rgba(6, 7, 8, 0.48) 100%),
    url("assets/device-navigation.webp");
}

.image-section.reseller-section::before {
  background-image:
    linear-gradient(90deg, rgba(6, 7, 8, 0.92) 0%, rgba(6, 7, 8, 0.74) 54%, rgba(6, 7, 8, 0.48) 100%),
    url("assets/remote-stream.webp");
}

.section-head {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-head h2,
.split-layout h2,
.seo-copy h2,
.reseller-teaser h2 {
  margin-bottom: 14px;
  font-size: clamp(23px, 3vw, 34px);
  line-height: 1.25;
  text-wrap: balance;
}

.light-section .section-head p,
.light-section .split-layout p,
.muted-section .section-head p,
.muted-section .split-layout p {
  color: #3f3b35;
}

.split-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 46px;
  align-items: center;
}

.split-layout.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-card,
.reseller-card,
.device-grid article,
.price-card,
.contact-card {
  border-radius: var(--radius);
}

.feature-card {
  padding: 22px;
  border: 1px solid var(--dark-line);
  background: #fffaf0;
  box-shadow: 0 10px 30px rgba(17, 20, 25, 0.07);
}

.dark-section .feature-card,
.image-section .feature-card {
  border-color: rgba(216, 173, 67, 0.24);
  background: rgba(18, 20, 24, 0.88);
  box-shadow: none;
}

.feature-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--gold);
  font-weight: 900;
}

.feature-card h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.feature-card p {
  margin-bottom: 0;
}

.copy-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.copy-columns p {
  margin-bottom: 0;
  color: #eee7d9;
}

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

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

.price-card,
.reseller-card,
.contact-card {
  overflow: hidden;
  background: #fffaf0;
  border: 1px solid var(--dark-line);
  box-shadow: 0 16px 36px rgba(17, 20, 25, 0.08);
}

.price-card.featured,
.reseller-card.featured {
  border-color: var(--gold);
  box-shadow: 0 18px 46px rgba(216, 173, 67, 0.2);
}

.price-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #111;
}

.price-visual {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(216, 173, 67, 0.24), rgba(6, 7, 8, 0.94)),
    url("assets/remote-control.webp");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.price-visual span,
.price-visual em {
  width: fit-content;
  padding: 6px 10px;
  border: 1px solid rgba(240, 207, 102, 0.45);
  border-radius: var(--radius);
  background: rgba(6, 7, 8, 0.62);
  color: var(--gold-strong);
  font-style: normal;
  font-weight: 900;
  font-size: 13px;
}

.price-visual strong {
  color: var(--white);
  font-size: 32px;
  line-height: 1.2;
}

.price-card-body,
.contact-card {
  padding: 20px;
}

.plan-name {
  margin-bottom: 6px;
  color: #7b6421;
  font-weight: 900;
}

.price-card h3,
.reseller-card h3 {
  margin-bottom: 4px;
  color: #121212;
  font-size: 30px;
  line-height: 1.2;
}

.old-price {
  margin-bottom: 14px;
  color: #777067;
  text-decoration: line-through;
}

.gift-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
  padding: 10px 12px;
  border: 1px solid rgba(216, 173, 67, 0.5);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(216, 173, 67, 0.22), rgba(216, 173, 67, 0.08));
  color: #5f4b13;
  font-weight: 900;
}

.gift-note span {
  color: #2a2110;
}

.gift-note strong {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 9px;
  border-radius: var(--radius);
  background: #151515;
  color: var(--gold-soft);
  font-size: 12px;
  white-space: nowrap;
}

.price-card ul,
.reseller-card ul {
  min-height: 164px;
  margin: 0 0 18px;
  padding: 0 20px 0 0;
  color: #2e2a25;
}

.price-card li,
.reseller-card li {
  margin-bottom: 6px;
}

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

.device-grid article {
  min-height: 132px;
  padding: 22px;
  background: #fffaf0;
  border: 1px solid var(--dark-line);
}

.device-grid strong {
  display: block;
  margin-bottom: 8px;
  color: #7b6421;
  font-size: 18px;
}

.device-grid span {
  color: #423d36;
}

.steps {
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  position: relative;
  min-height: 78px;
  margin-bottom: 12px;
  padding: 14px 62px 14px 16px;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  background: #fffaf0;
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  right: 14px;
  top: 14px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #111;
  font-weight: 900;
}

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

.steps span {
  color: #49443d;
  font-size: 14px;
}

.media-frame {
  min-height: 380px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  background: #111;
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  height: 100%;
  max-height: 620px;
  object-fit: cover;
}

.media-frame.logo-frame img {
  width: min(70%, 330px);
  height: auto;
  object-fit: contain;
  padding: 40px;
}

.reseller-teaser {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding-block: 16px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  background: #fffaf0;
}

.faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 14px 18px;
  cursor: pointer;
  color: #151515;
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 18px 18px;
  color: #3c3832;
}

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

.reseller-card {
  padding: 28px;
}

.reseller-card ul {
  min-height: 188px;
}

.wide-image {
  margin-top: 26px;
  overflow: hidden;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  background: #fffaf0;
}

.wide-image img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
}

.world-cup {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.badge-list span {
  padding: 8px 12px;
  border: 1px solid rgba(216, 173, 67, 0.45);
  border-radius: var(--radius);
  background: rgba(216, 173, 67, 0.12);
  color: var(--gold-soft);
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
}

.contact-card h3 {
  color: #121212;
  font-size: 24px;
}

.contact-card p {
  color: #3f3b35;
}

.site-footer {
  background: #08090b;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 34px;
  padding: 48px 0 28px;
}

.footer-grid img {
  margin-bottom: 12px;
}

.footer-grid h2 {
  margin-bottom: 12px;
  color: var(--gold-strong);
  font-size: 18px;
}

.footer-grid a {
  display: block;
  margin-bottom: 8px;
}

.footer-grid a:hover,
.footer-bottom a:hover {
  color: var(--gold-strong);
}

.legal-note {
  color: #aaa59b;
  font-size: 13px;
}

.footer-bottom {
  min-height: 58px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.floating-whatsapp {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 30;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: var(--gold);
  color: #101010;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

.floating-whatsapp:hover {
  background: var(--gold-strong);
}

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

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

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(10, 11, 13, 0.98);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    justify-content: flex-start;
  }

  .hero {
    min-height: 76svh;
  }

  .hero-bg,
  .reseller-bg,
  .apps-bg,
  .pricing-bg,
  .contact-bg {
    background-image:
      linear-gradient(0deg, rgba(6, 7, 8, 0.96) 0%, rgba(6, 7, 8, 0.72) 68%, rgba(6, 7, 8, 0.34) 100%),
      url("assets/home-hero.webp");
    background-position: center;
  }

  .reseller-bg,
  .apps-bg,
  .pricing-bg,
  .contact-bg {
    background-image:
      linear-gradient(0deg, rgba(6, 7, 8, 0.96) 0%, rgba(6, 7, 8, 0.72) 68%, rgba(6, 7, 8, 0.34) 100%),
      url("assets/device-navigation.webp");
  }

  .hero-content {
    padding-block: 58px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .quick-points,
  .split-layout,
  .split-layout.reverse,
  .copy-columns,
  .reseller-teaser,
  .reseller-prices,
  .footer-grid,
  .world-cup,
  .contact-grid,
  .pricing-grid.three {
    grid-template-columns: 1fr;
  }

  .reseller-teaser {
    align-items: start;
  }

  .media-frame {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    font-size: 11px;
  }

  .section {
    padding: 58px 0;
  }

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

  .quick-points {
    grid-template-columns: 1fr;
  }

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

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    max-width: 320px;
    margin-inline: auto;
    font-size: 28px;
    line-height: 1.32;
  }

  .hero-lead {
    max-width: 330px;
    margin-inline: auto;
    font-size: 14px;
  }

  .hero .eyebrow {
    max-width: 320px;
    margin-inline: auto;
    font-size: 12px;
    line-height: 1.6;
  }

  .quick-points span {
    text-align: center;
  }

  .stats-grid article {
    min-height: 118px;
    text-align: center;
  }

  .price-card ul,
  .reseller-card ul {
    min-height: 0;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    padding: 16px 0;
    text-align: center;
  }

  .floating-whatsapp {
    left: 12px;
    right: 12px;
    width: auto;
  }
}
