:root {
  --brand: #d10e70;
  --gold: #6fd02b;
  --deep: #7a0642;
  --deep-hover: #9c0856;
  --grad-fire: linear-gradient(90deg, #d10e70, #7a0642);
  --bg: #000000;
  --card: rgba(17, 17, 17, 0.82);
  --fill-2: rgba(255, 255, 255, 0.03);
  --fill-3: rgba(255, 255, 255, 0.05);
  --line: rgba(255, 255, 255, 0.08);
  --t1: #ffffff;
  --t2: rgba(255, 255, 255, 0.72);
  --t3: rgba(255, 255, 255, 0.5);
  --t4: rgba(255, 255, 255, 0.46);
  --radius: 4px;
  --wrap: 74rem;
  --ease-apple: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Figtree", system-ui, sans-serif;
  background: var(--bg);
  color: var(--t2);
  -webkit-font-smoothing: antialiased;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px;
}

.container-brand {
  max-width: var(--wrap);
  padding-left: clamp(1.25rem, 4vw, 2.75rem);
  padding-right: clamp(1.25rem, 4vw, 2.75rem);
}

.section {
  padding-block: clamp(4.5rem, 9vw, 8rem);
  position: relative;
  z-index: 4;
}

.overline {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.display {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--t1);
}

.gradient-text {
  background: var(--grad-fire);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead-copy {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--t2);
  max-width: 38rem;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding-block: 0.65rem;
}

.site-nav .navbar-brand {
  display: flex;
  align-items: center;
  line-height: 0;
}

.site-nav .navbar-brand img {
  height: 52px;
  width: auto;
  max-width: min(240px, 55vw);
  object-fit: contain;
  object-position: left center;
}

@media (max-width: 575.98px) {
  .site-nav .navbar-brand img {
    height: 40px;
  }

  .site-nav .btn-primary-brand {
    padding: 0.7rem 1rem;
    font-size: 0.65rem;
  }
}

.btn-primary-brand {
  background: var(--grad-fire);
  border: none;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius);
  transition: transform 0.15s linear, filter 0.25s var(--ease-apple);
}

.btn-primary-brand:hover,
.btn-primary-brand:focus {
  color: #fff;
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.btn-ghost-brand {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--t1);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius);
}

.btn-ghost-brand:hover,
.btn-ghost-brand:focus {
  color: var(--t1);
  border-color: rgba(255, 255, 255, 0.25);
  background: var(--fill-2);
}

.microtrust {
  font-size: 0.875rem;
  color: var(--t4);
  margin-top: 1rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual img {
  max-width: min(100%, 420px);
  height: auto;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-visual img {
    animation: none;
  }
}

.offer {
  background: linear-gradient(180deg, rgba(209, 14, 112, 0.12), rgba(0, 0, 0, 0.9));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.offer-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  backdrop-filter: blur(8px);
}

.offer-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.offer-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.65rem;
  color: var(--t2);
}

.offer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--gold);
}

.form-label {
  color: var(--t3);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

.form-control {
  background: var(--fill-3);
  border: 1px solid var(--line);
  color: var(--t1);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
}

.form-control:focus {
  background: var(--fill-3);
  border-color: var(--brand);
  color: var(--t1);
  box-shadow: 0 0 0 0.2rem rgba(209, 14, 112, 0.25);
}

.form-control::placeholder {
  color: var(--t4);
}

.form-feedback {
  min-height: 1.5rem;
  font-size: 0.875rem;
  margin-top: 0.75rem;
}

.form-feedback.is-ok {
  color: var(--gold);
}

.form-feedback.is-err {
  color: #ff6b9d;
}

.guarantee {
  font-size: 0.875rem;
  color: var(--t3);
  margin-top: 1rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem 0;
  position: relative;
  z-index: 4;
}

.site-footer img {
  height: 40px;
  width: auto;
  margin-bottom: 0.75rem;
}

.site-footer .tagline {
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.wa-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 200;
  width: 52px;
  height: 52px;
  border-radius: 9999px;
  background: var(--gold);
  color: #000;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(111, 208, 43, 0.35);
  transition: transform 0.2s var(--ease-apple);
}

.wa-float:hover {
  color: #000;
  transform: translateY(-2px) scale(1.04);
}

@media (max-width: 991.98px) {
  .hero-visual {
    margin-top: 2.5rem;
  }
}
