/* ═══════════════════════════════════════════════════════════════════
   QUANTUM SYSTEM · VSL Landing
   Палитра: ночь + горы + tech-grid + ярко-зелёный CTA
   ═══════════════════════════════════════════════════════════════════ */

:root {
  --ink-deep: #0a1421;
  --ink: #0d1a2c;
  --ink-2: #142540;
  --ink-3: #1a2d4a;
  --line: #1f3454;
  --line-soft: #2a4368;

  --green: #22c55e;
  --green-bright: #4ade80;
  --green-deep: #16a34a;

  --cyan: #00d4ff;
  --cyan-soft: #5ee0ff;
  --cyan-dim: rgba(0, 212, 255, 0.12);

  --white: #ffffff;
  --cream: #f1f5f9;
  --dim: #94a3b8;
  --dim-2: #64748b;
  --red: #ef4444;
  --amber: #f59e0b;

  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --maxw: 760px;
  --radius: 6px;
  --radius-lg: 12px;
  --radius-xl: 18px;

  --shadow-cta: 0 10px 30px rgba(34, 197, 94, 0.35), 0 4px 12px rgba(34, 197, 94, 0.2);
  --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.6), 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* ═══════════════════════════════════════════════════════════════════
   RESET
   ═══════════════════════════════════════════════════════════════════ */

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--white);
  background: var(--ink-deep);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; }

/* ═══════════════════════════════════════════════════════════════════
   BACKDROP — горы + grid + vignette (фиксированно за всем контентом)
   ═══════════════════════════════════════════════════════════════════ */

.backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bd-mountains {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bd-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: center top;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0.1) 100%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0.1) 100%);
}

.bd-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0, 212, 255, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse 100% 60% at 50% 100%, rgba(5, 11, 20, 0.95) 0%, transparent 60%);
}

/* ═══════════════════════════════════════════════════════════════════
   PAGE — VSL-каноническая 1 колонка по центру
   ═══════════════════════════════════════════════════════════════════ */

.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: clamp(1.2rem, 4vw, 2.5rem) 0 2rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.wrap {
  width: min(100%, var(--maxw));
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 1.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 1.8rem);
}

/* ═══════════════════════════════════════════════════════════════════
   BRAND
   ═══════════════════════════════════════════════════════════════════ */

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding-top: 0.4rem;
}

.brand-mark {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 11px;
  overflow: hidden;
  box-shadow:
    0 6px 20px rgba(34, 197, 94, 0.35),
    0 2px 6px rgba(0, 0, 0, 0.3);
}
.brand-mark svg { width: 100%; height: 100%; display: block; }

.brand-name {
  font-weight: 700;
  font-size: clamp(1.5rem, 3.5vw, 1.9rem);
  letter-spacing: -0.01em;
  color: var(--white);
}

/* ═══════════════════════════════════════════════════════════════════
   HEADLINE
   ═══════════════════════════════════════════════════════════════════ */

.headline {
  font-weight: 800;
  font-size: clamp(1.55rem, 4.5vw, 2.4rem);
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--cyan);
  text-align: center;
  text-shadow: 0 0 24px rgba(0, 212, 255, 0.25);
  max-width: 22ch;
  padding: 0 0.5rem;
  text-wrap: balance;
}

/* ═══════════════════════════════════════════════════════════════════
   VSL PLAYER — 16:9 заглушка с play-кнопкой → спиннер
   ═══════════════════════════════════════════════════════════════════ */

.vsl {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card), 0 0 40px rgba(0, 212, 255, 0.08);
  border: 1px solid var(--line);
  cursor: pointer;
}

.vsl-video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
  pointer-events: none;  /* клік проходить на .vsl-toggle button */
}

/* Єдина кнопка play/pause поверх відео — pure visual, click handler на .vsl */
.vsl-toggle {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}
.vsl-toggle:focus-visible { outline: 2px solid var(--green); outline-offset: -4px; }

.vsl-icon {
  width: clamp(64px, 14vw, 90px);
  height: clamp(64px, 14vw, 90px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 220ms ease, transform 220ms ease;
}
.vsl-icon svg { width: 100%; height: 100%; display: block; }

.vsl-icon-play {
  filter: drop-shadow(0 8px 24px rgba(34, 197, 94, 0.45));
}
.vsl-icon-pause {
  position: absolute;
  opacity: 0;  /* схована за замовчуванням, показується на hover при playing */
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.55));
}

.vsl-toggle:hover .vsl-icon-play { transform: scale(1.05); }
.vsl-toggle:active .vsl-icon-play { transform: scale(0.96); }

