:root {
  --promo-offset: 42px;
  --bg: #0b0717;
  --bg-deep: #05030a;
  --accent: #a855f7;
  --accent-strong: #c026d3;
  --accent-soft: rgba(168, 85, 247, 0.2);
  --lime: #b8ff2a;
  --text: #f5f1ff;
  --muted: #c7b9e7;
  --card: rgba(20, 10, 35, 0.72);
  --border: rgba(168, 85, 247, 0.25);
  --shadow: 0 30px 60px rgba(10, 5, 20, 0.55);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  /* font-family: "Manrope", sans-serif; */
  font-family: Ubuntu;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body.splash-active {
  overflow: hidden;
}

.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: grid;
  place-items: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.splash.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.splash__inner {
  width: min(460px, 88vw);
  display: grid;
  justify-items: center;
  gap: 16px;
}

.splash__logo-wrap {
  width: 290px;
  max-width: 70vw;
  aspect-ratio: 1 / 1;
  background: #050505;
  display: grid;
  place-items: center;
}

.splash__logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.splash__progress-track {
  width: 100%;
  max-width: 430px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.splash__progress-fill {
  width: 0;
  height: 100%;
  background: #fff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.85);
}

.splash__percent {
  font-size: 36px;
  line-height: 1;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}

.splash__caption {
  font-size: 28px;
  color: rgba(255, 255, 255, 0.18);
}

.page-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(168, 85, 247, 0.35), transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(192, 38, 211, 0.25), transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(88, 28, 135, 0.35), transparent 60%),
    linear-gradient(180deg, #0a0717 0%, #090513 35%, #07040f 100%);
  z-index: -3;
}

.glow-grid {
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.25) 1px, transparent 0),
    radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 0);
  background-size: 120px 120px, 80px 80px;
  background-position: 0 0, 40px 60px;
  opacity: 0.15;
  z-index: -2;
  mix-blend-mode: screen;
}

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

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

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

.promo-bar {
  position: sticky;
  top: 0;
  z-index: 10;
  /* background: linear-gradient(90deg, rgba(163, 230, 53, 0.35), rgba(34, 197, 94, 0.25)); */
  background: #D1FE17;
  border-bottom: 1px solid rgba(163, 230, 53, 0.4);
  backdrop-filter: blur(12px);
}

.promo-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 0;
}

.promo-bar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.promo-bar__label {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #000;
}

.promo-bar__badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(12, 6, 24, 0.164);
  color: #000;
}

.promo-bar__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(10, 6, 20, 0.6);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.promo-bar__close:hover {
  border-color: rgba(255, 255, 255, 0.45);
}

.promo-bar.is-closed {
  display: none;
}

.site-header {
  position: sticky;
  top: var(--promo-offset);
  z-index: 9;
  backdrop-filter: blur(14px);
  background: rgba(8, 5, 16, 0.7);
  border-bottom: 1px solid rgba(168, 85, 247, 0.15);
  transition: transform 0.28s ease;
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - var(--promo-offset)));
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.35);
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 500;
}

.nav__menu a {
  opacity: 0.85;
}

.nav__menu a:hover {
  opacity: 1;
}

.nav__highlight {
  color: #caff61;
  font-weight: 700;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav__toggle span {
  width: 28px;
  height: 2px;
  background: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn--primary {
  background: linear-gradient(135deg, #8b5cf6, #d946ef 70%);
  color: white;
  box-shadow: 0 16px 35px rgba(139, 92, 246, 0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 45px rgba(139, 92, 246, 0.45);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.25);
  color: white;
  background: rgba(16, 10, 28, 0.6);
}

.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn--pulse {
  position: relative;
}

.btn--pulse::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.35), transparent 70%);
  opacity: 0.6;
  animation: pulse 2.6s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  70% { transform: scale(1.08); opacity: 0; }
  100% { opacity: 0; }
}

.hero {
  padding: 90px 0 70px;
  position: relative;
  z-index: 1;
  transform-origin: center top;
  transition: transform 0.18s linear, opacity 0.18s linear;
}

.hero__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 50px;
  align-items: center;
}

.eyebrow {
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #d2b8ff;
  margin-bottom: 16px;
}

h1 {
  /* font-family: "Playfair Display", serif; */
  font-size: clamp(36px, 4vw, 58px);
  margin: 0 0 20px;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.hero__bullets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin: 22px 0;
  color: #f0e8ff;
  grid-auto-rows: 1fr;
}

