:root {
  --bg: #0c1117;
  --panel: #141b24;
  --panel-2: #1c2632;
  --text: #f5f7fb;
  --muted: #a8b3c2;
  --line: rgba(255, 255, 255, 0.12);
  --green: #23d366;
  --gold: #f7b500;
  --cyan: #4db6ff;
  --red: #ff5f6d;
  --yellow: #ffd166;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Arial, Helvetica, sans-serif;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(12, 17, 23, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: clamp(10px, 2vw, 22px);
  color: var(--muted);
  font-size: 14px;
}

.nav a:hover {
  color: var(--text);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.8fr);
  gap: clamp(22px, 5vw, 70px);
  align-items: center;
  padding: clamp(70px, 9vw, 120px) clamp(18px, 4vw, 56px);
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 48%, rgba(247, 181, 0, 0.36), transparent 24%),
    radial-gradient(circle at 82% 50%, rgba(247, 181, 0, 0.2), transparent 38%),
    radial-gradient(circle at 55% 92%, rgba(35, 211, 102, 0.18), transparent 30%),
    linear-gradient(135deg, #05070b 0%, #0c141d 46%, #1d1507 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.96), rgba(5, 7, 11, 0.44)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 20px);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.hero-logo-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 360px;
}

.hero-logo {
  width: min(430px, 100%);
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 32px 58px rgba(0, 0, 0, 0.64)) drop-shadow(0 0 34px rgba(247, 181, 0, 0.18));
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 16px;
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.95;
}

.hero-title {
  color: #ffffff;
  font-weight: 900;
  text-shadow: 0 8px 0 #050608, 0 18px 34px rgba(0, 0, 0, 0.55);
}

.hero-title strong {
  color: var(--gold);
  font-weight: 900;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
}

.hero-copy,
.muted {
  color: var(--muted);
}

.hero-copy {
  max-width: 540px;
  font-size: 20px;
  line-height: 1.5;
  color: #d9e4f2;
  text-wrap: balance;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: #06210f;
  background: var(--gold);
  border-color: var(--gold);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
}

.button.help-button {
  gap: 8px;
}

.button.inline {
  margin-top: 16px;
}

.section {
  padding: clamp(56px, 8vw, 96px) clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
}

.section-head {
  max-width: 780px;
  margin-bottom: 28px;
}

.product-grid,
.payment-grid,
.trust-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.card,
.payment-card,
.trust-item,
.step-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.card {
  display: grid;
  min-height: 220px;
  padding: 18px;
}

.service-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 128px;
  height: 58px;
  margin-bottom: 22px;
  overflow: hidden;
  background: #080c12;
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.service-logo img {
  display: block;
  max-width: 108px;
  max-height: 44px;
  object-fit: contain;
}

.service-logo.hbo,
.service-logo.prime {
  background: #111827;
}

.service-logo.hbo img,
.service-logo.prime img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
}

.service-logo.disney {
  background: #061836;
}

.price {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 26px;
  font-weight: 900;
}

.card .button {
  align-self: end;
}

.trust-section {
  background: #0f151d;
}

.trust-item {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 138px;
  padding: 18px;
}

.trust-item strong {
  font-size: 19px;
}

.trust-item span {
  color: var(--muted);
  line-height: 1.45;
}

.buy-steps {
  background: #0b1118;
}

.step-item {
  display: grid;
  gap: 10px;
  min-height: 170px;
  padding: 18px;
}

.step-item > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #06210f;
  background: var(--gold);
  border-radius: 8px;
  font-weight: 900;
}

.step-item strong {
  font-size: 19px;
}

.step-item p {
  color: var(--muted);
  line-height: 1.45;
}

.combos-section {
  background: #101720;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.combo-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.combo-tab {
  min-width: max-content;
  min-height: 42px;
  padding: 0 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.combo-tab.active {
  color: #06210f;
  background: var(--gold);
  border-color: var(--gold);
}

.combo-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(220px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.combo-poster {
  overflow: hidden;
  min-width: 220px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.combo-poster img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.unit-prices {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.unit-prices h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
}

.unit-price-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 14px;
  align-items: start;
}

.unit-price-gallery img {
  display: block;
  width: 100%;
  max-height: 860px;
  object-fit: contain;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.payment-card {
  padding: 18px;
}

.payment-card h3 {
  margin: 0 0 6px;
}

.payment-value {
  color: var(--muted);
  word-break: break-word;
}

.support {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--panel-2);
}

.support p {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.5;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  max-width: min(420px, calc(100vw - 36px));
  padding: 14px 16px;
  color: #06210f;
  background: var(--green);
  border-radius: 8px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 18;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px 0 14px;
  color: #ffffff;
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.42);
  font-weight: 900;
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

@media (max-width: 920px) {
  .product-grid,
  .payment-grid,
  .trust-grid,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 640px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 82vh;
    grid-template-columns: 1fr;
    align-items: end;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(12, 17, 23, 0.2), rgba(12, 17, 23, 0.98)),
      repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 18px);
  }

  .hero-logo-wrap {
    order: -1;
    min-height: 260px;
    align-self: end;
  }

  .hero-logo {
    width: min(320px, 88vw);
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    min-height: 50px;
    padding-right: 14px;
  }

  .whatsapp-float span {
    display: none;
  }

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

  .product-grid,
  .payment-grid,
  .trust-grid,
  .unit-price-gallery,
  .steps-grid {
    grid-template-columns: 1fr;
  }
}
