/* ============================================================
   mokanu.ru — визитка
   Визуальный мир: приборная панель. Тёмный сине-графитовый корпус,
   блоки-модули, единственный акцент — янтарный индикатор.
   ============================================================ */

:root{
  --bg:      #0B0F14;
  --panel:   #131A22;
  --panel-2: #1A232D;
  --line:    rgba(230,237,243,.10);
  --line-2:  rgba(230,237,243,.06);

  --ink:     #E6EDF3;
  --ink-2:   #A7B4C2;
  --ink-3:   #6C7B8B;

  --acc:     #FFB020;
  --acc-dim: rgba(255,176,32,.14);

  --f-disp: "Onest", -apple-system, Segoe UI, Roboto, sans-serif;
  --f-text: "Onest", -apple-system, Segoe UI, Roboto, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, Consolas, monospace;

  --pad: clamp(18px, 4vw, 56px);
  --maxw: 1220px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--f-text); font-size: 16px; line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,h2,h3{ margin: 0; font-family: var(--f-disp); font-weight: 800; letter-spacing: -.035em; line-height: 1.03; text-wrap: balance; }
p{ margin: 0; }
a{ color: inherit; text-decoration: none; }
ul,ol{ margin: 0; padding: 0; list-style: none; }
:focus-visible{ outline: 2px solid var(--acc); outline-offset: 3px; }

.wrap{ width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.mono{ font-family: var(--f-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.lead{ color: var(--ink-2); font-size: clamp(15px, 1.25vw, 17.5px); max-width: 62ch; }
.eyebrow{
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--acc);
}

/* ---------- шапка ---------- */
.top{
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 20px;
  padding: 14px var(--pad);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-2);
}
.brand{ display: flex; align-items: center; gap: 10px; flex: none; }
.brand-mark{
  width: 22px; height: 22px; flex: none; border: 1.5px solid var(--acc);
  position: relative;
}
.brand-mark::after{
  content: ""; position: absolute; inset: 4px 3px auto 3px; height: 8px;
  border-left: 1.5px solid var(--acc); border-bottom: 1.5px solid var(--acc);
  transform: skewX(-12deg);
}
.brand-name{ font-family: var(--f-disp); font-weight: 800; font-size: 17px; letter-spacing: -.02em; }

.top-nav{ display: flex; gap: 4px; margin-left: auto; }
.top-nav a{
  padding: 8px 12px; font-size: 14px; color: var(--ink-2); white-space: nowrap;
  transition: color .2s var(--ease);
}
.top-nav a:hover{ color: var(--ink); }
@media (max-width: 860px){ .top-nav{ display: none; } }

.btn{
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 20px; border-radius: 2px; flex: none;
  font-family: var(--f-mono); font-size: 11.5px; letter-spacing: .08em;
  text-transform: uppercase; font-weight: 700;
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}
.btn-a{ background: var(--acc); color: #16202B; }
.btn-a:hover{ transform: translateY(-2px); }
.btn-ghost{ border: 1px solid var(--line); color: var(--ink); }
.btn-ghost:hover{ border-color: var(--acc); color: var(--acc); }
.btn .arw{ transition: transform .25s var(--ease); }
.btn:hover .arw{ transform: translateX(4px); }
.top .btn{ padding: 10px 16px; }

/* ---------- герой ---------- */
.hero{ padding: clamp(28px, 4vw, 56px) 0 clamp(28px, 4vw, 60px); }
/* текст героя живёт в той же сетке, что и стенд, иначе видно разрыв ширин */
.hero > .wrap{
  width: min(1840px, 92vw); max-width: none;
  padding-inline: clamp(18px, 4vw, 56px);
}
@media (min-width: 1500px){ .hero > .wrap{ padding-inline: 0; } }
.hero-grid{
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 460px);
  gap: clamp(28px, 4vw, 64px); align-items: start;
}
@media (max-width: 1000px){ .hero-grid{ grid-template-columns: 1fr; } }

.hero-copy{ display: flex; flex-direction: column; gap: 18px; }
/* заголовок и текст рядом: так верх занимает вдвое меньше высоты,
   и стенд попадает на первый экран */
.hero-main{
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 48px); align-items: end;
}
.hero-side{ display: flex; flex-direction: column; gap: 18px; }
@media (max-width: 900px){
  .hero-main{ grid-template-columns: 1fr; gap: 18px; align-items: start; }
}
/* заголовок не должен выталкивать стенд за сгиб — стенд главный элемент экрана */
.hero h1{ font-size: clamp(30px, 3.9vw, 50px); }
.hero .lead{ max-width: 58ch; }
.hero-actions{ display: flex; flex-wrap: wrap; gap: 12px; }