.hero__bullet {
  min-height: 108px;
  padding: 14px 16px;
  background: rgba(20, 10, 35, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(168, 85, 247, 0.2);
  display: grid;
  align-content: start;
  gap: 10px;
}

.hero__bullet .fa {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #e8d4ff;
  background: rgba(168, 85, 247, 0.22);
  border: 1px solid rgba(168, 85, 247, 0.35);
}

.hero__bullet span {
  display: block;
  line-height: 1.3;
  text-wrap: balance;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__note {
  margin-top: 18px;
  font-size: 14px;
  color: #d0c5e9;
}

.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
}

.phone-mock {
  width: min(320px, 70vw);
  aspect-ratio: 9 / 16;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(30, 17, 52, 0.9), rgba(12, 6, 22, 0.95));
  border: 2px solid rgba(168, 85, 247, 0.6);
  box-shadow: 0 40px 80px rgba(75, 29, 146, 0.45);
  position: relative;
  overflow: hidden;
}

.phone-mock__screen {
  position: absolute;
  inset: 18px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(12, 6, 24, 0.9));
  display: grid;
  place-items: center;
  overflow: hidden;
}

.phone-mock .badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: linear-gradient(135deg, #facc15, #f97316);
  color: #1f0a03;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
}

.phone-mock__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  pointer-events: none;
}

.mock-actions {
  position: absolute;
  right: 12px;
  top: 40%;
  display: grid;
  gap: 10px;
}

.mock-actions span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.stacked-cards {
  position: absolute;
  right: -40px;
  bottom: -40px;
  display: grid;
  gap: 14px;
}

.stacked-card {
  width: 180px;
  height: 110px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(12, 6, 22, 0.9));
  border: 1px solid rgba(168, 85, 247, 0.4);
  box-shadow: 0 20px 40px rgba(10, 5, 20, 0.35);
  overflow: hidden;
  position: relative;
}

.stacked-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.trust {
  padding: 44px 0 12px;
  margin-top: -34px;
  position: relative;
  z-index: 2;
}

.trust__inner {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  border: 1px solid rgba(168, 85, 247, 0.25);
  padding: 16px;
  border-radius: 16px;
  background: rgba(16, 10, 28, 0.65);
  box-shadow: 0 -18px 45px rgba(11, 6, 21, 0.55), 0 20px 45px rgba(11, 6, 21, 0.4);
}

.trust__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 600;
}

.trust__item .fa {
  color: #d6b4ff;
}

.trust__meta {
  margin-left: auto;
  color: var(--muted);
}

.section-head {
  margin-bottom: 30px;
}

.section-head h2 {
  font-size: clamp(28px, 3vw, 40px);
  margin: 0 0 14px;
  text-align: center;
}

.section-head p {
  color: var(--muted);
  text-align: center;
}

.examples {
  padding: 70px 0;
}

.examples__slider {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}

.examples__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 250px);
  gap: 16px;
  overflow-x: auto;
  padding: 6px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.examples__track::-webkit-scrollbar {
  height: 8px;
}

.examples__track::-webkit-scrollbar-thumb {
  background: rgba(168, 85, 247, 0.45);
  border-radius: 999px;
}

.examples__nav {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(10, 6, 20, 0.74);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.examples__nav:hover {
  border-color: rgba(217, 70, 239, 0.7);
}

.example-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(20, 10, 35, 0.9));
  border: 1px solid rgba(168, 85, 247, 0.25);
  aspect-ratio: 9 / 16;
  scroll-snap-align: start;
}

.example-card__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  pointer-events: auto;
}

.example-card__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(8, 8, 8, 0.5);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 28px;
  cursor: pointer;
  z-index: 3;
  opacity: 0.5;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.example-card__play:hover {
  opacity: 0.82;
  transform: translate(-50%, -50%) scale(1.04);
}

.example-card.is-playing .example-card__play {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.example-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 3, 12, 0.05), rgba(6, 3, 12, 0.62));
  pointer-events: none;
}

