/* ==========================================================================
   КРЕДИТ-ОНЛАЙН.KZ — дизайн-система «Банкнотная гравюра»
   Палитра и фактура купюр тенге: бумага, глубокие чернила, золотая охра.
   ========================================================================== */

:root {
  /* бумага */
  --paper: #f4eedd;
  --paper-2: #ece3c9;
  --paper-3: #e2d6b4;
  /* чернила */
  --ink: #16383b;
  --ink-2: #25504f;
  --ink-soft: rgba(22, 56, 59, 0.66);
  --line: rgba(22, 56, 59, 0.22);
  --line-soft: rgba(22, 56, 59, 0.12);
  /* акценты */
  --gold: #a87724;
  --gold-2: #c89a4b;
  --red: #a93e22;
  --teal: #2c6e62;
  /* тёмные секции */
  --dark: #0f2627;
  --dark-2: #143335;
  --cream-line: rgba(244, 238, 221, 0.28);
  --cream-soft: rgba(244, 238, 221, 0.75);

  --font-display: "Prata", "Georgia", serif;
  --font-body: "Golos Text", "Verdana", sans-serif;
  --font-mono: "JetBrains Mono", "Courier New", monospace;

  --shadow-plate: 5px 5px 0 rgba(22, 56, 59, 0.14);
  --ease-spring: cubic-bezier(0.22, 1.2, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--paper);
  /* двойная гильоширная волна — фоновая «защитная сетка» */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='56' viewBox='0 0 120 56'%3E%3Cpath d='M0 28 C 20 12, 40 12, 60 28 C 80 44, 100 44, 120 28' fill='none' stroke='%2316383B' stroke-opacity='0.06'/%3E%3Cpath d='M0 28 C 20 44, 40 44, 60 28 C 80 12, 100 12, 120 28' fill='none' stroke='%2316383B' stroke-opacity='0.06'/%3E%3C/svg%3E");
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--gold-2); color: var(--dark); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--paper-2); }
::-webkit-scrollbar-thumb { background: var(--ink-2); border: 3px solid var(--paper-2); }

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, select { font: inherit; color: inherit; }

/* зернистость бумаги */
.grain {
  position: fixed; inset: 0; z-index: 80; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container { max-width: 1220px; margin: 0 auto; padding: 0 28px; }

/* --- типографика-утилиты --- */
.mono {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.overline {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.75em;
}
.overline::before { content: ""; width: 34px; height: 1px; background: var(--gold); }

h1, h2, h3, .display { font-family: var(--font-display); font-weight: 400; line-height: 1.16; }

/* все гравюры: штрих наследует цвет */
[data-art] svg { width: 100%; height: 100%; }
[data-art] svg * { stroke: currentColor; fill: none; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; vector-effect: non-scaling-stroke; }
[data-art] svg circle[r="2.4"] { fill: currentColor; }

/* ==========================================================================
   ШАПКА
   ========================================================================== */
.site-head {
  position: sticky; top: 0; z-index: 60;
  background: var(--paper);
  border-bottom: 1px solid var(--ink);
}
.site-head::after {
  content: ""; display: block; height: 3px;
  border-top: 1px solid var(--line);
  background: transparent;
}
.head-row { display: flex; align-items: center; gap: 32px; height: 76px; }

.logo { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.logo-mark { display: block; width: 44px; height: 44px; color: var(--ink); flex: none; }
.logo-mark svg * { stroke-width: 1.6; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text b { font-family: var(--font-display); font-weight: 400; font-size: 1.06rem; letter-spacing: 0.04em; }
.logo-text b .kz { color: var(--gold); }
.logo-text span { font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--ink-soft); margin-top: 3px; }

.main-nav { display: flex; gap: 30px; margin-left: auto; }
.main-nav a {
  text-decoration: none; font-size: 0.95rem; font-weight: 500;
  padding: 6px 2px; position: relative; color: var(--ink-soft);
  transition: color 0.25s;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  border-bottom: 3px double var(--gold);
  transition: right 0.3s var(--ease-spring);
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--ink); }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { right: 0; }

.burger { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 6px; padding: 0 8px; }
.burger span { display: block; height: 2px; background: var(--ink); transition: 0.3s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* прогресс прокрутки */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--gold); z-index: 70; }

/* ==========================================================================
   КНОПКИ — «типографская плита»
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px;
  background: var(--ink); color: var(--paper);
  border: 1px solid var(--ink);
  font-weight: 600; font-size: 0.98rem; text-decoration: none;
  transition: transform 0.22s var(--ease-spring), box-shadow 0.22s var(--ease-spring), background 0.25s;
  white-space: nowrap;
}
.btn:hover { transform: translate(-3px, -3px); box-shadow: 5px 5px 0 var(--gold); background: var(--ink-2); }
.btn:active { transform: translate(0, 0); box-shadow: 0 0 0 var(--gold); }
.btn .ico { width: 19px; height: 19px; color: var(--gold-2); flex: none; }
.btn .ico svg * { stroke-width: 2; }

.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--paper-2); box-shadow: 5px 5px 0 rgba(22, 56, 59, 0.25); }
.btn--ghost .ico { color: var(--gold); }

.btn--cream { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn--cream:hover { background: var(--paper); box-shadow: 5px 5px 0 var(--gold); }

.btn--sm { padding: 10px 18px; font-size: 0.88rem; }
.btn--lg { padding: 18px 36px; font-size: 1.05rem; }

/* ==========================================================================
   ТИКЕР СТАВОК
   ========================================================================== */
.ticker {
  background: var(--dark); color: var(--cream-soft);
  border-bottom: 1px solid var(--ink);
  overflow: hidden; position: relative;
}
.ticker::before, .ticker::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 60px; z-index: 2; pointer-events: none;
}
.ticker::before { left: 0; background: linear-gradient(90deg, var(--dark), transparent); }
.ticker::after { right: 0; background: linear-gradient(-90deg, var(--dark), transparent); }
.ticker-track {
  display: flex; width: max-content; gap: 0;
  animation: marquee 52s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item {
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.14em;
  padding: 9px 0; white-space: nowrap;
  display: inline-flex; align-items: center;
}
.ticker-item b { color: var(--gold-2); font-weight: 600; margin-left: 0.6em; }
.ticker-item::after { content: "✦"; margin: 0 2.2em; color: var(--gold); opacity: 0.7; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ==========================================================================
   ГЕРОЙ
   ========================================================================== */
.hero { position: relative; overflow: hidden; }
.hero::before {
  /* водяной знак ₸ */
  content: "₸"; position: absolute; z-index: 0;
  font-family: var(--font-display); font-size: 46rem; line-height: 0.8;
  color: rgba(22, 56, 59, 0.045);
  left: -6rem; bottom: -10rem; pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px;
  align-items: center; padding: 84px 28px 96px; position: relative; z-index: 1;
}
.hero-title {
  font-size: clamp(2.5rem, 5.4vw, 4.3rem);
  margin: 22px 0 24px; letter-spacing: 0.005em;
}
.hero-title em { font-style: normal; color: var(--gold); position: relative; white-space: nowrap; }
.hero-title em::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0.04em;
  border-bottom: 3px double var(--gold);
  opacity: 0.65;
}
.hero-sub { max-width: 33em; color: var(--ink-soft); font-size: 1.08rem; }
.hero-sub b { color: var(--ink); }
.hero-actions { display: flex; gap: 16px; margin: 36px 0 0; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 0; margin-top: 52px;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  width: fit-content;
}
.stat { padding: 16px 30px 14px; border-right: 1px solid var(--line); }
.stat:first-child { padding-left: 4px; }
.stat:last-child { border-right: 0; }
.stat b { display: block; font-family: var(--font-display); font-weight: 400; font-size: 1.7rem; color: var(--ink); }
.stat b sup { font-size: 0.85rem; color: var(--gold); }
.stat span { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); }