/* ============================================================
   КАРТА ПРОИЗВОДСТВЕННОГО КОНТУРА
   Изометрия сделана трансформациями и многослойной тенью:
   тот же эффект «пульта», что у 3D-библиотеки, но без её веса.
   ============================================================ */
/* стенд выходит за общую колонку: на широком мониторе сцена должна
   занимать экран, а не ютиться в 1220 пикселях */
.plant-wrap{
  width: min(1840px, 92vw); margin: clamp(16px, 2vw, 26px) auto 0;
  padding-inline: clamp(18px, 4vw, 56px);
}
@media (min-width: 1500px){ .plant-wrap{ padding-inline: 0; } }
.plant-head{
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 16px;
  margin-bottom: clamp(10px, 1.4vw, 16px);
}
.plant-head p{ color: var(--ink-3); font-size: 13.5px; max-width: 62ch; }

.plant{ display: flex; flex-direction: column; gap: clamp(12px, 1.6vw, 20px); }

/* ---- приборная строка ---- */
.kpi{
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line);
}
@media (max-width: 720px){ .kpi{ grid-template-columns: repeat(2, 1fr); } }
.kpi-cell{
  background: var(--panel); padding: 12px 16px;
  display: flex; flex-direction: column; gap: 2px;
}
.kpi-cell span{
  font-family: var(--f-mono); font-size: 9px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-3);
}
.kpi-cell b{
  font-family: var(--f-disp); font-weight: 800; font-size: clamp(20px, 2.2vw, 27px);
  letter-spacing: -.03em; font-variant-numeric: tabular-nums; line-height: 1.1;
}
.kpi-cell i{ font-style: normal; font-family: var(--f-mono); font-size: 10px; color: var(--ink-3); }
.kpi-cell i.up{ color: #5FD08A; }
.kpi-cell i.warn{ color: var(--acc); }

/* ---- сцена и лента ---- */
.stage-row{
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 290px);
  gap: clamp(12px, 1.6vw, 18px); align-items: stretch;
}
@media (max-width: 1000px){ .stage-row{ grid-template-columns: 1fr; } }

.scene{
  position: relative; overflow: hidden;
  border: 1px solid var(--line); background: #060A0E;
  aspect-ratio: 1672 / 941;
}
.scene img{ display: block; width: 100%; height: 100%; object-fit: cover; }

/* подсветка активного корпуса — рисуется поверх, отдельных картинок не нужно */
.glow{
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle 20% at var(--gx, 25%) var(--gy, 34%),
              rgba(255,176,32,.34), rgba(255,176,32,.10) 42%, transparent 68%);
  mix-blend-mode: screen;
  transition: background .5s var(--ease);
}