.example-card__tag {
  position: absolute;
  bottom: 14px;
  left: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(12, 6, 24, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 600;
  z-index: 2;
}

.section-foot {
  margin-top: 18px;
  color: var(--muted);
  text-align: center;
}

.benefits {
  padding: 70px 0;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.benefit {
  padding: 24px;
  background: var(--card);
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.benefit h3 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 0;
}

.benefit h3 .fa {
  color: #d9b9ff;
}

.audience {
  padding: 70px 0;
}

.audience__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.audience__block {
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(14, 9, 26, 0.7);
  box-shadow: 0 20px 45px rgba(8, 4, 16, 0.45);
}

.audience__block h3 {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.audience__block--good {
  border-color: rgba(74, 222, 128, 0.35);
  background: linear-gradient(145deg, rgba(20, 43, 32, 0.55), rgba(14, 9, 26, 0.85));
}

.audience__block--good h3 .fa {
  color: #4ade80;
}

.audience__block--bad {
  border-color: rgba(251, 113, 133, 0.35);
  background: linear-gradient(145deg, rgba(56, 21, 37, 0.55), rgba(14, 9, 26, 0.85));
}

.audience__block--bad h3 .fa {
  color: #fb7185;
}

.audience__block ul {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.5;
}

.bonus {
  padding: 70px 0;
}

.bonus__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: center;
  padding: 30px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(46, 16, 101, 0.8), rgba(10, 6, 20, 0.95));
  border: 1px solid rgba(168, 85, 247, 0.4);
}

.bonus__timer {
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 20% 0, rgba(168, 85, 247, 0.25), transparent 45%),
    rgba(11, 6, 21, 0.96);
  border: 1px solid rgba(217, 70, 239, 0.45);
  box-shadow: 0 24px 55px rgba(112, 26, 117, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.bonus__timer .timer__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 28px;
  font-weight: 800;
  color: #fff4ff;
  letter-spacing: 0.2px;
}

.bonus__timer .timer__label .fa {
  color: #f472b6;
}

.timer__digits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.timer__digits div {
  background: rgba(255, 255, 255, 0.06);
  padding: 10px 8px;
  border-radius: 12px;
  text-align: center;
}

.timer__digits span {
  font-size: 20px;
  font-weight: 700;
}

.timer__digits small {
  display: block;
  color: var(--muted);
  font-size: 11px;
}

.bonus__timer .timer__digits div {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.03));
  padding: 12px 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.bonus__timer .timer__digits span {
  font-size: 36px;
  line-height: 1;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 0 14px rgba(217, 70, 239, 0.45);
}

.bonus__timer .timer__digits small {
  margin-top: 4px;
  color: #d8c9f5;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.pricing {
  padding: 70px 0;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.price-card {
  padding: 26px;
  border-radius: 20px;
  background: rgba(12, 6, 24, 0.8);
  border: 1px solid rgba(168, 85, 247, 0.2);
  display: grid;
  gap: 16px;
}

.price-card--featured {
  border: 1px solid rgba(168, 85, 247, 0.7);
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(12, 6, 24, 0.9));
  box-shadow: 0 30px 60px rgba(85, 22, 143, 0.45);
}

.price-card__badge {
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #facc15, #f97316);
  color: #1f0a03;
  font-weight: 700;
  font-size: 12px;
}

.price {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.price__current {
  font-size: 28px;
  font-weight: 800;
}

.price__old {
  text-decoration: line-through;
  color: var(--muted);
}

.price__discount {
  padding: 4px 8px;
  border-radius: 8px;
  background: rgba(163, 230, 53, 0.2);
  color: #caff61;
  font-weight: 700;
  font-size: 12px;
}

.price-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.workflow {
  padding: 70px 0;
}

.workflow__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: steps;
}

.workflow__steps li {
  padding: 22px;
  border-radius: 18px;
  background: rgba(15, 8, 28, 0.8);
  border: 1px solid rgba(168, 85, 247, 0.2);
  position: relative;
  counter-increment: steps;
}

.workflow__steps li::before {
  content: counter(steps);
  position: absolute;
  top: -14px;
  left: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b5cf6, #d946ef);
  display: grid;
  place-items: center;
  font-weight: 700;
}

.safety {
  padding: 70px 0;
}

.safety__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  align-items: center;
  padding: 30px;
  border-radius: 24px;
  background: rgba(12, 6, 24, 0.8);
  border: 1px solid rgba(168, 85, 247, 0.3);
}

.safety__inner ul {
  padding-left: 20px;
  color: var(--muted);
}

.safety__badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.safety__badges div {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
}

.safety__badges .fa {
  color: #d9b9ff;
}

.quiz {
  padding: 80px 0;
}

.quiz .container {
  width: min(980px, 92vw);
}

.quiz__card {
  max-width: 980px;
  margin: 0 auto;
  padding: 28px;
  border-radius: 24px;
  background: rgba(8, 4, 14, 0.92);
  border: 1px solid rgba(168, 85, 247, 0.28);
  box-shadow: 0 30px 70px rgba(7, 3, 12, 0.6);
}

