/* ============================================================
   НОВО-ЛАЗЕР · styles.css
   Тёмная индустриальная палитра. Acc: #ff5a1f (искры).
   ============================================================ */

/* ---------- CSS-переменные ---------- */
:root {
  --bg:           #070808;
  --bg-card:      #0c0d0e;
  --bg-card-2:    #15171a;
  --line:         #23272c;
  --line-2:       #2c3138;
  --text:         #e7eaee;
  --text-dim:     #8a9099;
  --text-mid:     #b6bcc3;
  --accent:       #ff5a1f;
  --accent-dim:   #ff5a1f33;
  --laser:        #ffffff;
  --laser-blue:   #bfe6ff;
  --green:        #34d399;

  --ff-head: 'Oswald', system-ui, sans-serif;
  --ff-sub:  'Oswald', system-ui, sans-serif;
  --ff-body: 'Inter', system-ui, sans-serif;
  --ff-mono: 'JetBrains Mono', ui-monospace, monospace;

  --maxw: 1440px;
  --pad:  32px;        /* поля контейнера (offset) — не меньше гаттера */
  --gap:  16px;
  --gutter: 32px;      /* единый межколоночный отступ 12-сетки (верх диапазона 20–32px) */
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
*, *::before, *::after { -webkit-tap-highlight-color: rgba(255, 90, 31, 0.18); }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 88px;
}
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg, video, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
ul, ol { padding: 0; margin: 0; list-style: none; }
table { border-collapse: collapse; width: 100%; }


/* ---------- Координатная сетка фона ---------- */
.bg-grid {
  position: fixed; inset: 0;
  background-image:
    linear-gradient(to right, rgba(35,39,44,.35) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(35,39,44,.35) 1px, transparent 1px);
  background-size: 48px 48px;
  z-index: -1;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 0%, transparent 80%);
  pointer-events: none;
}


/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  padding-left: max(var(--pad), env(safe-area-inset-left));
  padding-right: max(var(--pad), env(safe-area-inset-right));
}


/* ---------- 12-колоночная сетка (единая основа раскладки) ----------
   Все крупные секции выравниваются к одним и тем же линиям колонок —
   контент занимает целое число колонок (span N), отступ между ними — --gutter. */
.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--gutter);
}


/* ---------- Типографика ---------- */
.section__eyebrow {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.section__h2 {
  font-family: var(--ff-head);
  font-weight: 400;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1;
  letter-spacing: 0.01em;
  margin: 0 0 16px;
  color: var(--text);
}
.section__sub {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dim);
  max-width: 760px;
  margin: 0;
}
.section__head { margin-bottom: 48px; }
.section__cta-row { margin-top: 40px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.section__cta-note {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0;
}

.accent { color: var(--accent); }


/* ---------- Section base ---------- */
.section {
  padding: 96px 0;
  position: relative;
}
.section + .section { border-top: 1px solid var(--line); }


/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 12px;
  padding: 16px 28px;
  font-family: var(--ff-sub);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: var(--accent);
  color: #0a0a0a;
  box-shadow: 0 0 0 0 var(--accent);
}
.btn--primary:hover {
  background: #ff7040;
  color: #0a0a0a;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(255, 90, 31, 0.35);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-2);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255, 90, 31, 0.05);
}
.btn--large { padding: 20px 36px; font-size: 15px; }
.btn--block { width: 100%; }
.btn__arrow {
  font-family: var(--ff-mono);
  font-weight: 400;
  font-size: 1.1em;
  transition: transform .2s;
}
.btn:hover .btn__arrow { transform: translateX(4px); }

/* Подстрока: уезжает на новую строку под основным текстом */
.btn__sub {
  order: 3;
  flex-basis: 100%;
  font-size: 9px;
  letter-spacing: 0.12em;
  opacity: 0.7;
  font-weight: 500;
  margin-top: 3px;
  text-align: left;
}
.btn--primary .btn__sub { color: #0a0a0a; }

/* Когда у кнопки есть подстрока – выравнивание влево, стрелка вправо */
.btn:has(.btn__sub) {
  justify-content: flex-start;
  text-align: left;
}
.btn:has(.btn__sub) .btn__arrow {
  order: 2;
  margin-left: auto;
}

/* Когда у кнопки есть подстрока – выравнивание влево, стрелка вправо */
.btn:has(.btn__sub) {
  justify-content: flex-start;
  text-align: left;
}
.btn:has(.btn__sub) .btn__arrow {
  order: 2;
  margin-left: auto;
}


/* ---------- Логотип ---------- */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-head);
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--text);
}
.logo:hover { color: var(--text); }
.logo__mark {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 2px;
  overflow: hidden;
}
.logo__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.logo__dot { color: var(--accent); margin: 0 4px; }
.logo__text {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  line-height: 1;
}
.logo__name {
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 21px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding-bottom: 5px;
  border-bottom: 1.5px solid var(--accent);
}
.logo__tagline {
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding-top: 5px;
  text-align: center;
}


/* ---------- Шапка ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(7, 8, 8, 0.4);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transition: background .25s, backdrop-filter .25s, border-color .25s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(7, 8, 8, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}
.site-nav {
  display: flex;
  gap: 18px;
  margin-left: auto;
  flex-wrap: nowrap;
}
.site-nav__link {
  font-family: var(--ff-sub);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  white-space: nowrap;
}
.site-nav__link:hover { color: var(--accent); }
.site-header__cta { padding: 12px 22px; font-size: 12px; }

.burger {
  display: none;
  width: 40px; height: 40px;
  padding: 8px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.burger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--text);
  transition: transform .25s, opacity .25s;
}
.burger.is-open span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: rgba(7, 8, 8, 0.98);
  backdrop-filter: blur(14px);
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateX(100%);
  transition: transform .3s ease;
  z-index: 99;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__link {
  font-family: var(--ff-head);
  font-size: 24px;
  letter-spacing: 0.05em;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}


/* ---------- HERO ---------- */
.hero {
  padding: 96px 0 48px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}