/* метка зоны */
.hs{
  position: absolute; left: var(--x); top: var(--y);
  transform: translate(-50%, -50%);
  display: flex; align-items: center; gap: 8px;
  padding: 7px 11px; cursor: pointer;
  background: rgba(10,15,20,.82); backdrop-filter: blur(6px);
  border: 1px solid rgba(230,237,243,.18);
  color: var(--ink);
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .08em;
  text-transform: uppercase; white-space: nowrap;
  transition: transform .25s var(--ease), border-color .25s var(--ease),
              background .25s var(--ease), box-shadow .25s var(--ease);
}
.hs i{
  width: 7px; height: 7px; border-radius: 50%; background: var(--acc);
  box-shadow: 0 0 0 0 rgba(255,176,32,.6); flex: none;
  animation: hsPing 2.6s var(--ease) infinite;
}
@keyframes hsPing{
  0%, 70%, 100%{ box-shadow: 0 0 0 0 rgba(255,176,32,.5); }
  35%          { box-shadow: 0 0 0 9px rgba(255,176,32,0); }
}
.hs:hover{
  transform: translate(-50%, -50%) scale(1.14) translateY(-3px);
  border-color: var(--acc); background: rgba(20,28,36,.92);
  box-shadow: 0 10px 26px rgba(0,0,0,.5), 0 0 0 1px rgba(255,176,32,.4);
  z-index: 3;
}
.hs.is-on{
  background: var(--acc); color: #16202B; border-color: var(--acc);
  box-shadow: 0 8px 26px rgba(255,176,32,.45);
  font-weight: 700;
  transform: translate(-50%, -50%) scale(1.08);
  z-index: 2;
}
.hs.is-on:hover{ transform: translate(-50%, -50%) scale(1.18) translateY(-3px); }
.hs.is-on i{ background: #16202B; animation: none; }
.hs:focus-visible{ outline: 2px solid var(--acc); outline-offset: 3px; }
@media (max-width: 760px){
  .hs{ font-size: 8px; padding: 4px 7px; gap: 5px; }
  .hs i{ width: 5px; height: 5px; }
}

/* лента событий */
.feed{
  border: 1px solid var(--line); background: var(--panel);
  display: flex; flex-direction: column; min-height: 0;
}
.feed-head{
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px; border-bottom: 1px solid var(--line-2);
  font-family: var(--f-mono); font-size: 9.5px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-3);
}
.feed-head .dot{
  width: 7px; height: 7px; border-radius: 50%; background: #5FD08A;
  animation: live 2s ease-in-out infinite;
}
@keyframes live{ 50%{ opacity: .25 } }
.feed ul{ list-style: none; margin: 0; padding: 6px; display: flex; flex-direction: column; gap: 2px; overflow: hidden; }
.feed li{
  display: grid; grid-template-columns: 44px 1fr; gap: 10px;
  padding: 9px 8px; font-size: 12.5px; color: var(--ink-2);
  border-left: 2px solid transparent;
  transition: background .4s var(--ease), border-color .4s var(--ease);
}
.feed li.hot{ background: rgba(255,176,32,.08); border-left-color: var(--acc); }
.feed li time{ font-family: var(--f-mono); font-size: 11px; color: var(--ink-3); }
.feed li b{ display: block; font-size: 12.5px; font-weight: 600; color: var(--ink); margin-bottom: 1px; }

/* лента: контур предприятия — это последовательность, поэтому один ряд */
.plant-stage{
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: clamp(10px, 1.4vw, 18px);
  padding: clamp(26px, 3vw, 42px) clamp(18px, 2.2vw, 32px);
  /* пологий наклон: сильная диагональ красива, но съедает высоту экрана */
  transform: perspective(1300px) rotateX(46deg) rotateZ(-7deg) scale(.82);
  margin-block: -14px;
  transform-origin: 50% 50%;
  transform-style: preserve-3d;
  /* «стол», на котором стоят блоки */
  background:
    linear-gradient(120deg, rgba(255,176,32,.06), transparent 55%),
    var(--panel);
  border: 1px solid var(--line);
}