/* правая колонка: гравюра */
.hero-art { position: relative; height: 620px; }
.art-rosette {
  position: absolute; width: 470px; height: 470px;
  right: 6%; top: 48%; transform: translateY(-50%);
  color: rgba(22, 56, 59, 0.30);
  animation: spin 140s linear infinite;
}
.art-rosette svg * { stroke-width: 0.7; }
.art-baiterek {
  position: absolute; width: 290px; height: 560px;
  right: 19%; top: 47%; transform: translateY(-50%);
  color: var(--ink);
}
@keyframes spin { to { transform: translateY(-50%) rotate(360deg); } }

/* плавающие мини-купюры */
.chip-float {
  position: absolute; z-index: 3;
  background: var(--paper);
  border: 1px solid var(--ink);
  box-shadow: var(--shadow-plate);
  padding: 12px 18px 11px;
  animation: floaty 7s ease-in-out infinite alternate;
}
.chip-float::before {
  content: ""; position: absolute; inset: 3px;
  border: 1px dashed var(--line); pointer-events: none;
}
.chip-float .mono { display: block; color: var(--ink-soft); font-size: 0.6rem; margin-bottom: 2px; }
.chip-float b { font-family: var(--font-display); font-weight: 400; font-size: 1.18rem; color: var(--teal); }
.chip-1 { top: 6%; left: -2%; animation-delay: 0s; }
.chip-2 { bottom: 17%; left: 4%; animation-delay: -2.4s; }
.chip-3 { top: 30%; right: -3%; animation-delay: -4.6s; }
@keyframes floaty { from { transform: translateY(-9px); } to { transform: translateY(9px); } }

/* ==========================================================================
   СЕКЦИИ
   ========================================================================== */
