/* ============ Mintik VPN: mint dark theme ============ */
:root {
  --bg: #040a08;
  --bg-soft: #060f0b;
  --surface: #0a1812;
  --surface-2: #0f221a;
  --border: #173024;
  --border-light: #275041;
  --mint: #34d399;
  --mint-bright: #6ee7b7;
  --mint-deep: #10b981;
  --mint-dark: #059669;
  --text: #e8f6ef;
  --text-muted: #8fb3a3;
  --danger: #f87171;
  --warn: #fbbf24;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
  --glow: 0 0 60px rgba(52, 211, 153, 0.15);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Unbounded', 'Manrope', sans-serif; line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(30px, 5vw, 56px); }
h2 { font-size: clamp(24px, 3.5vw, 38px); }
h3 { font-size: 18px; font-weight: 600; }
a { color: var(--mint-bright); text-decoration: none; }
p { color: var(--text-muted); }
b, strong { color: var(--text); }

.container { max-width: 1180px; margin: 0 auto; padding: 0 22px; }
.container-narrow { max-width: 820px; }
.center { text-align: center; }
.muted { color: var(--text-muted); font-size: 14px; }
.text-pos { color: var(--mint-bright); }
.text-neg { color: var(--danger); }

/* иконки lucide */
svg.lucide { width: 18px; height: 18px; stroke-width: 2; vertical-align: -3px; flex-shrink: 0; }

/* ---------- background glows ---------- */
.bg-glow {
  position: fixed; border-radius: 50%; filter: blur(140px); z-index: -1; pointer-events: none;
}
.bg-glow-1 { width: 520px; height: 520px; background: rgba(52, 211, 153, 0.06); top: -180px; right: -120px; }
.bg-glow-2 { width: 420px; height: 420px; background: rgba(16, 185, 129, 0.04); bottom: 10%; left: -160px; }

/* ---------- navbar ---------- */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(7, 20, 16, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 18px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 38px; height: 38px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--mint), var(--mint-dark));
  color: #06281c; box-shadow: 0 4px 18px rgba(52, 211, 153, 0.35);
}
.logo-mark svg.lucide { width: 21px; height: 21px; }
.logo-mark-lg { width: 54px; height: 54px; border-radius: 16px; }
.logo-mark-lg svg.lucide { width: 30px; height: 30px; }
.logo-mark-xl { width: 84px; height: 84px; border-radius: 24px; }
.logo-mark-xl svg.lucide { width: 46px; height: 46px; }
.logo-text { font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: 19px; color: var(--text); }
.logo-text em { font-style: normal; color: var(--mint); font-size: 12px; margin-left: 4px; vertical-align: 3px; }
.nav-links { display: flex; gap: 26px; }
.nav-links a { color: var(--text-muted); font-weight: 600; font-size: 14.5px; transition: color 0.2s; }
.nav-links a:hover { color: var(--mint-bright); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.burger { display: none; background: none; border: none; color: var(--text); cursor: pointer; padding: 6px; }
.burger svg.lucide { width: 26px; height: 26px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 20px; border-radius: 11px; border: 1px solid transparent;
  font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 14.5px;
  cursor: pointer; transition: all 0.2s ease; white-space: nowrap;
}
.btn-primary {
  background: #eafff5;
  color: #06281c;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}
.btn-primary:hover { background: #ffffff; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(52, 211, 153, 0.2); }
.btn-ghost {
  background: rgba(52, 211, 153, 0.08); color: var(--mint-bright);
  border-color: transparent;
}
.btn-ghost:hover { background: rgba(52, 211, 153, 0.15); border-color: transparent; }
.btn-danger { background: rgba(248, 113, 113, 0.12); color: var(--danger); }
.btn-danger:hover { background: rgba(248, 113, 113, 0.2); }
.btn-light { background: #eafff5; color: #06281c; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35); }
.btn-light:hover { background: #ffffff; transform: translateY(-1px); }
.btn-lg { padding: 13px 26px; font-size: 15px; }
.btn-sm { padding: 8px 14px; font-size: 13.5px; border-radius: 10px; }
.btn-block { width: 100%; }

/* ---------- cards ---------- */
.card {
  background: linear-gradient(160deg, var(--surface), var(--bg-soft));
  border-radius: var(--radius);
  padding: 26px;
  transition: transform 0.25s;
}

.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 11px; border-radius: 999px; font-size: 12.5px; font-weight: 700;
  background: var(--surface-2); color: var(--text-muted); white-space: nowrap;
}
.badge svg.lucide { width: 13px; height: 13px; }
.badge-mint { background: rgba(52, 211, 153, 0.14); color: var(--mint-bright); }
.badge-warn { background: rgba(251, 191, 36, 0.12); color: var(--warn); }
.badge-danger { background: rgba(248, 113, 113, 0.12); color: var(--danger); }
.badge-muted { opacity: 0.7; }

/* ---------- flash: мини-тосты сверху справа ---------- */
.flash-wrap {
  position: fixed; top: 82px; right: 18px; z-index: 300;
  display: flex; flex-direction: column; gap: 10px;
  max-width: 360px; width: calc(100% - 36px);
  padding: 0; margin: 0; pointer-events: none;
}
.flash {
  display: flex; align-items: center; gap: 9px; padding: 11px 14px;
  border-radius: 12px; font-weight: 600; font-size: 13.5px; line-height: 1.45;
  background: rgba(10, 24, 18, 0.92); backdrop-filter: blur(10px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.45);
  animation: toastIn 0.3s ease; pointer-events: auto;
  transition: opacity 0.4s, transform 0.4s;
}
@keyframes toastIn {
  from { opacity: 0; transform: translateX(24px); }
}
.flash.flash-hide { opacity: 0; transform: translateX(24px); }
.flash svg.lucide { width: 17px; height: 17px; flex-shrink: 0; }
.flash-success { color: var(--mint-bright); background: linear-gradient(160deg, rgba(16, 45, 33, 0.95), rgba(10, 24, 18, 0.95)); }
.flash-error { color: var(--danger); background: linear-gradient(160deg, rgba(45, 18, 18, 0.95), rgba(24, 10, 10, 0.95)); }
.flash-close { margin-left: auto; background: none; border: none; color: inherit; cursor: pointer; opacity: 0.6; padding: 2px; display: flex; }
.flash-close:hover { opacity: 1; }
.flash-close svg.lucide { width: 14px; height: 14px; }
@media (max-width: 480px) {
  .flash-wrap { top: 74px; right: 10px; }
}

/* ---------- hero ---------- */
.hero { padding: 84px 0 60px; position: relative; }
.hero-inner { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(52, 211, 153, 0.12);
  color: var(--mint-bright); padding: 8px 15px; border-radius: 999px;
  font-size: 13.5px; font-weight: 700; margin-bottom: 22px;
}
.hero h1 { margin-bottom: 20px; }
.grad-text {
  background: linear-gradient(90deg, var(--mint-bright), var(--mint), #a7f3d0);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { font-size: 17.5px; max-width: 520px; margin-bottom: 30px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 38px; flex-wrap: wrap; }
.hero-stat b { display: block; font-family: 'Unbounded', sans-serif; font-size: 26px; color: var(--mint-bright); }
.hero-stat span { font-size: 13px; color: var(--text-muted); font-weight: 600; }

.hero-card {
  background: linear-gradient(160deg, var(--surface-2), var(--bg-soft));
  border-radius: 22px; padding: 28px;
  box-shadow: var(--shadow), var(--glow);
}
.hero-card-head { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 15px; }
.hero-card-geo {
  margin-left: auto; display: flex; align-items: center; gap: 8px;
  font-size: 13.5px; color: var(--text-muted); font-weight: 700;
  transition: opacity 0.28s, transform 0.28s;
}
.geo-swap { opacity: 0; transform: translateY(-6px); }
.geo-flag { display: inline-flex; }
.geo-flag svg { display: block; border-radius: 4px; }
.flag { border-radius: 4px; display: inline-block; vertical-align: middle; }
.pulse-dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--mint); display: inline-block; flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6); animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}
.hero-card-speed { display: flex; gap: 22px; margin: 26px 0 20px; }
.hero-card-speed > div { flex: 1; }
.hero-card-speed svg.lucide { color: var(--mint); width: 16px; height: 16px; }
.hero-card-speed b {
  display: block; font-family: 'Unbounded', sans-serif; font-size: 24px; margin-top: 4px;
  font-variant-numeric: tabular-nums;
}
.hero-card-speed span { font-size: 12px; color: var(--text-muted); font-weight: 600; }
.hero-card-bars { display: flex; align-items: flex-end; gap: 7px; height: 90px; margin-bottom: 20px; }
.hero-card-bars span {
  flex: 1; border-radius: 6px 6px 2px 2px; min-height: 8px;
  background: linear-gradient(to top, rgba(52, 211, 153, 0.25), var(--mint));
  animation: barGrow 1s ease both;
  transition: height 0.7s cubic-bezier(0.45, 0, 0.2, 1);
}
@keyframes barGrow { from { transform: scaleY(0); transform-origin: bottom; } }
.hero-card-foot {
  display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted);
  border-top: 1px solid var(--border); padding-top: 16px; font-weight: 600;
}
.hero-card-foot svg.lucide { color: var(--mint); }

/* ---------- sections ---------- */
.section { padding: 72px 0; }
.section-alt { background: linear-gradient(180deg, transparent, rgba(10, 24, 18, 0.45), transparent); }
.page-section { padding: 48px 0 72px; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 46px; }
.section-tag {
  display: inline-block; font-size: 12.5px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--mint); margin-bottom: 12px;
}
.section-head p { margin-top: 12px; font-size: 16.5px; }

.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

/* features */
.feature-card:hover { transform: translateY(-4px); }
.feature-icon {
  width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  background: rgba(52, 211, 153, 0.1);
  color: var(--mint-bright); margin-bottom: 18px;
}
.feature-icon svg.lucide { width: 23px; height: 23px; }
.feature-card h3 { margin-bottom: 8px; }
.feature-card p { font-size: 14.5px; }

/* geo cards */
.geo-card:hover { transform: translateY(-4px); }
.geo-head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.geo-city { color: var(--text-muted); font-size: 13.5px; font-weight: 600; }
.geo-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.geo-status {
  display: flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 700; color: var(--warn);
  border-top: 1px solid var(--border); padding-top: 14px;
}
.geo-status .pulse-dot { background: var(--warn); animation: none; }

/* ---------- pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.pricing-grid-4 { grid-template-columns: repeat(4, 1fr); }
.price-card { display: flex; flex-direction: column; position: relative; padding: 24px 20px; text-align: center; }
.price-card:hover { transform: translateY(-4px); }
.price-featured { border-color: var(--mint); box-shadow: var(--glow); }
.price-flag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--mint), var(--mint-dark)); color: #06281c;
  font-size: 11.5px; font-weight: 800; padding: 4px 14px; border-radius: 999px; letter-spacing: 0.4px;
}
.price-name { font-weight: 800; font-size: 15px; margin-bottom: 10px; }
.price-value { font-family: 'Unbounded', sans-serif; font-size: 30px; font-weight: 700; color: var(--mint-bright); }
.price-period { color: var(--text-muted); font-size: 12.5px; font-weight: 600; margin: 6px 0 16px; }
.price-list { list-style: none; text-align: left; margin-bottom: 20px; flex: 1; }
.price-list li { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--text-muted); padding: 4px 0; font-weight: 600; }
.price-list svg.lucide { color: var(--mint); width: 15px; height: 15px; }
.pricing-note {
  text-align: center; margin-top: 28px; font-size: 14.5px; font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.pricing-note svg.lucide { color: var(--mint); }

/* ---------- steps ---------- */
.steps { display: flex; align-items: stretch; gap: 12px; margin-bottom: 34px; }
.step { flex: 1; background: var(--surface); border-radius: var(--radius); padding: 26px; text-align: center; }
.step-num {
  width: 42px; height: 42px; margin: 0 auto 16px; border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), var(--mint-dark)); color: #06281c;
  font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
}
.step h3 { margin-bottom: 8px; font-size: 16px; }
.step p { font-size: 14px; }
.step-arrow { display: flex; align-items: center; color: var(--mint); }
.apps-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.app-chip {
  display: flex; align-items: center; gap: 9px; padding: 12px 20px;
  background: var(--surface); border-radius: 999px;
  font-weight: 700; font-size: 14.5px;
}
.app-chip svg.lucide { color: var(--mint); }
.app-chip span { color: var(--text-muted); font-size: 12px; font-weight: 600; }

