/* ==========================================================================
   АСД-ТЕХ — дизайн-система сайта
   Минимальная анимация: только короткие переходы и одно мягкое появление.
   ========================================================================== */

:root {
  /* Палитра */
  --ink: #0b1622;
  --ink-2: #1d2b3a;
  --muted: #5a6b7d;
  --muted-2: #8698a9;
  --line: #e2e8ef;
  --line-2: #eef2f6;
  --bg: #ffffff;
  --bg-soft: #f5f8fb;
  --bg-deep: #0b1622;
  --bg-deep-2: #122234;

  --brand: #1180e8;
  --brand-dark: #0b4ea2;
  --brand-soft: #e8f2fd;
  --accent: #16b79a;
  --accent-soft: #e4f7f3;
  --warn: #e0a020;
  --danger: #d8443c;

  /* Типографика */
  --font: 'Segoe UI', 'Inter', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --h1: clamp(2rem, 4.4vw, 3.25rem);
  --h2: clamp(1.5rem, 2.8vw, 2.25rem);
  --h3: clamp(1.15rem, 1.8vw, 1.4rem);

  /* Метрики */
  --wrap: 1200px;
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(11, 22, 34, 0.06), 0 2px 8px rgba(11, 22, 34, 0.04);
  --shadow: 0 4px 12px rgba(11, 22, 34, 0.07), 0 12px 32px rgba(11, 22, 34, 0.06);
  --t: 160ms ease;
}

/* ---------- Сброс ---------- */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-dark); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--brand); }
button { font-family: inherit; }

h1, h2, h3, h4 { line-height: 1.22; margin: 0 0 0.5em; font-weight: 700; letter-spacing: -0.01em; }
h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); }
p { margin: 0 0 1em; }

:focus-visible { outline: 3px solid var(--brand); outline-offset: 2px; border-radius: 4px; }

/* Доступность: полностью отключаем анимацию по системной настройке */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--brand); color: #fff; padding: 10px 18px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm); transition: top var(--t);
}
.skip-link:focus { top: 0; color: #fff; }

/* ---------- Раскладка ---------- */

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }

.section { padding: 72px 0; }
.section--soft { background: var(--bg-soft); }
.section--tight { padding: 48px 0; }

.section-head { max-width: 760px; margin-bottom: 36px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.05rem; margin: 0; }

.eyebrow {
  display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--brand); margin-bottom: 12px;
}

.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }

/* ---------- Кнопки ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 12px 24px; border: 1px solid transparent; border-radius: var(--radius-sm);
  font-size: 0.97rem; font-weight: 600; cursor: pointer; text-align: center;
  transition: background-color var(--t), border-color var(--t), color var(--t), transform var(--t);
}
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--brand); color: #fff; }
.btn--primary:hover { background: var(--brand-dark); color: #fff; }

.btn--ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand-dark); background: var(--brand-soft); }

.btn--light { background: #fff; color: var(--brand-dark); }
.btn--light:hover { background: var(--brand-soft); color: var(--brand-dark); }

.btn--outline-light { background: transparent; border-color: rgba(255, 255, 255, 0.4); color: #fff; }
.btn--outline-light:hover { background: rgba(255, 255, 255, 0.12); color: #fff; border-color: #fff; }

.btn--sm { padding: 8px 16px; font-size: 0.88rem; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: 0.55; cursor: not-allowed; }

/* ---------- Шапка ---------- */