.section { padding: 92px 0; position: relative; }
.section--tint { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.section-head { max-width: 720px; margin-bottom: 54px; position: relative; z-index: 1; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); margin: 16px 0 16px; }
.section-head .section-sub { color: var(--ink-soft); font-size: 1.04rem; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .overline { justify-content: center; }
.section-head--center .overline::after { content: ""; width: 34px; height: 1px; background: var(--gold); }

.orn-divider { width: 320px; max-width: 70%; height: 44px; margin: 0 auto; color: var(--gold); opacity: 0.9; }
.orn-divider svg * { stroke-width: 1.2; }

/* перфорация-отрыв между блоками */
.perfo { border: none; border-top: 2px dashed var(--line); position: relative; margin: 0; }
.perfo::before, .perfo::after {
  content: ""; position: absolute; top: -7px; width: 12px; height: 12px;
  border-radius: 50%; background: var(--paper); border: 1px solid var(--line);
}
.perfo::before { left: -6px; }
.perfo::after { right: -6px; }

/* фоновые гравюры секций */
.bg-art { position: absolute; pointer-events: none; color: rgba(22, 56, 59, 0.16); z-index: 0; }
.bg-art--mountains { right: -40px; bottom: 30px; width: 560px; height: 200px; }
.bg-art--shanyrak { left: -90px; top: 60px; width: 340px; height: 340px; opacity: 0.5; }
.bg-art--tenge { right: 4%; top: 50%; transform: translateY(-50%); width: 300px; height: 360px; }

/* ==========================================================================
   ШАГИ «Как работает Aqyl»
   ========================================================================== */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; position: relative; z-index: 1; }
.step-card {
  background: var(--paper);
  border: 1px solid var(--ink);
  padding: 34px 30px 30px;
  position: relative;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s var(--ease-spring);
}
.step-card::before { content: ""; position: absolute; inset: 5px; border: 1px solid var(--line-soft); pointer-events: none; }
.step-card:hover { transform: translate(-3px, -3px); box-shadow: 6px 6px 0 rgba(22, 56, 59, 0.16); }
.step-num {
  position: absolute; top: -18px; right: 22px;
  font-family: var(--font-display); font-size: 3.6rem; line-height: 1;
  color: var(--paper-3);
  -webkit-text-stroke: 1px var(--ink);
  text-stroke: 1px var(--ink);
}
.step-icon { width: 46px; height: 46px; color: var(--gold); margin-bottom: 20px; }
.step-icon svg * { stroke-width: 1.7; }
.step-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.step-card p { color: var(--ink-soft); font-size: 0.97rem; }

/* ==========================================================================
   ВИЗАРД AQYL
   ========================================================================== */
.wizard-frame {
  position: relative; z-index: 1;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  box-shadow: 8px 8px 0 rgba(22, 56, 59, 0.12);
  padding: 56px;
  max-width: 920px; margin: 0 auto;
}
.wizard-frame::before {
  content: ""; position: absolute; inset: 7px;
  border: 1px solid var(--line); pointer-events: none;
}
.wiz-corner { position: absolute; width: 74px; height: 74px; color: var(--ink); opacity: 0.7; z-index: 2; }
.wiz-corner svg * { stroke-width: 0.8; }
.wiz-corner--tl { top: -26px; left: -26px; }
.wiz-corner--tr { top: -26px; right: -26px; }
.wiz-corner--bl { bottom: -26px; left: -26px; }
.wiz-corner--br { bottom: -26px; right: -26px; }
.wiz-corner { background: var(--paper); border-radius: 50%; }

.wiz-serial {
  position: absolute; top: 18px; right: 22px;
  font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.2em;
  color: var(--ink-soft);
}

.wizard-progress { display: flex; gap: 7px; margin-bottom: 38px; }
.wizard-progress i {
  flex: 1; height: 4px; background: var(--line-soft);
  position: relative; overflow: hidden;
}
.wizard-progress i::after {
  content: ""; position: absolute; inset: 0; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s var(--ease-spring);
}
.wizard-progress i.done::after { transform: scaleX(1); }

.wiz-q { font-family: var(--font-display); font-size: clamp(1.4rem, 2.6vw, 2rem); margin-bottom: 8px; }
.wiz-hint { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 30px; }

.tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; }
.tile {
  border: 1px solid var(--ink);
  background: var(--paper);
  padding: 22px 18px 19px;
  text-align: left;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s var(--ease-spring), background 0.2s;
  position: relative;
}
.tile:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 rgba(22, 56, 59, 0.2); background: var(--paper-2); }
.tile.selected { background: var(--ink); color: var(--paper); }
.tile.selected .tile-ico { color: var(--gold-2); }
.tile.selected small { color: var(--cream-soft); }
.tile-ico { width: 34px; height: 34px; color: var(--gold); }
.tile-ico svg * { stroke-width: 1.7; }
.tile b { font-size: 1.02rem; font-weight: 600; line-height: 1.3; }
.tile small { color: var(--ink-soft); font-size: 0.8rem; line-height: 1.45; }

/* сумма: слайдер */
.amount-display {
  font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--ink); margin: 6px 0 4px;
}
.amount-display .cur { color: var(--gold); }
.amount-words { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); min-height: 1.2em; }