/* ---------- faq ---------- */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--surface); border-radius: var(--radius-sm);
  padding: 0 20px; overflow: hidden;
}
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 18px 0; cursor: pointer; font-weight: 700; font-size: 15.5px; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg.lucide { color: var(--mint); transition: transform 0.25s; }
.faq-item[open] summary svg.lucide { transform: rotate(180deg); }
.faq-item p { padding-bottom: 18px; font-size: 14.5px; }

/* ---------- cta ---------- */
.cta-banner {
  background: linear-gradient(160deg, var(--surface-2), var(--bg-soft));
  border-radius: 24px; padding: 36px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
}
.cta-banner h2, .cta-banner h3 { color: var(--text); }
.cta-banner p { color: var(--text-muted); font-weight: 600; margin-top: 6px; }
.cta-slim { padding: 30px 36px; margin-top: 34px; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--border); background: var(--bg-soft); }
.footer-inner { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.4fr 1fr; gap: 26px; padding: 38px 22px 26px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.footer-col h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 1px; color: var(--text); margin-bottom: 4px; }
.footer-col a { color: var(--text-muted); font-size: 14px; font-weight: 600; }
.footer-col a:hover { color: var(--mint-bright); }
.footer-brand p { font-size: 14px; max-width: 260px; }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 18px 22px;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  color: var(--text-muted); font-size: 13px;
}
.footer-note { opacity: 0.7; }

