/* NT Lab — магазин друкованих деталей.
   Головне правило: усе, на що можна натиснути, має виглядати натискабельним.
   Суцільні заливки, помітні кнопки, ціна більша за опис. */
:root {
  --ink: #11161c;
  --ink-2: #1b232c;
  --paper: #ffffff;
  --bg: #f2f5f6;
  --line: #dfe5e8;
  --line-2: #c6d0d5;
  --text: #44525c;          /* основний текст — темніший за попередній сірий */
  --muted: #6b7a84;
  --acc: #0f9d58;           /* зелений — усі головні дії */
  --acc-d: #0b7d45;
  --acc-2: #b8ff2e;         /* лайм — тільки на темному */
  --hot: #e4572e;           /* ціна, бейджі */
  --mono: "JetBrains Mono", ui-monospace, Consolas, monospace;
  --sans: Archivo, system-ui, -apple-system, "Segoe UI", sans-serif;
  --ease: cubic-bezier(.22,.7,.24,1);
  --sh: 0 20px 40px -28px rgba(17,22,28,.55);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--sans); font-size: 16.5px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.lock { overflow: hidden; }
.wrap { width: min(1200px, 100% - 3rem); margin-inline: auto; }
.wrap.narrow { width: min(720px, 100% - 3rem); }
h1, h2, h3 { line-height: 1.12; text-wrap: balance; margin: 0; letter-spacing: -.025em; }
p { color: var(--text); }
section[id] { scroll-margin-top: 78px; }

html.js [data-rv] {
  opacity: 0; transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  transition-delay: calc(var(--d, 0) * 65ms);
}
html.js [data-rv].in { opacity: 1; transform: none; }