input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 30px; background: transparent; cursor: pointer; margin: 22px 0 6px;
}
input[type="range"]::-webkit-slider-runnable-track {
  height: 2px; background: var(--ink);
  background-image: repeating-linear-gradient(90deg, var(--ink) 0 2px, transparent 2px 9px);
  background-size: 100% 8px; background-position: 0 center; background-repeat: no-repeat;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 19px; height: 19px; margin-top: -8.5px;
  background: var(--gold); border: 2px solid var(--ink);
  transform: rotate(45deg);
  box-shadow: 2px 2px 0 rgba(22, 56, 59, 0.3);
}
input[type="range"]::-moz-range-track { height: 2px; background: var(--ink); }
input[type="range"]::-moz-range-thumb {
  width: 15px; height: 15px; border-radius: 0;
  background: var(--gold); border: 2px solid var(--ink);
  transform: rotate(45deg);
}
.range-scale { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.1em; color: var(--ink-soft); }

.chips { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 8px; }
.chip-btn {
  border: 1px solid var(--ink); padding: 10px 20px;
  font-size: 0.92rem; font-weight: 500; background: var(--paper);
  transition: 0.2s;
}
.chip-btn:hover { background: var(--paper-2); transform: translateY(-2px); }
.chip-btn.selected { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.wiz-nav { display: flex; align-items: center; justify-content: space-between; margin-top: 40px; gap: 16px; }
.wiz-back {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-soft); display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 4px; transition: color 0.2s;
}
.wiz-back:hover { color: var(--ink); }
.wiz-back::before { content: "←"; font-size: 1rem; }
.wiz-step-label { font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.2em; color: var(--ink-soft); }

/* размышление AI */
.thinking { text-align: center; padding: 30px 0 14px; }
.think-rosette { width: 120px; height: 120px; margin: 0 auto 30px; color: var(--gold); animation: spin 9s linear infinite; }
@keyframes spin-c { to { transform: rotate(360deg); } }
.think-rosette { animation: spin-c 9s linear infinite; }
.think-lines { display: flex; flex-direction: column; gap: 11px; align-items: center; min-height: 170px; }
.think-line {
  font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.1em;
  color: var(--ink-soft); opacity: 0; transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s var(--ease-spring);
}
.think-line.on { opacity: 1; transform: none; }
.think-line.on::before { content: "▸ "; color: var(--gold); }
.think-line.done { color: var(--teal); }
.think-line.done::before { content: "✓ "; color: var(--teal); }

/* итоговый вердикт Aqyl */
.aqyl-says {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--dark); color: var(--cream-soft);
  padding: 26px 30px; margin-bottom: 34px;
  position: relative;
}
.aqyl-says::before { content: ""; position: absolute; inset: 5px; border: 1px solid var(--cream-line); pointer-events: none; }
.aqyl-says .spark { width: 40px; height: 40px; flex: none; color: var(--gold-2); animation: pulse-spark 3s ease-in-out infinite; }
.aqyl-says .spark svg * { stroke-width: 1.6; }
@keyframes pulse-spark { 0%, 100% { transform: scale(1) rotate(0deg); } 50% { transform: scale(1.12) rotate(12deg); } }
.aqyl-says p { font-size: 0.99rem; line-height: 1.6; }
.aqyl-says b { color: #fff; }
.aqyl-says .mono { display: block; color: var(--gold-2); margin-bottom: 7px; }

/* карточки результатов */
.result-card {
  border: 1px solid var(--ink); background: var(--paper);
  padding: 28px 30px 24px; margin-bottom: 18px; position: relative;
  display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center;
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.5s, transform 0.5s var(--ease-spring), box-shadow 0.25s;
}
.result-card.shown { opacity: 1; transform: none; }
.result-card:hover { box-shadow: 6px 6px 0 rgba(22, 56, 59, 0.13); }
.result-card::before { content: ""; position: absolute; inset: 4px; border: 1px dashed var(--line-soft); pointer-events: none; }
.result-card--top { border-width: 2px; box-shadow: 8px 8px 0 rgba(168, 119, 36, 0.25); background: linear-gradient(135deg, var(--paper), var(--paper-2)); }

.result-rank {
  position: absolute; top: -13px; left: 22px;
  background: var(--ink); color: var(--paper);
  font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.2em;
  padding: 5px 13px;
}
.result-card--top .result-rank { background: var(--gold); color: var(--dark); }

.stamp {
  position: absolute; top: 14px; right: 18px;
  border: 2px solid var(--red); color: var(--red);
  font-family: var(--font-mono); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.18em;
  padding: 6px 12px; transform: rotate(-7deg);
  border-radius: 3px; mix-blend-mode: multiply; opacity: 0.85;
}
.result-card.shown .stamp { animation: stamp-in 0.45s var(--ease-spring) backwards; animation-delay: 0.35s; }
@keyframes stamp-in {
  from { transform: rotate(-20deg) scale(2.2); opacity: 0; }
  to { transform: rotate(-7deg) scale(1); opacity: 0.85; }
}

/* ==========================================================================
   ПЕЧАТЬ-МОНОГРАММА ОРГАНИЗАЦИИ
   ========================================================================== */
.seal {
  width: 72px; height: 72px; flex: none; position: relative;
  display: grid; place-items: center;
}
.seal .seal-ring { position: absolute; inset: 0; color: var(--ink); }
.seal b {
  font-family: var(--font-display); font-weight: 400; font-size: 1.45rem;
  color: var(--ink); position: relative; z-index: 1;
}
.result-card:hover .seal .seal-ring, .offer-card:hover .seal .seal-ring { animation: spin-c 14s linear infinite; }

.result-main { min-width: 0; }
.result-main h3 { font-size: 1.25rem; margin-bottom: 1px; }
.result-main .org { font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); }
.reasons { list-style: none; margin-top: 13px; display: flex; flex-direction: column; gap: 6px; }
.reasons li { font-size: 0.9rem; color: var(--ink-2); display: flex; gap: 9px; align-items: baseline; }
.reasons li::before { content: "✓"; color: var(--teal); font-weight: 700; flex: none; }
.reasons li.warn::before { content: "!"; color: var(--red); }

