/* ============ VSL Landing — UZUM Consulting ============ */
:root {
  --bg: #0b0414;
  --bg-2: #150726;
  --card: linear-gradient(145deg, #2a0e47 0%, #1b0833 55%, #12051f 100%);
  --pink: #e879f9;
  --pink-deep: #c026d3;
  --gold-1: #ffedae;
  --gold-2: #f6cd60;
  --gold-3: #d9a33a;
  --text: #d8d2e4;
  --text-dim: #9a90b0;
  --metal: linear-gradient(180deg, #ffffff 0%, #eceaf2 45%, #b9b4c8 72%, #837d96 100%);
  --border-glow: rgba(232, 121, 249, 0.22);
  --radius: 24px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---- фоновое свечение ---- */
.glow-wrap {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}
.glow-wrap::before,
.glow-wrap::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
}
.glow-wrap::before {
  width: 620px; height: 620px;
  top: -180px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(192, 38, 211, 0.34), transparent 70%);
}
.glow-wrap::after {
  width: 720px; height: 720px;
  bottom: -260px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(124, 45, 189, 0.28), transparent 70%);
}

.container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- типографика ---- */
.display {
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.12;
  letter-spacing: 0.01em;
  background: var(--metal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 6px 24px rgba(0, 0, 0, 0.55));
}

h1.display { font-size: clamp(27px, 6vw, 46px); }
h2.display { font-size: clamp(21px, 4.6vw, 33px); }