/* ---------- auth ---------- */
.auth-section { min-height: calc(100vh - 220px); display: flex; align-items: center; justify-content: center; padding: 60px 20px; }
.auth-card { width: 100%; max-width: 440px; padding: 38px; }
.auth-head { text-align: center; margin-bottom: 28px; }
.auth-head h1 { font-size: 26px; margin: 16px 0 8px; }
.auth-head p { font-size: 14.5px; }
.form { display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field span { font-weight: 700; font-size: 13.5px; }
input, select {
  background: var(--bg); border: none; border-radius: 12px;
  color: var(--text); padding: 14px 17px; font-family: 'Manrope', sans-serif; font-size: 15px; font-weight: 600;
  outline: none; transition: box-shadow 0.2s; width: 100%;
}
input:focus, select:focus { box-shadow: 0 0 0 2px rgba(52, 211, 153, 0.45); }
input::placeholder { color: #52705f; }
.form-terms { text-align: center; font-size: 12.5px; margin-top: 2px; }
.auth-alt { text-align: center; margin-top: 22px; font-size: 14.5px; color: var(--text-muted); font-weight: 600; }
.ref-note {
  display: flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 700; color: var(--mint-bright);
  background: rgba(52, 211, 153, 0.08);
  padding: 10px 14px; border-radius: var(--radius-sm);
}

/* ---------- cabinet ---------- */
.cab-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 28px; flex-wrap: wrap; }
.cab-head h1 { font-size: 28px; }
.cab-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.cab-card-wide { grid-column: 1 / -1; }
.cab-card-title {
  display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 16px; margin-bottom: 18px;
}
.cab-card-title svg.lucide { color: var(--mint); }
.sub-status { display: flex; align-items: center; gap: 13px; margin-bottom: 20px; }
.sub-status b { display: block; font-size: 16px; }
.sub-status .muted { display: block; }
.sub-inactive svg.lucide { color: var(--warn); width: 24px; height: 24px; }
.or-divider { text-align: center; color: var(--text-muted); font-size: 13px; font-weight: 700; margin: 12px 0; }
.balance-value { font-family: 'Unbounded', sans-serif; font-size: 36px; color: var(--mint-bright); margin-bottom: 12px; }
.balance-value span { font-size: 20px; }
.cab-card p.muted { margin-bottom: 16px; }

.copy-row {
  display: flex; align-items: center; gap: 10px; background: var(--bg);
  border-radius: var(--radius-sm); padding: 10px 14px; margin: 12px 0;
}
.copy-row code {
  flex: 1; font-size: 13px; color: var(--mint-bright); overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  font-family: 'SF Mono', Menlo, monospace;
}
.connect-grid { display: flex; gap: 26px; align-items: flex-start; margin-top: 16px; }
.connect-apps { flex: 1; }
.muted-label { display: block; font-size: 13px; color: var(--text-muted); font-weight: 700; margin-bottom: 10px; }
.app-links { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.app-link {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px;
  background: var(--surface-2); border-radius: 12px;
  color: var(--text); font-weight: 700; font-size: 14px; transition: all 0.2s;
}
.app-link:hover { background: rgba(52, 211, 153, 0.14); }
.app-link svg.lucide { color: var(--mint); }
.muted-link { color: var(--text-muted); font-size: 13.5px; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.muted-link:hover { color: var(--mint-bright); }
.connect-qr { text-align: center; }
.connect-qr img { width: 132px; height: 132px; border-radius: 12px; border: 4px solid #fff; }
.connect-qr .muted-label { margin-top: 8px; margin-bottom: 0; }

.stub-note, .doc-stub-note, .demo-banner {
  display: flex; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 600;
  color: var(--warn); background: rgba(251, 191, 36, 0.07);
  border-radius: var(--radius-sm);
  padding: 11px 15px; margin-top: 16px;
}
.demo-banner { margin: 0 0 22px; }

.loc-list { display: flex; flex-direction: column; gap: 10px; }
.loc-row { flex-direction: row; flex-wrap: wrap; }
.loc-row .loc-item { flex: 1; min-width: 180px; }
.loc-item {
  display: flex; align-items: center; gap: 12px; padding: 12px 14px;
  background: var(--bg); border-radius: 12px;
  cursor: pointer; transition: background 0.2s;
}
.loc-item:hover { background: var(--surface-2); }
.loc-item input { display: none; }
.loc-active { background: rgba(52, 211, 153, 0.12); }
.loc-item:has(input:checked) { background: rgba(52, 211, 153, 0.12); }
.loc-info { flex: 1; display: flex; flex-direction: column; line-height: 1.3; }
.loc-info b { font-size: 14.5px; }
.loc-info .muted { font-size: 12.5px; }

.ref-stats { display: flex; gap: 24px; margin-bottom: 14px; }
.ref-stats > div { flex: 1; text-align: center; background: var(--bg); border-radius: 12px; padding: 12px; }
.ref-stats b { display: block; font-family: 'Unbounded', sans-serif; font-size: 18px; color: var(--mint-bright); }
.ref-stats span { font-size: 12px; color: var(--text-muted); font-weight: 700; }

/* empty states */
.empty-state { text-align: center; padding: 34px 20px; }
.empty-state svg.lucide { width: 42px; height: 42px; color: var(--border-light); margin-bottom: 14px; }
.empty-state h3 { margin-bottom: 6px; font-size: 16px; }
.empty-state p { font-size: 14px; max-width: 360px; margin: 0 auto; }

/* tables */
.table-wrap { overflow-x: auto; }
.table { width: 100%; border-collapse: collapse; font-size: 14px; }
.table th {
  text-align: left; padding: 10px 12px; color: var(--text-muted); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.8px; border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.table td { padding: 12px; border-bottom: 1px solid rgba(28, 58, 45, 0.5); vertical-align: middle; }
.table tr:last-child td { border-bottom: none; }
.table .muted { display: block; }
.row-banned { opacity: 0.55; }

/* ---------- checkout / payment ---------- */
.back-link { display: inline-flex; align-items: center; gap: 7px; color: var(--text-muted); font-weight: 700; font-size: 14px; margin-bottom: 8px; }
.back-link:hover { color: var(--mint-bright); }
.checkout { display: flex; flex-direction: column; gap: 18px; }
.checkout-card h3 { display: flex; align-items: center; gap: 9px; margin-bottom: 16px; font-size: 16px; }
.checkout-card h3 svg.lucide { color: var(--mint); }
.promo-row { display: flex; gap: 10px; }
.promo-row input { flex: 1; text-transform: uppercase; }
.promo-applied { display: flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 600; color: var(--mint-bright); flex-wrap: wrap; }
.promo-applied span { color: var(--text-muted); }
.promo-applied b { color: var(--mint-bright); }
.method-list { display: flex; flex-direction: column; gap: 10px; }
.method-item {
  display: flex; align-items: center; gap: 14px; padding: 14px 16px;
  background: var(--bg); border-radius: 12px; cursor: pointer;
  transition: background 0.2s;
}
.method-item svg.lucide { color: var(--mint); width: 22px; height: 22px; }
.method-item input { display: none; width: auto; }
.method-item:has(input:checked) { background: rgba(52, 211, 153, 0.13); }
.method-disabled { opacity: 0.5; cursor: not-allowed; }
.total-rows { margin-bottom: 20px; }
.total-rows > div { display: flex; justify-content: space-between; padding: 8px 0; font-weight: 600; color: var(--text-muted); }
.total-discount { color: var(--mint-bright) !important; }
.total-discount span { color: var(--mint-bright); }
.total-final {
  border-top: 1px solid var(--border); margin-top: 8px; padding-top: 14px !important;
  font-size: 19px; font-weight: 800; color: var(--text) !important;
}
.total-final span:last-child { font-family: 'Unbounded', sans-serif; color: var(--mint-bright); }

.payment-card { max-width: 640px; margin: 0 auto; }
.payment-card h3 { margin-bottom: 10px; }
.sbp-qr { text-align: center; margin: 22px 0; }
.sbp-qr img { width: 210px; height: 210px; border-radius: 16px; border: 6px solid #fff; }
.card-visual {
  background: linear-gradient(135deg, var(--surface-2), var(--bg));
  border-radius: 16px; padding: 26px; margin: 20px 0 8px; max-width: 380px;
}
.card-visual-num { font-family: 'SF Mono', Menlo, monospace; font-size: 21px; letter-spacing: 2px; margin-bottom: 18px; }
.card-visual-row { display: flex; justify-content: space-between; color: var(--text-muted); font-weight: 700; font-size: 13px; }
.pay-hints { display: flex; flex-direction: column; gap: 8px; margin: 18px 0; }
.pay-hints div { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--text-muted); font-weight: 600; }
.pay-hints svg.lucide { color: var(--mint); flex-shrink: 0; }
.pay-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }

/* ---------- docs ---------- */
.doc-card { margin-bottom: 16px; }
.doc-card h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.doc-card h3 svg.lucide { color: var(--mint); }
.doc-card p { margin-bottom: 8px; font-size: 15px; }
.doc-list { padding-left: 22px; color: var(--text-muted); font-size: 15px; display: flex; flex-direction: column; gap: 7px; }
.doc-tip {
  display: flex; align-items: center; gap: 9px; margin-top: 14px; font-size: 13.5px; font-weight: 600;
  color: var(--mint-bright); background: rgba(52, 211, 153, 0.07); border-radius: var(--radius-sm); padding: 10px 14px;
}

/* ---------- 404 ---------- */
.notfound { text-align: center; max-width: 480px; }
.notfound-code {
  font-family: 'Unbounded', sans-serif; font-size: 110px; font-weight: 700; color: var(--mint);
  display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 10px;
}
.notfound h1 { font-size: 28px; margin-bottom: 12px; }
.notfound p { margin-bottom: 28px; }

/* ---------- admin ---------- */
.admin-wrap { padding: 36px 0 72px; }
.admin-shell { display: grid; grid-template-columns: 230px 1fr; gap: 28px; align-items: start; }
.admin-sidebar {
  position: sticky; top: 92px; background: var(--surface);
  border-radius: var(--radius); padding: 20px; display: flex; flex-direction: column; gap: 18px;
}
.admin-side-title { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 15px; }
.admin-side-title svg.lucide { color: var(--mint); }
.admin-nav { display: flex; flex-direction: column; gap: 4px; }
.admin-nav a {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 10px;
  color: var(--text-muted); font-weight: 700; font-size: 14px; transition: all 0.15s;
}
.admin-nav a:hover { color: var(--text); background: var(--surface-2); }
.admin-nav a.active { color: var(--mint-bright); background: rgba(52, 211, 153, 0.1); }
.admin-content { display: flex; flex-direction: column; gap: 20px; min-width: 0; }
.admin-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.admin-head h1 { font-size: 24px; }
.period-tabs { display: flex; gap: 4px; background: var(--surface); border-radius: 12px; padding: 4px; flex-wrap: wrap; }
.period-tabs a {
  padding: 7px 14px; border-radius: 9px; color: var(--text-muted); font-weight: 700; font-size: 13.5px;
}
.period-tabs a.active { background: rgba(52, 211, 153, 0.12); color: var(--mint-bright); }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat-card { padding: 20px; }
.stat-label { display: flex; align-items: center; gap: 8px; color: var(--text-muted); font-size: 13px; font-weight: 700; margin-bottom: 10px; }
.stat-label svg.lucide { color: var(--mint); width: 16px; height: 16px; }
.stat-value { font-family: 'Unbounded', sans-serif; font-size: 26px; font-weight: 700; color: var(--mint-bright); }
.stat-neg { color: var(--danger); }
.stat-sub { color: var(--text-muted); font-size: 12.5px; font-weight: 600; margin-top: 6px; }
.stat-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.chart-card h3 { margin-bottom: 16px; font-size: 16px; }
.load-bar { width: 90px; height: 7px; background: var(--bg); border-radius: 99px; overflow: hidden; margin-bottom: 4px; }
.load-bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--mint-dark), var(--mint)); border-radius: 99px; }
.srv-cell { display: flex; align-items: center; gap: 10px; }
.srv-cell .muted { display: inline; margin-left: 4px; }
.inline-form { display: flex; gap: 10px; flex-wrap: wrap; }
.inline-form input, .inline-form select { flex: 1; min-width: 140px; }
.inline-mini { display: inline-flex; gap: 6px; align-items: center; }
.inline-mini input { width: 68px; padding: 7px 10px; font-size: 13px; }
.actions-cell { display: flex; gap: 8px; align-items: center; white-space: nowrap; }
.search-form { display: flex; align-items: center; gap: 10px; background: var(--surface); border-radius: 12px; padding: 0 14px; }
.search-form svg.lucide { color: var(--text-muted); }
.search-form input { border: none; background: none; padding: 11px 0; min-width: 220px; }
.search-form input:focus { box-shadow: none; }
.pager { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 18px; }

/* ---------- новые секции лендинга ---------- */
/* заголовки: слева индекс + h2, справа подпись */
.sec-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 26px; margin-bottom: 40px;
}
.sec-index {
  display: inline-block; font-family: 'SF Mono', Menlo, monospace;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mint); margin-bottom: 10px;
}
.sec-side { text-align: right; font-size: 14.5px; font-weight: 600; color: var(--text-muted); }