.result-side { text-align: right; display: flex; flex-direction: column; gap: 13px; align-items: flex-end; }
.match-score { font-family: var(--font-display); font-size: 2rem; color: var(--teal); line-height: 1; }
.match-score small { font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.16em; display: block; color: var(--ink-soft); margin-top: 5px; }
.result-nums { font-size: 0.85rem; color: var(--ink-soft); }
.result-nums b { color: var(--ink); }

.wiz-disclaimer { margin-top: 26px; }
.restart {
  margin-top: 22px; display: inline-flex; gap: 9px; align-items: center;
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-soft); border-bottom: 1px dashed var(--line);
  padding-bottom: 3px; transition: color 0.2s;
}
.restart:hover { color: var(--gold); }

/* ==========================================================================
   КАРТОЧКИ-КУПЮРЫ (витрина и каталоги)
   ========================================================================== */
.offer-card {
  background: linear-gradient(160deg, var(--paper) 60%, var(--paper-2));
  border: 1px solid var(--ink);
  padding: 26px 26px 22px;
  position: relative;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s var(--ease-spring);
}
.offer-card::before { content: ""; position: absolute; inset: 5px; border: 1px solid var(--line-soft); pointer-events: none; }
.offer-card:hover { transform: translate(-3px, -3px); box-shadow: 7px 7px 0 rgba(22, 56, 59, 0.15); }
.offer-card .corner-ros { position: absolute; width: 44px; height: 44px; right: 10px; bottom: 10px; color: rgba(22, 56, 59, 0.22); }
.offer-card .corner-ros svg * { stroke-width: 0.7; }
.offer-card:hover .corner-ros { animation: spin-c 12s linear infinite; }

.offer-serial {
  position: absolute; top: 11px; right: 14px;
  font-family: var(--font-mono); font-size: 0.56rem; letter-spacing: 0.18em; color: var(--ink-soft);
}
.offer-head { display: flex; gap: 16px; align-items: center; }
.offer-head .seal { width: 58px; height: 58px; }
.offer-head .seal b { font-size: 1.15rem; }
.offer-name h3 { font-size: 1.14rem; line-height: 1.25; }
.offer-name .org { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); }

.offer-nums { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.num { padding: 11px 12px 9px; border-right: 1px solid var(--line-soft); min-width: 0; }
.num:last-child { border-right: 0; }
.num dt { font-family: var(--font-mono); font-size: 0.54rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 3px; }
.num dd { font-family: var(--font-display); font-size: 1.06rem; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.num dd small { font-size: 0.72rem; font-family: var(--font-body); color: var(--ink-soft); }

.offer-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.tag {
  font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid var(--line); padding: 4px 9px; color: var(--ink-2);
  background: rgba(244, 238, 221, 0.6);
}
.tag--gold { border-color: var(--gold); color: var(--gold); }
.tag--teal { border-color: var(--teal); color: var(--teal); }

.offer-note { font-size: 0.86rem; color: var(--ink-soft); border-top: 1px dashed var(--line-soft); padding-top: 12px; display: none; }
.offer-card.open .offer-note { display: block; }

.offer-actions { display: flex; gap: 10px; margin-top: auto; }
.offer-actions .btn { flex: 1; }
.link-more {
  font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-soft); align-self: center; padding: 10px 6px;
  border-bottom: 1px dashed var(--line); transition: color 0.2s; white-space: nowrap;
}
.link-more:hover { color: var(--gold); }

/* витрина на главной */
.tabs { display: flex; gap: 0; border: 1px solid var(--ink); width: fit-content; margin-bottom: 36px; flex-wrap: wrap; background: var(--paper); }
.tab-btn {
  padding: 12px 24px; font-size: 0.92rem; font-weight: 500;
  border-right: 1px solid var(--line); color: var(--ink-soft); transition: 0.2s;
}
.tab-btn:last-child { border-right: 0; }
.tab-btn:hover { background: var(--paper-2); color: var(--ink); }
.tab-btn[aria-selected="true"] { background: var(--ink); color: var(--paper); }

.showcase-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; z-index: 1; }
.showcase-foot { margin-top: 38px; text-align: center; }

/* ==========================================================================
   МАНИФЕСТ (тёмная секция)
   ========================================================================== */