/* ── кнопки ──────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--acc); color: #fff; border: 0;
  padding: 15px 26px; border-radius: 10px; font: 600 16px var(--sans);
  text-decoration: none; cursor: pointer; letter-spacing: -.01em;
  box-shadow: 0 10px 22px -14px rgba(15,157,88,.9);
  transition: background .2s, transform .2s var(--ease), box-shadow .2s;
}
.btn:hover { background: var(--acc-d); transform: translateY(-2px); box-shadow: 0 16px 28px -16px rgba(15,157,88,1); }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: .55; cursor: default; transform: none; }
.btn .ar { transition: transform .25s var(--ease); }
.btn:hover .ar { transform: translateX(4px); }
.btn.lime { background: var(--acc-2); color: #0d1207; box-shadow: 0 10px 22px -14px rgba(184,255,46,.9); }
.btn.lime:hover { background: #c9ff55; }
.btn.dark { background: var(--ink); box-shadow: 0 10px 22px -14px rgba(17,22,28,.9); }
.btn.dark:hover { background: var(--acc); }
.btn.ghost {
  background: transparent; color: #eef3f5; box-shadow: inset 0 0 0 1.5px #44515c;
}
.btn.ghost:hover { background: rgba(255,255,255,.07); box-shadow: inset 0 0 0 1.5px #6b7a84; }
.btn.wide { width: 100%; }
.btn.sm { padding: 11px 18px; font-size: 14.5px; border-radius: 9px; }

/* ── шапка ───────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; gap: 18px;
  padding: 12px max(1.5rem, calc((100% - 1200px) / 2));
  background: rgba(255,255,255,.94); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.nav.stuck { box-shadow: 0 8px 24px -18px rgba(17,22,28,.6); }
.logo {
  font-weight: 800; font-size: 22px; letter-spacing: -.04em;
  color: var(--ink); text-decoration: none; flex: none;
}
.logo span { color: var(--acc); }
.cat-btn {
  display: inline-flex; align-items: center; gap: 10px; flex: none;
  background: var(--acc); color: #fff; border: 0; cursor: pointer;
  padding: 11px 20px; border-radius: 10px; font: 600 15.5px var(--sans);
  box-shadow: 0 10px 20px -14px rgba(15,157,88,.9);
  transition: background .2s, transform .2s var(--ease);
}
.cat-btn:hover { background: var(--acc-d); transform: translateY(-1px); }
.cat-btn i { display: grid; gap: 3.5px; width: 17px; }
.cat-btn i b { display: block; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s var(--ease); }
.cat-btn:hover i b:nth-child(1) { transform: translateX(2px); }
.cat-btn:hover i b:nth-child(3) { transform: translateX(-2px); }
.nav > nav { display: flex; gap: 20px; margin-left: 6px; }
.nav > nav a {
  color: var(--text); text-decoration: none; font-size: 15px; font-weight: 500;
  position: relative; padding-bottom: 3px;
}
.nav > nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--acc); transform: scaleX(0); transform-origin: left;
  transition: transform .28s var(--ease);
}
.nav > nav a:hover { color: var(--ink); }
.nav > nav a:hover::after { transform: scaleX(1); }
.nav .cta { margin-left: auto; }

/* ── бічний каталог ──────────────────────────────────── */
.veil {
  position: fixed; inset: 0; z-index: 55; background: rgba(11,15,19,.55);
  opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
}
.veil.on { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; bottom: 0; left: 0; z-index: 60;
  width: min(348px, 88vw); background: var(--paper);
  display: flex; flex-direction: column;
  transform: translateX(-102%); transition: transform .36s var(--ease);
  box-shadow: 24px 0 60px -30px rgba(11,15,19,.7);
}
.drawer.open { transform: none; }
.dr-top {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 20px; border-bottom: 1px solid var(--line);
}
.dr-top b { font-size: 18px; font-weight: 800; letter-spacing: -.03em; }
.dr-x {
  margin-left: auto; background: var(--bg); border: 0; cursor: pointer;
  width: 34px; height: 34px; border-radius: 9px; color: var(--text);
  font-size: 22px; line-height: 1; display: grid; place-content: center;
  transition: background .2s, color .2s;
}
.dr-x:hover { background: var(--ink); color: #fff; }
.dr-list { padding: 10px; overflow-y: auto; flex: 1; display: grid; gap: 2px; align-content: start; }
.dr-list button {
  display: flex; align-items: center; gap: 13px; width: 100%; text-align: left;
  background: none; border: 0; cursor: pointer; border-radius: 10px;
  padding: 13px 14px; font: 500 15.5px var(--sans); color: var(--ink);
  transition: background .18s, color .18s;
}
.dr-list button:hover { background: var(--bg); }
.dr-list button.on { background: var(--ink); color: #fff; }
.dr-list button.on .n { background: rgba(255,255,255,.18); color: #fff; }
.dr-list .ic { flex: none; color: var(--acc); display: grid; place-content: center; }
.dr-list button.on .ic { color: var(--acc-2); }
.dr-list .n {
  margin-left: auto; font-family: var(--mono); font-size: 12px;
  background: var(--bg); color: var(--muted); padding: 3px 8px; border-radius: 99px;
}
.dr-foot { padding: 14px; border-top: 1px solid var(--line); display: grid; gap: 10px; }
.dr-foot .lab { font-size: 13px; color: var(--muted); margin: 0; }

/* ── герой ───────────────────────────────────────────── */
.hero {
  background: var(--ink); color: #eef3f5;
  padding: 74px 0 66px; position: relative; overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: -20px 0; pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(184,255,46,.055) 0 1px, transparent 1px 9px);
  animation: drift 14s linear infinite;
}
@keyframes drift { to { transform: translateY(9px); } }
.hero .wrap { position: relative; z-index: 1; display: grid; gap: 44px; align-items: center; }
@media (min-width: 920px) { .hero .wrap { grid-template-columns: 1fr 220px; } }
.eyebrow {
  font-family: var(--mono); font-size: 12.5px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--acc-2); margin: 0 0 18px;
}
.hero h1 { font-size: clamp(2.4rem, 6vw, 3.9rem); font-weight: 800; }
.hero .lead { font-size: 1.14rem; color: #b9c6cd; max-width: 54ch; margin: 20px 0 0; }
.hero-act { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.up { animation: up .75s var(--ease) both; animation-delay: calc(var(--d, 0) * 85ms); }
@keyframes up { from { opacity: 0; transform: translateY(20px); } }
.facts { display: flex; flex-wrap: wrap; gap: 34px; margin: 46px 0 0; }
.facts div { display: grid; gap: 3px; }
.facts dt { font-family: var(--mono); font-size: 1.3rem; font-weight: 600; color: var(--acc-2); }
.facts dd { margin: 0; font-size: 13.5px; color: #93a3ac; max-width: 22ch; }

.printer { display: none; }
@media (min-width: 920px) {
  .printer {
    display: flex; flex-direction: column-reverse; gap: 3px;
    justify-self: center; width: 186px; padding-bottom: 13px;
    border-bottom: 2px solid #35424d;
  }
  .printer i {
    display: block; height: 7px; border-radius: 2px; opacity: 0;
    background: linear-gradient(90deg, var(--acc), var(--acc-2));
    width: var(--w); margin-inline: auto;
    animation: layer 6s var(--ease) infinite;
    animation-delay: calc(var(--i) * .13s);
  }
}
@keyframes layer {
  0% { opacity: 0; transform: translateY(7px) scaleX(.35); }
  9%, 82% { opacity: 1; transform: none; }
  92%, 100% { opacity: 0; transform: translateY(-4px) scaleX(.9); }
}

/* ── секції ──────────────────────────────────────────── */
.band { padding: 68px 0; background: var(--bg); }
.band.alt { background: var(--paper); border-block: 1px solid var(--line); }
.band h2 { font-size: clamp(1.7rem, 3.6vw, 2.25rem); font-weight: 800; }
.band .sub { font-size: 1.02rem; color: var(--muted); margin: 10px 0 30px; max-width: 62ch; }
.head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; margin-bottom: 28px;
}
.head .sub { margin-bottom: 0; }

/* ── каталог ─────────────────────────────────────────── */
/* ── пошук за технікою ───────────────────────────────── */
.find {
  display: flex; align-items: center; gap: 12px; margin: 0 0 14px;
  background: var(--paper); border: 1.5px solid var(--line); border-radius: 12px;
  padding: 4px 16px; transition: border-color .2s, box-shadow .2s;
}
.band.alt .find { background: var(--bg); }
.find:focus-within { border-color: var(--acc); box-shadow: 0 0 0 3px rgba(15,157,88,.15); }
.find svg { color: var(--acc); flex: none; }
.find input {
  border: 0; background: none; padding: 14px 0; flex: 1; min-width: 0;
  font: 400 16px var(--sans);
}
.find input:focus { outline: 0; box-shadow: none; }
.find input::-webkit-search-cancel-button { display: none; }
.find .x {
  border: 0; background: var(--bg); color: var(--muted); cursor: pointer;
  width: 30px; height: 30px; border-radius: 8px; font-size: 20px; line-height: 1;
  display: grid; place-content: center; flex: none; transition: background .2s, color .2s;
}
.band.alt .find .x { background: var(--paper); }
.find .x:hover { background: var(--ink); color: #fff; }

.found { margin: 0 0 14px; font-size: 14.5px; color: var(--muted); }
.found.none {
  background: #fff6ed; border: 1px solid #f4d5b8; color: #8a4b1d;
  border-radius: 10px; padding: 13px 16px;
}
.found.none button {
  border: 0; background: none; cursor: pointer; padding: 0;
  font: 600 14.5px var(--sans); color: var(--acc-d); text-decoration: underline;
}
.found.none button:hover { color: var(--ink); }

/* безкоштовна доставка — головний важіль середнього чека, має бути видно */
.ship {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  margin: 0 0 18px; padding: 14px 18px; border-radius: 12px;
  background: #e8f6ee; border: 1px solid #c3e6d2; color: var(--ink);
}
.ship svg { color: var(--acc); flex: none; }
.ship b { font-size: 15.5px; font-weight: 700; }
.ship span { font-size: 13.5px; color: var(--muted); }

.catalog { display: grid; gap: 18px; grid-template-columns: repeat(auto-fill, minmax(276px, 1fr)); }
.prod {
  background: var(--paper); border: 1px solid var(--line); border-radius: 14px;
  overflow: hidden; display: flex; flex-direction: column; position: relative;
  transition: transform .26s var(--ease), box-shadow .26s, border-color .26s;
}
.prod.hide { display: none; }
.prod:not(.custom) { cursor: pointer; }
.prod:hover, .prod:focus-visible { transform: translateY(-5px); border-color: var(--acc); box-shadow: var(--sh); }
.prod:focus-visible { outline: 0; box-shadow: var(--sh), 0 0 0 3px rgba(15,157,88,.25); }
.p-img {
  aspect-ratio: 1 / 1; background: #fff; overflow: hidden; position: relative;
  border-bottom: 1px solid var(--line);
}
.p-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s var(--ease), opacity .35s var(--ease);
}
.p-img img.alt { position: absolute; inset: 0; opacity: 0; }
.prod:hover .p-img img.alt { opacity: 1; }
.prod:hover .p-img img { transform: scale(1.05); }
.p-more {
  position: absolute; right: 11px; bottom: 11px; z-index: 1;
  font-family: var(--mono); font-size: 10.5px;
  background: rgba(17,22,28,.78); color: #eef3f5; backdrop-filter: blur(6px);
  padding: 4px 9px; border-radius: 99px;
}

/* ── швидкий перегляд товару ─────────────────────────── */
.modal { position: fixed; inset: 0; z-index: 70; display: grid; place-items: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal::before {
  content: ""; position: absolute; inset: 0; background: rgba(11,15,19,.62);
  animation: fade .25s var(--ease) both;
}
@keyframes fade { from { opacity: 0 } }
.m-box {
  position: relative; z-index: 1; background: var(--paper); border-radius: 16px;
  width: min(880px, 100%); max-height: calc(100vh - 40px); overflow: auto;
  display: grid; box-shadow: 0 40px 80px -40px rgba(11,15,19,.8);
  animation: pop .3s var(--ease) both;
}
@keyframes pop { from { opacity: 0; transform: translateY(14px) scale(.98) } }
@media (min-width: 720px) { .m-box { grid-template-columns: 1fr 1fr; } }
.m-x {
  position: absolute; right: 12px; top: 12px; z-index: 3;
  width: 36px; height: 36px; border: 0; border-radius: 10px; cursor: pointer;
  background: rgba(255,255,255,.9); color: var(--ink); font-size: 24px; line-height: 1;
  display: grid; place-content: center; backdrop-filter: blur(6px);
  transition: background .2s, color .2s;
}
.m-x:hover { background: var(--ink); color: #fff; }
.m-gal { position: relative; background: #fff; }
.m-gal img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
.m-nav {
  position: absolute; top: 50%; translate: 0 -50%; z-index: 2;
  width: 38px; height: 38px; border: 0; border-radius: 50%; cursor: pointer;
  background: rgba(255,255,255,.92); color: var(--ink); font-size: 22px; line-height: 1;
  display: grid; place-content: center; box-shadow: 0 6px 16px -8px rgba(17,22,28,.6);
  transition: background .2s, color .2s;
}
.m-nav:hover { background: var(--ink); color: #fff; }
.m-nav.prev { left: 10px; } .m-nav.next { right: 10px; }
.m-dots { position: absolute; left: 0; right: 0; bottom: 12px; display: flex; gap: 6px; justify-content: center; }
.m-dots i { width: 7px; height: 7px; border-radius: 50%; background: rgba(17,22,28,.28); transition: background .2s, width .2s; }
.m-dots i.on { background: var(--acc); width: 18px; border-radius: 99px; }
.m-body { padding: 28px; display: flex; flex-direction: column; gap: 12px; }
.m-body h3 { font-size: 1.4rem; font-weight: 800; padding-right: 40px; }
.m-body p { margin: 0; font-size: 15px; }
.m-ship {
  display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--acc-d);
  background: #e8f6ee; border-radius: 10px; padding: 10px 13px;
}
.m-ship svg { flex: none; }
.m-foot { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); display: grid; gap: 12px; }
body.lock .modal { overflow: hidden; }
.p-img.no { background: repeating-linear-gradient(45deg, #e9edef 0 10px, #eef1f3 10px 20px); }
.p-img.no img { display: none; }
.p-img.no::after {
  content: "фото готується"; position: absolute; inset: 0; display: grid; place-content: center;
  font-family: var(--mono); font-size: 12px; color: #9aa8b1;
}
.p-cat {
  position: absolute; left: 11px; top: 11px; z-index: 1;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .03em;
  background: rgba(17,22,28,.84); color: #eef3f5; backdrop-filter: blur(6px);
  padding: 5px 10px; border-radius: 99px;
}
.p-badge {
  position: absolute; right: 11px; top: 11px; z-index: 1;
  font-size: 11.5px; font-weight: 700; letter-spacing: .02em;
  background: var(--hot); color: #fff; padding: 5px 10px; border-radius: 99px;
}
.p-body { padding: 18px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.p-body h3 { font-size: 1.06rem; font-weight: 700; }
.p-body p { margin: 0; font-size: 14.3px; color: var(--text); }
.prod .tags { display: flex; flex-wrap: wrap; gap: 6px; }
.prod .tag {
  font-family: var(--mono); font-size: 10.5px; color: var(--acc-d);
  background: #e8f6ee; padding: 4px 9px; border-radius: 6px;
}
.p-foot {
  margin-top: auto; padding-top: 14px; display: grid; gap: 11px;
  border-top: 1px solid var(--line);
}
.price { font-size: 1.45rem; font-weight: 800; color: var(--ink); letter-spacing: -.03em; }
.price.ask { font-size: 15px; font-weight: 600; color: var(--muted); letter-spacing: 0; }

/* картка «щось своє» — веде в індивідуальний друк */
.prod.custom {
  background: var(--ink); border-color: var(--ink); color: #eef3f5;
  justify-content: center; align-items: start; padding: 28px 24px; gap: 12px;
  background-image: repeating-linear-gradient(0deg, rgba(184,255,46,.06) 0 1px, transparent 1px 9px);
}
.prod.custom:hover { border-color: var(--acc-2); }
.prod.custom h3 { font-size: 1.35rem; font-weight: 800; color: #fff; }
.prod.custom p { color: #b9c6cd; font-size: 14.6px; margin: 0; }
.prod.custom .ic { color: var(--acc-2); }
.prod.custom .btn { margin-top: 8px; }
.empty { margin: 24px 0 0; font-size: 15px; color: var(--muted); }

/* ── індивідуальний друк ─────────────────────────────── */
.custom-box {
  background: var(--paper); border: 1px solid var(--line); border-radius: 16px;
  padding: 30px; box-shadow: var(--sh);
}
.band.alt .custom-box { background: var(--bg); }
.two { display: grid; gap: 14px; }
@media (min-width: 640px) { .two { grid-template-columns: 1fr 1fr; } }
.drop {
  border: 1.5px dashed var(--line-2); border-radius: 12px; background: var(--bg);
  padding: 22px; text-align: center; cursor: pointer; display: grid; gap: 6px;
  transition: border-color .2s, background .2s;
}
.band.alt .drop { background: var(--paper); }
.drop:hover, .drop.over { border-color: var(--acc); background: #eefaf3; }
.drop b { font-size: 15px; font-weight: 600; color: var(--ink); }
.drop span { font-size: 13px; color: var(--muted); }
.drop input { display: none; }
.drop.has { border-style: solid; border-color: var(--acc); background: #eefaf3; }

/* ── що робимо / кроки / питання ─────────────────────── */
.grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 13px;
  padding: 24px 22px; display: grid; gap: 9px; align-content: start;
  transition: transform .26s var(--ease), box-shadow .26s, border-color .26s;
}
.band.alt .card { background: var(--bg); }
.card:hover { transform: translateY(-4px); border-color: var(--line-2); box-shadow: var(--sh); }
.card .num { font-family: var(--mono); font-size: 12px; font-weight: 600; color: var(--acc); letter-spacing: .1em; }
.card h3 { font-size: 1.06rem; font-weight: 700; }
.card p { margin: 0; font-size: 14.4px; }

.steps { list-style: none; counter-reset: s; margin: 0; padding: 0; display: grid; gap: 2px; }
.steps li {
  counter-increment: s; display: grid; grid-template-columns: 46px 1fr; gap: 18px;
  align-items: start; padding: 22px 0; border-top: 1px solid var(--line);
}
.steps li:last-child { border-bottom: 1px solid var(--line); }
.steps li::before {
  content: counter(s, decimal-leading-zero);
  font-family: var(--mono); font-size: 15px; font-weight: 600; color: var(--acc); padding-top: 2px;
}
/* li — сітка, і ::before займає перший стовпець. Без явного grid-column
   опис з'їжджав під номер, у колонку 46 px. */
.steps li > b, .steps li > span { grid-column: 2; }
.steps b { font-size: 1.05rem; font-weight: 700; display: block; margin-bottom: 4px; }
.steps span { color: var(--text); font-size: 14.7px; }
.steps em { font-style: normal; color: var(--ink); font-weight: 700; }

.faq { display: grid; }
.qa { border-top: 1px solid var(--line); }
.qa:last-child { border-bottom: 1px solid var(--line); }
.qa .q {
  width: 100%; background: none; border: 0; cursor: pointer;
  display: flex; align-items: center; gap: 16px; text-align: left;
  padding: 20px 2px; font: 700 1.03rem var(--sans); color: var(--ink);
  letter-spacing: -.02em; transition: color .2s;
}
.qa .q:hover { color: var(--acc); }
.qa .q svg { margin-left: auto; flex: none; color: var(--acc); transition: transform .3s var(--ease); }
.qa.open .q svg { transform: rotate(45deg); }
.qa .a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .32s var(--ease); }
.qa.open .a { grid-template-rows: 1fr; }
.qa .a > div { overflow: hidden; }
.qa .a p { margin: 0 0 20px; font-size: 15px; max-width: 74ch; }
html:not(.js) .qa .a { grid-template-rows: 1fr; }

/* ── форми ───────────────────────────────────────────── */
form { display: grid; gap: 14px; }
label { display: grid; gap: 6px; font-size: 13.5px; font-weight: 600; color: var(--muted); }
input, textarea, select {
  font: 400 16px var(--sans); color: var(--ink);
  background: var(--paper); border: 1.5px solid var(--line); border-radius: 10px;
  padding: 13px 14px; width: 100%; resize: vertical;
  transition: border-color .2s, box-shadow .2s;
}
.band.alt input, .band.alt textarea, .band.alt select { background: var(--paper); }
input:focus, textarea:focus, select:focus {
  outline: 0; border-color: var(--acc); box-shadow: 0 0 0 3px rgba(15,157,88,.15);
}
form .btn { justify-self: start; }
form .btn.wide { justify-self: stretch; }
.hint { margin: 0; font-size: 13px; color: var(--muted); }
.status {
  margin: 2px 0 0; font-size: 14.5px; font-weight: 600;
  padding: 12px 15px; border-radius: 10px; animation: up .4s var(--ease) both;
}
.status.ok { background: #e8f6ee; color: #0b6b3d; }
.status.bad { background: #fdece6; color: #b3320f; }

/* ── підвал ──────────────────────────────────────────── */
footer { background: var(--ink); color: #93a3ac; padding: 44px 0; }
.foot { display: flex; flex-wrap: wrap; gap: 26px; justify-content: space-between; align-items: start; }
.foot .logo { color: #eef3f5; }
.foot p { margin: 8px 0 0; font-size: 14px; color: #93a3ac; }
.contacts { display: grid; gap: 7px; }
.contacts a { color: #b9c6cd; text-decoration: none; font-size: 14.5px; transition: color .2s; }
.contacts a:hover { color: var(--acc-2); }

@media (max-width: 860px) { .nav > nav { display: none; } }
@media (max-width: 620px) {
  .nav { gap: 10px; padding-inline: 1rem; }
  .cat-btn { padding: 10px 14px; font-size: 14.5px; }
  .nav .cta { display: none; }
  .hero { padding: 54px 0 48px; }
  .facts { gap: 22px; }
  .band { padding: 50px 0; }
  .custom-box { padding: 22px 18px; }
  .steps li { grid-template-columns: 34px 1fr; gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  html.js [data-rv] { opacity: 1; transform: none; }
  .printer i { opacity: 1; }
}
