:root {
  --bg: #000000;
  --gold: #c9a14a;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
}

.bg-orbs {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(201, 161, 74, 0.2), transparent 28%),
    radial-gradient(circle at 85% 12%, rgba(255, 255, 255, 0.08), transparent 20%),
    radial-gradient(circle at 65% 78%, rgba(201, 161, 74, 0.14), transparent 30%);
}

.section-wrap {
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .section-wrap {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.glass-panel {
  border: 1px solid rgba(201, 161, 74, 0.22);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border-radius: 1.25rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(8px);
}

.gold-panel {
  border: 1px solid rgba(201, 161, 74, 0.45);
  border-radius: 1.25rem;
  background: linear-gradient(145deg, rgba(201, 161, 74, 0.14), rgba(0, 0, 0, 0.5));
  padding: 1.8rem;
}

@media (min-width: 768px) {
  .gold-panel {
    padding: 2.4rem;
  }
}

.badge {
  display: inline-flex;
  border: 1px solid rgba(201, 161, 74, 0.4);
  color: var(--gold);
  background: rgba(201, 161, 74, 0.12);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(1.65rem, 2.8vw, 2.8rem);
  font-weight: 800;
  line-height: 1.12;
}

.quick-benefit {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 0.8rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  font-weight: 500;
}

.feature-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.02);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 161, 74, 0.5);
  box-shadow: 0 14px 35px rgba(201, 161, 74, 0.18);
}

.icon-wrap {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 0.7rem;
  display: grid;
  place-items: center;
  background: rgba(201, 161, 74, 0.16);
  color: var(--gold);
}

.feature-title {
  margin-top: 0.9rem;
  font-size: 1.08rem;
  font-weight: 700;
}

.feature-text {
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.82);
}

.check-item {
  border-left: 3px solid rgba(201, 161, 74, 0.75);
  padding: 0.5rem 0.75rem;
  border-radius: 0.35rem;
  background: rgba(255, 255, 255, 0.03);
}

.offer-card {
  border: 1px solid rgba(201, 161, 74, 0.2);
  border-radius: 0.95rem;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 230ms ease, transform 230ms ease;
}

.offer-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 161, 74, 0.6);
}

.offer-card h3 {
  font-weight: 700;
}

.offer-card p {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.82);
}

.price-block {
  border: 1px solid rgba(201, 161, 74, 0.38);
  border-radius: 1rem;
  padding: 1.4rem;
  background: radial-gradient(circle at 30% 20%, rgba(201, 161, 74, 0.21), rgba(0, 0, 0, 0.6));
  box-shadow: 0 0 38px rgba(201, 161, 74, 0.2);
}

.tag-chip {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  font-weight: 600;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(201, 161, 74, 0.8);
  border-radius: 0.9rem;
  background: linear-gradient(120deg, #d9b15b, #c9a14a);
  color: #0f0f0f;
  font-weight: 700;
  padding: 0.8rem 1.15rem;
  transition: transform 220ms ease, filter 220ms ease, box-shadow 220ms ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 10px 30px rgba(201, 161, 74, 0.34);
}

.form-label {
  display: inline-block;
  margin-bottom: 0.38rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
}

.form-input {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  padding: 0.75rem 0.95rem;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-input:focus {
  border-color: rgba(201, 161, 74, 0.95);
  box-shadow: 0 0 0 3px rgba(201, 161, 74, 0.25);
}

.mobile-sticky-cta {
  position: fixed;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.85rem;
  z-index: 40;
  text-align: center;
  border: 1px solid rgba(201, 161, 74, 0.9);
  border-radius: 0.95rem;
  background: linear-gradient(120deg, #d9b15b, #c9a14a);
  color: #0d0d0d;
  font-weight: 800;
  padding: 0.85rem 1rem;
  box-shadow: 0 12px 26px rgba(201, 161, 74, 0.38);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 480ms ease, transform 480ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}