.topbar {
  background: var(--bg-deep); color: #b9c8d8; font-size: 0.86rem;
  padding: 8px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.topbar .wrap { display: flex; flex-wrap: wrap; gap: 8px 26px; align-items: center; }
.topbar a { color: #dce6f0; }
.topbar a:hover { color: #fff; }
.topbar__spacer { margin-left: auto; }

.header {
  position: sticky; top: 0; z-index: 100; background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px); border-bottom: 1px solid var(--line);
  transition: box-shadow var(--t);
}
.header--scrolled { box-shadow: var(--shadow-sm); }

.header__inner { display: flex; align-items: center; gap: 20px; min-height: 74px; }
.header__logo { flex-shrink: 0; }
.header__logo img { height: 46px; width: auto; }

.nav { margin-left: auto; }
.nav ul { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav a {
  display: block; padding: 10px 14px; border-radius: var(--radius-sm);
  color: var(--ink-2); font-weight: 500; font-size: 0.96rem;
  transition: background-color var(--t), color var(--t);
}
.nav a:hover { background: var(--bg-soft); color: var(--brand-dark); }
.nav a[aria-current='page'] { color: var(--brand-dark); background: var(--brand-soft); font-weight: 600; }

.header__actions { display: flex; align-items: center; gap: 10px; }

.cart-btn { position: relative; }
.cart-btn__count {
  position: absolute; top: -6px; right: -6px; min-width: 20px; height: 20px;
  display: none; place-items: center; padding: 0 5px;
  background: var(--accent); color: #fff; border-radius: 10px;
  font-size: 0.72rem; font-weight: 700; line-height: 20px; text-align: center;
}
.cart-btn__count[data-visible='1'] { display: block; }

.burger {
  display: none; width: 42px; height: 42px; border: 1px solid var(--line);
  border-radius: var(--radius-sm); background: #fff; cursor: pointer;
  align-items: center; justify-content: center;
}
.burger span, .burger span::before, .burger span::after {
  content: ''; display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px;
}
.burger span { position: relative; }
.burger span::before { position: absolute; top: -6px; }
.burger span::after { position: absolute; top: 6px; }

@media (max-width: 980px) {
  .burger { display: flex; }
  .nav {
    position: absolute; left: 0; right: 0; top: 100%; background: #fff;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    display: none; padding: 12px 20px 18px;
  }
  .nav[data-open='1'] { display: block; }
  .nav ul { flex-direction: column; gap: 2px; }
  .nav a { padding: 12px 14px; }
  .header__inner { position: relative; }
}

/* ---------- Герой ---------- */

.hero {
  position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(1000px 460px at 88% -12%, rgba(22, 183, 154, 0.24), transparent 60%),
    linear-gradient(140deg, #0b1622 0%, #103055 52%, #0b4ea2 100%);
}
.hero::after {
  content: ''; position: absolute; inset: 0; opacity: 0.16; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.35) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 70% 30%, #000 0%, transparent 72%);
}
.hero__inner {
  position: relative; z-index: 1; display: grid; gap: 44px; align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); padding: 84px 0 92px;
}
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero__lead { font-size: 1.12rem; color: #ccdcec; max-width: 620px; margin-bottom: 30px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 34px; }

.hero__badges { display: flex; flex-wrap: wrap; gap: 10px; }
.badge {
  display: inline-flex; align-items: center; gap: 7px; padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22); border-radius: 999px;
  background: rgba(255, 255, 255, 0.07); font-size: 0.86rem; color: #dce8f4;
}

/* Панель «мнемосхема» в герое */
.hero__panel {
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg); padding: 22px; backdrop-filter: blur(6px);
}
.hero__panel-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 14px; margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; color: #9fb6cc;
}
.led {
  display: inline-flex; align-items: center; gap: 7px; font-size: 0.8rem;
  letter-spacing: 0.04em; text-transform: none; color: #b7ecdf;
}
.led::before {
  content: ''; width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 0 rgba(22, 183, 154, 0.55);
  animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22, 183, 154, 0.5); }
  50% { box-shadow: 0 0 0 7px rgba(22, 183, 154, 0); }
}

.metrics { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.metric {
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm); padding: 14px 16px;
}
.metric__label {
  font-size: 0.74rem; letter-spacing: 0.09em; text-transform: uppercase; color: #90a8c0;
}
.metric__value { font-size: 1.42rem; font-weight: 700; color: #fff; }
.metric__value span { font-size: 0.86rem; font-weight: 500; color: #9fb6cc; }

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; padding: 56px 0 64px; }
}

