/* ============================================================
   TopVPN KZ — основной стиль. Мобайл-фёрст. Светлая + тёмная тема.
   Тема: доверие/безопасность + цвета флага КЗ (небо + золото).
   ============================================================ */

:root {
  --sky:      #00a3d9;
  --sky-dark: #0077a8;
  --sky-ink:  #0a2540;
  --gold:     #ffc20e;
  --tg:       #29a9eb;

  --bg:       #eef3f8;
  --surface:  #ffffff;
  --surface-2:#f5f8fc;
  --ink:      #0e1b2a;
  --muted:    #5b6b7d;
  --line:     #e2e9f1;
  --line-2:   #d5deea;

  --ok:       #17a673;
  --ok-bg:    #eafaf3;
  --ok-line:  #bfe9d6;
  --bad:      #e5484d;
  --bad-bg:   #fdeeee;
  --bad-line: #f6cdcf;

  --radius:   16px;
  --radius-sm:10px;
  --shadow:   0 6px 24px rgba(16,40,70,.08);
  --shadow-lg:0 16px 44px rgba(16,40,70,.14);
  --wrap:     1180px;
  --font:     'Nunito Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --head:     'Manrope', system-ui, sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg:       #0a121d;
    --surface:  #111f30;
    --surface-2:#0e1a28;
    --ink:      #eaf1f9;
    --muted:    #9db0c4;
    --line:     #22344a;
    --line-2:   #2c405a;
    --ok-bg:    #10261d;
    --ok-line:  #1f4536;
    --bad-bg:   #2a1618;
    --bad-line: #4a2427;
    --shadow:   0 6px 24px rgba(0,0,0,.35);
    --shadow-lg:0 16px 44px rgba(0,0,0,.5);
  }
}
/* Ручное переключение (если добавим тумблер) перекрывает системную тему */
:root[data-theme="light"] { color-scheme: light; }
:root[data-theme="dark"] {
  --bg:#0a121d; --surface:#111f30; --surface-2:#0e1a28; --ink:#eaf1f9; --muted:#9db0c4;
  --line:#22344a; --line-2:#2c405a; --ok-bg:#10261d; --ok-line:#1f4536; --bad-bg:#2a1618; --bad-line:#4a2427;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 78px; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: var(--head); line-height: 1.2; margin: 0 0 .5em; color: var(--ink); }
a { color: var(--sky-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
img, svg { max-width: 100%; }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 18px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--sky-ink); color: #fff;
  padding: 10px 16px; border-radius: 0 0 8px 0; z-index: 100;
}
.skip-link:focus { left: 0; }

/* ---------- Кнопки / чипы ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--head); font-weight: 700; font-size: .98rem;
  padding: 12px 22px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .12s, box-shadow .18s, background .18s; text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, var(--sky), var(--sky-dark)); color: #fff; box-shadow: 0 6px 18px rgba(0,119,168,.32); }
.btn-primary:hover { box-shadow: 0 10px 26px rgba(0,119,168,.42); color:#fff; }
.btn-gold { background: var(--gold); color: #3a2c00; box-shadow: 0 6px 18px rgba(255,194,14,.35); }
.btn-gold:hover { color:#3a2c00; }
.btn-ghost { background: var(--surface); color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--sky); color: var(--sky-dark); }
.btn-sm { padding: 8px 15px; font-size: .86rem; }

.chip {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .8rem; font-weight: 700; font-family: var(--head);
  padding: 4px 10px; border-radius: 999px; background: var(--surface-2);
  color: var(--muted); border: 1px solid var(--line); white-space: nowrap;
}
.chip-ic { font-size: .92em; line-height: 1; }
.chip-site { color: var(--sky-dark); background: rgba(0,163,217,.1); border-color: rgba(0,163,217,.28); }
.chip-bot  { color: var(--tg); background: rgba(41,169,235,.1); border-color: rgba(41,169,235,.3); }
.chip-feature { color: var(--ink); }

/* ---------- Шапка ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 62px; gap: 12px; }
.brand { display: inline-flex; align-items: center; gap: 9px; font-family: var(--head); font-weight: 800; font-size: 1.2rem; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand-kz { color: var(--sky); }
.brand-ic { flex: none; }
.menu { display: flex; align-items: center; gap: 22px; }
.menu a { font-family: var(--head); font-weight: 600; color: var(--ink); font-size: .96rem; }
.menu a:hover { color: var(--sky-dark); text-decoration: none; }
.menu a.active { color: var(--sky-dark); }
.menu-cta {
  background: var(--sky-ink); color: #fff !important; padding: 9px 16px; border-radius: 999px; font-weight: 700 !important;
}
.menu-cta:hover { background: var(--sky-dark); }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .25s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 860px) {
  .burger { display: flex; }
  .menu {
    position: fixed; top: 62px; right: 0; left: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--surface); border-bottom: 1px solid var(--line);
    padding: 8px 18px 18px; transform: translateY(-140%); transition: transform .3s ease; box-shadow: var(--shadow);
  }
  .menu.open { transform: translateY(0); }
  .menu a { padding: 13px 4px; border-bottom: 1px solid var(--line); }
  .menu-cta { text-align: center; margin-top: 12px; border-bottom: 0 !important; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: linear-gradient(160deg, #0a2540 0%, #0f3a5c 55%, #0077a8 100%); color: #fff; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 340px at 82% 8%, rgba(255,194,14,.16), transparent 60%),
             radial-gradient(600px 360px at 10% 100%, rgba(0,179,234,.28), transparent 60%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; gap: 32px; align-items: center; padding: 54px 0 60px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); color: #eaf6ff; padding: 6px 14px; border-radius: 999px; font-size: .82rem; font-weight: 700; font-family: var(--head); }
.hero h1 { color: #fff; font-size: clamp(1.9rem, 4.6vw, 3rem); margin: 16px 0 12px; letter-spacing: -.5px; }
.hero h1 .accent { color: var(--gold); }
.hero p.lead { color: #d6e6f3; font-size: 1.08rem; max-width: 560px; margin: 0 0 26px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-stats { display: flex; gap: 26px; margin-top: 30px; flex-wrap: wrap; }
.hero-stats .st { }
.hero-stats .st b { display: block; font-family: var(--head); font-weight: 800; font-size: 1.55rem; color: #fff; }
.hero-stats .st span { font-size: .82rem; color: #a8c6dd; }
.hero-art { display: flex; justify-content: center; }
.hero-art svg { width: 100%; max-width: 360px; height: auto; filter: drop-shadow(0 18px 40px rgba(0,0,0,.35)); }

@media (max-width: 820px) {
  .hero-inner { grid-template-columns: 1fr; gap: 8px; padding: 40px 0 44px; }
  .hero-art { display: none; }
}

/* ---------- Секции ---------- */
.section { padding: 52px 0; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 30px; }
.section-head h2 { font-size: clamp(1.5rem, 3.4vw, 2.05rem); }
.section-head .kicker { display: inline-block; font-family: var(--head); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; font-size: .74rem; color: var(--sky-dark); margin-bottom: 8px; }
.section-head p { color: var(--muted); margin: 6px 0 0; }
.section-alt { background: var(--surface-2); }

/* ---------- Квиз ---------- */
.quiz { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 26px; max-width: 900px; margin: 0 auto; }
.quiz-step { margin-bottom: 22px; }
.quiz-step:last-of-type { margin-bottom: 12px; }
.quiz-q { display: flex; align-items: center; gap: 10px; font-family: var(--head); font-weight: 800; font-size: 1.02rem; margin-bottom: 12px; }
.quiz-q .num { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: 50%; background: var(--sky-ink); color: #fff; font-size: .82rem; flex: none; }
.quiz-opts { display: flex; flex-wrap: wrap; gap: 10px; }
.opt {
  position: relative; display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border: 1.5px solid var(--line-2); border-radius: 999px;
  background: var(--surface-2); cursor: pointer; font-weight: 700; font-family: var(--head);
  font-size: .9rem; color: var(--ink); transition: .16s; user-select: none;
}
.opt input { position: absolute; opacity: 0; pointer-events: none; }
.opt:hover { border-color: var(--sky); }
.opt .opt-ic { font-size: 1em; }
.opt.checked { border-color: var(--sky); background: rgba(0,163,217,.12); color: var(--sky-dark); box-shadow: inset 0 0 0 1px var(--sky); }
.quiz-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 20px; padding-top: 20px; border-top: 1px dashed var(--line-2); }
.quiz-count { color: var(--muted); font-size: .92rem; }
.quiz-count b { color: var(--ink); }

.quiz-results { margin-top: 26px; display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 14px; }
.qr-card { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); padding: 16px; display: flex; flex-direction: column; gap: 10px; box-shadow: var(--shadow); }
.qr-top { display: flex; align-items: center; gap: 11px; }
.qr-top .badge { border-radius: 11px; flex: none; }
.qr-name { font-family: var(--head); font-weight: 800; }
.qr-meta { display: flex; flex-wrap: wrap; gap: 6px; }
.qr-price { font-family: var(--head); font-weight: 800; color: var(--sky-dark); }
.qr-actions { display: flex; gap: 8px; margin-top: auto; }
.qr-actions .btn { flex: 1; }
.quiz-empty { margin-top: 22px; text-align: center; color: var(--muted); padding: 26px; border: 1px dashed var(--line-2); border-radius: var(--radius-sm); }
.is-hidden { display: none !important; }