.hero__inner {
  align-items: center;
  width: 100%;
}
.hero__content { grid-column: span 6; min-width: 0; }
.hero__eyebrow {
  font-family: var(--ff-mono);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__title {
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: clamp(30px, 3.2vw, 50px);
  line-height: 1.2;
  letter-spacing: 0.005em;
  margin: 0 0 28px;
  position: relative;
  text-transform: uppercase;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1;
  max-width: 30ch;
  text-wrap: balance;
}
.hero__title-line { display: inline; }
.hero__title .accent {
  background: linear-gradient(180deg, #ff7a3e 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dim);
  max-width: 500px;
  margin: 0 0 28px;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}
.hero__cta .btn { padding: 18px 24px; font-size: 13px; }
.hero__cta .btn--large { padding: 20px 32px; font-size: 14px; }
.hero__cta-note {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0;
  max-width: 180px;
  line-height: 1.5;
}
.hero__status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(255, 90, 31, 0.04);
  margin-bottom: 28px;
}
.hero__status-line {
  display: inline-block;
  width: 36px;
  height: 12px;
  margin-left: 4px;
  background-image:
    linear-gradient(90deg,
      var(--accent) 0%, var(--accent) 8%,
      transparent 8%, transparent 16%,
      var(--accent) 16%, var(--accent) 28%,
      transparent 28%, transparent 40%,
      var(--accent) 40%, var(--accent) 52%,
      transparent 52%);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 30%, #000 70%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 30%, #000 70%, transparent);
  opacity: 0.7;
}
.hero__metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.hero__metrics li {
  padding: 0 14px;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}
.hero__metrics li:first-child {
  padding-left: 0;
  border-left: 0;
}
.hero__metric-label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero__metric-value {
  font-family: var(--ff-head);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--text);
  white-space: nowrap;
}
.hero__metric-value::before {
  content: '· ';
  color: var(--accent);
}

/* HERO visual */
.hero__visual {
  grid-column: span 6;
  position: relative;
  align-self: stretch;
  min-height: 520px;
  min-width: 0;
}
.hero__visual-frame {
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(255, 90, 31, 0.08) 0%, transparent 60%),
    linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
}
.hero__visual-frame::before,
.hero__visual-frame::after {
  content: '';
  position: absolute;
  width: 24px; height: 24px;
  border-color: var(--accent);
  border-style: solid;
}
.hero__visual-frame::before { top: 12px; left: 12px; border-width: 1px 0 0 1px; }
.hero__visual-frame::after  { bottom: 12px; right: 12px; border-width: 0 1px 1px 0; }
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.hero__spec {
  position: absolute;
  top: 24px; right: 24px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  text-align: right;
  z-index: 3;
  display: flex; flex-direction: column; gap: 4px;
}
.hero__spec > div:last-child {
  display: inline-flex; align-items: center; gap: 6px;
  justify-content: flex-end;
  color: var(--green);
}
.hero__dim {
  position: absolute;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
  z-index: 3;
}
.hero__dim--diameter { top: 50%; right: 24px; transform: translateY(-50%); writing-mode: vertical-rl; }
.hero__dim--length   { bottom: 24px; left: 50%; transform: translateX(-50%); }


/* ---------- Dot pulse ---------- */
.dot-pulse {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  position: relative;
}
.dot-pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: inherit;
  opacity: 0.4;
  animation: pulse 1.6s ease-out infinite;
}
.dot-pulse--orange { background: var(--accent); }
.dot-pulse--green  { background: var(--green); }
@keyframes pulse {
  0%   { transform: scale(0.6); opacity: 0.6; }
  100% { transform: scale(2.4);  opacity: 0; }
}


/* ---------- PLACEHOLDER ---------- */
.placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 240px;
  padding: 32px 24px;
  background:
    repeating-linear-gradient(45deg, transparent 0 8px, rgba(255, 90, 31, 0.02) 8px 9px),
    linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
  border: 1px dashed rgba(255, 90, 31, 0.3);
  border-radius: 2px;
  color: var(--text-dim);
  font-family: var(--ff-mono);
  text-align: center;
  position: relative;
  height: 100%;
}
.placeholder::before {
  content: 'PLACEHOLDER · ЗАМЕНИТЬ';
  position: absolute;
  top: 10px; left: 14px;
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--accent);
  opacity: 0.6;
}
.placeholder__icon {
  font-size: 36px;
  opacity: 0.4;
  margin-bottom: 4px;
}
.placeholder__title {
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--ff-sub);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.placeholder__hint {
  font-size: 11px;
  line-height: 1.6;
  max-width: 320px;
}
.placeholder--photo { min-height: 280px; }
.placeholder--video { min-height: 100%; }
.placeholder--map { min-height: 360px; }


/* ---------- БЛОК 3. ОТРАСЛИ ---------- */
.industries {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.industry-card {
  background: var(--bg-card);
  padding: 32px;
  transition: background .25s;
  position: relative;
}
.industry-card:hover { background: var(--bg-card-2); }
.industry-card:hover::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 32px; height: 1px;
  background: var(--accent);
}
.industry-card__icon {
  width: 56px; height: 56px;
  margin-bottom: 20px;
  color: var(--accent);
}
.industry-card__icon svg { width: 100%; height: 100%; }
.industry-card__title {
  font-family: var(--ff-sub);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 8px;
  color: var(--text);
}
.industry-card__text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-dim);
  margin: 0;
}


/* ---------- БЛОК 4. ЧТО МЫ РЕЖЕМ ---------- */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 32px;
}
.profile-card {
  background: var(--bg-card);
  padding: 24px 20px;
  text-align: center;
  position: relative;
  transition: background .25s;
}
.profile-card:hover { background: var(--bg-card-2); }
.profile-card:hover .profile-card__icon { color: var(--accent); }
.profile-card__num {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--ff-mono);
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.profile-card__icon {
  width: 100%;
  height: 60px;
  margin-bottom: 16px;
  color: var(--text-dim);
  transition: color .25s;
}
.profile-card__icon svg { width: 100%; height: 100%; }
.profile-card__title {
  font-family: var(--ff-sub);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 6px;
  color: var(--text);
}
.profile-card__spec {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--text-dim);
  margin: 0;
  line-height: 1.5;
}

.plate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 18px 24px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 2px;
  font-family: var(--ff-mono);
  font-size: 13px;
  color: var(--text-dim);
}
.plate strong { color: var(--text); font-weight: 500; }
.plate__divider { color: var(--accent); }


