/* ============================================================================
   CifraCloud — лендинг. Mobile-first.
   Полностью изолирован от styles.css (там живёт личный кабинет).
   Тон: деловой, спокойный. Акцент — один, оранжевый только для чисел в BTC.
   ========================================================================== */
:root {
  --ink: #10151C;
  --ink-2: #3D4855;
  --muted: #6B7787;
  --muted-2: #98A2B0;
  --line: #E4E8ED;
  --line-2: #F0F3F6;
  --bg: #FBFCFD;
  --surface: #FFFFFF;
  --surface-2: #F5F7F9;
  --accent: #1E4E8C;
  --accent-dark: #163D6F;
  --accent-soft: #EDF3FA;
  --btc: #C2731A;
  --btc-soft: #FDF6EC;
  --ok: #1F7A4D;
  --ok-soft: #EDF7F1;
  --warn: #9A6207;
  --warn-soft: #FDF7EA;
  --danger: #A32C2C;
  --danger-soft: #FBEFEF;
  --r: 12px;
  --r-lg: 18px;
  --shadow: 0 1px 2px rgba(16,21,28,.05), 0 6px 20px rgba(16,21,28,.05);
  --shadow-lg: 0 16px 48px rgba(16,21,28,.12);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --maxw: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, select { font-family: inherit; font-size: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
svg { display: block; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.section { padding: 56px 0; }
.section-tight { padding: 40px 0; }
.center { text-align: center; }
.mono { font-variant-numeric: tabular-nums; }

h1, h2, h3, h4 { line-height: 1.2; letter-spacing: -0.02em; font-weight: 700; }
h1 { font-size: 30px; font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: 24px; }
h3 { font-size: 18px; }
.lead { font-size: 17px; color: var(--ink-2); }
.muted { color: var(--muted); }
.small { font-size: 13px; }
.eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--accent); }

/* ---------- Кнопки ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 22px; border-radius: 10px; font-weight: 600; font-size: 16px;
  border: 1px solid transparent; transition: background .15s, border-color .15s, color .15s;
  min-height: 48px; text-align: center;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-ghost { background: var(--surface); color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--surface-2); }
.btn-link { color: var(--accent); font-weight: 600; padding: 8px 0; min-height: 0; }
.btn-link:hover { text-decoration: underline; }
.btn-block { width: 100%; }
.btn:disabled { opacity: .45; cursor: not-allowed; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

/* ---------- Карточки / бейджи ---------- */
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); }
.card-pad { padding: 20px; }
.badge {
  display: inline-flex; align-items: center; gap: 6px; padding: 5px 11px;
  border-radius: 999px; font-size: 12.5px; font-weight: 600;
  background: var(--surface-2); color: var(--ink-2);
}
.badge-accent { background: var(--accent-soft); color: var(--accent); }
.badge-ok { background: var(--ok-soft); color: var(--ok); }
.badge-warn { background: var(--warn-soft); color: var(--warn); }
.badge-btc { background: var(--btc-soft); color: var(--btc); }

/* ---------- Шапка ---------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251,252,253,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-in { display: flex; align-items: center; justify-content: space-between; height: 60px; gap: 12px; }
.brand { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 17px; letter-spacing: -0.02em; }
.brand-mark {
  width: 28px; height: 28px; border-radius: 7px; background: var(--accent);
  color: #fff; display: grid; place-items: center; font-size: 14px; font-weight: 700;
}
.nav-links { display: none; }
.nav-right { display: flex; align-items: center; gap: 10px; }
.lang {
  display: flex; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: var(--surface);
}
.lang button { padding: 7px 10px; font-size: 13px; font-weight: 600; color: var(--muted); min-height: 36px; }
.lang button[aria-pressed="true"] { background: var(--accent); color: #fff; }

/* ссылка на личный кабинет */
.nav-account {
  display: none; align-items: center; padding: 9px 14px; border-radius: 9px;
  border: 1px solid var(--line); background: var(--surface);
  font-size: 14px; font-weight: 600; color: var(--ink-2); min-height: 38px;
}
.nav-account:hover { background: var(--surface-2); color: var(--ink); }
@media (min-width: 560px) { .nav-account { display: inline-flex; } }

/* ---------- Hero ---------- */
.hero { padding: 36px 0 8px; }
.hero h1 { margin: 14px 0 12px; }
.hero .lead { margin-bottom: 22px; }
.hero-cta { display: flex; flex-direction: column; gap: 10px; }