/* бенто-сетка */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.bento-cell { display: flex; flex-direction: column; }
.bento-cell h3 { margin-bottom: 8px; }
.bento-cell p { font-size: 14.5px; }
.bento-cell:hover { transform: translateY(-3px); }
.bento-big { grid-column: 1 / 3; grid-row: 1 / 3; }
.bento-big p { max-width: 420px; }
.bento-speed {
  margin-top: auto; padding-top: 26px;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 26px;
}
.bento-speed-num b {
  display: block; font-family: 'Unbounded', sans-serif; font-size: 44px;
  color: var(--mint-bright); line-height: 1; font-variant-numeric: tabular-nums;
}
.bento-speed-num span { font-size: 12.5px; color: var(--text-muted); font-weight: 700; }
.bento-bars { display: flex; align-items: flex-end; gap: 6px; height: 74px; flex: 1; max-width: 300px; }
.bento-bars span {
  flex: 1; border-radius: 5px 5px 2px 2px; min-height: 8px;
  background: linear-gradient(to top, rgba(52, 211, 153, 0.22), var(--mint));
  transition: height 0.8s cubic-bezier(0.45, 0, 0.2, 1);
}
.bento-unlim .bento-inf {
  font-family: 'Unbounded', sans-serif; font-size: 44px; line-height: 1;
  color: var(--mint-bright); margin-bottom: 12px;
}
.bento-speed-caption { display: flex; align-items: flex-end; }

