:root {
  --bg: #040604;
  --panel: rgba(14, 20, 16, .74);
  --panel-strong: rgba(20, 28, 23, .92);
  --line: rgba(124, 255, 170, .18);
  --text: #f7fff7;
  --muted: #a8b5ad;
  --green: #42ff91;
  --green-soft: #1fc970;
  --purple: #8b5cff;
  --purple-soft: #b794ff;
  --gold: #d9a43a;
  --gold-soft: #ffe19a;
  --shadow: 0 28px 90px rgba(0, 0, 0, .45);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -10%, rgba(139, 92, 255, .2), transparent 34rem),
    radial-gradient(circle at 78% 8%, rgba(66, 255, 145, .16), transparent 30rem),
    radial-gradient(circle at 8% 24%, rgba(139, 92, 255, .12), transparent 24rem),
    linear-gradient(180deg, #050508 0%, #030303 48%, #060a07 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(4, 6, 4, .72);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled { box-shadow: 0 18px 50px rgba(0, 0, 0, .34); }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-logo { width: 112px; height: auto; border-radius: 8px; filter: drop-shadow(0 0 18px rgba(139, 92, 255, .26)); }
.brand strong { display: block; line-height: 1; }
.brand small { display: block; color: var(--muted); font-size: 12px; margin-top: 4px; }

.nav { display: flex; align-items: center; gap: 18px; color: #dce7df; font-size: 14px; }
.nav a { transition: color .2s ease; }
.nav a:hover { color: var(--green); }
.nav-cta {
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  color: #061008;
  background: var(--green);
  font-weight: 800;
  cursor: pointer;
}
.nav-toggle { display: none; }

.section { width: min(1180px, calc(100% - 36px)); margin: 0 auto; padding: 92px 0; }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .92fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding-top: 60px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 24px; height: 2px; background: var(--gold); }
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 760px;
  margin: 18px 0 22px;
  font-size: clamp(46px, 7vw, 86px);
  line-height: .95;
}
h2 { font-size: clamp(32px, 4.4vw, 56px); line-height: 1.02; margin-bottom: 16px; }
h3 { font-size: 22px; margin-bottom: 14px; }
p { color: var(--muted); line-height: 1.75; }
.hero-copy > p { max-width: 650px; font-size: 19px; }
.hero-logo { width: min(260px, 76vw); margin-bottom: 20px; filter: drop-shadow(0 20px 34px rgba(139, 92, 255, .28)); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0; }
.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 15px 22px;
  min-height: 52px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #031008;
  background: linear-gradient(135deg, var(--green), #ceff66);
  box-shadow: 0 18px 45px rgba(66, 255, 145, .22);
}
.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .16);
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(110px, 1fr));
  gap: 12px;
  max-width: 690px;
}
.stats span {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .045);
  color: var(--muted);
}
.stats strong { display: block; color: var(--text); font-size: 24px; }

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}
.tv-mockup {
  position: relative;
  z-index: 2;
  width: min(100%, 760px);
  filter: drop-shadow(0 34px 60px rgba(0, 0, 0, .52)) drop-shadow(0 0 44px rgba(139, 92, 255, .2));
}
.poster-stack {
  position: absolute;
  inset: auto 0 14px auto;
  display: flex;
  gap: 12px;
  transform: rotate(-7deg);
  opacity: .9;
}
.poster-stack img { width: 112px; border-radius: 8px; box-shadow: var(--shadow); }
.quality-badge {
  position: absolute;
  z-index: 3;
  left: 8px;
  bottom: 74px;
  border-radius: 999px;
  padding: 13px 16px;
  color: #061008;
  background: var(--gold-soft);
  font-weight: 900;
}