.accent-pink {
  background: linear-gradient(180deg, #fbd3ff 0%, #ee83ff 45%, #b83ad1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subtitle {
  color: var(--text-dim);
  font-size: clamp(15px, 2.6vw, 18px);
  max-width: 560px;
  margin: 18px auto 0;
}
.subtitle strong { color: var(--text); font-weight: 700; }

/* ---- бейдж ---- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 999px;
  background: rgba(20, 8, 34, 0.85);
  border: 1px solid rgba(246, 205, 96, 0.45);
  box-shadow: 0 0 32px rgba(246, 205, 96, 0.12), inset 0 0 18px rgba(246, 205, 96, 0.06);
  font-family: "Unbounded", sans-serif;
  font-size: clamp(10px, 1.8vw, 12px);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-2);
  white-space: nowrap;
}

/* ---- мета-строка над видео ---- */
.meta-row {
  display: flex;
  justify-content: center;
  gap: clamp(28px, 8vw, 72px);
  margin-bottom: 26px;
}
.meta-item { text-align: center; }
.meta-item .label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 5px;
}
.meta-item .value {
  font-family: "Unbounded", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

/* ---- кнопки ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 38px;
  border-radius: 14px;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(11px, 2vw, 13px);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.btn-gold {
  background: linear-gradient(180deg, var(--gold-1) 0%, var(--gold-2) 55%, var(--gold-3) 100%);
  color: #2b1c05;
  box-shadow: 0 10px 40px rgba(246, 205, 96, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 52px rgba(246, 205, 96, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  filter: brightness(1.04);
}
.btn-ghost {
  background: rgba(16, 6, 30, 0.6);
  color: #e9e4f4;
  border: 1px solid rgba(232, 121, 249, 0.35);
}
.btn-ghost:hover {
  border-color: rgba(232, 121, 249, 0.7);
  transform: translateY(-2px);
}
.btn svg, .btn img { flex-shrink: 0; }

/* ---- hero: всё на одном экране ---- */
.hero {
  min-height: 96svh;
  display: flex;
  padding: 20px 0 12px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  /* безопасное вертикальное центрирование: при нехватке высоты
     контент прижимается к верху, а не уезжает за край экрана */
  margin-top: auto;
  margin-bottom: auto;
}
.hero-copy { text-align: left; }
.hero-copy .badge { margin-bottom: 24px; }
.hero-copy h1 { font-size: clamp(24px, 3.2vw, 38px); }
.hero-copy .subtitle { margin: 16px 0 0; }
.watch-line {
  margin-top: 26px;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(11px, 1.6vw, 13px);
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.8;
  text-transform: uppercase;
  color: var(--gold-2);
}
.watch-line b { color: #fff; font-weight: 700; }
.watch-line svg {
  display: inline-block;
  vertical-align: -1px;
  margin-right: 8px;
}

.hero-video {
  --vidw: min(290px, 34vh);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.video-frame {
  position: relative;
  width: var(--vidw);
  border-radius: 22px;
  padding: 5px;
  background: linear-gradient(160deg, rgba(232, 121, 249, 0.55), rgba(76, 20, 112, 0.55) 45%, rgba(246, 205, 96, 0.4));
  box-shadow: 0 24px 80px rgba(160, 32, 200, 0.28);
}
.video-frame .inner {
  border-radius: 18px;
  overflow: hidden;
  background: #0e0519;
}
wistia-player { border-radius: 18px; }
.btn-video {
  width: var(--vidw);
  padding: 17px 14px;
  font-size: 11px;
  letter-spacing: 0.12em;
}

/* ---- стрелка вниз ---- */
.arrow-down {
  display: flex;
  justify-content: center;
  padding: 38px 0 6px;
}
.arrow-down a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-decoration: none;
  animation: bounce 1.8s ease-in-out infinite;
}
.arrow-down svg { display: block; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(12px); }
}

/* ---- сравнение WB vs UZUM ---- */
.compare-section { padding: 48px 0 0; text-align: center; }
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 34px;
  text-align: left;
}
.compare-card {
  border-radius: var(--radius);
  padding: 28px 26px;
  background: var(--card);
  border: 1px solid var(--border-glow);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
}
.compare-card.win {
  border-color: rgba(246, 205, 96, 0.5);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45), 0 0 44px rgba(246, 205, 96, 0.1);
}
.compare-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.compare-head img {
  width: 42px; height: 42px;
  border-radius: 11px;
  display: block;
}
.compare-head .name {
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}
.compare-head .tag {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-top: 3px;
}
.compare-card .tag { color: #f87171; }
.compare-card.win .tag { color: var(--gold-2); }

.compare-card ul { list-style: none; }
.compare-card li {
  position: relative;
  padding: 9px 0 9px 28px;
  font-size: 14.5px;
  color: var(--text);
  border-bottom: 1px solid rgba(232, 121, 249, 0.1);
}
.compare-card li:last-child { border-bottom: 0; }
.compare-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 13px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}
.compare-card li.bad::before {
  background-color: rgba(248, 113, 113, 0.16);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M3 3l6 6M9 3l-6 6' stroke='%23f87171' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}
.compare-card li.good::before {
  background-color: rgba(246, 205, 96, 0.16);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6.5l2.5 2.5 4.5-5' stroke='%23f6cd60' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.compare-card li b { color: #fff; }

.compare-quote {
  margin: 30px auto 0;
  max-width: 620px;
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  font-size: clamp(14px, 2.6vw, 17px);
  line-height: 1.6;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
}
.compare-quote .accent-pink { font-weight: 800; }

/* ---- CTA карточка ---- */
.cta-section { padding: 56px 0 30px; }
.cta-card {
  position: relative;
  border-radius: 28px;
  padding: clamp(34px, 6vw, 56px) clamp(22px, 5vw, 56px);
  background:
    radial-gradient(120% 140% at 50% -20%, rgba(217, 70, 239, 0.28), transparent 55%),
    var(--card);
  border: 1px solid rgba(232, 121, 249, 0.3);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55), 0 0 70px rgba(192, 38, 211, 0.16);
  text-align: center;
  overflow: hidden;
}
.cta-card .badge { margin-bottom: 24px; }
.cta-card h2 { margin-bottom: 8px; }
.cta-sub {
  color: var(--text-dim);
  font-size: clamp(14px, 2.4vw, 16.5px);
  max-width: 540px;
  margin: 14px auto 0;
}
.cta-list {
  list-style: none;
  max-width: 480px;
  margin: 28px auto 0;
  text-align: left;
}
.cta-list li {
  position: relative;
  padding: 12px 0 12px 40px;
  font-size: clamp(14.5px, 2.4vw, 16.5px);
  font-weight: 600;
  color: #fff;
  border-bottom: 1px solid rgba(232, 121, 249, 0.12);
}
.cta-list li:last-child { border-bottom: 0; }
.cta-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 12px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background-color: rgba(246, 205, 96, 0.14);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6.5l2.5 2.5 4.5-5' stroke='%23f6cd60' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 13px;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid rgba(246, 205, 96, 0.35);
}
.cta-btn-wrap { margin-top: 34px; }
.cta-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-dim);
}