/* летающая мята внутри большого блока */
.bento-big { position: relative; overflow: hidden; }
.bento-big-content {
  position: relative; z-index: 1; flex: 1;
  display: flex; flex-direction: column;
}
.bento-big-content .bento-speed { margin-top: auto; }
.mint-scene { position: absolute; inset: 0; pointer-events: none; }
.mint-glow {
  position: absolute; width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.18), transparent 65%);
  top: -70px; right: -60px; animation: glowPulse 6s ease-in-out infinite alternate;
}
.mint-glow-2 {
  width: 220px; height: 220px; top: auto; right: 30%; bottom: -60px; left: auto;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12), transparent 65%);
  animation-delay: -3s;
}
@keyframes glowPulse {
  from { transform: scale(0.9); opacity: 0.7; }
  to { transform: scale(1.15); opacity: 1; }
}
.mint-leaf { position: absolute; filter: drop-shadow(0 8px 22px rgba(16, 185, 129, 0.35)); }
.leaf-1 { width: 110px; top: 26%; right: 9%; animation: leafFloat1 11s ease-in-out infinite; }
.leaf-2 { width: 62px; top: 56%; right: 30%; opacity: 0.9; animation: leafFloat2 9s ease-in-out infinite; }
.leaf-3 { width: 42px; top: 18%; right: 34%; opacity: 0.8; animation: leafFloat3 7.5s ease-in-out infinite; }
.leaf-4 { width: 28px; top: 66%; right: 16%; opacity: 0.45; filter: blur(1.5px); animation: leafFloat2 13s ease-in-out infinite reverse; }
.leaf-5 { width: 20px; top: 44%; right: 48%; opacity: 0.35; filter: blur(2px); animation: leafFloat3 15s ease-in-out infinite reverse; }
@keyframes leafFloat1 {
  0%, 100% { transform: translate(0, 0) rotate(-8deg); }
  50% { transform: translate(-14px, 16px) rotate(14deg); }
}
@keyframes leafFloat2 {
  0%, 100% { transform: translate(0, 0) rotate(10deg); }
  50% { transform: translate(12px, -12px) rotate(-12deg); }
}
@keyframes leafFloat3 {
  0%, 100% { transform: translate(0, 0) rotate(-14deg) scale(1); }
  50% { transform: translate(-8px, -14px) rotate(8deg) scale(1.08); }
}
.mint-spark {
  position: absolute; width: 5px; height: 5px; border-radius: 50%;
  background: var(--mint-bright); box-shadow: 0 0 10px var(--mint);
  animation: sparkFloat 6s ease-in-out infinite;
}
.s1 { top: 64%; right: 40%; }
.s2 { top: 24%; right: 22%; animation-delay: -2s; }
.s3 { top: 78%; right: 12%; width: 3px; height: 3px; animation-delay: -4s; }
@keyframes sparkFloat {
  0%, 100% { transform: translateY(0); opacity: 0.3; }
  50% { transform: translateY(-16px); opacity: 1; }
}
.bento-ref {
  grid-column: 1 / 4; flex-direction: row; align-items: center;
  justify-content: space-between; gap: 22px;
}
.bento-ref-left { display: flex; align-items: center; gap: 18px; }
.bento-ref-left .feature-icon { margin-bottom: 0; flex-shrink: 0; }
.bento-ref h3 { margin-bottom: 4px; }
.bento-ref p b { color: var(--mint-bright); }

