:root {
  --bg: #0b1020;
  --panel: #111833;
  --panel-2: #0f1530;
  --text: #e8ecf8;
  --muted: #aab3cf;
  --line: #243055;
  --accent: #ffd84d;
  --accent-dark: #b78d00;
  --success: #1fc77a;
  --danger: #ff6b6b;
  --max: 1120px;
  --radius: 18px;
  --shadow: 0 20px 60px rgba(0,0,0,.28);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 500px at 20% -10%, rgba(95,123,255,.18), transparent 60%),
    radial-gradient(1000px 500px at 100% 0%, rgba(255,216,77,.12), transparent 55%),
    var(--bg);
  line-height: 1.55;
}
a { color: inherit; }
.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.header {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(11,16,32,.72);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; min-height: 72px;
}
.brand {
  display: flex; align-items: center; gap: 12px; text-decoration: none;
  font-weight: 800; letter-spacing: .2px;
}
.brand-badge {
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #ffe98b, var(--accent));
  color: #1c1f29; font-weight: 900;
  box-shadow: 0 10px 24px rgba(255,216,77,.24);
}
.menu { display: flex; gap: 16px; flex-wrap: wrap; }
.menu a {
  text-decoration: none; color: var(--muted); font-weight: 600;
}
.menu a:hover, .menu a.active { color: var(--text); }
.btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 18px; border-radius: 14px;
  text-decoration: none; font-weight: 700; border: 1px solid transparent;
  transition: .2s ease;
}
.btn-primary {
  background: linear-gradient(180deg, #ffe37d, var(--accent));
  color: #1a1d24; box-shadow: 0 12px 28px rgba(255,216,77,.18);
}
.btn-primary:hover { transform: translateY(-1px); }
.btn-secondary {
  background: rgba(255,255,255,.04); color: var(--text); border-color: rgba(255,255,255,.08);
}
.btn-secondary:hover { background: rgba(255,255,255,.08); }
.hero { padding: 72px 0 28px; }
.hero-grid {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 28px; align-items: center;
}
.hero-card, .panel {
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.hero-copy { padding: 38px; }
.kicker {
  display: inline-flex; padding: 8px 12px; border-radius: 999px;
  background: rgba(255,216,77,.12); color: #ffe798; font-weight: 700; font-size: 14px;
}
.hero h1 { font-size: clamp(34px, 5vw, 58px); line-height: 1.05; margin: 18px 0 16px; }
.hero p { color: var(--muted); font-size: 18px; margin: 0 0 22px; }
.hero-note { margin-top: 14px; color: var(--muted); font-size: 14px; }
.hero-side { padding: 26px; }
.side-list { display: grid; gap: 14px; }
.side-item {
  display: flex; gap: 12px; align-items: flex-start; padding: 14px;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.05); border-radius: 14px;
}
.side-icon { font-size: 22px; }
section { padding: 32px 0; }
.section-title { font-size: clamp(28px, 3.8vw, 42px); margin: 0 0 10px; }
.section-sub { color: var(--muted); margin: 0 0 24px; }
.grid-4, .grid-3, .grid-2 { display: grid; gap: 18px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  padding: 22px; border-radius: 18px; background: var(--panel);
  border: 1px solid rgba(255,255,255,.06);
}
.card h3 { margin: 0 0 10px; font-size: 20px; }
.card p, .card li { color: var(--muted); }
.steps .step-num {
  width: 34px; height: 34px; border-radius: 999px; display: grid; place-items: center;
  background: rgba(255,216,77,.14); color: #ffe798; font-weight: 800; margin-bottom: 10px;
}
.tariff {
  position: relative; overflow: hidden;
}
.tariff::after {
  content: ""; position: absolute; inset: auto -40px -40px auto; width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(255,216,77,.10), transparent 70%);
}
.price { font-size: 34px; font-weight: 900; margin: 10px 0 14px; }
.tariff ul { padding-left: 18px; margin: 0 0 18px; }
.muted { color: var(--muted); }
.list-clean { margin: 0; padding-left: 18px; }
.notice {
  padding: 18px 20px; border-radius: 16px; background: rgba(255,216,77,.08);
  border: 1px solid rgba(255,216,77,.16); color: #ffe798;
}
.faq-item { padding: 18px 0; border-top: 1px solid rgba(255,255,255,.08); }
.faq-item:first-child { border-top: 0; }
.faq-item h4 { margin: 0 0 6px; font-size: 18px; }
.doc {
  padding: 42px 0 70px;
}
.doc .panel { padding: 34px; }
.doc h1 { margin: 0 0 16px; font-size: clamp(32px, 4.5vw, 48px); }
.doc h2 { margin-top: 34px; font-size: 24px; }
.doc p, .doc li { color: var(--muted); }
.doc ul { padding-left: 20px; }
.doc strong { color: var(--text); }
.footer {
  margin-top: 42px; padding: 28px 0 44px; border-top: 1px solid rgba(255,255,255,.06);
}
.footer-grid { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 14px; flex-wrap: wrap; color: var(--muted); }
.small { font-size: 14px; color: var(--muted); }
.status-ok { color: #93ffd1; }
.status-bad { color: #ffb0b0; }
.cta-band {
  padding: 28px; border-radius: 20px; background: linear-gradient(135deg, rgba(255,216,77,.14), rgba(95,123,255,.14));
  border: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 960px) {
  .hero-grid, .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .menu { display: none; }
  .nav { align-items: flex-start; padding: 14px 0; }
  .btns { width: 100%; }
  .btn { flex: 1 1 auto; }
}



.pay-badges { display:flex; gap:10px; flex-wrap:wrap; margin-top:12px; align-items:center; }
.pay-logo { display:inline-flex; align-items:center; }
.pay-logo svg { display:block; height:28px; width:auto; }

.brand-logo { display:block; width: 210px; height: auto; }
.footer-logo { display:block; width: 170px; height: auto; margin-bottom: 8px; }
.pay-badges { display:flex; gap:10px; flex-wrap:wrap; margin-top:12px; align-items:center; }
.pay-logo.real {
  display:inline-flex; align-items:center; justify-content:center;
  min-width: 96px; min-height: 38px; padding: 6px 10px;
  border-radius: 12px; background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 6px 18px rgba(0,0,0,.14);
}
.pay-logo.real img { display:block; max-height: 24px; width:auto; }
.pay-logo.real img[alt="СБП"] { max-height: 32px; }
@media (max-width: 960px) {
  .brand-logo { width: 180px; }
  .footer-logo { width: 150px; }
}


.hero-mobile-hide { display: inline-flex; }
.doc h1 { overflow-wrap: anywhere; hyphens: auto; }
@media (max-width: 640px) {
  .hero-mobile-hide { display: none; }
  .doc h1 { font-size: 30px; line-height: 1.15; }
}