.node{
  position: relative; cursor: pointer;
  aspect-ratio: 1 / 1;
  display: grid; place-items: center; padding: 4px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  color: var(--ink-2);
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .04em;
  text-transform: uppercase; text-align: center; line-height: 1.2;
  /* экструзия: слои тени дают толщину блока в изометрии */
  box-shadow:
    2px 2px 0 #0E141B, 4px 4px 0 #0E141B, 6px 6px 0 #0E141B,
    8px 8px 0 #0C1218, 10px 10px 0 #0A1016, 12px 12px 14px rgba(0,0,0,.45);
  transition: transform .25s var(--ease), background .25s var(--ease),
              box-shadow .25s var(--ease), color .25s var(--ease);
}
/* контр-поворот: подпись остаётся в плоскости экрана, иначе её не прочесть */
.node span{ transform: rotateZ(7deg) rotateX(-46deg); display: block; }
.node:hover{ transform: translate(-4px, -4px); color: var(--ink); }
.node.is-on{
  background: var(--acc); color: #16202B; border-color: var(--acc);
  transform: translate(-8px, -8px);
  box-shadow:
    2px 2px 0 #A8730F, 4px 4px 0 #A8730F, 6px 6px 0 #A8730F,
    8px 8px 0 #8C5F0C, 10px 10px 0 #704C0A, 14px 14px 20px rgba(255,176,32,.25);
  font-weight: 700;
}
.node:focus-visible{ outline: 2px solid var(--acc); outline-offset: 4px; }

/* разбор выбранной зоны: слева корпус крупно, справа текст */
.plant-info{
  background: var(--panel); border: 1px solid var(--line);
  padding: clamp(18px, 2.2vw, 26px);
  display: grid;
  grid-template-columns: clamp(180px, 15vw, 250px) minmax(0,.8fr) minmax(0,1fr) minmax(0,1fr);
  gap: clamp(16px, 2.2vw, 34px); align-items: start;
}
@media (max-width: 1100px){
  .plant-info{ grid-template-columns: 170px minmax(0,1fr) minmax(0,1fr); }
  .plant-info .head{ grid-column: 2 / -1; }
}
@media (max-width: 760px){
  .plant-info{ grid-template-columns: 1fr; gap: 14px; }
  .plant-info .head{ grid-column: auto; }
}

/* увеличенный корпус выбранной зоны */
.zone-shot{
  position: relative; display: grid; place-items: center;
  background: radial-gradient(circle at 50% 60%, rgba(255,176,32,.14), transparent 68%);
  min-height: 130px;
}
.zone-shot img{
  width: 100%; height: auto; display: block;
  filter: drop-shadow(0 14px 26px rgba(0,0,0,.5));
  animation: zoneIn .45s var(--ease) both;
}
@keyframes zoneIn{
  from{ opacity: 0; transform: translateY(10px) scale(.94); }
  to  { opacity: 1; transform: none; }
}
.plant-info .head{ display: flex; flex-direction: column; gap: 7px; }
.plant-info .k{
  font-family: var(--f-mono); font-size: 9.5px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--acc);
}
.plant-info h3{ font-size: clamp(18px, 1.9vw, 23px); }
.plant-info .col-k{
  display: block; font-family: var(--f-mono); font-size: 9px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-3); margin-bottom: 7px;
}
.plant-info .pain{ font-size: 14px; color: var(--ink-2); }
.plant-info .do{ font-size: 14px; color: var(--ink-2); }
.plant-info .ex{ font-size: 13.5px; color: var(--ink-3); margin-top: 10px; }
.plant-info .ex b{ color: var(--ink); font-weight: 600; }