/* ---------- Калькулятор ---------- */
.calc-shell { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow); overflow: hidden; }
.calc-inputs { padding: 22px 18px; border-bottom: 1px solid var(--line); }
.calc-output { padding: 22px 18px; background: linear-gradient(180deg, #fff, var(--accent-soft)); }

.field { margin-bottom: 22px; }
.field:last-child { margin-bottom: 0; }
.field > label, .field-label {
  display: block; font-size: 14px; font-weight: 600; margin-bottom: 10px; color: var(--ink);
}
.field-hint { font-weight: 400; color: var(--muted); font-size: 13px; }

.amount-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.amount-input {
  flex: 1; padding: 13px 14px; border: 1px solid var(--line); border-radius: 10px;
  font-size: 20px; font-weight: 700; background: var(--surface); min-height: 50px;
}
.amount-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
input[type="range"] { width: 100%; accent-color: var(--accent); height: 28px; }
.presets { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.preset {
  padding: 9px 13px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface);
  font-size: 14px; font-weight: 600; color: var(--ink-2); min-height: 40px;
}
.preset:hover { border-color: var(--accent); color: var(--accent); }

/* сегменты (срок, сценарий) */
.seg { display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 6px; background: var(--surface-2); padding: 5px; border-radius: 11px; }
.seg.seg-wrap { grid-auto-flow: row; grid-template-columns: repeat(2, 1fr); }
.seg button {
  padding: 11px 8px; border-radius: 8px; font-size: 14px; font-weight: 600; color: var(--muted);
  min-height: 44px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1px;
}
.seg button[aria-pressed="true"] { background: var(--surface); color: var(--ink); box-shadow: var(--shadow); }
.seg button .sub { font-size: 10.5px; font-weight: 600; color: var(--muted-2); letter-spacing: .03em; text-transform: uppercase; }

/* тарифы */
.tariffs { display: grid; gap: 12px; }
.tariff-card {
  text-align: left; padding: 16px; border: 1.5px solid var(--line); border-radius: var(--r);
  background: var(--surface); display: block; width: 100%;
}
.tariff-card[aria-pressed="true"] { border-color: var(--accent); background: var(--accent-soft); }
.tariff-card:disabled { opacity: .5; cursor: not-allowed; }
.tariff-card .t-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 6px; }
.tariff-card .t-name { font-weight: 800; font-size: 17px; }
.tariff-card .t-tag { font-size: 12.5px; font-weight: 700; color: var(--accent); }
.tariff-card .t-desc { font-size: 13.5px; color: var(--ink-2); line-height: 1.5; }
.tariff-card .t-who { font-size: 12.5px; color: var(--muted); margin-top: 8px; font-style: italic; }
.tariff-card .t-btc { font-size: 15px; font-weight: 800; margin-top: 10px; color: var(--btc); }
.notice {
  display: flex; gap: 9px; padding: 12px 14px; border-radius: 10px; font-size: 13.5px;
  background: var(--warn-soft); color: var(--warn); border: 1px solid #F2E3C4; margin-top: 12px;
}
.notice.info { background: var(--accent-soft); color: var(--accent); border-color: #D3E2F3; }

/* итоговая цена BTC — видна при любом выборе сценария */
.endprice { margin-top: 12px; padding: 13px 15px; border-radius: 10px; background: var(--accent-soft); border: 1px solid #D8E5F4; }
.endprice .ep-row { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.endprice .ep-label { font-size: 13.5px; color: var(--ink-2); font-weight: 600; }
.endprice .ep-value { font-size: 21px; font-weight: 800; color: var(--accent); letter-spacing: -.02em; }
.endprice .ep-meta { font-size: 12.5px; color: var(--muted); margin-top: 3px; }

/* себестоимость + скидка к рынку в одну строку */
.cost-row { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }

/* Доходность в долларах. Визуально мягче зелёной плашки: это производная
   от прогноза цены, а не то, что мы обещаем. Иерархию держим осознанно. */
.apy-box {
  margin-top: 14px; padding: 13px 15px; border-radius: 11px;
  background: var(--surface); border: 1px solid var(--line);
}
.apy-box .a-top { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.apy-box .a-label { font-size: 13.5px; color: var(--ink-2); font-weight: 600; }
.apy-box .a-value { font-size: 21px; font-weight: 800; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.apy-box.pos .a-value { color: var(--ok); }
.apy-box.neg .a-value { color: var(--danger); }
.apy-box .a-term { font-size: 12.5px; color: var(--muted); margin-top: 3px; font-variant-numeric: tabular-nums; }
.apy-box .a-note { font-size: 12px; color: var(--muted-2); margin-top: 7px; }

/* конкретное сравнение под плашкой: 0,2080 BTC против 0,1639 BTC */
.plaque .p-compare {
  display: block; margin-top: 6px; font-size: 13px; font-weight: 600; opacity: .8;
  font-variant-numeric: tabular-nums;
}

/* свой прогноз */
.custom-price { margin-top: 12px; padding: 14px; border: 1px dashed var(--line); border-radius: 10px; background: var(--surface-2); }
.custom-price .cp-row { display: flex; align-items: center; gap: 10px; }
.custom-price input[type="number"] {
  flex: 1; padding: 12px 13px; border: 1px solid var(--line); border-radius: 9px;
  font-size: 17px; font-weight: 700; background: var(--surface); min-height: 48px;
}
.custom-price input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.cp-implied { margin-top: 9px; font-size: 13px; font-weight: 600; }

/* ---------- Результат ---------- */
.res-label { font-size: 13.5px; color: var(--muted); font-weight: 600; }
.res-btc { font-size: 38px; font-weight: 800; letter-spacing: -0.03em; color: var(--btc); line-height: 1.05; margin: 4px 0 2px; }
.res-usd { font-size: 15px; color: var(--ink-2); font-weight: 600; }
.res-cost { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.res-cost .v { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; }
.res-cost .cmp { font-size: 13.5px; color: var(--muted); margin-top: 2px; }

.plaque {
  margin-top: 16px; padding: 15px 16px; border-radius: 12px; font-weight: 700; font-size: 16px;
  background: var(--ok-soft); color: var(--ok); border: 1px solid #C8E6D6; line-height: 1.35;
}
.plaque.negative { background: var(--danger-soft); color: var(--danger); border-color: #F0D2D2; }

.better {
  margin-top: 12px; padding: 15px 16px; border-radius: 12px;
  background: var(--surface); border: 1.5px solid var(--accent);
}
.better .b-title { font-weight: 700; font-size: 15px; color: var(--accent); }
.better .b-why { font-size: 13.5px; color: var(--ink-2); margin: 4px 0 10px; }

.disc { display: flex; gap: 8px; align-items: flex-start; margin-top: 14px; font-size: 13px; color: var(--ink-2); font-weight: 600; }
.disc .ic { color: var(--warn); flex-shrink: 0; }

.protection { margin-top: 16px; padding: 15px 16px; border-radius: 12px; background: var(--surface); border: 1px solid var(--line); }
.protection .p-title { font-weight: 700; font-size: 14.5px; display: flex; gap: 8px; align-items: center; }
.protection .p-text { font-size: 13.5px; color: var(--ink-2); margin-top: 5px; }

/* детали */
.details { margin-top: 16px; }
.details-body { display: none; padding-top: 14px; }
.details.open .details-body { display: block; }
.drow { display: flex; justify-content: space-between; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.drow:last-child { border-bottom: none; }
.drow .k { color: var(--muted); }
.drow .v { font-weight: 700; text-align: right; }
.drow .v small { display: block; font-weight: 500; color: var(--ok); font-size: 11.5px; }

.chart { margin-top: 16px; }
.chart svg { width: 100%; height: 130px; }
.chart-x { display: flex; justify-content: space-between; font-size: 11px; color: var(--muted-2); margin-top: 4px; }

.range-box { margin-top: 14px; padding: 14px; border-radius: 10px; background: var(--surface); border: 1px solid var(--line); }
.range-bars { display: grid; gap: 8px; margin-top: 10px; }
.rb { display: grid; grid-template-columns: 96px 1fr auto; align-items: center; gap: 9px; font-size: 13px; }
.rb .bar { height: 8px; border-radius: 4px; background: var(--accent-soft); overflow: hidden; }
.rb .bar span { display: block; height: 100%; background: var(--accent); border-radius: 4px; }
.rb .val { font-weight: 700; font-variant-numeric: tabular-nums; }

/* действия под расчётом */
.calc-actions { display: flex; flex-direction: column; gap: 9px; margin-top: 18px; }
.calc-actions-row { display: flex; gap: 9px; flex-wrap: wrap; }
.calc-actions-row .btn { flex: 1; min-width: 140px; }

/* ---------- Бенчмарки (без горизонтального скролла) ---------- */
.bench-list { display: grid; gap: 10px; }
.bench-item {
  display: grid; grid-template-columns: 1fr auto; gap: 4px 12px; align-items: baseline;
  padding: 14px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface);
}
.bench-item.is-us { border-color: var(--accent); background: var(--accent-soft); }
.bench-item .name { font-weight: 600; font-size: 14.5px; }
.bench-item .btc { font-weight: 800; font-variant-numeric: tabular-nums; text-align: right; }
.bench-item .usd { grid-column: 2; font-size: 13px; color: var(--muted); text-align: right; }
.bench-item .note { grid-column: 1 / -1; font-size: 12px; color: var(--muted-2); }

/* ---------- Ценность / доказательства / шаги ---------- */
.grid-cards { display: grid; gap: 14px; }
.icard { padding: 20px; }
.icard .ic { width: 38px; height: 38px; border-radius: 10px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; font-size: 17px; margin-bottom: 12px; font-weight: 700; }
.icard h3 { font-size: 16.5px; margin-bottom: 7px; }
.icard p { font-size: 14px; color: var(--ink-2); }

.step-num { width: 34px; height: 34px; border-radius: 9px; background: var(--accent); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 15px; margin-bottom: 12px; }

.media-ph {
  border: 1px dashed var(--line); border-radius: var(--r); background: var(--surface-2);
  padding: 34px 20px; text-align: center; color: var(--muted);
}
.media-ph .ic { font-size: 28px; margin-bottom: 8px; }
.media-ph .t { font-weight: 700; color: var(--ink-2); font-size: 15px; }
.media-ph .n { font-size: 13px; margin-top: 3px; }

/* ---------- Таблица отличий (на мобиле — карточки) ---------- */
.diff-list { display: grid; gap: 12px; }
.diff-item { padding: 16px; border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); }
.diff-item .row-name { font-weight: 700; font-size: 15px; margin-bottom: 10px; }
.diff-side { display: flex; gap: 9px; align-items: flex-start; font-size: 14px; padding: 7px 0; }
.diff-side .lbl { flex-shrink: 0; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; padding: 3px 7px; border-radius: 5px; }
.diff-side.market .lbl { background: var(--surface-2); color: var(--muted); }
.diff-side.us .lbl { background: var(--ok-soft); color: var(--ok); }
.diff-side.market { color: var(--muted); }
.diff-side.us { color: var(--ink); font-weight: 600; }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 14px;
  padding: 18px 0; font-weight: 600; font-size: 16px; text-align: left; line-height: 1.4;
}
.faq-q .chev { flex-shrink: 0; color: var(--accent); font-size: 20px; transition: transform .2s; }
.faq-item.open .faq-q .chev { transform: rotate(45deg); }
.faq-a { display: none; padding-bottom: 20px; font-size: 15px; color: var(--ink-2); }
.faq-item.open .faq-a { display: block; }

/* ---------- CTA ---------- */
.cta-band { background: var(--accent); color: #fff; border-radius: var(--r-lg); padding: 32px 22px; text-align: center; }
.cta-band h2 { margin-bottom: 10px; }
.cta-band p { opacity: .9; margin-bottom: 20px; font-size: 16px; }
.cta-band .btn-primary { background: #fff; color: var(--accent); }
.cta-band .btn-primary:hover { background: #EDF3FA; }
.cta-band .btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,.1); }
.cta-actions { display: flex; flex-direction: column; gap: 10px; }

/* ---------- Формы / модалка ---------- */
.modal-bg {
  position: fixed; inset: 0; background: rgba(16,21,28,.55); z-index: 100;
  display: none; align-items: flex-end; justify-content: center; padding: 0;
}
.modal-bg.open { display: flex; }
.modal {
  background: var(--surface); width: 100%; max-width: 460px; max-height: 92vh; overflow-y: auto;
  border-radius: var(--r-lg) var(--r-lg) 0 0; padding: 24px 20px 28px;
}
.modal h3 { font-size: 20px; margin-bottom: 6px; }
.modal .m-sub { font-size: 14.5px; color: var(--ink-2); margin-bottom: 18px; }
.modal .close { position: absolute; top: 14px; right: 16px; font-size: 26px; color: var(--muted); line-height: 1; padding: 6px; }
.modal-head { position: relative; }
.finput {
  width: 100%; padding: 13px 14px; border: 1px solid var(--line); border-radius: 10px;
  background: var(--surface); min-height: 48px; margin-bottom: 14px;
}
.finput:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.flabel { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 7px; }
.fparams { padding: 12px 14px; border-radius: 10px; background: var(--surface-2); font-size: 13px; color: var(--ink-2); margin-bottom: 16px; }
.fparams b { color: var(--ink); }
.ferror { color: var(--danger); font-size: 13px; margin-bottom: 12px; display: none; }
.ferror.show { display: block; }
.fsuccess { text-align: center; padding: 20px 0; }
.fsuccess .ic { font-size: 40px; margin-bottom: 12px; }

/* ---------- Футер ---------- */
footer { background: var(--ink); color: #C3CBD5; padding: 36px 0 26px; margin-top: 40px; }
footer .brand { color: #fff; margin-bottom: 12px; }
footer .brand-mark { background: rgba(255,255,255,.14); }
footer p { font-size: 13.5px; margin-bottom: 14px; max-width: 620px; }
.foot-legal { font-size: 12px; color: var(--muted-2); border-top: 1px solid rgba(255,255,255,.1); padding-top: 18px; margin-top: 18px; }
.foot-versions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 18px; font-size: 12px; }
.foot-versions .fv-label { color: var(--muted-2); }
.fv-switch { display: inline-flex; padding: 3px; border-radius: 999px; background: rgba(255,255,255,.07); }
.fv-switch .fv-on, .fv-switch a { padding: 5px 13px; border-radius: 999px; font-weight: 600; line-height: 1; }
.fv-switch .fv-on { background: rgba(255,255,255,.9); color: var(--ink); }
.fv-switch a { color: #98A2B0; }
.fv-switch a:hover { color: #fff; }

/* ---------- Тост ---------- */
.toast {
  position: fixed; left: 50%; bottom: 22px; transform: translateX(-50%);
  background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 10px;
  font-size: 14px; z-index: 120; box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none;
  transition: opacity .2s, transform .2s;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(-4px); }

/* ============================================================================
   Планшет
   ========================================================================== */
@media (min-width: 700px) {
  h1 { font-size: 42px; }
  h2 { font-size: 30px; }
  .section { padding: 72px 0; }
  .hero { padding: 52px 0 12px; }
  .hero-cta { flex-direction: row; }
  .hero .lead { max-width: 620px; }
  .calc-inputs, .calc-output { padding: 28px; }
  .tariffs { grid-template-columns: 1fr 1fr; }
  .grid-cards { grid-template-columns: 1fr 1fr; }
  .cta-actions { flex-direction: row; justify-content: center; }
  .cta-actions .btn { flex: 0 1 auto; }
  .modal-bg { align-items: center; padding: 20px; }
  .modal { border-radius: var(--r-lg); }
  .bench-item { grid-template-columns: 1fr 130px 130px; align-items: center; }
  .bench-item .usd { grid-column: auto; }
  .bench-item .note { grid-column: 1 / -1; }
}

/* ============================================================================
   Десктоп
   ========================================================================== */
@media (min-width: 1000px) {
  h1 { font-size: 50px; }
  .nav-links { display: flex; align-items: center; gap: 24px; }
  .nav-links a { font-size: 14.5px; color: var(--muted); font-weight: 500; }
  .nav-links a:hover { color: var(--ink); }
  .calc-shell { display: grid; grid-template-columns: 1.05fr .95fr; }
  .calc-inputs { border-bottom: none; border-right: 1px solid var(--line); }
  .calc-output { background: linear-gradient(160deg, #fff 30%, var(--accent-soft)); }
  .grid-cards.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-cards.cols-4 { grid-template-columns: repeat(4, 1fr); }
  .res-btc { font-size: 46px; }

  /* таблица отличий — настоящей таблицей */
  .diff-list { display: table; width: 100%; border-collapse: collapse; }
  .diff-head { display: table-row; }
  .diff-head > div { display: table-cell; padding: 12px 16px; font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .05em; color: var(--muted-2); border-bottom: 1px solid var(--line); }
  .diff-item { display: table-row; border: none; background: none; padding: 0; }
  .diff-item .row-name, .diff-item .diff-side { display: table-cell; padding: 16px; border-bottom: 1px solid var(--line);
    vertical-align: top; margin: 0; }
  .diff-item .row-name { font-size: 14.5px; width: 26%; }
  .diff-item .diff-side .lbl { display: none; }
  .diff-item .diff-side { font-size: 14px; }
}

/* ============================================================================
   Печать / PDF
   ========================================================================== */
@media print {
  .nav, .hero-cta, .calc-actions, .cta-band, footer, .modal-bg, .toast,
  .faq-item, .media-ph, .btn { display: none !important; }
  body { background: #fff; font-size: 12px; }
  .section { padding: 12px 0; page-break-inside: avoid; }
  .calc-shell { display: block; box-shadow: none; border: 1px solid #ccc; }
  .calc-output { background: #fff !important; }
  .print-only { display: block !important; }
  .disc, .protection, .plaque { border: 1px solid #ccc !important; }
}
.print-only { display: none; }

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