.quiz__progress {
  color: var(--muted);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.quiz__screen {
  display: none;
  gap: 16px;
}

.quiz__screen--active {
  display: grid;
}

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

#quizForm {
  max-width: 760px;
}

#quizForm .btn[type="submit"] {
  justify-self: start;
  min-width: 320px;
}

.quiz__options {
  display: grid;
  gap: 12px;
}

.quiz__options label {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: border 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.quiz__options label:hover {
  border-color: rgba(168, 85, 247, 0.5);
  background: rgba(168, 85, 247, 0.12);
  transform: translateY(-1px);
}

.quiz__options input {
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  position: relative;
  background: transparent;
}

.quiz__options input::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b5cf6, #d946ef);
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.2s ease;
}

.quiz__options input:checked {
  border-color: rgba(168, 85, 247, 0.8);
}

.quiz__options input:checked::before {
  transform: translate(-50%, -50%) scale(1);
}

.quiz__actions {
  display: flex;
  gap: 12px;
}

.quiz__bonus {
  margin: 0;
  padding-left: 20px;
}

.quiz__fine {
  color: var(--muted);
  font-size: 14px;
}

.quiz__urgency {
  padding: 16px;
  border-radius: 16px;
  background: rgba(168, 85, 247, 0.18);
  border: 1px solid rgba(168, 85, 247, 0.2);
}

.quiz__screen form label,
.quiz__screen label {
  display: grid;
  gap: 8px;
}

input,
select {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(10, 6, 20, 0.8);
  color: white;
  font-family: inherit;
}

.form-section {
  padding: 80px 0;
}

.form-section__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  align-items: start;
}

.form-section__bonus {
  margin-top: 20px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 20px;
  background: rgba(10, 6, 18, 0.92);
  border: 1px solid rgba(168, 85, 247, 0.28);
  box-shadow: 0 30px 60px rgba(8, 4, 16, 0.5);
}

.lead-form__timer {
  padding: 12px;
  border-radius: 12px;
  background: rgba(168, 85, 247, 0.15);
}

.lead-form label {
  grid-template-columns: minmax(160px, 1fr) minmax(180px, 1.2fr);
  align-items: center;
  gap: 14px;
  color: var(--muted);
}