/* на узком экране изометрия нечитаема — раскладываем плоско */
@media (max-width: 900px){
  .plant-stage{
    transform: none; grid-template-columns: repeat(4, 1fr);
    gap: 8px; padding: 14px;
  }
  .node{
    aspect-ratio: auto; min-height: 62px; font-size: 8.5px;
    box-shadow: 2px 2px 0 #0E141B, 4px 4px 0 #0C1218;
  }
  .node:hover, .node.is-on{ transform: translate(-2px, -2px); }
  .node.is-on{ box-shadow: 2px 2px 0 #A8730F, 4px 4px 0 #8C5F0C; }
}
@media (max-width: 560px){
  .plant-stage{ grid-template-columns: repeat(2, 1fr); }
}

.calc-wrap{ display: flex; justify-content: center; }
.calc-wrap .calc{ max-width: 560px; width: 100%; }

/* ---------- калькулятор ---------- */
.calc{
  background: var(--panel); border: 1px solid var(--line);
  padding: clamp(20px, 2.4vw, 28px);
  display: flex; flex-direction: column; gap: 18px;
}
.calc-head{ display: flex; flex-direction: column; gap: 8px; }
.calc-tag{
  align-self: flex-start;
  font-family: var(--f-mono); font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--acc); background: var(--acc-dim); padding: 4px 8px;
}
.calc-head h2{ font-size: clamp(19px, 1.9vw, 23px); }
.calc-head p{ color: var(--ink-3); font-size: 13.5px; }

.ctrl{ display: flex; flex-direction: column; gap: 8px; }
.ctrl label{
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  font-size: 13px; color: var(--ink-2);
}
.ctrl output{
  font-family: var(--f-mono); font-size: 14px; font-weight: 700; color: var(--acc);
  font-variant-numeric: tabular-nums;
}
input[type=range]{
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 3px; background: var(--panel-2); border-radius: 2px;
  outline: none; cursor: pointer;
}
input[type=range]::-webkit-slider-thumb{
  -webkit-appearance: none; appearance: none;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--acc); border: 3px solid var(--panel);
  box-shadow: 0 0 0 1px var(--acc);
  transition: transform .15s var(--ease);
}
input[type=range]::-webkit-slider-thumb:hover{ transform: scale(1.15); }
input[type=range]::-moz-range-thumb{
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--acc); border: 3px solid var(--panel);
}

.calc-out{
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); margin-top: 4px;
}
.metric{ background: var(--panel); padding: 14px 12px; }
.metric-label{
  display: block; font-family: var(--f-mono); font-size: 9px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-3); margin-bottom: 6px;
}
.metric b{
  font-family: var(--f-disp); font-weight: 800; font-size: clamp(17px, 1.7vw, 21px);
  letter-spacing: -.03em; font-variant-numeric: tabular-nums;
}
.metric.accent{ background: var(--acc-dim); }
.metric.accent b{ color: var(--acc); }
.calc-note{ font-size: 12px; color: var(--ink-3); line-height: 1.5; }

