:root {
  --bg: #07060c;
  --bg-soft: #0c0a14;
  --bg-card: #110e1c;
  --bg-card-2: #181426;
  --border: #241f38;
  --border-strong: #352d52;
  --text: #ece9f5;
  --muted: #968fb0;
  --muted-2: #6a6285;
  --accent: #a855f7;
  --accent-2: #c084fc;
  --accent-soft: rgba(168, 85, 247, .14);
  --accent-soft-2: rgba(168, 85, 247, .26);
  --danger: #ff6b6b;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow: 0 8px 32px rgba(0, 0, 0, .55);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(900px 500px at 85% -10%, rgba(168, 85, 247, .12), transparent 60%),
    radial-gradient(700px 400px at -10% 30%, rgba(192, 132, 252, .07), transparent 60%);
  background-attachment: fixed;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(7, 6, 12, .78);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -.01em;
  color: var(--text);
}
.brand b { color: var(--accent); font-weight: 700; }
.brand__icon {
  width: 26px; height: 26px;
  color: var(--accent);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav__links a {
  position: relative;
  padding: 10px 16px;
  font-size: 15px;
  color: var(--muted);
  border-radius: 10px;
  transition: color .15s, background .15s;
}
.nav__links a:hover { color: var(--text); background: var(--bg-card); }
.nav__links a.active {
  background: var(--accent-soft);
  color: var(--accent);
}
.nav__actions { display: flex; align-items: center; gap: 10px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .12s, background .15s, border-color .15s, box-shadow .15s;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn--lg { padding: 14px 22px; font-size: 15px; border-radius: 12px; }
.btn--lg svg { width: 18px; height: 18px; }
.btn--primary {
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 6px 22px rgba(168, 85, 247, .35);
}
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 10px 30px rgba(168, 85, 247, .45); }
.btn--secondary {
  background: var(--bg-card);
  color: var(--text);
  border-color: var(--border-strong);
}
.btn--secondary:hover { background: var(--bg-card-2); border-color: #4a3f6e; }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn--ghost:hover { background: var(--bg-card); }

/* ---------- Hero ---------- */
.hero { padding: 60px 0 48px; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: start;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid var(--accent-soft-2);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(168, 85, 247, .6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(168, 85, 247, .6); }
  70%  { box-shadow: 0 0 0 8px rgba(168, 85, 247, 0); }
  100% { box-shadow: 0 0 0 0 rgba(168, 85, 247, 0); }
}

.hero__brandline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 28px 0 20px;
}
.hero__brandIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--accent);
}
.hero__brandIcon svg { width: 24px; height: 24px; }
.hero__brandTitle { font-weight: 600; font-size: 17px; }
.hero__brandSub { color: var(--muted); font-size: 14px; }

.hero__title {
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1.05;
  letter-spacing: -.02em;
  font-weight: 800;
  margin: 0 0 22px;
}
.hero__lead {
  color: var(--muted);
  font-size: 17px;
  max-width: 560px;
  margin: 0 0 32px;
}
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__legal {
  margin: 14px 0 0;
  font-size: 13px;
  color: var(--muted-2);
  max-width: 560px;
}
.hero__legal a { color: var(--muted); border-bottom: 1px dashed var(--border-strong); transition: color .15s, border-color .15s; }
.hero__legal a:hover { color: var(--accent); border-color: var(--accent); }