/* ---------- Таблица рейтинга ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); background: var(--surface); -webkit-overflow-scrolling: touch; }
table.rating { width: 100%; border-collapse: collapse; min-width: 720px; }
table.rating th, table.rating td { padding: 14px 16px; text-align: left; vertical-align: middle; border-bottom: 1px solid var(--line); }
table.rating thead th { background: var(--sky-ink); color: #fff; font-family: var(--head); font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; position: sticky; top: 0; }
table.rating tbody tr:hover { background: var(--surface-2); }
table.rating tr.subhead td { background: var(--surface-2); font-family: var(--head); font-weight: 800; color: var(--ink); font-size: .95rem; letter-spacing: .02em; }
table.rating tr.subhead td .sh { display: inline-flex; align-items: center; gap: 9px; }
.cell-svc { display: flex; align-items: center; gap: 12px; }
.cell-svc .badge { border-radius: 11px; flex: none; }
.cell-svc .svc-meta { display: flex; flex-direction: column; gap: 4px; }
.cell-svc .svc-name { font-family: var(--head); font-weight: 800; font-size: 1rem; color: var(--ink); }
.trial-pill { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-family: var(--head); font-size: .84rem; }
.trial-pill .tmark { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; border-radius: 50%; font-size: .74rem; flex: none; }
.trial-pill.ok   { color: var(--ok); }
.trial-pill.ok   .tmark { background: var(--ok-bg); color: var(--ok); border: 1px solid var(--ok-line); }
.trial-pill.paid { color: #b7791f; }
.trial-pill.paid .tmark { background: #fff6e0; color: #b7791f; border: 1px solid #f2dfa8; }
.trial-pill.no   { color: var(--muted); }
.trial-pill.no   .tmark { background: var(--surface-2); color: var(--muted); border: 1px solid var(--line-2); }
.trial-sub { display: block; font-size: .78rem; color: var(--muted); font-weight: 400; font-family: var(--font); margin-top: 2px; }
.cell-price { font-family: var(--head); font-weight: 800; color: var(--ink); white-space: nowrap; }
.cell-feats { display: flex; flex-wrap: wrap; gap: 6px; max-width: 230px; }
.cell-feats .chip { font-size: .74rem; padding: 3px 8px; }
.cell-actions { display: flex; flex-direction: column; gap: 7px; min-width: 132px; }
tr.dim { opacity: .32; }

/* ---------- Обзоры (карточки) ---------- */
.reviews-group { margin-top: 34px; }
.reviews-group > h3.group-title { display: flex; align-items: center; gap: 10px; font-size: 1.35rem; margin: 0 0 18px; }
.card {
  scroll-margin-top: 84px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 22px; margin-bottom: 20px; overflow: hidden;
}
.card:target { border-color: var(--sky); box-shadow: 0 0 0 3px rgba(0,163,217,.22), var(--shadow-lg); }
.card-head { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 14px; }
.card-head .badge { border-radius: 13px; flex: none; }
.card-head .ch-titles { flex: 1; min-width: 180px; }
.card-head h4 { font-size: 1.32rem; margin: 0 0 6px; }
.card-head .ch-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.card-price-from { font-family: var(--head); font-weight: 800; color: var(--sky-dark); font-size: 1.05rem; white-space: nowrap; }
.card-body { display: grid; grid-template-columns: 1fr; gap: 18px; }
.card-figure { margin: 0; }
.card-figure img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: var(--radius-sm); border: 1px solid var(--line); cursor: zoom-in; display: block; background: var(--surface-2); }
.card-figure figcaption { font-size: .78rem; color: var(--muted); margin-top: 6px; }
.card-desc { margin: 0; color: var(--ink); }
.feat-row { display: flex; flex-wrap: wrap; gap: 7px; margin: 14px 0; }
.specs { display: flex; flex-wrap: wrap; gap: 8px 20px; margin: 12px 0; padding: 0; list-style: none; font-size: .88rem; color: var(--muted); }
.specs li b { color: var(--ink); font-family: var(--head); }

