/* Оформление под GL Dream: тёмная база, фиолетово-синие градиенты */

:root {
  --bg: #07060f;
  --panel: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  --panel-solid: #0e0c1c;
  --line: rgba(255,255,255,0.08);
  --line-2: rgba(255,255,255,0.14);
  --text: #ffffff;
  --muted: #bdbbd4;
  --dim: #8d8ba8;
  --purple: #8b6dff;
  --blue: #5b8cff;
  --violet: #a78bfa;
  --grad: linear-gradient(135deg, #8b6dff, #5b8cff);
  --grad-text: linear-gradient(90deg, #a78bfa, #5b8cff, #8b6dff, #a78bfa);
  --ok: #16c47f;
  --warn: #f59e0b;
  --bad: #f87171;
  --radius: 24px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  line-height: 1.55;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 60px;
}
body::before, body::after {
  content: "";
  position: fixed;
  width: 620px; height: 620px;
  border-radius: 50%;
  filter: blur(30px);
  pointer-events: none;
  z-index: 0;
}
body::before { top: -260px; left: -180px; background: radial-gradient(circle, rgba(139,109,255,0.30), transparent 62%); }
body::after  { top: -220px; right: -200px; background: radial-gradient(circle, rgba(91,140,255,0.26), transparent 62%); }

h1, h2, h3 { font-family: "Unbounded", "Manrope", sans-serif; font-weight: 600; letter-spacing: -0.01em; }
a { color: var(--violet); text-decoration: none; }

/* ── Фоновый декор ── */
.scene { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; background: var(--violet); opacity: .5; filter: blur(.4px); }
.orb-1 { width: 7px; height: 7px; top: 18%; left: 21%; animation: drift 11s ease-in-out infinite; }
.orb-2 { width: 5px; height: 5px; top: 30%; left: 16%; background: var(--blue); animation: drift 14s ease-in-out infinite reverse; }
.orb-3 { width: 6px; height: 6px; top: 15%; right: 18%; animation: drift 13s ease-in-out infinite 1s; }
.orb-4 { width: 4px; height: 4px; top: 34%; right: 24%; background: var(--blue); animation: drift 16s ease-in-out infinite reverse 2s; }
@keyframes drift {
  0%, 100% { transform: translate(0, 0); opacity: .25; }
  50% { transform: translate(14px, -22px); opacity: .7; }
}
.box {
  position: absolute; top: 16%; font-size: 74px; line-height: 1;
  opacity: .22; filter: drop-shadow(0 16px 40px rgba(139,109,255,.6));
  animation: float-box 9s ease-in-out infinite;
}
.box-l { left: 2.5%; transform: rotate(-12deg); }
.box-r { right: 2.5%; animation-delay: 1.4s; transform: rotate(10deg); }
@keyframes float-box {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(-20px) rotate(6deg); }
}
@media (max-width: 1180px) { .box { display: none; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

.wrap { width: min(640px, calc(100% - 32px)); margin: 0 auto; position: relative; z-index: 1; }
.wrap.wide { width: min(1080px, calc(100% - 32px)); }

.grad-text {
  background: var(--grad-text);
  background-size: 300% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: grad 8s linear infinite;
}
@keyframes grad { to { background-position: 300% 0; } }

/* ── Шапка ── */
.topbar { position: sticky; top: 0; z-index: 60; backdrop-filter: blur(16px); background: rgba(7,6,15,0.72); border-bottom: 1px solid var(--line); margin-bottom: 34px; }
.topbar-in { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 0; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: inherit; }
.brand-mark { width: 42px; height: 42px; flex: none; display: grid; place-items: center; border-radius: 12px; font-family: "Unbounded", sans-serif; font-weight: 700; font-size: 15px; color: #fff; background: var(--grad); box-shadow: 0 10px 26px rgba(139,109,255,0.4); }
.brand strong { display: block; font-family: "Unbounded", sans-serif; font-size: 15px; line-height: 1.1; }
.brand small { color: var(--dim); font-size: 11px; text-transform: uppercase; letter-spacing: 0.09em; }
.topbar .pill { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--dim); border: 1px solid var(--line); background: rgba(255,255,255,0.04); padding: 7px 14px; border-radius: 100px; }
.topbar .pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 10px var(--ok); animation: pulse-dot 2.4s ease-in-out infinite; }
.top-badges { display: flex; align-items: center; gap: 10px; }
.top-badges .star { color: #f5b73d; font-size: 12px; }
.top-badges b { color: #f5b73d; }
.pill-wb { color: var(--muted) !important; }
.wb-mark {
  display: inline-grid; place-items: center; width: 26px; height: 26px; border-radius: 50%;
  background: var(--grad); color: #fff; font-size: 9px; font-weight: 800; letter-spacing: 0;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22,196,127,.55), 0 0 10px var(--ok); }
  50% { box-shadow: 0 0 0 5px rgba(22,196,127,0), 0 0 10px var(--ok); }
}

/* ── Заголовок страницы ── */
.hero { text-align: center; margin-bottom: 26px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--dim); border: 1px solid var(--line); background: rgba(255,255,255,0.04); padding: 7px 14px; border-radius: 100px; margin-bottom: 18px; }
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 10px var(--ok); }
h1 { font-size: clamp(28px, 5.4vw, 42px); line-height: 1.06; margin-bottom: 12px; }
h2 { font-size: 20px; margin-bottom: 16px; }
.sub { color: var(--muted); font-size: 16px; }
.hint { color: var(--dim); font-size: 13px; margin: 7px 0 0; }

/* ── Прогресс: три фазы ── */
.stepper { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 26px; flex-wrap: nowrap; }
.stp { display: inline-flex; align-items: center; gap: 10px; flex: none; }
.stp .num {
  width: 34px; height: 34px; flex: none; display: grid; place-items: center;
  border-radius: 50%; font-family: "Unbounded", sans-serif; font-weight: 600; font-size: 14px;
  color: var(--dim); border: 1px solid var(--line-2); background: rgba(255,255,255,0.03);
  transition: color .3s, border-color .3s, background .3s, box-shadow .3s, transform .3s;
}
.stp .lbl { font-size: 14px; font-weight: 600; color: var(--dim); transition: color .3s; white-space: nowrap; }
.stp.on .num {
  color: #fff; border-color: transparent; background: var(--grad);
  box-shadow: 0 0 0 4px rgba(139,109,255,0.16), 0 10px 24px rgba(139,109,255,0.4);
  animation: stp-pop .45s ease;
}
.stp.on .lbl { color: var(--violet); }
.stp.done .num { color: #fff; border-color: rgba(139,109,255,0.5); background: rgba(139,109,255,0.18); }
.stp.done .lbl { color: var(--muted); }
.stp-line { flex: 1 1 auto; min-width: 18px; max-width: 120px; height: 1px; background: var(--line-2); position: relative; overflow: hidden; }
.stp-line::after {
  content: ""; position: absolute; inset: 0; background: var(--grad);
  transform: scaleX(0); transform-origin: left; transition: transform .45s ease;
}
.stp-line.on::after { transform: scaleX(1); }
@keyframes stp-pop { 0% { transform: scale(.8); } 60% { transform: scale(1.12); } 100% { transform: scale(1); } }

/* ── Плашка доверия ── */
.trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 26px; }
.tr { display: flex; align-items: center; gap: 12px; }
.tr-ico {
  width: 42px; height: 42px; flex: none; display: grid; place-items: center; font-size: 18px;
  border-radius: 13px; background: rgba(255,255,255,0.04); border: 1px solid var(--line-2);
}
.tr b { display: block; font-size: 13.5px; }
.tr small { color: var(--dim); font-size: 12px; }

/* ── Карточки ── */
.card {
  padding: 26px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
  margin-bottom: 16px;
}
.card.enter { animation: card-in .42s cubic-bezier(.22,.9,.3,1) both; }
@keyframes card-in {
  from { opacity: 0; transform: translateY(14px) scale(.99); }
  to { opacity: 1; transform: none; }
}

.card-head { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.card-head h2 { margin: 0 0 2px; }
.card-ico {
  width: 46px; height: 46px; flex: none; display: grid; place-items: center; font-size: 21px;
  border-radius: 14px; background: rgba(139,109,255,0.14);
  border: 1px solid rgba(139,109,255,0.3);
  box-shadow: 0 8px 22px rgba(139,109,255,0.22);
}
.card-sub { color: var(--dim); font-size: 13.5px; margin: 0; }

label { display: block; font-weight: 700; margin: 0 0 8px; font-size: 14px; }

input[type=text], input[type=password], textarea, select {
  width: 100%; padding: 14px 16px; font-size: 15px; font-family: inherit;
  color: var(--text); background: rgba(0,0,0,0.3);
  border: 1px solid var(--line-2); border-radius: 14px; outline: none;
  transition: border-color .2s, box-shadow .2s;
}
input::placeholder, textarea::placeholder { color: #5f5d78; }
input:focus, textarea:focus, select:focus {
  border-color: var(--violet); box-shadow: 0 0 0 3px rgba(139,109,255,0.18);
}
textarea { resize: vertical; min-height: 92px; }
select option { background: var(--panel-solid); }

button {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  border: 0; border-radius: 14px; padding: 14px 22px; font: inherit; font-weight: 700;
  color: #fff; background: var(--grad); cursor: pointer;
  box-shadow: 0 14px 32px rgba(139,109,255,0.4);
  transition: transform .12s ease, box-shadow .2s ease, opacity .15s ease, border-color .2s;
}
button:hover:not(:disabled) { transform: translateY(-1px); }
button:disabled { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }
button.ghost { background: rgba(255,255,255,0.05); border: 1px solid var(--line-2); box-shadow: none; color: #fff; }
button.ghost:hover:not(:disabled) { border-color: var(--violet); }
button.wide { width: 100%; }
button.mini { padding: 10px 16px; font-size: 13px; border-radius: 11px; box-shadow: none; }
.row { display: flex; gap: 10px; margin-top: 20px; }
.row.tight { margin-top: 12px; }

/* ── Выбор товара ── */
.goods { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 14px; }
.good {
  position: relative; overflow: hidden;
  display: flex; align-items: center; gap: 14px;
  border: 1px solid var(--line); border-radius: 18px; padding: 16px;
  cursor: pointer; text-align: left; background: var(--panel);
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s;
  animation: good-in .4s cubic-bezier(.22,.9,.3,1) both;
  animation-delay: calc(var(--i, 0) * 60ms);
}
@keyframes good-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
.good::before {
  content: ""; position: absolute; top: -60px; right: -60px;
  width: 150px; height: 150px; border-radius: 50%; filter: blur(30px);
  background: radial-gradient(circle, rgba(139,109,255,0.5), transparent 65%);
  opacity: 0; transition: opacity .25s;
}
.good:hover { border-color: var(--line-2); transform: translateY(-3px); box-shadow: 0 22px 50px rgba(0,0,0,0.4); }
.good.sel { border-color: var(--violet); box-shadow: 0 0 0 1px rgba(139,109,255,.35), 0 18px 44px rgba(139,109,255,.16); }
.good.sel::before { opacity: 1; }

.good img { position: relative; width: 56px; height: 56px; flex: none; object-fit: contain; }
.good-emoji {
  position: relative; flex: none;
  width: 56px; height: 56px; display: grid; place-items: center; font-size: 26px;
  border-radius: 16px; background: rgba(255,255,255,0.04); border: 1px solid var(--line-2);
  transition: transform .25s ease, background .25s, border-color .25s;
}
.good:hover .good-emoji { transform: scale(1.06) rotate(-4deg); }
.good.sel .good-emoji { background: rgba(139,109,255,0.16); border-color: rgba(139,109,255,0.42); }

.good-body { position: relative; flex: 1; min-width: 0; }
.good-title { display: block; font-weight: 700; font-size: 14.5px; line-height: 1.3; }
.good-term {
  display: inline-block; margin-top: 8px;
  font-family: "Unbounded", sans-serif; font-weight: 600; font-size: 12px;
  white-space: nowrap; color: var(--violet);
  background: rgba(139,109,255,0.12); border: 1px solid rgba(139,109,255,0.28);
  padding: 4px 11px; border-radius: 100px;
}

.good-radio {
  position: relative; flex: none; width: 22px; height: 22px; border-radius: 50%;
  border: 1.5px solid var(--line-2); transition: border-color .25s, background .25s;
}
.good-radio::after {
  content: "✓"; position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 12px; font-weight: 800; color: #fff; opacity: 0; transform: scale(.5);
  transition: opacity .2s, transform .25s cubic-bezier(.3,1.5,.5,1);
}
.good.sel .good-radio { background: var(--grad); border-color: transparent; }
.good.sel .good-radio::after { opacity: 1; transform: scale(1); }

/* ── Найденные заказы ── */
.order {
  border: 1px solid var(--line); border-radius: 18px; padding: 18px 20px;
  cursor: pointer; margin-bottom: 12px; background: var(--panel);
  transition: border-color .2s, transform .2s;
}
.order:hover { border-color: var(--line-2); transform: translateY(-2px); }
.order.sel { border-color: var(--violet); background: linear-gradient(180deg, rgba(139,109,255,0.12), rgba(91,140,255,0.04)); }
.order b { display: block; margin-bottom: 5px; font-size: 15px; }
.order small { color: var(--dim); display: block; font-size: 13px; }

/* ── Код ── */
.code { display: flex; gap: 10px; justify-content: center; margin: 24px 0 8px; }
.code input {
  width: 50px; height: 62px; text-align: center; font-size: 26px; font-weight: 800;
  font-family: "Unbounded", sans-serif; padding: 0; border-radius: 15px;
}

/* ── Сообщения ── */
.msg { padding: 13px 16px; border-radius: 14px; font-size: 14px; margin-top: 16px; border: 1px solid transparent; }
.msg.err { background: rgba(248,113,113,0.1); border-color: rgba(248,113,113,0.28); color: #fca5a5; }
.msg.ok { background: rgba(22,196,127,0.1); border-color: rgba(22,196,127,0.28); color: #6ee7b7; }

.support { background: rgba(139,109,255,0.12); border: 1px solid rgba(139,109,255,0.28); border-radius: 18px; padding: 22px; margin-top: 16px; text-align: center; }
.support p { color: var(--muted); font-size: 15px; margin: 0 0 16px; }
.support-go, .support-vk {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; padding: 13px 24px; border-radius: 14px; font-size: 14.5px; cursor: pointer;
}
.support-go { color: #fff; background: var(--grad); border: 0; box-shadow: 0 14px 32px rgba(139,109,255,0.4); }
.support-vk {
  color: #fff; background: rgba(255,255,255,0.06); border: 1px solid var(--line-2);
  margin-left: 8px; transition: border-color .2s;
}
.support-vk:hover { border-color: var(--violet); }

/* Подсказка «напишите нам» прямо в тексте ошибки */
.msg-help {
  display: block; margin: 10px 0 0; padding: 0; background: none; border: 0; box-shadow: none;
  color: inherit; font-weight: 700; font-size: 13.5px; text-decoration: underline;
  text-underline-offset: 3px; opacity: .9; cursor: pointer;
}
.msg-help:hover:not(:disabled) { opacity: 1; transform: none; }

.top-help { box-shadow: none; padding: 8px 15px; font-size: 12.5px; }
@media (max-width: 980px) { .top-help { display: none; } }

/* ── Подсказки адресов ── */
.suggest-wrap { position: relative; }
.suggest {
  position: absolute; left: 0; right: 0; top: calc(100% + 6px); z-index: 20;
  background: var(--panel-solid); border: 1px solid var(--line-2); border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6); overflow: hidden;
}
.suggest div { padding: 13px 16px; cursor: pointer; font-size: 14px; color: var(--muted); transition: background .15s, color .15s; }
.suggest div:hover, .suggest div.on { background: rgba(139,109,255,0.14); color: #fff; }
.suggest div + div { border-top: 1px solid var(--line); }

/* ── Итог ── */
.done { text-align: center; }
.done .tick {
  width: 66px; height: 66px; border-radius: 20px; margin: 4px auto 18px;
  display: grid; place-items: center; font-size: 32px; color: #fff;
  background: linear-gradient(135deg, #16c47f, #0ea968);
  box-shadow: 0 14px 34px rgba(22,196,127,0.4);
}
.kv { text-align: left; margin-top: 20px; }
.kv div { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-top: 1px solid var(--line); }
.kv div:last-child { border-bottom: 1px solid var(--line); }
.kv span { color: var(--dim); flex-shrink: 0; font-size: 14px; }
.kv b { text-align: right; word-break: break-word; font-size: 14px; }

.give {
  background: linear-gradient(180deg, rgba(139,109,255,0.10), rgba(91,140,255,0.04));
  border: 1px solid var(--line-2); border-radius: 18px;
  padding: 22px; margin-top: 20px; text-align: left;
}
.give h2 { font-size: 17px; }
.give a { color: var(--violet); font-weight: 700; word-break: break-all; }
.give pre { white-space: pre-wrap; font: inherit; margin: 12px 0 0; color: var(--muted); font-size: 14.5px; }
.copy { display: flex; gap: 10px; align-items: center; }
.copy code {
  flex: 1; background: rgba(0,0,0,0.35); border: 1px solid var(--line-2);
  padding: 13px 15px; border-radius: 13px; font-size: 16px; font-weight: 700;
  color: #fff; word-break: break-all; letter-spacing: .5px;
}

.spin {
  display: inline-block; width: 15px; height: 15px; vertical-align: -2px;
  border: 2px solid rgba(255,255,255,.35); border-top-color: #fff; border-radius: 50%;
  animation: sp .7s linear infinite;
}
@keyframes sp { to { transform: rotate(360deg); } }
.hide { display: none !important; }

footer.site {
  margin-top: 34px; padding-top: 24px; border-top: 1px solid var(--line);
  color: #5f5d78; font-size: 12.5px; text-align: center;
}

/* ── Админка ── */
table { width: 100%; border-collapse: collapse; font-size: 14px; }
th, td { text-align: left; padding: 12px 10px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { color: var(--dim); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; }
.badge { display: inline-block; padding: 4px 12px; border-radius: 100px; font-size: 12px; font-weight: 700; border: 1px solid transparent; }
.badge.ok { background: rgba(22,196,127,0.14); border-color: rgba(22,196,127,0.3); color: #6ee7b7; }
.badge.err { background: rgba(248,113,113,0.12); border-color: rgba(248,113,113,0.3); color: #fca5a5; }
.badge.warn { background: rgba(245,158,11,0.14); border-color: rgba(245,158,11,0.34); color: #fcd34d; }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.scroll { overflow-x: auto; }

/* ── Входной экран (антибот) ── */
.gate {
  position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center;
  padding: 20px; background: radial-gradient(circle at 50% 28%, #16112e, #07060f 72%);
}
.gate.hidden { display: none; }
.gate-card {
  width: min(440px, 100%); text-align: center; background: var(--panel-solid);
  border: 1px solid var(--line-2); border-radius: 22px; padding: 36px 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6); animation: card-in .4s ease both;
}
.gate-mark { width: 56px; height: 56px; margin: 0 auto 18px; }
.gate-card h2 { font-size: 22px; margin-bottom: 8px; }
.gate-card p { color: var(--muted); font-size: 14.5px; margin-bottom: 22px; }
.gate-spinner {
  width: 34px; height: 34px; margin: 4px auto 2px; border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.14); border-top-color: var(--violet);
  animation: sp .8s linear infinite;
}
.gate-note { color: var(--dim); font-size: 12.5px; margin-top: 18px; }

/* ── Модалка ── */
.modal-scrim {
  position: fixed; inset: 0; z-index: 190; background: rgba(4,3,10,0.72);
  backdrop-filter: blur(6px); display: none; align-items: center; justify-content: center; padding: 18px;
}
.modal-scrim.show { display: flex; animation: fade-in .2s ease both; }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
.modal {
  width: min(560px, 100%); max-height: 88vh; overflow: auto; background: var(--panel-solid);
  border: 1px solid var(--line-2); border-radius: 22px; padding: 30px; position: relative;
  animation: card-in .35s cubic-bezier(.22,.9,.3,1) both;
}
.modal .x {
  position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; padding: 0;
  border-radius: 10px; border: 1px solid var(--line-2); background: rgba(255,255,255,0.05);
  color: #fff; font-size: 18px; box-shadow: none;
}
.modal h3 { font-size: 22px; margin-bottom: 8px; padding-right: 40px; }
.fraud .fico {
  width: 60px; height: 60px; display: grid; place-items: center; border-radius: 16px; font-size: 30px;
  background: rgba(245,158,11,0.14); border: 1px solid rgba(245,158,11,0.4); margin-bottom: 16px;
}
.fraud .lead { color: var(--muted); font-size: 15px; margin: 8px 0 16px; }
.fraud ul { list-style: none; display: grid; gap: 12px; margin: 0 0 22px; padding: 0; }
.fraud ul li {
  display: flex; gap: 11px; font-size: 14px; color: var(--muted);
  padding: 13px 15px; border-radius: 13px; background: rgba(255,255,255,0.03); border: 1px solid var(--line);
}
.fraud ul li b { color: #fff; }
.fraud .handle { color: var(--violet); font-weight: 800; }
.fraud-go {
  display: block; width: 100%; text-align: center; color: #fff; font-weight: 700;
  background: var(--grad); padding: 16px 26px; border-radius: 14px; font-size: 16px;
  box-shadow: 0 14px 32px rgba(139,109,255,0.4); transition: opacity .2s;
}
.fraud-go[aria-disabled="true"] { opacity: .5; pointer-events: none; }

/* ── Блок помощи ── */
.help {
  margin-top: 26px; padding: 22px; border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(139,109,255,0.10), rgba(91,140,255,0.04));
  border: 1px solid var(--line-2);
}
.help-head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.help-ico {
  width: 46px; height: 46px; flex: none; display: grid; place-items: center; font-size: 20px;
  border-radius: 14px; background: rgba(255,255,255,0.05); border: 1px solid var(--line-2);
}
.help-head b { display: block; font-size: 15px; }
.help-head small { color: var(--muted); font-size: 13px; }
.help-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.help-tg, .help-vk {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 18px; border-radius: 13px; font-weight: 700; font-size: 14.5px; cursor: pointer;
}
.help-tg { color: #fff; background: var(--grad); border: 0; box-shadow: 0 12px 28px rgba(139,109,255,0.35); }
.help-vk {
  color: #fff; background: rgba(255,255,255,0.05); border: 1px solid var(--line-2);
  transition: border-color .2s, transform .12s;
}
.help-vk:hover { border-color: var(--violet); transform: translateY(-1px); }
.hb-ico { font-size: 15px; }

/* ── Плавающая кнопка поддержки ── */
.fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 100;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 20px; border-radius: 100px; font-weight: 700; font-size: 14px;
  box-shadow: 0 16px 40px rgba(139,109,255,0.5);
  animation: fab-in .5s cubic-bezier(.3,1.4,.5,1) both .8s;
}
.fab:hover { transform: translateY(-2px); }
.fab-ico { font-size: 17px; }
@keyframes fab-in { from { opacity: 0; transform: translateY(20px) scale(.9); } to { opacity: 1; transform: none; } }
@media (max-width: 640px) {
  .fab { right: 14px; bottom: 14px; padding: 13px; }
  .fab-txt { display: none; }
  .help-btns { grid-template-columns: 1fr; }
}

/* ── Анимации элементов ── */
.code input { transition: border-color .2s, box-shadow .2s, transform .18s; }
.code input:focus { transform: translateY(-2px); }
.code input.filled { border-color: rgba(139,109,255,.5); background: rgba(139,109,255,.08); }

.order { animation: good-in .38s cubic-bezier(.22,.9,.3,1) both; animation-delay: calc(var(--i, 0) * 55ms); }

.done .tick { animation: tick-pop .55s cubic-bezier(.3,1.4,.5,1) both; }
@keyframes tick-pop {
  0% { transform: scale(.4) rotate(-18deg); opacity: 0; }
  60% { transform: scale(1.12) rotate(4deg); opacity: 1; }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}
.done .kv div { animation: good-in .4s ease both; animation-delay: calc(.15s + var(--i, 0) * 70ms); }
.give { animation: good-in .45s ease both .35s; }

.arr { display: inline-block; transition: transform .2s ease; }
button:hover:not(:disabled) .arr { transform: translateX(4px); }

@media (max-width: 980px) {
  .trust { grid-template-columns: repeat(2, 1fr); }
  .top-badges .pill:not(:first-child) { display: none; }
}
@media (max-width: 640px) {
  .grid2 { grid-template-columns: 1fr; }
  .code input { width: 44px; height: 56px; font-size: 22px; }
  .card { padding: 20px; }
  .topbar .pill { display: none; }
  .goods { grid-template-columns: 1fr; }
  .trust { grid-template-columns: 1fr; gap: 12px; }
  .stepper { gap: 6px; }
  .stp .lbl { display: none; }
  .stp-line { max-width: none; }
}