/* ---------- Status widget (live) ---------- */
.status {
  margin-top: 36px;
  padding: 18px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 560px;
}
.status__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.status__label {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.status__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: .04em;
  font-weight: 500;
  color: var(--muted);
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  transition: color .15s, border-color .15s, background .15s;
}
.status__badge .dot { background: var(--muted); box-shadow: none; animation: none; }
.status__badge--ok { color: #5cf0c2; border-color: rgba(92, 240, 194, .3); background: rgba(92, 240, 194, .08); }
.status__badge--ok .dot {
  background: #5cf0c2;
  box-shadow: 0 0 0 0 rgba(92, 240, 194, .6);
  animation: pulse 2s infinite;
}
@keyframes status-ok-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(92, 240, 194, .6); }
  70%  { box-shadow: 0 0 0 8px rgba(92, 240, 194, 0); }
  100% { box-shadow: 0 0 0 0 rgba(92, 240, 194, 0); }
}
.status__badge--ok .dot { animation: status-ok-pulse 2s infinite; }
.status__badge--err { color: #ffaeae; border-color: rgba(255, 107, 107, .35); background: rgba(255, 107, 107, .08); }
.status__badge--err .dot { background: #ff6b6b; }

.status__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.status__cell {
  padding: 12px 14px;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.status__cellLbl {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 4px;
}
.status__cellVal {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.status__foot {
  margin-top: 12px;
  font-size: 11px;
  color: var(--muted-2);
  text-align: right;
}

/* ---------- Buy card (real form, replaces panel) ---------- */
.buy-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}
.buy-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.buy-card__title { display: flex; align-items: center; gap: 12px; }
.buy-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--accent);
}
.buy-card__icon svg { width: 18px; height: 18px; }
.buy-card__name { font-weight: 600; font-size: 15px; }
.buy-card__sub { color: var(--muted); font-size: 13px; }

.buy-form { display: flex; flex-direction: column; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field__label { font-size: 13px; color: var(--muted); font-weight: 500; }
.field__opt { color: var(--muted-2); font-weight: 400; }
.field__row {
  display: flex;
  align-items: center;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0 14px;
  transition: border-color .15s;
}
.field__row:focus-within { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.field__prefix, .field__suffix { color: var(--muted); font-size: 15px; padding: 0 4px; }
.field__input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--text);
  font-size: 15px;
  padding: 12px 4px;
  font-family: inherit;
}
.field__input::placeholder { color: var(--muted-2); }
/* Standalone inputs (direct children of .field, not nested in field__row) */
.field > input.field__input,
.field > select.field__input {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color .15s;
}
.field > input.field__input:focus,
.field > select.field__input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
  outline: 0;
}
.field__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23968fb0' stroke-width='2' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.field__hint { font-size: 12px; color: var(--muted-2); }
.field__input[type="number"]::-webkit-outer-spin-button,
.field__input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.buy-form__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  color: var(--muted);
}
.buy-form__price { color: var(--accent); font-weight: 700; font-size: 18px; }
.buy-form__submit { justify-content: center; width: 100%; }
.buy-form__error {
  background: rgba(255, 107, 107, .08);
  border: 1px solid rgba(255, 107, 107, .35);
  color: #ffaeae;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
}

/* ---------- Invoice ---------- */
.invoice { display: flex; flex-direction: column; gap: 12px; }
.invoice__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.invoice__num { font-weight: 600; font-size: 15px; }
.invoice__timer {
  font-size: 12px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
}
.invoice__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
  color: var(--muted);
}
.invoice__row b { color: var(--text); font-weight: 600; }
.invoice__row--big { font-size: 15px; padding: 8px 0 4px; border-top: 1px dashed var(--border); margin-top: 4px; }
.invoice__row--big b { color: var(--accent); font-size: 18px; }
.invoice__addr { display: flex; flex-direction: column; gap: 6px; }
.invoice__addrLbl { font-size: 13px; color: var(--muted); }
.invoice__addrBox {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.invoice__addrBox code {
  flex: 1;
  font-size: 12px;
  color: var(--text);
  word-break: break-all;
  font-family: 'Inter', monospace;
}
.invoice__copy { padding: 6px 12px; font-size: 12px; }
.invoice__warn {
  font-size: 12px;
  color: var(--muted);
  background: var(--accent-soft);
  border: 1px solid var(--accent-soft-2);
  border-radius: 10px;
  padding: 10px 12px;
}
.invoice__status {
  text-align: center;
  padding: 12px;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  color: var(--muted);
}
.invoice__status--ok {
  background: rgba(31, 219, 166, .08);
  border-color: rgba(31, 219, 166, .35);
  color: #5cf0c2;
}
.invoice__status--err {
  background: rgba(255, 107, 107, .08);
  border-color: rgba(255, 107, 107, .35);
  color: #ffaeae;
}
.invoice__actions { display: flex; gap: 10px; }
.invoice__actions .btn { flex: 1; justify-content: center; }

/* ---------- Hero panel (right) ---------- */
.hero__right { position: sticky; top: 96px; }
.panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}
.panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.panel__title { display: flex; align-items: center; gap: 12px; }
.panel__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--accent);
}
.panel__icon svg { width: 18px; height: 18px; }
.panel__name { font-weight: 600; font-size: 15px; }
.panel__sub { color: var(--muted); font-size: 13px; }
.tag {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  color: var(--accent);
}