/* ---------- Карточки ---------- */

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.card:hover { border-color: #cfe0f2; box-shadow: var(--shadow); transform: translateY(-2px); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); margin: 0; }

.icon-tile {
  width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center;
  background: var(--brand-soft); color: var(--brand-dark); margin-bottom: 16px;
}
.icon-tile svg { width: 26px; height: 26px; }
.icon-tile--accent { background: var(--accent-soft); color: #0e8a74; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; padding: 0; list-style: none; }
.chips li {
  padding: 5px 12px; border-radius: 999px; background: var(--bg-soft);
  border: 1px solid var(--line-2); font-size: 0.84rem; color: var(--muted);
}

.list-check { list-style: none; margin: 14px 0 0; padding: 0; }
.list-check li { position: relative; padding: 5px 0 5px 28px; color: var(--ink-2); }
.list-check li::before {
  content: ''; position: absolute; left: 4px; top: 13px; width: 11px; height: 6px;
  border-left: 2.2px solid var(--accent); border-bottom: 2.2px solid var(--accent);
  transform: rotate(-45deg);
}

/* Нумерованные шаги процесса */
.steps { counter-reset: step; }
.step { position: relative; padding-left: 62px; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; left: 26px; top: 26px;
  font-size: 1.1rem; font-weight: 700; color: var(--brand);
}
.step h3 { margin-bottom: 8px; }

/* ---------- Каталог ---------- */

.catalog { display: grid; grid-template-columns: 264px minmax(0, 1fr); gap: 28px; align-items: start; }
@media (max-width: 900px) { .catalog { grid-template-columns: 1fr; } }

.filters {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px; position: sticky; top: 96px;
}
.filters h3 { font-size: 1rem; margin-bottom: 14px; }
.filters__group + .filters__group { margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line-2); }

.filter-list { list-style: none; margin: 0; padding: 0; }
.filter-list button {
  width: 100%; display: flex; justify-content: space-between; gap: 10px; align-items: center;
  padding: 9px 12px; border: 0; border-radius: var(--radius-sm); background: transparent;
  color: var(--ink-2); font-size: 0.94rem; text-align: left; cursor: pointer;
  transition: background-color var(--t), color var(--t);
}
.filter-list button:hover { background: var(--bg-soft); }
.filter-list button[aria-pressed='true'] { background: var(--brand-soft); color: var(--brand-dark); font-weight: 600; }
.filter-list small { color: var(--muted-2); font-variant-numeric: tabular-nums; }

.field { display: block; margin-bottom: 14px; }
.field > span { display: block; font-size: 0.86rem; font-weight: 600; color: var(--ink-2); margin-bottom: 6px; }
.field small { display: block; font-weight: 400; color: var(--muted-2); font-size: 0.8rem; margin-top: 4px; }

.input, .select, .textarea {
  width: 100%; padding: 11px 13px; border: 1px solid var(--line);
  border-radius: var(--radius-sm); font-size: 0.95rem; font-family: inherit;
  color: var(--ink); background: #fff; transition: border-color var(--t), box-shadow var(--t);
}
.input:focus, .select:focus, .textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(17, 128, 232, 0.14);
}
.textarea { min-height: 120px; resize: vertical; }

.catalog__toolbar {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
  margin-bottom: 20px;
}
.catalog__toolbar .input, .catalog__toolbar .select { width: auto; flex: 1 1 220px; }
.catalog__count { color: var(--muted); font-size: 0.92rem; margin-left: auto; }

.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(252px, 1fr)); gap: 20px; }