/* ---- футер ---- */
footer {
  margin-top: 40px;
  padding: 34px 0 44px;
  border-top: 1px solid rgba(232, 121, 249, 0.12);
  text-align: center;
}
footer .requisites {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.8;
}
footer a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}
footer a:hover { color: var(--pink); }
footer .copy {
  margin-top: 12px;
  font-size: 12px;
  color: #6d6482;
}

/* ---- thanks page ---- */
.thanks-hero {
  min-height: 82svh;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 50px 0 30px;
}
.thanks-hero > div {
  margin-top: auto;
  margin-bottom: auto;
}
.thanks-hero .badge { margin: 0 auto 28px; }
.thanks-steps {
  list-style: none;
  max-width: 460px;
  margin: 30px auto 0;
  text-align: left;
  counter-reset: step;
}
.thanks-steps li {
  position: relative;
  counter-increment: step;
  padding: 13px 0 13px 48px;
  font-size: clamp(14.5px, 2.4vw, 16.5px);
  color: var(--text);
  border-bottom: 1px solid rgba(232, 121, 249, 0.12);
}
.thanks-steps li:last-child { border-bottom: 0; }
.thanks-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0; top: 11px;
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Unbounded", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-2);
  background: rgba(246, 205, 96, 0.12);
  border: 1px solid rgba(246, 205, 96, 0.4);
}
.thanks-steps li b { color: #fff; }
.msg-pill {
  display: inline-block;
  margin-top: 6px;
  padding: 8px 16px;
  border-radius: 10px;
  background: rgba(232, 121, 249, 0.12);
  border: 1px dashed rgba(232, 121, 249, 0.45);
  color: #fbd3ff;
  font-weight: 700;
  font-size: 14px;
}

/* ---- policy page ---- */
.policy-content {
  padding: 60px 0 40px;
}
.policy-content h1 {
  font-size: clamp(22px, 4.5vw, 32px);
  margin-bottom: 10px;
}
.policy-content .updated {
  color: var(--text-dim);
  font-size: 14px;
  margin-bottom: 34px;
}
.policy-content h2 {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(15px, 2.6vw, 18px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  margin: 34px 0 12px;
}
.policy-content p, .policy-content li {
  font-size: 15.5px;
  color: var(--text);
  margin-bottom: 10px;
}
.policy-content ul { padding-left: 22px; }
.back-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--pink);
  text-decoration: none;
  font-weight: 700;
}
.back-link:hover { text-decoration: underline; }

/* ---- адаптив ---- */
@media (max-width: 900px) {
  .hero { min-height: auto; padding: 18px 0 8px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    justify-items: center;
  }
  .hero-copy { text-align: center; }
  .hero-copy .badge { margin-bottom: 16px; }
  .hero-copy h1 { font-size: clamp(19px, 5.4vw, 30px); }
  .hero-copy .subtitle {
    margin: 10px auto 0;
    font-size: 14px;
    max-width: 420px;
  }
  .watch-line { justify-content: center; margin-top: 14px; }
  .hero-video { --vidw: min(280px, 33vh); gap: 12px; }
  .watch-line { font-size: 10px; letter-spacing: 0.06em; white-space: nowrap; }
  .badge-year { display: none; }
  .sub-extra { display: none; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .compare-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; max-width: 420px; padding: 19px 20px; }
  .btn-video { width: min(420px, 92vw); padding: 16px 14px; }
  .badge {
    white-space: normal;
    text-align: center;
    line-height: 1.6;
    font-size: 9px;
    letter-spacing: 0.12em;
    padding: 8px 14px;
  }
  .arrow-down { padding: 26px 0 4px; }
  .compare-section { padding-top: 36px; }
}

/* низкие экраны: первый экран остаётся целиком видимым */
@media (max-width: 900px) and (max-height: 700px) {
  .hero-copy .subtitle { display: none; }
  .hero-copy h1 { font-size: clamp(17px, 4.8vw, 24px); }
  .hero-copy .badge { margin-bottom: 12px; }
  .watch-line { margin-top: 10px; }
  .hero-video { --vidw: min(230px, 30vh); }
}