.manifesto {
  background: var(--dark); color: var(--cream-soft);
  border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink);
  position: relative; overflow: hidden;
}
.manifesto .bg-eagle {
  position: absolute; right: -80px; top: 50%; transform: translateY(-50%);
  width: 720px; height: 430px; color: rgba(244, 238, 221, 0.13);
}
.manifesto-inner { position: relative; z-index: 1; padding: 96px 28px; }
.manifesto h2 { color: #fff; }
.manifesto .overline { color: var(--gold-2); }
.manifesto .overline::before { background: var(--gold-2); }

.quote-kz { margin: 44px 0 50px; max-width: 640px; }
.quote-kz blockquote {
  font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #fff; line-height: 1.35;
}
.quote-kz cite { display: block; margin-top: 14px; font-style: normal; font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-2); }

.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; max-width: 980px; }
.principle { border: 1px solid var(--cream-line); padding: 26px 24px; background: rgba(244, 238, 221, 0.03); }
.principle .p-ico { width: 34px; height: 34px; color: var(--gold-2); margin-bottom: 16px; }
.principle .p-ico svg * { stroke-width: 1.7; }
.principle h3 { color: #fff; font-size: 1.12rem; margin-bottom: 8px; }
.principle p { font-size: 0.92rem; color: var(--cream-soft); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { max-width: 820px; margin: 0 auto; position: relative; z-index: 1; }
.faq-item { border: 1px solid var(--ink); background: var(--paper); margin-bottom: 14px; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 21px 26px;
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  font-weight: 600; font-size: 1.02rem;
  transition: background 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--paper-2); }
.faq-item summary::after {
  content: "+"; font-family: var(--font-display); font-size: 1.5rem; color: var(--gold);
  flex: none; transition: transform 0.3s var(--ease-spring);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 26px 24px; color: var(--ink-2); font-size: 0.96rem; }
.faq-item .faq-body a { color: var(--teal); }

/* ==========================================================================
   CTA-ЛЕНТА
   ========================================================================== */
.cta-band { padding: 100px 0; text-align: center; position: relative; overflow: hidden; }
.cta-band .bg-ros {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 640px; height: 640px; color: rgba(22, 56, 59, 0.07);
  animation: spin-c 180s linear infinite;
}
.cta-band h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 18px; position: relative; }
.cta-band p { color: var(--ink-soft); margin-bottom: 36px; position: relative; }
.cta-band .btn { position: relative; }

/* ==========================================================================
   ПОДВАЛ
   ========================================================================== */
.site-foot { background: var(--dark); color: var(--cream-soft); border-top: 1px solid var(--ink); }
.skyline-wrap { color: rgba(244, 238, 221, 0.34); padding-top: 50px; }
.skyline-wrap [data-art] { max-width: 980px; margin: 0 auto; height: 200px; }
.foot-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  padding: 54px 0 40px; border-top: 1px solid var(--cream-line); margin-top: -1px;
}
.foot-brand .logo-mark { color: var(--gold-2); margin-bottom: 14px; }
.foot-brand p { font-size: 0.88rem; max-width: 26em; }
.foot-col h4 { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 16px; font-weight: 600; }
.foot-col a { display: block; text-decoration: none; font-size: 0.92rem; padding: 5px 0; color: var(--cream-soft); transition: color 0.2s, transform 0.2s; }
.foot-col a:hover { color: #fff; transform: translateX(4px); }

.disclaimer {
  border: 1px dashed var(--cream-line); padding: 18px 22px;
  font-size: 0.78rem; line-height: 1.6; color: rgba(244, 238, 221, 0.55);
  margin-bottom: 34px;
}
.foot-bottom {
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  padding: 22px 0 30px; border-top: 1px solid var(--cream-line);
  font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(244, 238, 221, 0.5);
}

/* дисклеймер на светлом фоне */
.disclaimer--light { border-color: var(--line); color: var(--ink-soft); }

/* ==========================================================================
   СТРАНИЦЫ КАТАЛОГОВ
   ========================================================================== */
.page-hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.page-hero-inner { padding: 64px 28px 58px; position: relative; z-index: 1; max-width: 760px; }
.page-hero h1 { font-size: clamp(2rem, 4.4vw, 3.3rem); margin: 16px 0 14px; }
.page-hero p { color: var(--ink-soft); font-size: 1.04rem; }
.page-hero .bg-art { opacity: 0.9; }
.page-hero .bg-art--skyline { right: -60px; bottom: 0; width: 700px; height: 190px; color: rgba(22, 56, 59, 0.2); }
.page-hero .bg-art--eagle { right: -50px; top: 50%; transform: translateY(-50%); width: 540px; height: 320px; color: rgba(22, 56, 59, 0.15); }

.breadcrumbs { font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); }
.breadcrumbs a { color: inherit; text-decoration: none; }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs .sep { margin: 0 8px; color: var(--gold); }