.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 16px 0; }
.pc { border-radius: var(--radius-sm); padding: 14px 16px; border: 1px solid; }
.pc h5 { display: flex; align-items: center; gap: 8px; margin: 0 0 10px; font-size: .98rem; }
.pc ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.pc li { position: relative; padding-left: 26px; font-size: .92rem; line-height: 1.45; }
.pc li::before { position: absolute; left: 0; top: 1px; font-weight: 800; width: 18px; height: 18px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; font-size: .72rem; }
.pc-pros { background: var(--ok-bg); border-color: var(--ok-line); }
.pc-pros h5 { color: var(--ok); }
.pc-pros li::before { content: "✓"; background: var(--ok); color: #fff; }
.pc-cons { background: var(--bad-bg); border-color: var(--bad-line); }
.pc-cons h5 { color: var(--bad); }
.pc-cons li::before { content: "✕"; background: var(--bad); color: #fff; }

.prices-box { border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.prices-box .pb-row { display: flex; justify-content: space-between; gap: 14px; padding: 10px 15px; border-bottom: 1px solid var(--line); font-size: .92rem; }
.prices-box .pb-row:last-child { border-bottom: 0; }
.prices-box .pb-row:nth-child(even) { background: var(--surface-2); }
.prices-box .pb-plan { color: var(--muted); }
.prices-box .pb-price { font-family: var(--head); font-weight: 800; color: var(--ink); white-space: nowrap; }
.card-cta { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-top: 18px; }
.card-cta .back-top { margin-left: auto; font-size: .85rem; }

@media (min-width: 760px) {
  .card-body.has-img { grid-template-columns: 300px 1fr; align-items: start; }
}
@media (max-width: 560px) {
  .proscons { grid-template-columns: 1fr; }
}

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); margin-bottom: 12px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 16px 50px 16px 18px; font-family: var(--head); font-weight: 700; font-size: 1rem; color: var(--ink); position: relative; }
.faq-q::after { content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%); font-size: 1.4rem; color: var(--sky); transition: transform .2s; }
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-a-inner { padding: 0 18px 16px; color: var(--muted); }