/* ---------- БЛОК 5. ВОЗМОЖНОСТИ СТАНКА ---------- */
.section--capabilities { padding: 72px 0; }
.section--capabilities .section__head { margin-bottom: 32px; }
.capabilities {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.capabilities__table {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 8px 28px;
}
.spec-list {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 32px;
}
.spec-list__row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.spec-list__row:nth-last-child(-n+3) { border-bottom: 0; }
.spec-list dt {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.spec-list dd {
  font-family: var(--ff-mono);
  font-size: 14px;
  color: var(--text);
  margin: 0;
}
.spec-list dd strong { color: var(--accent); }

.capabilities__visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.capabilities__photo {
  width: 100%;
  max-width: 880px;
  height: auto;
  max-height: 540px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 2px;
  display: block;
}


/* ---------- БЛОК 6. ФАСКА – горизонтальный баннер ---------- */
.bevel-banner {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  background: var(--bg-card);
  overflow: hidden;
}
.bevel-banner__main,
.bevel-banner__photo,
.bevel-banner__benefits {
  padding: 28px 28px;
  position: relative;
}
.bevel-banner__main + .bevel-banner__photo,
.bevel-banner__photo + .bevel-banner__benefits {
  border-left: 1px solid var(--line);
}

/* --- Левая часть: заголовок + 4 типа --- */
.bevel-banner__eyebrow {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.bevel-banner__title {
  font-family: var(--ff-head);
  font-size: clamp(20px, 1.9vw, 28px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 28px;
}
.bevel-banner__types {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.bevel-type {
  background: var(--bg-card-2);
  border: 1px solid var(--line);
  padding: 14px 12px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.bevel-type__icon {
  height: 64px;
  width: 100%;
  color: var(--text-dim);
}
.bevel-type__icon svg { width: 100%; height: 100%; }
.bevel-type__name {
  font-family: var(--ff-head);
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: var(--text);
  letter-spacing: 0.05em;
}
.bevel-type__angle {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.04em;
}

/* --- Средняя часть: фото --- */
.bevel-banner__photo {
  padding: 0;
  background: var(--bg-card-2);
}
.bevel-banner__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Правая часть: выгоды --- */
.bevel-banner__benefits-title {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.bevel-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bevel-benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.bevel-benefit__icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  color: var(--accent);
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--bg-card-2);
}
.bevel-benefit__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 3px;
}
.bevel-benefit__desc {
  font-size: 12px;
  line-height: 1.4;
  color: var(--text-dim);
}
.bevel-anim { width: 100%; height: auto; }
.bevel-anim__head { animation: bevel-move 4s linear infinite; transform-origin: center; }
.bevel-anim__beam { animation: bevel-beam .6s ease-in-out infinite alternate; }
.bevel-anim__spark { animation: bevel-spark .4s ease-in-out infinite alternate; transform-origin: center; }
@keyframes bevel-move {
  0%   { transform: translate(60px, 120px) rotate(-15deg); }
  50%  { transform: translate(340px, 120px) rotate(15deg); }
  100% { transform: translate(60px, 120px) rotate(-15deg); }
}
@keyframes bevel-beam {
  from { opacity: 0.5; stroke-width: 1; }
  to   { opacity: 1; stroke-width: 2.5; }
}
@keyframes bevel-spark {
  from { r: 2; opacity: 0.5; }
  to   { r: 5; opacity: 1; }
}


/* ---------- БЛОК 7. БЫЛО/СТАЛО ---------- */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}
.ba-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 28px;
}
.ba-card--before { border-left: 2px solid #555; }
.ba-card--after  { border-left: 2px solid var(--accent); }
.ba-card__head {
  font-family: var(--ff-sub);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.ba-card--after .ba-card__head { color: var(--accent); }
.ba-card__list li {
  padding: 8px 0 8px 16px;
  position: relative;
  font-size: 14px;
  color: var(--text-mid);
  border-bottom: 1px dashed var(--line);
}
.ba-card__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.ba-slider {
  grid-column: 1 / -1;
  justify-self: center;
  width: 100%;
  max-width: 760px;
  position: relative;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
}
.ba-slider__panel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: stretch;
}
.ba-slider__panel--before { z-index: 1; }
.ba-slider__panel--after  {
  z-index: 2;
  clip-path: inset(0 0 0 50%);
}
.ba-slider__panel .placeholder {
  flex: 1;
  border: 0;
  border-radius: 0;
}
.ba-slider__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ba-slider__label {
  position: absolute;
  bottom: 16px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  background: rgba(7, 8, 8, 0.9);
  border: 1px solid var(--line);
  color: var(--text);
}
.ba-slider__panel--before .ba-slider__label { left: 16px; }
.ba-slider__panel--after  .ba-slider__label { right: 16px; color: var(--accent); border-color: var(--accent-dim); }

.ba-slider__handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--accent);
  z-index: 3;
  transform: translateX(-50%);
  cursor: ew-resize;
}
.ba-slider__handle-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #0a0a0a;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 0 0 4px rgba(255, 90, 31, 0.25);
}


/* ---------- БЛОК 8. СРАВНЕНИЕ ---------- */
.compare-wrap {
  overflow-x: auto;
  background: var(--bg-card);
  border: 1px solid var(--line);
}
.compare {
  font-size: 13px;
  min-width: 720px;
}
.compare th, .compare td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.compare th:last-child, .compare td:last-child { border-right: 0; }
.compare thead th {
  font-family: var(--ff-sub);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: var(--bg-card-2);
}
.compare td { color: var(--text-mid); }
.compare__highlight {
  color: var(--accent) !important;
  background: rgba(255, 90, 31, 0.04);
  font-weight: 600;
  font-family: var(--ff-mono);
}
.compare thead .compare__highlight {
  color: var(--accent) !important;
  background: rgba(255, 90, 31, 0.08);
}

.compare-summary {
  margin-top: 24px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-left: 2px solid var(--accent);
  font-size: 15px;
  color: var(--text-mid);
}
.compare-summary strong { color: var(--text); }