.lead-form input,
.lead-form select {
  width: 100%;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(7, 4, 14, 0.9);
  color: #f3ecff;
  padding: 0 14px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.lead-form input::placeholder {
  color: rgba(243, 236, 255, 0.55);
}

.lead-form button {
  height: 52px;
  font-size: 16px;
}

.lead-form__timer {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(168, 85, 247, 0.18);
  border: 1px solid rgba(168, 85, 247, 0.2);
}

.lead-form__timer .timer__digits div {
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 700px) {
  .lead-form label {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

.fine {
  font-size: 12px;
  color: var(--muted);
}

.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.consent-field input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  margin: 2px 0 0;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 5px;
  border: 1.5px solid rgba(233, 201, 255, 0.65);
  background: rgba(10, 6, 20, 0.95);
  padding: 0;
  box-shadow: none;
  cursor: pointer;
  display: inline-grid;
  place-items: center;
}

.consent-field input[type="checkbox"]::before {
  content: "";
  width: 9px;
  height: 5px;
  border-left: 2px solid transparent;
  border-bottom: 2px solid transparent;
  transform: rotate(-45deg) scale(0);
  transform-origin: center;
  transition: transform 0.15s ease;
}

.consent-field input[type="checkbox"]:checked {
  background: linear-gradient(135deg, #8b5cf6, #d946ef);
  border-color: rgba(217, 70, 239, 0.95);
}

.consent-field input[type="checkbox"]:checked::before {
  border-left-color: #ffffff;
  border-bottom-color: #ffffff;
  transform: rotate(-45deg) scale(1);
}

.consent-field input[type="checkbox"]:focus-visible {
  outline: 2px solid rgba(217, 70, 239, 0.8);
  outline-offset: 2px;
}

.consent-field a {
  color: #e9c9ff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consent-field a:hover {
  color: #fff;
}

.faq {
  padding: 70px 0;
}

.faq__list {
  display: grid;
  gap: 12px;
}

.faq details {
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid rgba(168, 85, 247, 0.2);
  background: rgba(12, 6, 24, 0.7);
}

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

.final-cta {
  padding: 80px 0 110px;
}

.reveal-section {
  opacity: 0;
  transform: translateY(36px) scale(0.985);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

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

.final-cta__inner {
  text-align: center;
  padding: 40px 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(163, 230, 53, 0.15), rgba(168, 85, 247, 0.25));
  border: 1px solid rgba(163, 230, 53, 0.3);
}

.final-cta__badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(15, 7, 30, 0.7);
  color: #eaffb0;
  margin-bottom: 16px;
}

.site-footer {
  padding: 60px 0 30px;
  background: rgba(6, 4, 12, 0.9);
  border-top: 1px solid rgba(168, 85, 247, 0.2);
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}

.footer__grid h4 {
  margin-top: 0;
}

.footer__grid a {
  display: block;
  margin: 6px 0;
  color: var(--muted);
}

.footer__brand h3 {
  margin: 0 0 8px;
}

.footer__bottom {
  margin-top: 30px;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
}

.mobile-cta {
  position: fixed;
  bottom: 16px;
  left: 0;
  right: 0;
  display: none;
  justify-content: center;
  z-index: 10;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal.is-open {
  display: flex;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(4px);
}

.modal__panel {
  position: relative;
  width: min(520px, 96vw);
  border-radius: 24px;
  padding: 28px;
  background:
    radial-gradient(circle at 80% 0, rgba(217, 70, 239, 0.22), transparent 45%),
    rgba(11, 6, 21, 0.96);
  border: 1px solid rgba(168, 85, 247, 0.45);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
  display: grid;
  gap: 14px;
  text-align: center;
}

.modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(10, 6, 20, 0.62);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.modal__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  border-radius: 50%;
  border: 1px solid rgba(74, 222, 128, 0.65);
  background: rgba(74, 222, 128, 0.15);
  color: #4ade80;
  display: grid;
  place-items: center;
  font-size: 30px;
}

.modal__panel h3 {
  margin: 2px 0 0;
  font-size: 32px;
}

.modal__panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.btn.is-loading {
  opacity: 0.7;
  pointer-events: none;
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .stacked-cards {
    position: static;
    display: flex;
    justify-content: center;
    gap: 12px;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(8, 5, 16, 0.95);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 16px;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    min-width: 220px;
    display: none;
  }

  .nav__menu.is-open {
    display: flex;
  }

  .nav__cta {
    width: 100%;
    justify-content: center;
  }

  .trust__meta {
    margin-left: 0;
  }

  .mobile-cta {
    display: flex;
  }

  .trust {
    margin-top: -22px;
    padding-top: 30px;
  }

  .examples__slider {
    grid-template-columns: 1fr;
  }

  .examples__nav {
    display: none;
  }
}

@media (max-width: 600px) {
  .promo-bar__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 8px 0;
  }

  .promo-bar__label {
    font-size: 14px;
    gap: 8px;
    line-height: 1.2;
  }

  .promo-bar__badge {
    padding: 5px 9px;
    font-size: 14px;
  }

  .promo-bar__actions {
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
  }

  .promo-bar .btn--ghost {
    height: 40px;
    padding: 0 14px;
    font-size: 16px;
    flex: 1;
    min-width: 0;
  }

  .promo-bar__close {
    width: 40px;
    height: 40px;
    font-size: 28px;
    flex: 0 0 40px;
  }

  .hero {
    padding-top: 70px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .timer__digits {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  .timer__digits div {
    padding: 8px 4px;
    border-radius: 10px;
  }

  .timer__digits span {
    font-size: 18px;
  }

  .timer__digits small {
    font-size: 9px;
  }

  .bonus__timer .timer__label {
    font-size: 22px;
  }

  .bonus__timer .timer__digits span {
    font-size: 24px;
  }

  #quizForm {
    max-width: 100%;
  }

  #quizForm .btn[type="submit"] {
    min-width: 0;
    width: 100%;
    justify-self: stretch;
  }

  .trust {
    margin-top: -12px;
    padding-top: 22px;
  }

  .splash__logo-wrap {
    width: min(240px, 70vw);
  }

  .splash__percent {
    font-size: 28px;
  }

  .splash__caption {
    font-size: 20px;
    text-align: center;
  }

  .example-card__play {
    width: 58px;
    height: 58px;
    font-size: 22px;
  }

  .modal__panel {
    padding: 22px 16px;
    border-radius: 18px;
  }

  .modal__panel h3 {
    font-size: 26px;
  }
}

@media (max-width: 420px) {
  .promo-bar__label {
    font-size: 13px;
  }

  .promo-bar .btn--ghost {
    font-size: 14px;
    height: 36px;
    padding: 0 12px;
  }

  .promo-bar__close {
    width: 36px;
    height: 36px;
    font-size: 24px;
    flex-basis: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero {
    transition: none;
  }

  .reveal-section {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
