:root {
  --bg: #080d1a;
  --surface: rgba(13, 21, 40, 0.8);
  --gold: #f5a800;
  --gold-bright: #ffd63e;
  --cyan: #00c8ff;
  --purple: #a855f7;
  --white: #f0f4ff;
  --muted: #7a8ab0;
  --border: rgba(0, 200, 255, 0.15);
  --glow-gold: 0 0 24px rgba(245, 168, 0, 0.4);
  --glow-cyan: 0 0 20px rgba(0, 200, 255, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(168, 85, 247, 0.17), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(0, 200, 255, 0.2), transparent 33%),
    linear-gradient(130deg, #050913, var(--bg));
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 4.6rem 0;
}

.section-title {
  margin: 0 0 0.9rem;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.08em;
  font-size: clamp(2rem, 5vw, 3.4rem);
  text-align: center;
}

.section-subtitle {
  margin: 0 auto 2rem;
  color: var(--muted);
  max-width: 760px;
  text-align: center;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.card:hover {
  box-shadow: var(--glow-cyan);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 13, 26, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand img {
  height: 52px;
  width: auto;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--white);
  border-radius: 10px;
  padding: 0.45rem 0.65rem;
  cursor: pointer;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links a {
  color: var(--muted);
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
}

.btn {
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.74rem 1.2rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(120deg, var(--gold), var(--gold-bright));
  color: #271f09;
  box-shadow: var(--glow-gold);
}

.btn-ghost {
  border-color: var(--border);
  color: var(--white);
  background: rgba(13, 21, 40, 0.35);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  box-shadow: var(--glow-cyan);
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  text-align: center;
}

#stars-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(940px, 94vw);
}

.hero-title {
  margin: 0;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.1em;
  line-height: 0.95;
  font-size: clamp(2.7rem, 9vw, 6rem);
}

.hero-title .gold {
  color: var(--gold);
  text-shadow: 0 0 24px rgba(245, 168, 0, 0.52);
}

.hero-text {
  color: var(--muted);
  margin: 1rem auto 1.4rem;
  max-width: 740px;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
}

.promo-card {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 1rem 1.1rem;
  text-align: left;
  border-color: rgba(245, 168, 0, 0.45);
  box-shadow: var(--glow-gold);
}

.promo-title {
  margin: 0;
  font-weight: 700;
}

.countdown {
  color: var(--gold-bright);
  font-weight: 700;
}

.hero-actions {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
}

.trust-line {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.stats-grid,
.features-grid,
.pricing-grid,
.testimonials-grid,
.contact-grid,
.footer-grid {
  display: grid;
  gap: 1rem;
}

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

.stat-item {
  text-align: center;
  padding: 1rem;
}

.stat-item strong {
  display: block;
  color: var(--gold-bright);
  font-size: 1.3rem;
}

.stat-item span {
  color: var(--muted);
}

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

.feature-card,
.price-card,
.testimonial,
.contact-card {
  padding: 1.1rem;
}

.feature-card h3,
.price-card h3 {
  margin: 0.35rem 0 0.45rem;
}

.feature-card p,
.testimonial p,
.contact-card p,
.price-card p,
.price-card li {
  color: var(--muted);
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.price-value {
  margin: 0.6rem 0;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.06em;
  font-size: 2.4rem;
}

.price-value span {
  font-size: 1rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--muted);
}

.price-card ul {
  padding-left: 1rem;
  margin: 0 0 1rem;
}

.price-card.popular {
  border-color: var(--gold);
  box-shadow: var(--glow-gold);
  position: relative;
}

.badge {
  position: absolute;
  top: -11px;
  right: 14px;
  padding: 0.26rem 0.58rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  color: #241c08;
  background: linear-gradient(120deg, var(--gold), var(--gold-bright));
}

.steps {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 0.8rem;
}

.steps::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(var(--cyan), var(--purple));
}

.step {
  position: relative;
  padding: 1rem 1rem 1rem 3.4rem;
}

.step span {
  position: absolute;
  left: 9px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #041019;
  font-weight: 700;
  background: linear-gradient(120deg, var(--cyan), var(--purple));
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-list details {
  margin-bottom: 0.7rem;
  padding: 0.95rem 1rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-list details p {
  margin-bottom: 0;
  color: var(--muted);
}

.final-cta {
  text-align: center;
}

.final-cta h2 {
  margin: 0 0 1rem;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.08em;
  font-size: clamp(2rem, 5.5vw, 3.9rem);
}

.site-footer {
  margin-top: 2rem;
  border-top: 1px solid var(--border);
  background: rgba(6, 11, 21, 0.88);
  padding: 2rem 0 1rem;
}

.footer-grid {
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
}

.footer-col h4 {
  margin: 0 0 0.6rem;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.06em;
}

.footer-col a,
.footer-col p {
  color: var(--muted);
  display: block;
  margin: 0.28rem 0;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-copy {
  margin-top: 1rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.page-hero {
  padding: 3.2rem 0 2rem;
  text-align: center;
}

.page-hero h1 {
  margin: 0;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.08em;
  font-size: clamp(2rem, 6vw, 4rem);
}

.page-hero p {
  color: var(--muted);
  max-width: 780px;
  margin: 1rem auto 0;
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1rem;
}

.toc {
  position: sticky;
  top: 80px;
  align-self: start;
  padding: 1rem;
}

.toc h3 {
  margin: 0 0 0.7rem;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.06em;
}

.toc a {
  display: block;
  margin: 0.3rem 0;
  color: var(--muted);
}

.toc a:hover {
  color: var(--white);
}

.legal-content {
  padding: 1rem;
}

.legal-content section {
  margin-bottom: 1.5rem;
}

.legal-content h2 {
  margin: 0 0 0.45rem;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.06em;
}

.legal-content p {
  color: var(--muted);
  margin: 0;
}

.status-bar {
  margin: 1rem auto 0;
  width: fit-content;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(110, 243, 152, 0.38);
  background: rgba(15, 40, 27, 0.6);
  color: #baf4cc;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.95rem;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #6ef398;
  box-shadow: 0 0 12px rgba(110, 243, 152, 0.8);
}

.search-input,
input,
select,
textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 0.8rem 0.9rem;
  background: rgba(8, 15, 28, 0.72);
  color: var(--white);
  font: inherit;
}

.search-input::placeholder,
input::placeholder,
textarea::placeholder {
  color: #8f9ebf;
}

.search-wrap {
  margin: 1.1rem auto 0;
  max-width: 580px;
}

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

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.tab-btn {
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  padding: 0.62rem 0.95rem;
}

.tab-btn.active {
  background: rgba(0, 200, 255, 0.17);
  color: #dbf8ff;
}

.faq-panel {
  display: none;
}

.faq-panel.active {
  display: block;
}

.faq-item {
  margin-bottom: 0.7rem;
  padding: 0.95rem 1rem;
}

.faq-item h4 {
  margin: 0 0 0.28rem;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
}

.form-grid {
  display: grid;
  gap: 0.8rem;
}

.form-row {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: 1fr 1fr;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.success-box {
  display: none;
  margin-top: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(110, 243, 152, 0.45);
  background: rgba(13, 44, 28, 0.55);
  color: #9ef3b4;
  padding: 0.9rem;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@media (max-width: 1020px) {
  .features-grid,
  .pricing-grid,
  .testimonials-grid,
  .contact-grid,
  .stats-grid,
  .footer-grid,
  .legal-layout {
    grid-template-columns: 1fr 1fr;
  }

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

  .toc {
    position: static;
  }
}

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

  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(8, 13, 26, 0.98);
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 3rem 0;
  }

  .stats-grid,
  .features-grid,
  .pricing-grid,
  .testimonials-grid,
  .contact-grid,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }
}