.filters {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
  padding: 22px 0; margin-bottom: 36px;
  border-bottom: 1px solid var(--line);
  position: relative; z-index: 2;
}
.filter-field { display: flex; flex-direction: column; gap: 5px; }
.filter-field label { font-family: var(--font-mono); font-size: 0.56rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); }
.filter-field input[type="text"], .filter-field input[type="number"], .filter-field select {
  border: 1px solid var(--ink); background: var(--paper); padding: 10px 14px;
  font-size: 0.94rem; min-width: 170px;
}
.check-pill { display: inline-flex; align-items: center; gap: 9px; cursor: pointer; border: 1px solid var(--line); padding: 10px 16px; font-size: 0.88rem; transition: 0.2s; user-select: none; background: var(--paper); }
.check-pill:hover { border-color: var(--ink); }
.check-pill input { position: absolute; opacity: 0; pointer-events: none; }
.check-pill i {
  width: 15px; height: 15px; border: 1px solid var(--ink); flex: none; position: relative;
  font-style: normal; display: grid; place-items: center; font-size: 11px; color: transparent;
  transition: 0.15s;
}
.check-pill input:checked ~ i { background: var(--ink); color: var(--gold-2); }
.check-pill input:checked ~ span { color: var(--ink); font-weight: 600; }
.check-pill input:focus-visible ~ i { outline: 2px solid var(--gold); outline-offset: 2px; }

.catalog-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 26px; gap: 16px; flex-wrap: wrap; }
.results-count { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); }
.results-count b { color: var(--gold); }

.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; z-index: 1; }

.empty-state { text-align: center; padding: 80px 20px; border: 1px dashed var(--line); }
.empty-state .e-ico { width: 60px; height: 60px; margin: 0 auto 20px; color: var(--ink-soft); }
.empty-state p { color: var(--ink-soft); max-width: 30em; margin: 0 auto; }

.info-banner {
  display: flex; gap: 16px; align-items: flex-start;
  border: 1px solid var(--teal); background: rgba(44, 110, 98, 0.07);
  padding: 18px 22px; margin-bottom: 34px; font-size: 0.92rem; color: var(--ink-2);
}
.info-banner .i-ico { width: 26px; height: 26px; flex: none; color: var(--teal); margin-top: 2px; }

/* ==========================================================================
   КАЛЬКУЛЯТОР
   ========================================================================== */
.calc-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 34px; align-items: start; position: relative; z-index: 1; }
.calc-panel {
  background: var(--paper); border: 1.5px solid var(--ink);
  box-shadow: 8px 8px 0 rgba(22, 56, 59, 0.12); padding: 40px 42px;
  position: relative;
}
.calc-panel::before { content: ""; position: absolute; inset: 6px; border: 1px solid var(--line-soft); pointer-events: none; }
.calc-field { margin-bottom: 30px; position: relative; }
.calc-field-head { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; }
.calc-field-head label { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); }
.calc-value { font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); }
.calc-value .cur { color: var(--gold); font-size: 1.1rem; }

.seg { display: inline-flex; border: 1px solid var(--ink); }
.seg button { padding: 11px 22px; font-size: 0.9rem; font-weight: 500; color: var(--ink-soft); border-right: 1px solid var(--line); transition: 0.2s; }
.seg button:last-child { border-right: 0; }
.seg button[aria-pressed="true"] { background: var(--ink); color: var(--paper); }

.calc-out { display: flex; flex-direction: column; gap: 22px; }
.pay-card {
  background: var(--dark); color: var(--cream-soft); padding: 34px 36px;
  position: relative; overflow: hidden;
}
.pay-card::before { content: ""; position: absolute; inset: 6px; border: 1px solid var(--cream-line); pointer-events: none; }
.pay-card .bg-r { position: absolute; right: -60px; top: -60px; width: 230px; height: 230px; color: rgba(244, 238, 221, 0.12); animation: spin-c 70s linear infinite; }
.pay-card .mono { color: var(--gold-2); }
.big-pay { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.2rem); color: #fff; margin: 8px 0 2px; position: relative; }
.big-pay .cur { color: var(--gold-2); }
.pay-sub { font-size: 0.88rem; color: var(--cream-soft); position: relative; }

.calc-rows { border: 1px solid var(--ink); background: var(--paper); }
.calc-row { display: flex; justify-content: space-between; gap: 16px; padding: 15px 22px; border-bottom: 1px dashed var(--line-soft); font-size: 0.95rem; align-items: center; }
.calc-row:last-child { border-bottom: 0; }
.calc-row b { font-family: var(--font-display); font-weight: 400; font-size: 1.12rem; white-space: nowrap; }
.calc-row .label { color: var(--ink-soft); }

.donut-wrap { display: flex; align-items: center; gap: 26px; border: 1px solid var(--ink); padding: 22px 26px; background: var(--paper); }
.donut { width: 130px; height: 130px; flex: none; transform: rotate(-90deg); }
.donut circle { fill: none; stroke-width: 14; }
.donut .d-track { stroke: var(--line-soft); }
.donut .d-principal { stroke: var(--ink); transition: stroke-dasharray 0.6s var(--ease-spring); }
.donut .d-interest { stroke: var(--gold); transition: stroke-dasharray 0.6s var(--ease-spring), stroke-dashoffset 0.6s var(--ease-spring); }
.legend { display: flex; flex-direction: column; gap: 9px; font-size: 0.88rem; }
.legend i { display: inline-block; width: 13px; height: 13px; margin-right: 9px; vertical-align: -1px; }
.legend .l-p i { background: var(--ink); }
.legend .l-i i { background: repeating-linear-gradient(45deg, var(--gold) 0 2px, transparent 2px 4px); border: 1px solid var(--gold); }