.product {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.product:hover { border-color: #cfe0f2; box-shadow: var(--shadow); transform: translateY(-2px); }

.product__media {
  position: relative; aspect-ratio: 4 / 3; background: var(--bg-soft);
  display: grid; place-items: center; border-bottom: 1px solid var(--line-2); overflow: hidden;
}
.product__media img { width: 100%; height: 100%; object-fit: contain; padding: 14px; }
.product__media-empty { color: var(--muted-2); font-size: 0.82rem; }

.product__tag {
  position: absolute; top: 10px; left: 10px; padding: 4px 10px; border-radius: 999px;
  background: var(--accent); color: #fff; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.product__body { display: flex; flex-direction: column; flex: 1; padding: 16px 18px 18px; }
.product__sku { font-size: 0.76rem; color: var(--muted-2); letter-spacing: 0.05em; }
.product__title { font-size: 1rem; font-weight: 600; margin: 6px 0 8px; }
.product__title a { color: var(--ink); }
.product__title a:hover { color: var(--brand-dark); }
.product__short { font-size: 0.88rem; color: var(--muted); margin: 0 0 14px; }
.product__foot { margin-top: auto; display: flex; align-items: center; gap: 10px; }
.product__price { font-size: 1.18rem; font-weight: 700; font-variant-numeric: tabular-nums; }
.product__price small { display: block; font-size: 0.75rem; font-weight: 500; color: var(--muted-2); }
.product__old { font-size: 0.86rem; color: var(--muted-2); text-decoration: line-through; }
.product__foot .btn { margin-left: auto; }
.product__stock { font-size: 0.8rem; color: var(--accent); }
.product__stock--out { color: var(--muted-2); }

/* ---------- Карточка товара ---------- */

.product-page { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 40px; }
@media (max-width: 860px) { .product-page { grid-template-columns: 1fr; gap: 24px; } }

.product-page__media {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius);
  aspect-ratio: 4 / 3; display: grid; place-items: center; overflow: hidden;
}
.product-page__media img { width: 100%; height: 100%; object-fit: contain; padding: 24px; }

.price-box {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  padding: 18px; margin: 20px 0; background: var(--bg-soft);
  border: 1px solid var(--line); border-radius: var(--radius);
}
.price-box__value { font-size: 1.85rem; font-weight: 700; font-variant-numeric: tabular-nums; }

.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; }
.qty button {
  width: 38px; height: 40px; border: 0; background: transparent; cursor: pointer;
  font-size: 1.15rem; color: var(--ink-2); transition: background-color var(--t);
}
.qty button:hover { background: var(--bg-soft); }
.qty input {
  width: 52px; height: 40px; border: 0; border-inline: 1px solid var(--line);
  text-align: center; font-size: 0.98rem; font-family: inherit;
  -moz-appearance: textfield; appearance: textfield;
}
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.specs { width: 100%; border-collapse: collapse; margin-top: 8px; }
.specs th, .specs td { padding: 11px 0; border-bottom: 1px solid var(--line-2); text-align: left; font-size: 0.94rem; vertical-align: top; }
.specs th { width: 46%; font-weight: 500; color: var(--muted); }

.breadcrumbs { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0 0 22px; font-size: 0.87rem; color: var(--muted-2); }
.breadcrumbs li:not(:last-child)::after { content: '/'; margin-left: 8px; color: var(--line); }

/* ---------- Корзина ---------- */

.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
  text-align: left; padding: 0 12px 12px; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-2);
  border-bottom: 1px solid var(--line);
}
.cart-table td { padding: 16px 12px; border-bottom: 1px solid var(--line-2); vertical-align: middle; }
.cart-table td:first-child, .cart-table th:first-child { padding-left: 0; }
.cart-table td:last-child, .cart-table th:last-child { padding-right: 0; text-align: right; }
.cart-table__title { font-weight: 600; }
.cart-table__sku { font-size: 0.78rem; color: var(--muted-2); }
.cart-sum { font-variant-numeric: tabular-nums; font-weight: 600; white-space: nowrap; }