/* панель сети */
.netpanel { padding: 10px 26px; }
.net-row {
  display: grid; grid-template-columns: 1.4fr 0.7fr 1fr 0.9fr;
  gap: 18px; align-items: center; padding: 18px 0;
  border-bottom: 1px solid rgba(28, 58, 45, 0.6);
}
.net-row:last-of-type { border-bottom: none; }
.net-row-head {
  padding: 14px 0 10px; font-size: 11.5px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted);
}
.net-geo { display: flex; align-items: center; gap: 14px; }
.net-geo b { display: block; font-size: 15.5px; }
.net-geo i { display: block; font-style: normal; font-size: 12.5px; color: var(--text-muted); font-weight: 600; }
.net-ping b {
  font-family: 'Unbounded', sans-serif; font-size: 19px; color: var(--mint-bright);
  font-variant-numeric: tabular-nums;
}
.net-ping { color: var(--text-muted); font-weight: 700; font-size: 13px; }
.net-load { display: flex; align-items: center; gap: 12px; }
.net-load i { font-style: normal; font-size: 12.5px; color: var(--text-muted); font-weight: 700; min-width: 34px; }
.load-track {
  flex: 1; max-width: 160px; height: 7px; border-radius: 99px;
  background: var(--bg); overflow: hidden; display: block;
}
.load-fill {
  display: block; height: 100%; border-radius: 99px;
  background: linear-gradient(90deg, var(--mint-dark), var(--mint));
  transition: width 1.2s ease;
}
.dot-soon {
  width: 7px; height: 7px; border-radius: 50%; background: var(--warn); display: inline-block;
}
.pulse-dot-sm { width: 7px; height: 7px; animation: none; box-shadow: 0 0 6px rgba(52, 211, 153, 0.6); }
.net-foot {
  display: flex; align-items: center; gap: 9px; padding: 16px 0 14px;
  border-top: 1px solid var(--border); color: var(--text-muted);
  font-size: 13.5px; font-weight: 600;
}
.net-foot svg.lucide { color: var(--mint); }