/* ---------- БЛОК 9. ПРАЙС ---------- */
.prices {
  display: grid;
  gap: 24px;
}
.prices__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  background: var(--bg-card);
  padding: 4px;
  border: 1px solid var(--line);
  width: fit-content;
}
.prices__tab {
  padding: 12px 24px;
  font-family: var(--ff-sub);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: all .2s;
  border-radius: 2px;
}
.prices__tab:hover { color: var(--text); }
.prices__tab.is-active {
  background: var(--accent);
  color: #0a0a0a;
}
.prices__table-wrap {
  overflow-x: auto;
  background: var(--bg-card);
  border: 1px solid var(--line);
}
.prices__table { min-width: 560px; }
.prices__table th, .prices__table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-family: var(--ff-mono);
  font-size: 13px;
}
.prices__table thead th {
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--bg-card-2);
}
.prices__table tbody td { color: var(--text); }
.prices__table tbody tr:hover { background: rgba(255, 90, 31, 0.03); }
.prices__table tbody td:first-child { color: var(--text-dim); }

.prices__extras {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 24px 28px;
}
.prices__extras-title {
  font-family: var(--ff-sub);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 16px;
  color: var(--text);
}
.prices__extras-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-family: var(--ff-mono);
  font-size: 13px;
}
.prices__extras-list li:last-child { border-bottom: 0; }
.prices__extras-list li > span:first-child { color: var(--text-dim); padding-right: 16px; }
.prices__extras-list li > span:last-child  { color: var(--accent); white-space: nowrap; }

.prices__note {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.6;
  margin: 0;
}


/* ---------- БЛОК 11. СРОЧНЫЕ ---------- */
.rush {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.rush__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-mid);
  margin: 0 0 16px;
}
.rush__list {
  margin: 16px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.rush__list li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 14px;
  color: var(--text-mid);
  border-bottom: 1px dashed var(--line);
}
.rush__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-family: var(--ff-mono);
}
.rush__steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 32px;
}
.rush__steps li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  font-size: 14px;
  color: var(--text-mid);
}
.rush__step-num {
  display: grid;
  place-items: center;
  width: 32px; height: 32px;
  background: var(--accent);
  color: #0a0a0a;
  font-family: var(--ff-head);
  font-size: 18px;
  border-radius: 2px;
}
.rush__visual { position: relative; min-height: 460px; }
.rush__overlay {
  position: absolute;
  top: 20px; right: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 2;
}
.rush__status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(7, 8, 8, 0.85);
  border: 1px solid var(--line);
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
}


/* ---------- БЛОК 12. КЕЙСЫ ---------- */
.cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color .25s, transform .25s;
}
.case-card:hover {
  border-color: var(--accent-dim);
  transform: translateY(-2px);
}
.case-card__photo {
  position: relative;
  aspect-ratio: 4 / 3;
}
.case-card__photo .placeholder {
  height: 100%;
  border: 0; border-radius: 0;
  min-height: 0;
}
.case-card__tag {
  position: absolute;
  top: 12px; right: 12px;
  padding: 4px 10px;
  background: rgba(7, 8, 8, 0.9);
  border: 1px solid var(--accent-dim);
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--accent);
  z-index: 2;
}
.case-card__body { padding: 20px 24px 24px; }
.case-card__title {
  font-family: var(--ff-sub);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--text);
  line-height: 1.3;
}
.case-card__desc {
  font-size: 13px;
  color: var(--text-dim);
  margin: 0 0 14px;
  line-height: 1.5;
}
.case-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.case-card__specs li {
  padding: 3px 10px;
  background: var(--bg-card-2);
  border: 1px solid var(--line);
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--text-mid);
}
.case-card__replaced {
  padding-top: 12px;
  border-top: 1px dashed var(--line);
  font-size: 12px;
  color: var(--text-dim);
}
.case-card__replaced::before {
  content: '← заменили: ';
  color: var(--accent);
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


/* ---------- БЛОК 13. ПРОЦЕСС ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.process::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: linear-gradient(to right, var(--accent) 0%, var(--accent) var(--process-progress, 0%), var(--line) var(--process-progress, 0%));
  z-index: 0;
  transition: --process-progress 1s ease;
}
.process__step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 12px;
}
.process__num {
  width: 64px; height: 64px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: var(--ff-head);
  font-size: 22px;
  color: var(--text-dim);
  transition: all .3s;
}
.process__step.is-active .process__num {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255, 90, 31, 0.05);
}
.process__title {
  font-family: var(--ff-sub);
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--text);
}
.process__text {
  font-size: 13px;
  color: var(--text-dim);
  margin: 0;
  line-height: 1.5;
}


/* ---------- БЛОК 14. О ПРОИЗВОДСТВЕ ---------- */
.about {
  align-items: start;
}
.about__text { grid-column: span 8; min-width: 0; }
.about__person-photo-wrap { grid-column: span 4; }
.about__eyebrow {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.about__title {
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: clamp(36px, 4.2vw, 64px);
  line-height: 1.05;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 28px;
}
.about__person-photo-wrap {
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  margin: 0;
  background: var(--bg-card);
}
.about__person-photo {
  width: 100%;
  height: auto;
  display: block;
}
.about__person-caption {
  padding: 14px 18px 16px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}
.about__person-role {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.about__person-name {
  font-family: var(--ff-head);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text);
  line-height: 1.15;
}
.about__text p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-mid);
  margin: 0 0 16px;
}
.about__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 32px;
}
.about__metrics li {
  background: var(--bg-card);
  padding: 20px;
  text-align: center;
}
.about__metrics strong {
  display: block;
  font-family: var(--ff-head);
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 6px;
}
.about__metrics span {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  line-height: 1.4;
}


/* ---------- БЛОК 15. FAQ ---------- */
.faq {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.faq__item {
  background: var(--bg-card);
  transition: background .2s;
}
.faq__item[open] { background: var(--bg-card-2); }
.faq__q {
  padding: 20px 28px;
  cursor: pointer;
  font-family: var(--ff-sub);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  list-style: none;
  position: relative;
  padding-right: 60px;
  transition: color .2s;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: '+';
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--ff-mono);
  font-size: 24px;
  color: var(--accent);
  transition: transform .25s;
}
.faq__item[open] .faq__q::after { transform: translateY(-50%) rotate(45deg); }
.faq__item:hover .faq__q { color: var(--accent); }
.faq__a {
  padding: 0 28px 24px;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 800px;
}