.sched-wrap { margin-top: 44px; position: relative; z-index: 1; }
.sched-table { width: 100%; border-collapse: collapse; border: 1px solid var(--ink); background: var(--paper); }
.sched-table th {
  font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.16em; text-transform: uppercase;
  text-align: right; padding: 12px 16px; background: var(--ink); color: var(--paper-2); font-weight: 400;
}
.sched-table th:first-child, .sched-table td:first-child { text-align: left; }
.sched-table td { padding: 10px 16px; text-align: right; font-size: 0.88rem; border-bottom: 1px dashed var(--line-soft); font-variant-numeric: tabular-nums; }
.sched-table tr:nth-child(even) td { background: rgba(236, 227, 201, 0.4); }
.sched-table .year-row td { background: var(--paper-2); font-weight: 600; border-bottom: 1px solid var(--line); }

/* ==========================================================================
   АНИМАЦИИ ПОЯВЛЕНИЯ
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s, transform 0.7s var(--ease-spring); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }
.reveal-d3 { transition-delay: 0.36s; }

/* плавающая кнопка Aqyl */
.aqyl-fab {
  position: fixed; right: 26px; bottom: 26px; z-index: 50;
  display: flex; align-items: center; gap: 11px;
  background: var(--ink); color: var(--paper);
  border: 1px solid var(--ink);
  padding: 13px 22px 13px 16px; text-decoration: none;
  box-shadow: 5px 5px 0 rgba(22, 56, 59, 0.25);
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s;
}
.aqyl-fab:hover { transform: translate(-3px, -3px); box-shadow: 8px 8px 0 var(--gold); }
.aqyl-fab .spark { width: 22px; height: 22px; color: var(--gold-2); animation: pulse-spark 3s ease-in-out infinite; }
.aqyl-fab b { font-size: 0.9rem; font-weight: 600; }
.aqyl-fab small { display: block; font-family: var(--font-mono); font-size: 0.54rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cream-soft); }

/* ==========================================================================
   АДАПТИВ
   ========================================================================== */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; padding-top: 56px; }
  .hero-art { height: 480px; margin-top: 10px; }
  .art-rosette { width: 380px; height: 380px; right: 50%; transform: translate(50%, -50%); }
  .art-baiterek { width: 230px; height: 450px; right: 50%; transform: translate(50%, -50%); }
  @keyframes spin { to { transform: translate(50%, -50%) rotate(360deg); } }
  .chip-1 { left: 2%; } .chip-3 { right: 0; }
  .showcase-row, .catalog-grid, .steps-grid, .principles { grid-template-columns: repeat(2, 1fr); }
  .calc-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .manifesto .bg-eagle { opacity: 0.5; }
}

@media (max-width: 700px) {
  body { font-size: 16px; }
  .head-row { height: 64px; gap: 16px; }
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--paper);
    border-bottom: 1px solid var(--ink); padding: 10px 28px 18px;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 0; border-bottom: 1px dashed var(--line-soft); }
  .burger { display: flex; margin-left: auto; }
  .head-cta { display: none; }
  .hero-grid { padding: 44px 22px 64px; }
  .hero-stats { width: 100%; flex-wrap: wrap; }
  .stat { padding: 12px 16px 10px; flex: 1 1 40%; border-bottom: 1px solid var(--line-soft); }
  .container { padding: 0 22px; }
  .section { padding: 64px 0; }
  .wizard-frame { padding: 34px 22px; }
  .wiz-corner { width: 52px; height: 52px; }
  .wiz-corner--tl { top: -18px; left: -14px; } .wiz-corner--tr { top: -18px; right: -14px; }
  .wiz-corner--bl { bottom: -18px; left: -14px; } .wiz-corner--br { bottom: -18px; right: -14px; }
  .showcase-row, .catalog-grid, .steps-grid, .principles { grid-template-columns: 1fr; }
  .result-card { grid-template-columns: 1fr; gap: 14px; }
  .result-side { text-align: left; align-items: flex-start; flex-direction: row; flex-wrap: wrap; justify-content: space-between; width: 100%; }
  .seal { display: none; }
  .offer-head .seal { display: grid; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .calc-panel { padding: 28px 22px; }
  .aqyl-fab { right: 16px; bottom: 16px; padding: 11px 16px; }
  .aqyl-fab small { display: none; }
  .hero::before { font-size: 26rem; }
  .tabs { width: 100%; }
  .tab-btn { flex: 1; padding: 11px 10px; font-size: 0.82rem; }
  .sched-table th, .sched-table td { padding: 8px 9px; font-size: 0.76rem; }
}

/* доступность: отключение движения */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .reveal, .result-card { opacity: 1; transform: none; }
  .think-line { opacity: 1; transform: none; }
}

/* печать */
@media print {
  .site-head, .ticker, .aqyl-fab, .grain, .site-foot, .cta-band { display: none; }
}