/* тарифы: панель с выбором срока */
.plan-wrap { display: grid; grid-template-columns: 1.6fr 1fr; gap: 20px; align-items: stretch; }
.plan-panel { padding: 30px 32px; }
.plan-tabs {
  display: inline-flex; gap: 4px; background: var(--bg);
  border-radius: 14px; padding: 5px; margin-bottom: 28px; flex-wrap: wrap;
}
.plan-tab {
  border: none; cursor: pointer; background: transparent; color: var(--text-muted);
  font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 14.5px;
  padding: 10px 20px; border-radius: 10px; transition: all 0.2s;
}
.plan-tab:hover { color: var(--text); }
.plan-tab.active {
  background: #eafff5;
  color: #06281c;
}
.plan-body { display: flex; flex-direction: column; gap: 22px; }
.plan-price { display: flex; align-items: baseline; gap: 6px; }
.plan-price b {
  font-family: 'Unbounded', sans-serif; font-size: 62px; line-height: 1;
  color: var(--mint-bright); font-variant-numeric: tabular-nums;
}
.plan-price span { font-family: 'Unbounded', sans-serif; font-size: 30px; color: var(--mint-bright); }
.plan-permonth { margin-top: 10px; color: var(--text-muted); font-weight: 700; font-size: 15px; }
.plan-save {
  font-style: normal; margin-left: 10px; padding: 4px 12px; border-radius: 999px;
  background: rgba(52, 211, 153, 0.14);
  color: var(--mint-bright); font-size: 12.5px; font-weight: 800;
}
.plan-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
.plan-list li {
  display: flex; align-items: center; gap: 9px;
  font-size: 14.5px; font-weight: 600; color: var(--text-muted);
}
.plan-list svg.lucide { color: var(--mint); width: 16px; height: 16px; flex-shrink: 0; }
.plan-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.plan-promo { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); font-weight: 600; }
.plan-promo svg.lucide { color: var(--mint); }
.trial-card { display: flex; flex-direction: column; align-items: flex-start; padding: 30px; }
.trial-icon {
  width: 52px; height: 52px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
  background: rgba(52, 211, 153, 0.1);
  color: var(--mint-bright); margin-bottom: 18px;
}
.trial-icon svg.lucide { width: 25px; height: 25px; }
.trial-card h3 { margin-bottom: 8px; }
.trial-card p { font-size: 14.5px; margin-bottom: 20px; }
.trial-card .btn { margin-top: auto; }

/* подключение: таймлайн + телефон */
.connect-wrap { display: grid; grid-template-columns: 1.35fr 1fr; gap: 50px; align-items: center; }
.tl { display: flex; flex-direction: column; }
.tl-step { display: flex; gap: 22px; position: relative; padding-bottom: 34px; }
.tl-step:last-child { padding-bottom: 0; }
.tl-step::before {
  content: ''; position: absolute; left: 20px; top: 46px; bottom: 4px; width: 2px;
  background: linear-gradient(to bottom, var(--mint), rgba(52, 211, 153, 0.08));
}
.tl-step:last-child::before { display: none; }
.tl-dot {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--mint), var(--mint-dark)); color: #06281c;
  font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: 17px;
  display: flex; align-items: center; justify-content: center; position: relative; z-index: 1;
}
.tl-step h3 { margin-bottom: 6px; }
.tl-step p { font-size: 14.5px; max-width: 460px; }
.apps-row-left { justify-content: flex-start; margin-top: 16px; }
.apps-row-left .app-chip { padding: 9px 15px; font-size: 13px; }

.phone-wrap { display: flex; justify-content: center; }
.phone {
  width: 270px; border-radius: 42px; padding: 12px;
  background: linear-gradient(160deg, #163025, #0b1a13);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.5), 0 0 70px rgba(52, 211, 153, 0.1);
  position: relative;
}
.phone-notch {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 92px; height: 22px; border-radius: 0 0 14px 14px; background: #06120c; z-index: 2;
}
.phone-screen {
  border-radius: 32px; background: var(--bg); min-height: 430px;
  padding: 44px 18px 24px; display: flex; flex-direction: column; gap: 16px;
}
.phone-app-head { display: flex; align-items: center; justify-content: space-between; }
.phone-app-name { display: flex; align-items: center; gap: 7px; font-weight: 800; font-size: 15px; }
.phone-app-name svg.lucide { color: var(--mint); }
.phone-app-geo { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-muted); font-weight: 700; }
.phone-link {
  display: flex; align-items: center; gap: 9px; background: var(--surface);
  border-radius: 12px; padding: 11px 13px;
  font-size: 12.5px; font-weight: 600; color: var(--text-muted);
}
.phone-link svg.lucide { color: var(--mint); width: 15px; height: 15px; }
.phone-link em { margin-left: auto; font-style: normal; color: var(--mint-bright); font-weight: 800; }
.phone-connect {
  margin: 22px auto 6px; width: 118px; height: 118px; border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), var(--mint-dark)); color: #06281c;
  display: flex; align-items: center; justify-content: center; position: relative;
  box-shadow: 0 10px 40px rgba(52, 211, 153, 0.4);
}
.phone-connect svg.lucide { width: 40px; height: 40px; }
.phone-ring {
  position: absolute; inset: -12px; border-radius: 50%;
  border: 2px solid rgba(52, 211, 153, 0.45); animation: ringPulse 2.2s infinite;
}
@keyframes ringPulse {
  0% { transform: scale(0.92); opacity: 1; }
  100% { transform: scale(1.22); opacity: 0; }
}
.phone-status {
  margin-top: auto; display: flex; align-items: center; justify-content: center; gap: 9px;
  font-size: 13px; font-weight: 700; color: var(--mint-bright);
  background: rgba(52, 211, 153, 0.09);
  border-radius: 12px; padding: 11px;
}

/* FAQ: редакторский список без коробок */
.faq-lines { max-width: 860px; border-top: 1px solid var(--border); }
.faq-line { border-bottom: 1px solid var(--border); }
.faq-line summary {
  list-style: none; cursor: pointer; display: flex; align-items: baseline; gap: 22px;
  padding: 24px 6px; transition: padding-left 0.25s ease;
}
.faq-line summary::-webkit-details-marker { display: none; }
.faq-line summary:hover { padding-left: 14px; }
.faq-num {
  font-family: 'SF Mono', Menlo, monospace; font-size: 13px; font-weight: 700;
  color: var(--mint); flex-shrink: 0;
}
.faq-q { font-weight: 800; font-size: clamp(16px, 2vw, 19px); flex: 1; }
.faq-x {
  align-self: center; width: 34px; height: 34px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(52, 211, 153, 0.1); border-radius: 50%;
  color: var(--mint-bright); transition: transform 0.3s ease, background 0.2s;
}
.faq-x svg.lucide { width: 16px; height: 16px; }
.faq-line[open] .faq-x { transform: rotate(45deg); background: rgba(52, 211, 153, 0.2); }
.faq-line[open] summary { padding-bottom: 6px; }
.faq-a { padding: 0 6px 24px 35px; }
.faq-a p { max-width: 640px; font-size: 15px; }