/* ---------- БЛОК 16. ФОРМА ---------- */
.form {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
}
.form__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.form__group { display: flex; flex-direction: column; gap: 6px; }
.form__label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.form__req { color: var(--accent); }
.form__input {
  padding: 14px 16px;
  background: var(--bg-card-2);
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--text);
  font-family: var(--ff-mono);
  font-size: 14px;
  outline: none;
  transition: border-color .2s;
  width: 100%;
}
.form__input:focus { border-color: var(--accent); }
.form__textarea { resize: vertical; min-height: 88px; }

.form__dropzone {
  position: relative;
  border: 2px dashed var(--line-2);
  border-radius: 2px;
  background: var(--bg-card-2);
  transition: all .2s;
}
.form__dropzone.is-dragover {
  border-color: var(--accent);
  background: rgba(255, 90, 31, 0.05);
}
.form__dropzone-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 36px 24px;
  cursor: pointer;
  text-align: center;
}
.form__dropzone-icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border: 1px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  font-size: 20px;
}
.form__dropzone-title {
  font-family: var(--ff-sub);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.form__dropzone-hint {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--text-dim);
}
.form__dropzone-file {
  margin-top: 12px;
  padding: 8px 14px;
  background: rgba(255, 90, 31, 0.1);
  border: 1px solid var(--accent);
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--accent);
  display: none;
}
.form__dropzone-file:not(:empty) { display: inline-block; }

.form__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 11px;
  color: var(--text-dim);
  margin: 0;
  cursor: pointer;
}
.form__consent-checkbox {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  accent-color: var(--accent);
  cursor: pointer;
}
.form__consent-link { color: var(--accent); }

.form__status {
  padding: 12px 16px;
  font-family: var(--ff-mono);
  font-size: 13px;
  border-radius: 2px;
  display: none;
}
.form__status.is-success {
  display: block;
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid var(--green);
  color: var(--green);
}
.form__status.is-error {
  display: block;
  background: rgba(255, 90, 31, 0.08);
  border: 1px solid var(--accent);
  color: var(--accent);
}
.form__status.is-loading {
  display: block;
  background: var(--bg-card-2);
  border: 1px solid var(--line);
  color: var(--text-dim);
}

.form__alt {
  margin: 32px auto 0;
  max-width: 880px;
  text-align: center;
  font-size: 14px;
  color: var(--text-dim);
}
.form__alt a {
  color: var(--accent);
  font-weight: 500;
  margin: 0 4px;
}
.form__alt a:hover { text-decoration: underline; }

@media (max-width: 640px) {
  .form { padding: 24px 18px; gap: 16px; }
  .form__row { grid-template-columns: 1fr; }
  .form__label { font-size: 10px; }
  .form__input { padding: 12px 14px; }
  .form__dropzone-label { padding: 26px 16px; }
  .form__dropzone-icon { width: 40px; height: 40px; font-size: 18px; }
  .form__dropzone-title { font-size: 13px; }
  .form__dropzone-hint { font-size: 10px; line-height: 1.4; }
  .form__alt { margin-top: 24px; font-size: 13px; }
}


/* ---------- БЛОК 17. КОНТАКТЫ ---------- */
.contacts {
  align-items: start;
}
.contacts__list {
  grid-column: span 5;
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 8px 28px;
}
.contacts__row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.contacts__row:last-child { border-bottom: 0; }
.contacts__label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.contacts__value {
  font-family: var(--ff-mono);
  font-size: 14px;
  color: var(--text);
}
a.contacts__value:hover { color: var(--accent); }

.contacts__map {
  grid-column: span 7;
  background: var(--bg-card);
  border: 1px solid var(--line);
  overflow: hidden;
  min-height: 360px;
  position: relative;
}
.contacts__map .placeholder { border: 0; height: 100%; }
.contacts__map iframe {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(0.92) hue-rotate(180deg);
}
.contacts__map-actions {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: flex;
  gap: 8px;
  z-index: 2;
}
.contacts__map-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
  background: rgba(15, 15, 15, 0.82);
  border: 1px solid var(--line);
  border-radius: 4px;
  text-decoration: none;
  backdrop-filter: blur(4px);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.contacts__map-link:hover {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}


/* ---------- ФУТЕР ---------- */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--line);
  margin-top: 80px;
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-top: 60px;
  padding-bottom: 40px;
}
.site-footer__desc {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 380px;
}
.site-footer__h {
  font-family: var(--ff-sub);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 16px;
}
.site-footer__nav li { margin-bottom: 8px; }
.site-footer__nav a { font-size: 13px; color: var(--text-dim); }
.site-footer__nav a:hover { color: var(--accent); }

.site-footer__bottom {
  border-top: 1px solid var(--line);
  padding: 20px 0;
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--text-dim);
}
.site-footer__bottom .container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.site-footer__bottom a { color: var(--text-dim); }
.site-footer__bottom a:hover { color: var(--accent); }


/* ---------- АКЦИОННЫЙ ПОП-АП (летняя скидка) ---------- */
.promo[hidden] { display: none; }
.promo {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: grid;
  place-items: center;
  padding: 20px;
}
.promo__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  animation: promoFade 0.3s ease both;
}
.promo__dialog {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  border-radius: 4px;
  padding: 42px 36px 30px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  animation: promoPop 0.35s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.promo__dialog::before {
  content: '';
  position: absolute;
  top: -70px;
  right: -70px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 90, 31, 0.22), transparent 70%);
  pointer-events: none;
}
.promo__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--text-dim);
  font-size: 28px;
  line-height: 1;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.promo__close:hover { color: var(--text); background: rgba(255, 255, 255, 0.06); }
.promo__badge {
  position: relative;
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 18px;
}
.promo__discount {
  position: relative;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 68px;
  line-height: 1;
  letter-spacing: 0.01em;
  background: linear-gradient(180deg, #ff7a3e 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.promo__title {
  position: relative;
  font-family: var(--ff-head);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin: 14px 0 12px;
}
.promo__text {
  position: relative;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-dim);
  margin: 0 0 26px;
}
.promo__text strong { color: var(--text); }
.promo__cta {
  position: relative;
  width: 100%;
  justify-content: center;
}
.promo__dismiss {
  position: relative;
  display: inline-block;
  margin-top: 14px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s;
}
.promo__dismiss:hover { color: var(--text); }