/* ---------- секции ---------- */
.sec{ padding: clamp(48px, 7vw, 104px) 0; border-top: 1px solid var(--line-2); }
.sec.alt{ background: #090D11; }
.sec-head{ display: flex; flex-direction: column; gap: 14px; margin-bottom: clamp(28px, 4vw, 48px); }
.sec-head h2{ font-size: clamp(27px, 3.6vw, 46px); }

/* ---------- карточки услуг ---------- */
.cards{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 980px){ .cards{ grid-template-columns: 1fr; } }
.card{
  background: var(--panel); border: 1px solid var(--line);
  padding: clamp(20px, 2.2vw, 28px);
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.card:hover{ border-color: rgba(255,176,32,.4); transform: translateY(-3px); }
.card-top{ display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.card-num{ font-family: var(--f-mono); font-size: 11px; letter-spacing: .14em; color: var(--ink-3); }
.card-price{
  font-family: var(--f-mono); font-size: 11.5px; font-weight: 700; letter-spacing: .04em;
  color: var(--acc); white-space: nowrap;
}
.card h3{ font-size: clamp(19px, 1.9vw, 24px); }
.card > p{ color: var(--ink-2); font-size: 14.5px; }
.card-list{ display: flex; flex-direction: column; gap: 9px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line-2); }
.card-list li{
  position: relative; padding-left: 18px; font-size: 13.5px; color: var(--ink-2);
}
.card-list li::before{
  content: ""; position: absolute; left: 0; top: 9px;
  width: 7px; height: 7px; border: 1.5px solid var(--acc); border-radius: 50%;
}

/* ---------- условия работы ---------- */
.terms-sec{ padding-block: clamp(36px, 5vw, 72px); }
.terms{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 900px){ .terms{ grid-template-columns: 1fr; } }
.term{
  border: 1px solid var(--line); padding: clamp(18px, 2vw, 26px);
  display: flex; flex-direction: column; gap: 9px;
}
/* главный довод занимает всю строку — он снимает основной страх заказчика */
.term-wide{
  grid-column: 1 / -1;
  border-color: rgba(255,176,32,.45); background: var(--acc-dim);
}
.term h3{ font-size: 18px; font-weight: 600; letter-spacing: -.02em; }
.term-wide h3{ font-size: clamp(20px, 2.2vw, 26px); font-weight: 800; }
.term p{ color: var(--ink-2); font-size: 14.5px; max-width: 70ch; }
.term-wide p{ color: var(--ink); }

.need{
  color: var(--ink-2); font-size: 14.5px; max-width: 64ch;
  padding: 16px 18px; border: 1px solid var(--line); background: var(--panel);
}

/* ---------- работы ---------- */
.works{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 980px){ .works{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 660px){ .works{ grid-template-columns: 1fr; } }
.work{
  border: 1px solid var(--line); padding: clamp(18px, 2vw, 24px);
  display: flex; flex-direction: column; gap: 10px;
  transition: background .3s var(--ease);
}
.work:hover{ background: var(--panel); }
/* снимок интерфейса: появляется, только если файл существует */
.work-shot{
  display: block; margin: calc(-1 * clamp(18px, 2vw, 24px)) calc(-1 * clamp(18px, 2vw, 24px)) 4px;
  border-bottom: 1px solid var(--line); overflow: hidden; background: #060A0E;
}
.work-shot img{
  display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: top left;
  transition: transform .5s var(--ease), opacity .3s var(--ease);
  opacity: .92;
}
.work:hover .work-shot img{ transform: scale(1.03); opacity: 1; }

.work-kind{
  align-self: flex-start;
  font-family: var(--f-mono); font-size: 9.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--acc); border: 1px solid var(--acc-dim); padding: 3px 7px;
}
.work h3{ font-size: 17.5px; font-weight: 600; letter-spacing: -.02em; }
.work p{ color: var(--ink-2); font-size: 14px; }

/* ---------- процесс ---------- */
.steps{ display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.steps li{
  display: grid; grid-template-columns: 64px 1fr; gap: clamp(14px, 2.5vw, 36px);
  padding: clamp(20px, 2.6vw, 30px) 0; border-bottom: 1px solid var(--line);
}
@media (max-width: 620px){ .steps li{ grid-template-columns: 1fr; gap: 10px; } }
.step-n{ font-family: var(--f-mono); font-size: 12px; color: var(--acc); padding-top: 5px; }
.steps h3{ font-size: clamp(18px, 1.9vw, 23px); margin-bottom: 7px; }
.steps p{ color: var(--ink-2); font-size: 14.5px; max-width: 68ch; }

/* ---------- контакты ---------- */
.cta-in{ display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
.cta-in h2{ font-size: clamp(28px, 4.4vw, 56px); }
.cta-in .lead{ text-align: center; }
.contacts{ display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 6px; }
.contact{
  border: 1px solid var(--line); background: var(--panel);
  padding: 16px 22px; display: flex; flex-direction: column; gap: 4px; min-width: 210px;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.contact:hover{ border-color: var(--acc); transform: translateY(-2px); }
.contact-k{ font-family: var(--f-mono); font-size: 9.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.contact b{ font-size: 16px; font-weight: 600; letter-spacing: -.01em; }

/* ---------- подвал ---------- */
.foot{ border-top: 1px solid var(--line-2); padding: 26px 0 34px; }
.foot-in{
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  color: var(--ink-3); font-size: 13px;
}

@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration: .001ms !important; transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}