/* панель инструкций */
.guide-panel { padding: 26px 30px 30px; }
.guide-tabs {
  display: inline-flex; gap: 4px; background: var(--bg);
  border-radius: 14px; padding: 5px; margin-bottom: 26px; flex-wrap: wrap;
}
.guide-tab {
  border: none; cursor: pointer; background: transparent; color: var(--text-muted);
  font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 14.5px;
  padding: 10px 18px; border-radius: 10px; transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.guide-tab svg.lucide { width: 16px; height: 16px; }
.guide-tab:hover { color: var(--text); }
.guide-tab.active {
  background: #eafff5;
  color: #06281c;
}
.guide-body { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: start; }
.guide-platforms { font-size: 13px; color: var(--text-muted); font-weight: 700; margin-bottom: 18px; }
.guide-platforms b { color: var(--mint-bright); }
.guide-steps {
  list-style: none; counter-reset: gstep; display: flex; flex-direction: column; gap: 14px;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.guide-fade { opacity: 0; transform: translateY(6px); }
.guide-steps li {
  counter-increment: gstep; display: flex; align-items: baseline; gap: 14px;
  font-weight: 600; color: var(--text); font-size: 15.5px;
}
.guide-steps li::before {
  content: counter(gstep, decimal-leading-zero);
  font-family: 'SF Mono', Menlo, monospace; font-size: 12.5px; font-weight: 700;
  color: var(--mint); flex-shrink: 0;
}
.guide-aside { display: flex; flex-direction: column; gap: 16px; }
.guide-hint {
  display: flex; gap: 12px; align-items: flex-start;
  background: rgba(52, 211, 153, 0.08);
  border-radius: 14px; padding: 16px;
}
.guide-hint svg.lucide { color: var(--mint); flex-shrink: 0; margin-top: 2px; }
.guide-hint p { font-size: 14px; font-weight: 600; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 480px; margin: 0 auto; width: 100%; }
  .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar { position: static; flex-direction: row; align-items: center; flex-wrap: wrap; }
  .admin-nav { flex-direction: row; flex-wrap: wrap; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento-big { grid-column: 1 / 3; grid-row: auto; }
  .bento-ref { grid-column: 1 / 3; }
  .plan-wrap { grid-template-columns: 1fr; }
  .connect-wrap { grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    background: var(--bg-soft); border-bottom: 1px solid var(--border);
    flex-direction: column; padding: 18px 22px; gap: 16px;
  }
  .nav-links.open { display: flex; }
  .burger { display: block; }
  .nav-actions .btn-ghost { display: none; }
  .grid-3 { grid-template-columns: 1fr; }
  .pricing-grid, .pricing-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); justify-content: center; }
  /* на телефоне глоу-пятна занимали весь экран и засвечивали фон зелёным */
  .bg-glow { display: none; }
  .section-alt { background: none; }
  .cab-grid { grid-template-columns: 1fr; }
  .stat-row-2 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; padding: 28px 18px 20px; gap: 20px; }
  main > .section:last-of-type { padding-bottom: 32px; }
  .cta-banner { padding: 32px 26px; }
  .connect-grid { flex-direction: column; }
  .hero { padding: 56px 0 40px; }
  .hero-stats { gap: 24px; }
  .section { padding: 52px 0; }
  .sec-head { flex-direction: column; align-items: flex-start; gap: 10px; }
  .sec-side { text-align: left; }
  .sec-side br { display: none; }
  .bento { grid-template-columns: 1fr; }
  .bento-big, .bento-ref { grid-column: auto; }
  .bento-ref { flex-direction: column; align-items: flex-start; }
  .netpanel { padding: 6px 16px; }
  .net-row { grid-template-columns: 1fr 1fr; gap: 10px 14px; }
  .net-row-head { display: none; }
  .net-geo { grid-column: 1 / 3; }
  .plan-panel { padding: 22px 18px; }
  .plan-tab { padding: 9px 13px; font-size: 13px; }
  .plan-price b { font-size: 46px; }
  .plan-list { grid-template-columns: 1fr; }
  .plan-actions .btn { width: 100%; }
  .guide-body { grid-template-columns: 1fr; gap: 26px; }
  .guide-panel { padding: 20px 16px; }
  .guide-tab { padding: 9px 12px; font-size: 13px; }
  .faq-line summary { gap: 14px; padding: 20px 2px; }
  .faq-a { padding-left: 27px; }
  /* плашка пиковой скорости: под числом, а не сбоку */
  .bento-speed { flex-direction: column; align-items: flex-start; gap: 14px; }
  /* на мобиле текст во всю ширину: листья уводим в свободную зону справа от иконки */
  .leaf-1 { width: 56px; top: 8px; right: 14px; }
  .leaf-2 { width: 36px; top: 20px; right: 88px; }
  .leaf-3 { width: 24px; top: 12px; right: 150px; opacity: 0.6; }
  .leaf-4, .leaf-5 { display: none; }
  .mint-spark { display: none; }
  .mint-glow { width: 200px; height: 200px; top: -50px; right: -40px; }
  .mint-glow-2 { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .nav-inner { gap: 8px; }
  .nav-actions { gap: 6px; }
  .nav-actions .btn { padding: 8px 12px; font-size: 13px; }
  .logo-mark { width: 32px; height: 32px; border-radius: 10px; }
  .logo-mark svg.lucide { width: 18px; height: 18px; }
  .logo-text { font-size: 16px; }
  .burger { padding: 4px; }
  .pricing-grid, .pricing-grid-4 { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-card-speed { flex-wrap: wrap; }
  .auth-card { padding: 26px 20px; }
  .ref-stats { flex-direction: column; gap: 10px; }
}