@keyframes promoFade { from { opacity: 0; } }
@keyframes promoPop { from { opacity: 0; transform: translateY(16px) scale(0.96); } }
@media (prefers-reduced-motion: reduce) {
  .promo__overlay, .promo__dialog { animation: none; }
}


/* ---------- УГЛОВОЙ БЕЙДЖ АКЦИИ (восьмиугольная печать) ---------- */
.promo-seal {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 90;
  width: 106px;
  height: 106px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  animation: sealIn 0.4s ease both;
}
.promo-seal__inner {
  position: relative;
  z-index: 1;
  display: grid;
  place-content: center;
  gap: 1px;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #0b0b0b;
  background: linear-gradient(150deg, #ff7a3e 0%, var(--accent) 100%);
  clip-path: polygon(30% 0, 70% 0, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0 70%, 0 30%);
  box-shadow: 0 8px 24px rgba(255, 90, 31, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.promo-seal:hover .promo-seal__inner {
  transform: scale(1.06);
  box-shadow: 0 12px 32px rgba(255, 90, 31, 0.5);
}
.promo-seal:active .promo-seal__inner { transform: scale(0.97); }
.promo-seal::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--accent);
  clip-path: polygon(30% 0, 70% 0, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0 70%, 0 30%);
  animation: sealPulse 2.6s ease-out infinite;
}
.promo-seal__top,
.promo-seal__bot {
  font-family: var(--ff-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.promo-seal__num {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.01em;
}
@keyframes sealIn { from { opacity: 0; transform: scale(0.6); } }
@keyframes sealPulse {
  0%   { transform: scale(0.92); opacity: 0.5; }
  70%  { transform: scale(1.18); opacity: 0; }
  100% { opacity: 0; }
}
@media (max-width: 480px) {
  .promo-seal { width: 86px; height: 86px; left: 14px; bottom: 14px; }
  .promo-seal__num { font-size: 24px; }
  .promo-seal__top, .promo-seal__bot { font-size: 8px; letter-spacing: 0.14em; }
}
@media (prefers-reduced-motion: reduce) {
  .promo-seal, .promo-seal::after { animation: none; }
}


/* ---------- ПЛАВАЮЩИЕ КНОПКИ ---------- */
.floating-actions {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity .3s, transform .3s;
}
.floating-actions.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.floating-actions__btn {
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
  transition: transform .2s;
}
.floating-actions__btn:hover { transform: scale(1.08); color: #fff; }
.floating-actions__btn svg { width: 26px; height: 26px; }
.floating-actions__btn--tg    { background: #0088CC; }
.floating-actions__btn--phone { background: var(--accent); color: #0a0a0a; }
.floating-actions__btn--phone:hover { color: #0a0a0a; }


/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.section, .industry-card, .profile-card, .case-card, .bevel-type,
.process__step, .ba-card, .hero__metrics li {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.is-visible.section,
.is-visible .industry-card,
.is-visible .profile-card,
.is-visible .case-card,
.is-visible .bevel-type,
.is-visible .process__step,
.is-visible .ba-card,
.is-visible .hero__metrics li {
  opacity: 1;
  transform: translateY(0);
}
/* Hero – без задержки */
.hero, .hero * {
  opacity: 1 !important;
  transform: none !important;
}
.hero .hero__metrics li {
  animation: rise .6s ease backwards;
}
.hero .hero__metrics li:nth-child(1) { animation-delay: .1s; }
.hero .hero__metrics li:nth-child(2) { animation-delay: .2s; }
.hero .hero__metrics li:nth-child(3) { animation-delay: .3s; }
.hero .hero__metrics li:nth-child(4) { animation-delay: .4s; }
@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ===== Nav collapses earlier (11-item menu wide) ===== */
@media (max-width: 1100px) {
  .site-nav { display: none; }
  .site-header__cta { display: none; }
  .burger { display: flex; }
}

/* ===== TABLET (≤ 1024px) ===== */
@media (max-width: 1024px) {
  :root { --pad: 24px; }
  .section { padding: 80px 0; }

  .hero { padding: 96px 0 56px; min-height: auto; }
  .hero__inner { grid-template-columns: minmax(0, 1fr); row-gap: 32px; }
  .hero__content, .hero__visual { grid-column: 1 / -1; }
  .hero__visual { aspect-ratio: 16 / 10; max-height: 480px; min-height: 0; }

  .spec-list { grid-template-columns: repeat(2, 1fr); }
  .spec-list__row:nth-last-child(-n+3) { border-bottom: 1px solid var(--line); }
  .spec-list__row:nth-last-child(-n+2) { border-bottom: 0; }

  .bevel-banner { grid-template-columns: 1fr; }
  .bevel-banner__main + .bevel-banner__photo,
  .bevel-banner__photo + .bevel-banner__benefits { border-left: 0; border-top: 1px solid var(--line); }
  .bevel-banner__photo { aspect-ratio: 16 / 9; }

  .about { grid-template-columns: minmax(0, 1fr); row-gap: 32px; }
  .about__text, .about__person-photo-wrap { grid-column: 1 / -1; }
  .rush { grid-template-columns: 1fr; }
  .contacts { grid-template-columns: minmax(0, 1fr); row-gap: 32px; }
  .contacts__list, .contacts__map { grid-column: 1 / -1; }
  .industries { grid-template-columns: repeat(2, 1fr); }
  .profiles-grid { grid-template-columns: repeat(3, 1fr); }
  .cases { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: 1fr; gap: 20px; }
  .process::before { display: none; }
  .about__metrics { grid-template-columns: repeat(3, 1fr); }
  .site-footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; padding-top: 48px; padding-bottom: 32px; }
  .ba-grid { grid-template-columns: 1fr; }
}

/* ===== MOBILE (≤ 768px) ===== */
@media (max-width: 768px) {
  :root { --pad: 16px; --gap: 12px; }

  html { scroll-padding-top: 72px; }
  body { font-size: 15px; }

  .section { padding: 56px 0; }
  .section__head { margin-bottom: 28px; }
  .section__h2 { font-size: clamp(26px, 7vw, 38px); }
  .section__sub { font-size: 14px; }
  .section__eyebrow { font-size: 10px; margin-bottom: 12px; }

  /* HEADER */
  .site-header__inner { height: 60px; gap: 12px; }
  .logo { font-size: 17px; gap: 8px; }
  .logo__mark { width: 32px; height: 32px; }
  .logo__mark img { width: 32px; height: 32px; }
  .logo__name { font-size: 17px; padding-bottom: 4px; }
  .logo__tagline { font-size: 8px; letter-spacing: 0.22em; padding-top: 4px; }

  /* MOBILE MENU */
  .mobile-menu {
    top: 60px;
    padding: 20px 16px 96px;
    gap: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .mobile-menu__link { font-size: 18px; padding: 14px 4px; }
  .mobile-menu .btn { margin-top: 20px; padding: 16px 22px; }

  /* BUTTONS */
  .btn { padding: 14px 22px; font-size: 12px; letter-spacing: 0.06em; }
  .btn--large { padding: 16px 24px; font-size: 13px; }

  /* HERO */
  .hero { padding: 80px 0 40px; }
  .hero__eyebrow {
    font-size: 11px;
    margin-bottom: 16px;
    letter-spacing: 0.1em;
    line-height: 1.4;
  }
  .hero__title {
    font-size: clamp(24px, 7vw, 36px);
    line-height: 1.18;
    margin-bottom: 18px;
  }
  .hero__subtitle { font-size: 14px; margin-bottom: 24px; }
  .hero__cta { flex-direction: column; align-items: stretch; gap: 12px; margin-bottom: 28px; }
  .hero__cta .btn { width: 100%; padding: 15px 20px; font-size: 12px; }
  .hero__cta .btn--large { padding: 17px 22px; font-size: 13px; }
  .hero__metrics {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 16px;
    row-gap: 14px;
    padding-top: 14px;
  }
  .hero__metrics li {
    padding: 14px 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .hero__metrics li:nth-child(odd) { padding-left: 0; }
  .hero__metric-label { font-size: 10px; letter-spacing: 0.1em; }
  .hero__metric-value { font-size: 18px; }
  .hero__visual { aspect-ratio: 16 / 10; max-height: 320px; }
  .hero__visual-frame::before,
  .hero__visual-frame::after { width: 16px; height: 16px; }
  .hero__dim--diameter { display: none; }
  .hero__spec { top: 12px; right: 12px; font-size: 10px; }

  /* INDUSTRIES */
  .industries { grid-template-columns: 1fr; }
  .industry-card { padding: 24px 20px; }
  .industry-card__icon { width: 44px; height: 44px; margin-bottom: 14px; }
  .industry-card__title { font-size: 15px; margin-bottom: 6px; }
  .industry-card__text { font-size: 13px; }

  /* PROFILES (что режем) */
  .profiles-grid { grid-template-columns: repeat(2, 1fr); margin-bottom: 24px; }
  .profile-card { padding: 18px 12px; }
  .profile-card__num { top: 8px; left: 8px; font-size: 9px; }
  .profile-card__icon { height: 48px; margin-bottom: 12px; }
  .profile-card__title { font-size: 12px; letter-spacing: 0.04em; }
  .profile-card__spec { font-size: 10px; line-height: 1.4; }

  .plate {
    padding: 14px 16px;
    font-size: 12px;
    gap: 6px 10px;
    flex-direction: column;
    text-align: center;
  }
  .plate__divider { display: none; }

  /* CAPABILITIES */
  .section--capabilities { padding: 56px 0; }
  .capabilities { gap: 18px; }
  .capabilities__table { padding: 4px 18px; }
  .capabilities__photo { max-height: 320px; }
  .spec-list { grid-template-columns: 1fr; column-gap: 0; }
  .spec-list__row { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .spec-list__row:last-child { border-bottom: 0; }
  .spec-list__row:nth-last-child(-n+3) { border-bottom: 1px solid var(--line); }
  .spec-list__row:nth-last-child(1) { border-bottom: 0; }

  /* BEVEL */
  .bevel-banner__main,
  .bevel-banner__benefits { padding: 24px 20px; }
  .bevel-banner__title { font-size: 20px; margin-bottom: 18px; }
  .bevel-banner__types { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .bevel-type { padding: 12px 8px 10px; gap: 6px; }
  .bevel-type__icon { height: 52px; }
  .bevel-type__name { font-size: 16px; }
  .bevel-type__angle { font-size: 10px; }
  .bevel-banner__photo { aspect-ratio: 4 / 3; }
  .bevel-banner__benefits-title { margin-bottom: 14px; }
  .bevel-benefits { gap: 12px; }
  .bevel-benefit { gap: 10px; }
  .bevel-benefit__icon { width: 26px; height: 26px; flex: 0 0 26px; }
  .bevel-benefit__name { font-size: 13px; }
  .bevel-benefit__desc { font-size: 12px; }

  /* BEFORE / AFTER */
  .ba-grid { gap: 16px; }
  .ba-card { padding: 22px 18px; }
  .ba-card__head { font-size: 11px; margin-bottom: 12px; }
  .ba-card__list li { font-size: 13px; padding: 7px 0 7px 14px; }
  .ba-slider { aspect-ratio: 4 / 3; min-height: 220px; }
  .ba-slider__handle-icon {
    width: 40px; height: 40px;
    font-size: 14px;
    box-shadow: 0 0 0 3px rgba(255, 90, 31, 0.25);
  }
  .ba-slider__label { font-size: 10px; padding: 4px 10px; bottom: 10px; }
  .ba-slider__panel--before .ba-slider__label { left: 10px; }
  .ba-slider__panel--after .ba-slider__label { right: 10px; }

  /* COMPARE (full-bleed scroll) */
  .compare-wrap {
    margin-left: calc(-1 * var(--pad));
    margin-right: calc(-1 * var(--pad));
    border-left: 0;
    border-right: 0;
    -webkit-overflow-scrolling: touch;
  }
  .compare { font-size: 12px; min-width: 640px; }
  .compare th, .compare td { padding: 12px 12px; }
  .compare thead th { font-size: 11px; }
  .compare-summary { padding: 18px; font-size: 13px; margin-top: 18px; }

  /* PRICES */
  .prices { gap: 18px; }
  .prices__tabs { width: 100%; }
  .prices__tab {
    flex: 1;
    padding: 12px 6px;
    font-size: 11px;
    text-align: center;
    letter-spacing: 0.04em;
  }
  .prices__table-wrap {
    margin-left: calc(-1 * var(--pad));
    margin-right: calc(-1 * var(--pad));
    border-left: 0;
    border-right: 0;
    -webkit-overflow-scrolling: touch;
  }
  .prices__table { min-width: 520px; }
  .prices__table th, .prices__table td { padding: 12px 14px; font-size: 12px; }
  .prices__extras { padding: 20px 18px; }
  .prices__extras-title { font-size: 13px; margin-bottom: 12px; }
  .prices__extras-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    font-size: 12px;
    padding: 10px 0;
  }
  .prices__extras-list li > span:first-child { padding-right: 0; }
  .prices__note { font-size: 11px; }

  /* PROCESS */
  .process__step {
    text-align: left;
    display: grid;
    grid-template-columns: 52px 1fr;
    grid-template-areas:
      "num title"
      "num text";
    column-gap: 14px;
    row-gap: 4px;
    padding: 0;
    align-items: start;
  }
  .process__num {
    grid-area: num;
    align-self: start;
    margin: 0;
    width: 52px; height: 52px;
    font-size: 18px;
  }
  .process__title { grid-area: title; font-size: 15px; margin: 6px 0 4px; }
  .process__text { grid-area: text; font-size: 13px; }

  /* ABOUT */
  .about__eyebrow { font-size: 11px; margin-bottom: 14px; }
  .about__title { font-size: clamp(28px, 8vw, 40px); line-height: 1.05; margin-bottom: 20px; }
  .about__text p { font-size: 14px; line-height: 1.65; margin-bottom: 14px; }
  .about__person-photo-wrap { max-width: 360px; margin: 0 auto; }
  .about__person-caption { padding: 12px 14px 14px; }
  .about__person-role { font-size: 10px; }
  .about__person-name { font-size: 18px; }
  .about__metrics { grid-template-columns: repeat(3, 1fr); margin-top: 24px; }
  .about__metrics li { padding: 14px 6px; }
  .about__metrics strong { font-size: 20px; margin-bottom: 4px; }
  .about__metrics span { font-size: 9px; letter-spacing: 0.06em; }

  /* FAQ */
  .faq__q { padding: 16px 48px 16px 18px; font-size: 14px; }
  .faq__q::after { right: 16px; font-size: 22px; }
  .faq__a { padding: 0 18px 20px; font-size: 13px; }

  /* CONTACTS */
  .contacts__list { padding: 4px 18px; }
  .contacts__row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 14px 0;
  }
  .contacts__label { font-size: 10px; }
  .contacts__value { font-size: 14px; word-break: break-word; }
  .contacts__map { min-height: 280px; }

  /* FOOTER */
  .site-footer { margin-top: 40px; }
  .site-footer__inner { grid-template-columns: 1fr; gap: 28px; padding-top: 36px; padding-bottom: 24px; }
  .site-footer__desc { margin-top: 12px; font-size: 13px; }
  .site-footer__bottom { font-size: 10px; padding: 16px 0; }
  .site-footer__bottom .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    text-align: left;
  }
  .site-footer__bottom .container > span:nth-child(2),
  .site-footer__bottom .container > span:nth-child(4) { display: none; }

  /* FLOATING */
  .floating-actions { bottom: 14px; right: 14px; gap: 10px; }
  .floating-actions__btn { width: 48px; height: 48px; }
  .floating-actions__btn svg { width: 22px; height: 22px; }
}

/* ===== SMALL MOBILE (≤ 480px) ===== */
@media (max-width: 480px) {
  .hero__title { font-size: clamp(20px, 6.2vw, 30px); }
  .hero__metric-value { font-size: 16px; }

  .promo__dialog { padding: 36px 22px 26px; }
  .promo__discount { font-size: 54px; }
  .promo__title { font-size: 21px; }
  .promo__text { font-size: 14px; }

  .profiles-grid { grid-template-columns: 1fr 1fr; }
  .profile-card__title { font-size: 11px; }

  .bevel-banner__types { grid-template-columns: 1fr 1fr; }

  .compare { min-width: 560px; }

  .about__title { font-size: 28px; }
}

/* ===== VERY SMALL (≤ 360px) ===== */
@media (max-width: 360px) {
  :root { --pad: 12px; }

  .hero__title { font-size: 22px; }
  .hero__metrics { grid-template-columns: 1fr; row-gap: 12px; }
  .hero__metrics li {
    padding: 12px 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .hero__metrics li:first-child { padding-top: 0; border-top: 0; }

  .profiles-grid { grid-template-columns: 1fr; }
  .bevel-banner__types { grid-template-columns: 1fr; }
  .about__metrics { grid-template-columns: 1fr; }
}

/* ===== TOUCH DEVICES – disable hover transforms ===== */
@media (hover: none) {
  .btn--primary:hover {
    background: var(--accent);
    transform: none;
    box-shadow: none;
  }
  .btn:hover .btn__arrow { transform: none; }
  .industry-card:hover,
  .profile-card:hover { background: var(--bg-card); }
  .industry-card:hover::before { content: none; }
  .case-card:hover { transform: none; border-color: var(--line); }
  .floating-actions__btn:hover { transform: none; }
  .faq__item:hover .faq__q { color: var(--text); }
}


/* Печать */
@media print {
  .site-header, .floating-actions, .cookie { display: none; }
}


/* ---------- Cookie-уведомление ---------- */
.cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 300;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
  padding: 16px 20px;
  background: var(--bg-card-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.5);
}
.cookie[hidden] { display: none; }
.cookie__text {
  flex: 1 1 auto;
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-mid);
}
.cookie__link { color: var(--accent); white-space: nowrap; }
.cookie__actions {
  flex: 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.cookie__btn {
  padding: 11px 18px;
  font-size: 12px;
  white-space: nowrap;
}
.cookie__btn--ghost {
  background: transparent;
  border: 1px solid var(--line-2);
  color: var(--text-dim);
}
.cookie__btn--ghost:hover {
  border-color: var(--text-dim);
  color: var(--text);
}

@media (max-width: 760px) {
  .cookie {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 16px;
  }
  .cookie__actions { flex-direction: column; gap: 8px; }
  .cookie__btn { width: 100%; padding: 13px 16px; }
}