/* Стани через data-state на .vsl */
.vsl[data-state="playing"] .vsl-icon-play { opacity: 0; pointer-events: none; }
.vsl[data-state="playing"] .vsl-icon-pause { opacity: 0; }
.vsl[data-state="playing"] .vsl-toggle:hover .vsl-icon-pause { opacity: 1; }

.vsl[data-state="idle"] .vsl-icon-play { opacity: 1; }
.vsl[data-state="idle"] .vsl-icon-pause { opacity: 0; }

/* ═══════════════════════════════════════════════════════════════════
   URGENCY — лайв «онлайн» + «свободных мест»
   ═══════════════════════════════════════════════════════════════════ */

.urgency {
  width: 100%;
  display: flex;
  gap: 0.7rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0.2rem 0 0.4rem;
}
.urg-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  font-size: 0.86rem;
  color: var(--cream);
  font-weight: 500;
  white-space: nowrap;
}
.urg-item strong {
  color: var(--white);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  margin-left: 0.15rem;
}
.urg-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.55);
  animation: urgDot 1.8s ease-in-out infinite;
}
@keyframes urgDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.55); }
  50% { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
}
.urg-warn { color: var(--amber); font-size: 1rem; line-height: 1; }
.urg-slots strong { color: var(--amber); }
.urg-pulse { animation: urgChange 0.55s ease-out; }
@keyframes urgChange {
  0% { transform: scale(1); }
  40% { transform: scale(1.22); color: #fca5a5; }
  100% { transform: scale(1); }
}

/* URGENCY MODAL — «осталось 5 мест» */
.urgency-box {
  text-align: center;
  padding: 2rem 1.7rem 1.7rem;
  border: 1px solid rgba(245, 158, 11, 0.55);
  box-shadow: var(--shadow-card), 0 0 48px rgba(245, 158, 11, 0.22);
}
.urg-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  margin-bottom: 1.1rem;
  background: linear-gradient(90deg, var(--amber) 0%, #fbbf24 100%);
  color: #1f2937;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  animation: pulseBadge 1.4s ease-in-out infinite;
}
.urgency-box h3 {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.9rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.urgency-box > p {
  font-size: 0.94rem;
  color: var(--cream);
  line-height: 1.55;
  margin-bottom: 1.4rem;
}

/* ═══════════════════════════════════════════════════════════════════
   FORM
   ═══════════════════════════════════════════════════════════════════ */

.lead-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.ff-field { display: flex; }

.ff-field input[type="text"],
.ff-field input[type="email"],
.ff-field input[type="tel"] {
  width: 100%;
  height: 56px;
  padding: 0 1.1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #1f2937;
  font-size: 1rem;
  font-weight: 400;
  transition: border-color 180ms ease, box-shadow 180ms ease;
  -webkit-appearance: none;
}
.ff-field input::placeholder {
  color: #9ca3af;
  font-weight: 400;
}
.ff-field input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}
.ff-field.error input {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.18);
}

/* Phone field with flag */
.ff-phone {
  position: relative;
  display: flex;
  align-items: stretch;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.ff-phone:focus-within {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}
.ff-phone.error {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.18);
}
.ff-phone.error input[type="tel"] {
  box-shadow: none;
  border: none;
}
.ff-phone input[type="tel"] {
  border: none;
  height: 54px;
  flex: 1;
  background: transparent;
  padding: 0 1.1rem 0 0.3rem;
  min-width: 0;
}
.ff-phone input[type="tel"]:focus { box-shadow: none; }

.ff-flag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 0 0 1.1rem;
  background: transparent;
  border-right: none;
  flex-shrink: 0;
}
.ff-flag-img {
  width: 32px;
  height: 22px;
  border-radius: 3px;
  overflow: hidden;
  display: inline-block;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}
.ff-flag-img svg { width: 100%; height: 100%; display: block; }
.ff-flag-code {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1f2937;
}

/* ═══════════════════════════════════════════════════════════════════
   CTA — главный зелёный баттон
   ═══════════════════════════════════════════════════════════════════ */