/* ---------- Подвал ---------- */
.site-footer { background: var(--sky-ink); color: #cfe0ee; margin-top: 12px; padding: 40px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 26px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,.12); }
.brand--footer { color: #fff; }
.brand--footer .brand-text { color: #fff; }
.footer-about { color: #a8c6dd; font-size: .92rem; max-width: 440px; margin: 10px 0 0; }
.footer-nav { display: flex; flex-direction: column; gap: 9px; }
.footer-nav a { color: #cfe0ee; font-size: .94rem; }
.footer-nav a:hover { color: #fff; }
.disclaimer { font-size: .8rem; color: #8fabc4; margin: 20px 0 0; line-height: 1.55; }
.copyright { font-size: .82rem; color: #7c99b3; margin: 10px 0 0; }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Лайтбокс ---------- */
.lightbox { position: fixed; inset: 0; background: rgba(6,18,32,.9); display: none; align-items: center; justify-content: center; z-index: 200; padding: 20px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 96vw; max-height: 92vh; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,.6); }
.lb-close { position: absolute; top: 16px; right: 22px; font-size: 2.2rem; color: #fff; text-decoration: none; line-height: 1; }
.lb-close:hover { text-decoration: none; color: var(--gold); }

/* ---------- Прокси: компактная таблица (чтобы влезали все столбцы) ---------- */
.rating--proxy { min-width: 840px; }
.rating--proxy th, .rating--proxy td { padding: 13px 11px; }
.rating--proxy .cell-price { white-space: normal; display: inline-block; max-width: 150px; line-height: 1.32; font-size: .9rem; }
.rating--proxy .cell-feats { max-width: 188px; }
.rating--proxy .cell-actions { min-width: 116px; }
.rating--proxy .trial-sub { max-width: 145px; }
.rating--proxy .svc-name { font-size: .95rem; }

/* ---------- Прокси: типы, гео, купоны ---------- */
/* Чип типа прокси */
.chip-ptype { font-weight: 700; }
.chip-ptype--residential { color: #0f7a52; background: rgba(23,166,115,.12); border-color: rgba(23,166,115,.32); }
.chip-ptype--mobile      { color: var(--sky-dark); background: rgba(0,163,217,.1); border-color: rgba(0,163,217,.3); }
.chip-ptype--datacenter  { color: #6d4bd8; background: rgba(124,58,237,.1); border-color: rgba(124,58,237,.3); }
.chip-ptype--mixed       { color: #b7791f; background: #fff6e0; border-color: #f2dfa8; }
@media (prefers-color-scheme: dark) {
  .chip-ptype--residential { color: #4fd6a2; background: rgba(23,166,115,.16); }
  .chip-ptype--datacenter  { color: #b79bf5; background: rgba(124,58,237,.18); }
  .chip-ptype--mixed       { color: #f0c667; background: rgba(255,194,14,.14); border-color: rgba(255,194,14,.3); }
}
/* Чип «IP Казахстана» */
.chip-kz { color: var(--sky-dark); background: linear-gradient(120deg, rgba(0,163,217,.12), rgba(255,194,14,.16)); border-color: rgba(0,163,217,.32); font-weight: 700; }
@media (prefers-color-scheme: dark) { .chip-kz { color: #7fd4f2; } }

/* Пробный доступ: демо/по запросу */
.trial-pill.demo { color: #2a7de1; }
.trial-pill.demo .tmark { background: rgba(0,163,217,.12); color: #2a7de1; border: 1px solid rgba(0,163,217,.3); }

/* Мини-купон (в таблице / квизе) */
.coupon-mini { display: inline-flex; align-items: center; gap: 4px; font-family: var(--head); font-weight: 800; font-size: .72rem; color: #9a6a00; background: repeating-linear-gradient(45deg, #fff6e0, #fff6e0 6px, #fdefc8 6px, #fdefc8 12px); border: 1px dashed #e0b64b; border-radius: 999px; padding: 3px 9px; white-space: nowrap; }
@media (prefers-color-scheme: dark) { .coupon-mini { color: #f0c667; background: rgba(255,194,14,.08); border-color: rgba(255,194,14,.4); } }

/* Купон-бокс (в карточке-обзоре) */
.coupon-box { display: flex; align-items: center; gap: 12px; margin: 14px 0; padding: 12px 16px; border: 1.5px dashed #e0b64b; border-radius: var(--radius-sm); background: linear-gradient(120deg, #fffaf0, #fff4d9); }
.coupon-ic { font-size: 1.5rem; line-height: 1; flex: none; }
.coupon-text { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.coupon-label { font-family: var(--head); font-weight: 800; font-size: .82rem; color: #9a6a00; text-transform: uppercase; letter-spacing: .03em; }
.coupon-code { display: inline-flex; align-items: center; gap: 10px; align-self: flex-start; cursor: pointer; font-family: ui-monospace, 'SFMono-Regular', Menlo, Consolas, monospace; font-weight: 700; font-size: 1rem; color: var(--ink); background: #fff; border: 1px solid #e6c774; border-radius: 8px; padding: 6px 12px; transition: .15s; max-width: 100%; word-break: break-all; text-align: left; }
.coupon-code:hover { border-color: var(--gold); box-shadow: 0 2px 10px rgba(255,194,14,.35); }
.coupon-code.copied { border-color: var(--ok); }
.coupon-copy { font-family: var(--head); font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: #b7791f; background: #fff3d4; border-radius: 5px; padding: 2px 6px; white-space: nowrap; }
.coupon-code.copied .coupon-copy { color: #fff; background: var(--ok); }
@media (prefers-color-scheme: dark) {
  .coupon-box { background: rgba(255,194,14,.07); border-color: rgba(255,194,14,.4); }
  .coupon-label { color: #f0c667; }
  .coupon-code { background: #16233450; color: var(--ink); border-color: rgba(255,194,14,.4); }
  .coupon-copy { color: #f0c667; background: rgba(255,194,14,.14); }
}

/* Нейтральная (не «минусовая») панель в блоке «Прокси или VPN» */
.pc.pc-neutral { background: rgba(0,163,217,.07); border-color: rgba(0,163,217,.28); }
.pc.pc-neutral h5 { color: var(--sky-dark); }
.pc.pc-neutral li::before { content: "✓"; background: var(--sky); color: #fff; }
@media (prefers-color-scheme: dark) { .pc.pc-neutral { background: rgba(0,163,217,.1); } .pc.pc-neutral h5 { color: #7fd4f2; } }

/* ---------- Прочее ---------- */
.note { background: var(--surface-2); border: 1px solid var(--line); border-left: 4px solid var(--sky); border-radius: var(--radius-sm); padding: 14px 18px; color: var(--muted); font-size: .92rem; }
.center { text-align: center; }
.mt-24 { margin-top: 24px; }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