.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .07);
}
.strip span { padding: 22px; background: rgba(6, 10, 7, .88); color: #dce7df; text-align: center; font-weight: 800; }

.section-heading { max-width: 760px; margin-bottom: 34px; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
.price-card, .feature-card, .review-card, .mini-card, .reseller-panel, .modal-card, .showcase-image, .wide-visual {
  border: 1px solid rgba(255, 255, 255, .1);
  background: linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .035));
  backdrop-filter: blur(18px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.price-card:hover, .feature-card:hover, .review-card:hover, .mini-card:hover, .showcase-image:hover, .wide-visual:hover {
  transform: translateY(-5px);
  border-color: rgba(139, 92, 255, .46);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .5), 0 0 42px rgba(139, 92, 255, .14);
}
.price-card.featured {
  border-color: rgba(139, 92, 255, .72);
  background: linear-gradient(180deg, rgba(139, 92, 255, .18), rgba(43, 255, 135, .08));
}
.popular {
  position: absolute;
  right: 18px;
  top: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #061008;
  background: var(--gold-soft);
  font-size: 12px;
  font-weight: 900;
}
.plan-term { color: var(--green); font-weight: 900; }
.price-card h3 { font-size: 48px; margin: 12px 0 20px; }
.price-card ul { padding: 0; margin: 0 0 26px; list-style: none; color: #c5d0c9; }
.price-card li { padding: 10px 0; border-bottom: 1px solid rgba(255, 255, 255, .07); }
.price-card li::before { content: "\2713"; color: var(--green); font-weight: 900; margin-right: 8px; }
.price-card .btn { margin-top: auto; width: 100%; }

.visual-showcase { padding-top: 36px; }
.showcase-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.showcase-image, .wide-visual {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
}
.wide-visual { margin-top: 24px; }

.split {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(320px, 1fr);
  gap: 32px;
  align-items: center;
}
.reseller-panel { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; overflow: hidden; background: rgba(255, 255, 255, .08); }
.reseller-panel div { padding: 22px; background: rgba(6, 10, 7, .84); }
.reseller-panel strong { display: block; margin-bottom: 7px; }
.reseller-panel span { color: var(--muted); font-size: 14px; line-height: 1.5; }

.device-grid { display: grid; grid-template-columns: repeat(9, 1fr); gap: 12px; }
.mini-card {
  display: grid;
  place-items: center;
  min-height: 96px;
  padding: 16px;
  color: #f8fff8;
  text-align: center;
  font-weight: 900;
}
.feature-grid, .review-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.review-grid { grid-template-columns: repeat(3, 1fr); }
.feature-card, .review-card { padding: 24px; }
.feature-card span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #061008;
  background: var(--green);
  font-size: 13px;
  font-weight: 900;
}
.review-card div { color: var(--gold-soft); margin-bottom: 14px; letter-spacing: 0; }
.review-card strong { color: var(--text); }
.seo-section {
  width: 100%;
  padding-left: max(18px, calc((100vw - 1180px) / 2));
  padding-right: max(18px, calc((100vw - 1180px) / 2));
  background: linear-gradient(135deg, rgba(66, 255, 145, .08), rgba(217, 164, 58, .08));
}
.seo-section > div { max-width: 880px; }

.faq-list { display: grid; gap: 12px; }
details {
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .045);
  overflow: hidden;
}
summary { padding: 20px 22px; cursor: pointer; font-weight: 900; }
details p { padding: 0 22px 20px; margin: 0; }

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, .85fr) 1fr 1fr;
  gap: 32px;
  padding: 56px clamp(18px, 4vw, 56px);
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: #030403;
}
.footer-links, .popular-searches { display: flex; flex-wrap: wrap; gap: 12px; align-content: start; }
.footer-links a, .popular-searches span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 999px;
  color: #cdd8d1;
  font-size: 14px;
}
.popular-searches strong { width: 100%; }

.floating-whatsapp, .scroll-top {
  position: fixed;
  z-index: 40;
  border: 0;
  cursor: pointer;
  box-shadow: 0 16px 42px rgba(0, 0, 0, .4);
}
.floating-whatsapp {
  right: 18px;
  bottom: 22px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  color: #031008;
  background: var(--green);
  font-weight: 900;
}
.scroll-top {
  right: 18px;
  bottom: 88px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--text);
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .16);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.scroll-top.show { opacity: 1; pointer-events: auto; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.modal.is-open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, .74); backdrop-filter: blur(10px); }
.modal-card {
  position: relative;
  width: min(640px, 100%);
  max-height: calc(100vh - 36px);
  overflow: auto;
  padding: 28px;
  background: rgba(9, 13, 10, .96);
}
.modal-close {
  position: absolute;
  right: 14px;
  top: 12px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  color: var(--text);
  background: rgba(255, 255, 255, .08);
  font-size: 26px;
  cursor: pointer;
}
form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
label { display: grid; gap: 8px; color: #dce7df; font-weight: 800; font-size: 14px; }
label:has(textarea), form .btn { grid-column: 1 / -1; }
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  padding: 14px;
  color: var(--text);
  background: rgba(255, 255, 255, .07);
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: rgba(66, 255, 145, .68); }
textarea { resize: vertical; }

.policy-anchor {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .device-grid { grid-template-columns: repeat(3, 1fr); }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { min-height: 430px; }
  .site-footer { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .site-header { padding: 14px 18px; }
  .nav-toggle {
    display: inline-grid;
    gap: 5px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
  }
  .nav-toggle span { display: block; width: 20px; height: 2px; background: var(--text); }
  .nav {
    position: fixed;
    inset: 72px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    background: rgba(5, 8, 6, .96);
    box-shadow: var(--shadow);
  }
  .nav.is-open { display: flex; }
  .nav a, .nav-cta { text-align: center; }
  .section { width: min(100% - 28px, 1180px); padding: 64px 0; }
  .hero { padding-top: 34px; }
  h1 { font-size: clamp(40px, 13vw, 58px); }
  .hero-copy > p { font-size: 17px; }
  .hero-actions, .stats { grid-template-columns: repeat(2, 1fr); }
  .hero-actions .btn { flex: 1 1 100%; }
  .stats { display: grid; }
  .hero-visual { min-height: 320px; }
  .poster-stack { right: 2px; bottom: 0; opacity: .52; }
  .poster-stack img { width: 78px; }
  .quality-badge { left: 0; bottom: 30px; }
  .strip { grid-template-columns: 1fr; }
  .pricing-grid, .feature-grid, .review-grid, .split, .reseller-panel, .showcase-grid { grid-template-columns: 1fr; }
  .device-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-logo { width: 96px; }
  form { grid-template-columns: 1fr; }
  .floating-whatsapp { left: 14px; right: 14px; text-align: center; }
  .scroll-top { bottom: 88px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