.cta {
  width: 100%;
  padding: 1.2rem 1.4rem;
  background: linear-gradient(180deg, var(--green-bright) 0%, var(--green) 100%);
  color: var(--white);
  border: 1px solid var(--green-deep);
  border-radius: var(--radius);
  font-weight: 800;
  font-size: clamp(0.95rem, 2.6vw, 1.1rem);
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.25;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 200ms ease, background 200ms ease;
  box-shadow: var(--shadow-cta);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(34, 197, 94, 0.45), 0 6px 16px rgba(34, 197, 94, 0.25);
  background: linear-gradient(180deg, #5cf494 0%, var(--green-bright) 100%);
}
.cta:active { transform: translateY(0); }

.cta-md {
  font-size: 0.95rem;
  padding: 0.95rem 1.3rem;
  text-transform: none;
  letter-spacing: 0.01em;
}

/* ═══════════════════════════════════════════════════════════════════
   TRUST BADGES — 5 SVG-бейджей (2+2+1)
   ═══════════════════════════════════════════════════════════════════ */

.trust {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 1.5rem 0 0.5rem;
  align-items: center;
}

.tr-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: clamp(1.2rem, 4vw, 2.5rem);
  width: 100%;
  max-width: 480px;
}
.tr-row-single { justify-content: center; }

.tr-item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.tr-item img {
  height: clamp(28px, 6vw, 36px);
  width: auto;
  max-width: 140px;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
  /* Белая «трастовая плашка» — все бренды читаются одинаково */
  background: var(--white);
  padding: 6px 12px;
  border-radius: 4px;
  box-sizing: content-box;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

/* ═══════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════ */

.foot {
  width: 100%;
  padding: 1.5rem 0 0.5rem;
  text-align: center;
  color: var(--dim);
  font-size: 0.78rem;
  line-height: 1.5;
  border-top: 1px solid rgba(31, 52, 84, 0.7);
  margin-top: 0.5rem;
}
.foot p + p { margin-top: 0.3rem; }
.foot-legal { font-style: italic; opacity: 0.85; }

/* ═══════════════════════════════════════════════════════════════════
   MODALS — thanks / exit-confirm / post-timer
   (та же воронка что в ударе №02 Винкс, перепалитрена)
   ═══════════════════════════════════════════════════════════════════ */

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5, 11, 20, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 250ms ease, visibility 250ms ease;
}
.modal.open {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: linear-gradient(160deg, var(--ink-2) 0%, var(--ink) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 2.2rem 1.7rem;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-card);
  transform: scale(0.94);
  transition: transform 300ms cubic-bezier(0.2, 0.9, 0.3, 1.1);
}
.modal.open .modal-box { transform: scale(1); }

.modal-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin-bottom: 1.3rem;
}
.modal-logo .brand-mark {
  width: 44px;
  height: 44px;
}
.modal-brand {
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: -0.01em;
}

.thanks-warning {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.95rem 1.05rem;
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.12) 0%, rgba(0, 212, 255, 0.08) 100%);
  border: 1px solid rgba(34, 197, 94, 0.4);
  border-radius: var(--radius-lg);
  text-align: left;
}
.thanks-warning p {
  font-size: 0.9rem;
  color: var(--cream);
  line-height: 1.5;
  margin: 0;
}
.thanks-warning strong { color: var(--green-bright); font-weight: 700; }
.tw-icon {
  font-size: 1.2rem;
  line-height: 1;
  margin-top: 0.1rem;
  filter: drop-shadow(0 0 6px rgba(34, 197, 94, 0.6));
  flex-shrink: 0;
}

.countdown {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  margin: 0.4rem auto 1.2rem;
  padding: 0.9rem 1.4rem;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.16) 0%, rgba(0, 212, 255, 0.12) 100%);
  border: 1px solid rgba(34, 197, 94, 0.45);
  border-radius: var(--radius-lg);
  min-width: 220px;
}
.countdown.urgent {
  border-color: var(--red);
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.28) 0%, rgba(239, 68, 68, 0.14) 100%);
}
.cd-lab {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
  font-weight: 600;
}
.countdown.urgent .cd-lab { color: var(--cream); }
.cd-time {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--green-bright);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  text-shadow: 0 0 16px rgba(74, 222, 128, 0.45);
  animation: cdPulse 1s ease-in-out infinite;
}
.countdown.urgent .cd-time {
  color: #fca5a5;
  text-shadow: 0 0 20px rgba(239, 68, 68, 0.6);
}
@keyframes cdPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.02); opacity: 0.92; }
}

.thanks-lead {
  font-size: 0.92rem;
  color: var(--cream);
  line-height: 1.55;
  margin-bottom: 1.4rem;
}
.thanks-lead strong { color: var(--white); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.92rem;
  cursor: pointer;
  transition: border-color 200ms ease, color 200ms ease;
}
.btn-outline:hover { border-color: var(--green); color: var(--green-bright); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.3rem;
  background: transparent;
  color: var(--dim);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: color 200ms ease, border-color 200ms ease;
}
.btn-ghost:hover { color: var(--cream); border-color: var(--dim); }