.panel__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.tile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 14px;
  color: var(--text);
  transition: border-color .15s, background .15s;
}
.tile:hover { border-color: var(--border-strong); }
.tile__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  color: var(--accent);
}
.tile__icon svg { width: 18px; height: 18px; }

.panel__list {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
}
.panel__listHead {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--text);
}
.panel__listHead svg { width: 16px; height: 16px; color: var(--accent); }
.panel__list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.panel__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}

.panel__hint {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 14px 16px;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 13px;
  color: var(--muted);
}
.panel__hint svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }

/* ---------- Features under hero ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 40px;
}
.feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
}
.feature__head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 8px;
}
.feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  color: var(--accent);
}
.feature__icon svg { width: 18px; height: 18px; }
.feature p { color: var(--muted); font-size: 14px; margin: 0; }

/* ---------- Sections ---------- */
.section { padding: 80px 0; }
.section--alt { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section__head { max-width: 680px; margin: 0 auto 40px; text-align: center; }
.section__head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -.02em;
  margin: 0 0 12px;
}
.section__head p { color: var(--muted); margin: 0; font-size: 16px; }

/* ---------- Payments ---------- */
.pay-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.pay {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color .15s, transform .15s;
}
.pay:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.pay__chip {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: 14px;
}
.pay__chip--ton  { background: rgba(120, 130, 255, .16); color: #a8b2ff; }
.pay__chip--usdt { background: rgba(168, 85, 247, .16); color: #d4a5ff; }
.pay__name { font-weight: 600; font-size: 16px; margin-bottom: 4px; }
.pay__net { color: var(--muted); font-size: 13px; }
.pay--more {
  border-style: dashed;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.step {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.step__num {
  font-size: 13px;
  letter-spacing: .18em;
  color: var(--accent);
  margin-bottom: 14px;
  font-weight: 600;
}
.step h3 { margin: 0 0 8px; font-size: 18px; letter-spacing: -.01em; }
.step p { color: var(--muted); margin: 0; font-size: 14px; }
.step a { color: var(--accent); }

/* ---------- FAQ ---------- */
.faq {
  display: grid;
  gap: 10px;
  max-width: 820px;
  margin: 0 auto;
}
.faq details {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  transition: border-color .15s;
}
.faq details[open] { border-color: var(--border-strong); }
.faq summary {
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  color: var(--accent);
  font-size: 22px;
  font-weight: 300;
  transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { color: var(--muted); margin: 12px 0 0; font-size: 14px; }

/* ---------- CTA ---------- */
.cta {
  padding: 80px 0;
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(168, 85, 247, .18), transparent 70%),
    var(--bg);
}
.cta__inner {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta h2 { margin: 0 0 8px; font-size: 28px; letter-spacing: -.02em; }
.cta p { color: var(--muted); margin: 0; }
.cta__btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
  padding: 56px 0 24px;
  margin-top: 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 40px;
  padding-bottom: 32px;
}
.footer__brand p { color: var(--muted); margin: 14px 0 0; font-size: 14px; max-width: 320px; }
.footer__cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.footer__h {
  color: var(--muted-2);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer__cols a {
  display: block;
  color: var(--text);
  font-size: 14px;
  padding: 4px 0;
  transition: color .15s;
}
.footer__cols a:hover { color: var(--accent); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--muted-2);
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Packages ---------- */
.packages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.pack {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .15s, transform .15s;
}
.pack:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.pack--popular { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent-soft-2), 0 12px 32px rgba(168, 85, 247, .22); }
.pack__badge {
  position: absolute;
  top: -10px;
  left: 24px;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.pack__name { color: var(--muted); font-size: 13px; letter-spacing: .04em; text-transform: uppercase; }
.pack__stars { font-size: 28px; font-weight: 700; letter-spacing: -.01em; }
.pack__price { color: var(--accent); font-size: 16px; font-weight: 600; }
.pack__list {
  list-style: none;
  margin: 4px 0 12px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.pack__list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
}
.pack__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.pack .btn { justify-content: center; }
.section__note {
  color: var(--muted-2);
  font-size: 13px;
  text-align: center;
  margin: 28px auto 0;
  max-width: 760px;
}

/* ---------- Info grid (delivery, refund) ---------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.info {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
}
.info__h {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 8px;
}
.info__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  color: var(--accent);
}
.info__icon svg { width: 18px; height: 18px; }
.info p { color: var(--muted); font-size: 14px; margin: 0; }

/* ---------- Contacts ---------- */
.contacts {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.contacts--two { grid-template-columns: 1fr 1fr; max-width: 880px; margin: 0 auto; }
.contacts__col {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.contacts__h {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 14px;
}
.contacts__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contacts__list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contacts__lbl {
  color: var(--muted-2);
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.contacts__list a { color: var(--text); transition: color .15s; }
.contacts__list a:hover { color: var(--accent); }
.contacts__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(180deg, var(--bg-card-2), var(--bg-card));
  border-color: var(--border-strong);
}
.contacts__cta h3 { margin: 0; font-size: 22px; letter-spacing: -.01em; }
.contacts__cta p { color: var(--muted); margin: 0 0 4px; font-size: 14px; }
.contacts__cta .btn { justify-content: center; }

/* ---------- Document pages ---------- */
.doc {
  padding: 60px 0 80px;
}
.doc__inner {
  max-width: 820px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 52px;
}
.doc h1 { font-size: 32px; letter-spacing: -.02em; margin: 0 0 8px; }
.doc__meta { color: var(--muted-2); font-size: 13px; margin-bottom: 28px; }
.doc h2 { font-size: 20px; letter-spacing: -.01em; margin: 28px 0 10px; }
.doc h3 { font-size: 16px; margin: 18px 0 8px; }
.doc p, .doc li { color: var(--muted); font-size: 15px; line-height: 1.65; }
.doc ul, .doc ol { padding-left: 22px; }
.doc li { margin-bottom: 6px; }
.doc a { color: var(--accent); }
.doc__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
  transition: color .15s;
}
.doc__back:hover { color: var(--accent); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 28px; }
  .hero__right { position: static; }
  .features { grid-template-columns: 1fr; }
  .pay-grid { grid-template-columns: repeat(2, 1fr); }
  .packages { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: 1fr; }
  .contacts { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: repeat(3, 1fr); }
  .nav__links { display: none; }
}
@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .hero { padding: 36px 0 24px; }
  .panel__grid { grid-template-columns: 1fr; }
  .pay-grid { grid-template-columns: 1fr; }
  .packages { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr; }
  .cta__inner { padding: 28px; }
  .doc__inner { padding: 28px 24px; }
  .nav__actions .btn:not(.btn--primary) { display: none; }
}