.icon-btn {
  width: 34px; height: 34px; display: grid; place-items: center; cursor: pointer;
  border: 1px solid var(--line); border-radius: 9px; background: #fff; color: var(--muted);
  transition: border-color var(--t), color var(--t), background-color var(--t);
}
.icon-btn:hover { border-color: var(--danger); color: var(--danger); background: #fdf2f1; }

.cart-layout { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(300px, 1fr); gap: 32px; align-items: start; }
@media (max-width: 900px) { .cart-layout { grid-template-columns: 1fr; } }

.summary {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; position: sticky; top: 96px;
}
.summary__row { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; color: var(--muted); }
.summary__row--total {
  margin-top: 10px; padding-top: 16px; border-top: 1px solid var(--line);
  color: var(--ink); font-size: 1.2rem; font-weight: 700;
}

.empty {
  text-align: center; padding: 64px 20px; border: 1px dashed var(--line);
  border-radius: var(--radius); color: var(--muted); background: var(--bg-soft);
}

/* ---------- Формы и уведомления ---------- */

.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px;
}
.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0 16px; }

.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 0.85rem; color: var(--muted); margin: 6px 0 18px; }
.consent input { margin-top: 3px; flex-shrink: 0; }

.notice {
  padding: 12px 16px; border-radius: var(--radius-sm); font-size: 0.92rem;
  border: 1px solid transparent; margin-bottom: 16px;
}
.notice--ok { background: var(--accent-soft); border-color: #b8e8de; color: #0c6d5c; }
.notice--err { background: #fdf2f1; border-color: #f3cdca; color: #a5312a; }
.notice[hidden] { display: none; }

.toast {
  position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%);
  z-index: 300; max-width: 92vw; padding: 13px 22px; border-radius: var(--radius-sm);
  background: var(--ink); color: #fff; font-size: 0.93rem; box-shadow: var(--shadow);
  opacity: 0; pointer-events: none; transition: opacity var(--t), transform var(--t);
}
.toast[data-show='1'] { opacity: 1; transform: translateX(-50%) translateY(-4px); }

/* ---------- CTA-полоса ---------- */

.cta {
  color: #fff; border-radius: var(--radius-lg); padding: 44px;
  background: linear-gradient(120deg, #0b4ea2 0%, #1180e8 58%, #16b79a 130%);
  display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 26px; align-items: center;
}
.cta h2 { color: #fff; margin-bottom: 8px; }
.cta p { color: #dbeafc; margin: 0; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 780px) { .cta { grid-template-columns: 1fr; padding: 30px; } }

/* ---------- Подвал ---------- */

.footer { background: var(--bg-deep); color: #9fb2c6; padding: 56px 0 26px; margin-top: 8px; }
.footer__grid { display: grid; grid-template-columns: minmax(240px, 1.4fr) repeat(auto-fit, minmax(170px, 1fr)); gap: 32px; }
.footer h4 { color: #fff; font-size: 0.94rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 14px; }
.footer img { height: 44px; width: auto; margin-bottom: 14px; }
.footer p { font-size: 0.92rem; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { padding: 4px 0; font-size: 0.93rem; }
.footer a { color: #c3d3e3; }
.footer a:hover { color: #fff; }
.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between;
  margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem; color: #7d92a8;
}

/* ---------- Прочее ---------- */

.stat-strip {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1px; background: var(--line); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
}
.stat { background: #fff; padding: 26px 24px; }
.stat__value { font-size: 2rem; font-weight: 700; color: var(--brand-dark); line-height: 1.1; }
.stat__label { color: var(--muted); font-size: 0.92rem; margin-top: 4px; }

.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item .icon-tile { width: 42px; height: 42px; margin: 0; flex-shrink: 0; }
.contact-item strong { display: block; font-size: 0.8rem; letter-spacing: 0.07em; text-transform: uppercase; color: var(--muted-2); font-weight: 700; }

.prose { max-width: 760px; }
.prose h2 { margin-top: 1.6em; }
.prose ul { padding-left: 22px; color: var(--ink-2); }
.prose li { margin-bottom: 6px; }

/* Единственное «появление»: мягкий вход блоков при прокрутке */
.reveal { opacity: 0; transform: translateY(12px); }
.reveal.is-visible { opacity: 1; transform: none; transition: opacity 340ms ease, transform 340ms ease; }
.no-js .reveal, .reveal.is-static { opacity: 1; transform: none; }

.skeleton {
  border-radius: var(--radius); background: var(--bg-soft);
  border: 1px solid var(--line-2); min-height: 240px;
}