/* Exit-confirm и post-timer — поверх thanks */
.modal-stack {
  z-index: 220;
  background: rgba(5, 11, 20, 0.92);
}
.modal.dimmed .modal-box {
  opacity: 0;
  transform: scale(0.92);
  pointer-events: none;
}

.exit-box {
  text-align: left;
  padding: 2rem 1.7rem 1.7rem;
  border: 1px solid rgba(245, 158, 11, 0.5);
  box-shadow: var(--shadow-card), 0 0 44px rgba(245, 158, 11, 0.18);
}
.exit-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--amber) 0%, #fbbf24 100%);
  color: #1f2937;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  animation: pulseBadge 1.4s ease-in-out infinite;
}
@keyframes pulseBadge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(245, 158, 11, 0); }
}
.exit-box h3 {
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--white);
  margin-bottom: 0.7rem;
  line-height: 1.25;
  text-align: left;
  letter-spacing: -0.01em;
}
.exit-box > p {
  font-size: 0.92rem;
  color: var(--cream);
  line-height: 1.55;
  margin-bottom: 0.7rem;
  text-align: left;
}
.exit-box strong { color: var(--green-bright); }
.exit-hint {
  color: var(--dim);
  font-size: 0.83rem;
  margin-left: 0.1rem;
}
.exit-sub {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 1.3rem !important;
}
.exit-sub strong { color: var(--green-bright); }
.exit-actions {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.exit-actions .cta,
.exit-actions .btn-ghost { width: 100%; }

.post-box {
  text-align: center;
  padding: 2.2rem 1.7rem 1.7rem;
  border: 1px solid rgba(34, 197, 94, 0.55);
  box-shadow: var(--shadow-card), 0 0 48px rgba(34, 197, 94, 0.25);
}
.post-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  margin-bottom: 1.1rem;
  background: linear-gradient(90deg, var(--green-deep) 0%, var(--green-bright) 50%, var(--green-deep) 100%);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 6px 22px rgba(34, 197, 94, 0.45);
}
.post-box h3 {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.post-box > p {
  font-size: 0.95rem;
  color: var(--cream);
  line-height: 1.55;
  margin-bottom: 0.7rem;
}
.post-box strong { color: var(--green-bright); }
.post-wait {
  font-size: 1rem;
  margin-bottom: 1.4rem !important;
}
.post-wait strong { color: var(--white); }

/* ═══════════════════════════════════════════════════════════════════
   DESKTOP — увеличиваем размеры VSL и логотипа
   ═══════════════════════════════════════════════════════════════════ */

@media (min-width: 768px) {
  :root { --maxw: 720px; }
  .wrap { gap: 1.8rem; }
  .brand-mark { width: 56px; height: 56px; }
  .headline {
    max-width: 24ch;
    font-size: clamp(2rem, 3.4vw, 2.6rem);
  }
  .lead-form { max-width: 560px; }
  .trust { padding-top: 2rem; }
}

@media (min-width: 1024px) {
  :root { --maxw: 780px; }
  .page { padding: 3rem 0 3rem; }
  .wrap { gap: 2rem; }
  .lead-form { max-width: 600px; }
}

/* ═══════════════════════════════════════════════════════════════════
   MOBILE — компактируем, чтобы не было лишних скроллов
   ═══════════════════════════════════════════════════════════════════ */

@media (max-width: 480px) {
  .wrap { gap: 1.1rem; padding: 0 1rem; }
  .brand { padding-top: 0.2rem; }
  .brand-name { font-size: 1.4rem; }
  .bd-mountains {
    transform: scale(1.8);
    transform-origin: 50% 70%;
  }
  .headline {
    font-size: 1.45rem;
    padding: 0;
  }
  .ff-field input[type="text"],
  .ff-field input[type="email"],
  .ff-field input[type="tel"] { height: 52px; font-size: 1rem; }
  .ff-phone input[type="tel"] { height: 50px; }
  .cta {
    padding: 1.1rem 1rem;
    font-size: 0.92rem;
    line-height: 1.3;
  }
  .trust { gap: 1rem; padding: 1.2rem 0 0.4rem; }
  .tr-row { gap: 1.4rem; }
  .modal-box { padding: 1.8rem 1.3rem; }
  .cd-time { font-size: 2.3rem; }
}

/* ═══════════════════════════════════════════════════════════════════
   REDUCE MOTION
   ═══════════════════════════════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
  .vsl-ring { animation: none; border-top-color: rgba(255, 255, 255, 0.5); }
  .cd-time { animation: none; }
  .exit-badge { animation: none; }
}
