/* ==========================================================================
   FORMICA TECH — design system
   Палітра, типографіка та компоненти. Один файл на весь сайт.
   ========================================================================== */

/* Палітра OBI: помаранчевий акцент + нейтральні сірі */
:root {
  --ink: #222;
  --ink-2: #111;
  --ink-3: #333;
  --accent: #F56600;
  --accent-soft: #FDEDE2;
  --accent-light: #FFCBA6;
  --bg: #F6F6F6;
  --line: #EDEDED;
  --line-dark: #3A3A3A;
  --text: #424242;
  --muted: #757575;
  --faint: #959595;
  --white: #fff;
  --ok: #008829;
  --ok-bg: #E6F3EA;
  --warn: #D62B2B;
  --warn-bg: #FBEAEA;
  --gold: #EB9B32;

  --r: 14px;
  --r-sm: 10px;
  --r-lg: 20px;
  --pill: 999px;

  --shadow-sm: 0 1px 2px rgba(22, 33, 46, .06);
  --shadow: 0 4px 16px rgba(22, 33, 46, .07);
  --shadow-lg: 0 12px 32px rgba(22, 33, 46, .12);

  --wrap: 1320px;
  --gut: 24px;
  --header-h: 84px;

  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* --- Типографіка: свідомо контрастна ієрархія -------------------------- */
h1, h2, h3, h4 { margin: 0; color: var(--ink); font-weight: 800; letter-spacing: -.02em; line-height: 1.12; }
h1 { font-size: clamp(2rem, 1.35rem + 2.8vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 1.2rem + 1.8vw, 2.35rem); }
h3 { font-size: clamp(1.05rem, 1rem + .3vw, 1.2rem); line-height: 1.25; letter-spacing: -.01em; }
p { margin: 0; }

.eyebrow {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.eyebrow--light { color: var(--accent-light); }
.lead { font-size: clamp(.95rem, .9rem + .2vw, 1.06rem); color: var(--muted); }

/* --- Каркас ------------------------------------------------------------ */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gut); }
.section { padding: clamp(64px, 7vw, 110px) 0; }
.section--tint { background: var(--bg); }
.section--dark { background: var(--ink); color: #B0B0B0; }
.section--dark h2, .section--dark h3 { color: var(--white); }

.section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; margin-bottom: clamp(32px, 4vw, 52px);
}
.section-head p { max-width: 62ch; margin-top: 12px; }
.section-head__link { font-weight: 600; color: var(--accent); white-space: nowrap; }
.section-head__link:hover { text-decoration: underline; }

.grid { display: grid; gap: 24px; }
.grid--5 { grid-template-columns: repeat(5, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 80px); align-items: center; }

/* --- Кнопки (pill-форма — прийом з obi.de) ----------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: var(--pill); border: 1.5px solid transparent;
  font-weight: 600; font-size: .95rem; line-height: 1;
  transition: background .18s, color .18s, border-color .18s, transform .18s;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--accent); color: var(--white); }
.btn--primary:hover { background: #DB5C00; }
.btn--ghost { background: var(--white); color: var(--ink); border-color: #D8D8D8; }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--light { background: var(--white); color: var(--ink); }
.btn--light:hover { background: #EDEDED; }
.btn--outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.35); }
.btn--outline-light:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn--block { width: 100%; }

.chip {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 20px; border-radius: var(--pill); background: var(--bg);
  font-size: .85rem; font-weight: 600; color: var(--ink); white-space: nowrap;
}
.chip--accent { background: var(--accent-soft); color: var(--accent); }
.chip--dark { background: var(--accent); color: var(--white); }
.chip--outline { background: transparent; border: 1px solid var(--line-dark); color: #D8D8D8; }

/* --- Topbar ------------------------------------------------------------ */
.topbar { background: var(--ink-2); color: #A3A3A3; font-size: .75rem; }
.topbar .wrap { display: flex; justify-content: space-between; gap: 16px; padding-top: 9px; padding-bottom: 9px; }
.topbar a { color: #D8D8D8; }
.topbar a:hover { color: var(--white); }

/* --- Header ------------------------------------------------------------ */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.96); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s;
}
.header.is-stuck { box-shadow: var(--shadow); }
.header .wrap { display: flex; align-items: center; gap: 28px; height: var(--header-h); }

.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo__mark {
  width: 42px; height: 42px; border-radius: var(--r-sm); background: var(--accent);
  color: var(--white); font-weight: 800; font-size: 1.3rem;
  display: grid; place-items: center; flex-shrink: 0;
}
.logo__name { display: block; font-size: 1.05rem; font-weight: 800; color: var(--ink); letter-spacing: .01em; line-height: 1.1; white-space: nowrap; }
.logo__tag { display: block; font-size: .56rem; font-weight: 600; letter-spacing: .2em; color: var(--muted); text-transform: uppercase; white-space: nowrap; }

.nav { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.nav a {
  padding: 10px 14px; border-radius: var(--r-sm); font-size: .92rem; white-space: nowrap;
  color: var(--text); transition: background .16s, color .16s;
}
.nav a:hover { background: var(--bg); color: var(--ink); }
.nav a.is-active { color: var(--accent); font-weight: 700; }
.nav > .btn { display: none; }  /* кнопка потрібна лише у мобільній шторці */

.header__contact { text-align: right; line-height: 1.25; flex-shrink: 0; }
.header__phone { font-size: .98rem; font-weight: 700; color: var(--ink); white-space: nowrap; }
.header__hours { display: none; }
.header__cta { flex-shrink: 0; padding: 12px 22px; }

.burger {
  display: none; width: 44px; height: 44px; margin-left: auto;
  background: none; border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: 0; place-items: center;
}
.burger span, .burger span::before, .burger span::after {
  content: ""; display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.burger span::before { transform: translateY(-6px); }
.burger span::after { transform: translateY(4px); }
.burger.is-open span { background: transparent; }
.burger.is-open span::before { transform: rotate(45deg); }
.burger.is-open span::after { transform: rotate(-45deg) translateY(-1px); }

/* --- Hero -------------------------------------------------------------- */
.hero { position: relative; background: #EDF1F5; overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 70% 100%; filter: saturate(1.07) contrast(1.06); }
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.9) 28%, rgba(255,255,255,.45) 46%, rgba(255,255,255,0) 60%);
}
.hero__inner {
  position: relative; display: flex; align-items: center;
  min-height: clamp(480px, 44vw, 640px);
  padding-top: clamp(48px, 5vw, 80px); padding-bottom: clamp(48px, 5vw, 80px);
}
.hero__copy { max-width: 620px; }
.hero h1 { margin-bottom: 24px; }
.hero__sub { font-size: clamp(1rem, .95rem + .3vw, 1.14rem); color: #424242; max-width: 46ch; }
.hero__list { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 12px; }
.hero__list li { display: flex; gap: 11px; align-items: flex-start; font-size: .95rem; color: var(--text); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero__note { margin-top: 18px; font-size: .8rem; color: #959595; }
.hero__stats { display: flex; flex-wrap: wrap; gap: clamp(24px, 5vw, 56px); margin-top: 40px; }
.hero__stats b { display: block; font-size: 1.5rem; font-weight: 800; color: var(--ink); line-height: 1.1; }
.hero__stats span { font-size: .78rem; color: #959595; }

.tick { color: var(--accent); font-weight: 800; flex-shrink: 0; }

/* --- Смуга переваг ----------------------------------------------------- */
.benefits { padding: clamp(32px, 4vw, 48px) 0; }
.benefits__box {
  background: var(--ink); border-radius: var(--r-lg); color: #A3A3A3;
  padding: clamp(36px, 4vw, 56px);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(28px, 3vw, 48px);
}
.benefits__box h3 { color: var(--white); font-size: 1rem; margin-bottom: 8px; }
.benefits__box p { font-size: .82rem; line-height: 1.5; }
.benefits__icon {
  width: 34px; height: 34px; border-radius: var(--r-sm); background: #333;
  display: grid; place-items: center; margin-bottom: 16px; color: var(--accent-light);
}

/* --- Картки послуг ----------------------------------------------------- */
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r);
  padding: 28px; display: flex; flex-direction: column;
}
.card__icon {
  width: 42px; height: 42px; border-radius: 12px; background: var(--accent-soft);
  color: var(--accent); display: grid; place-items: center; margin-bottom: 18px;
}
.card h3 { margin-bottom: 12px; }
.card__list { list-style: none; margin: 0 0 18px; padding: 0; display: grid; gap: 9px; font-size: .86rem; color: var(--muted); }
.card__list li { padding-left: 14px; position: relative; }
.card__list li::before { content: "·"; position: absolute; left: 4px; color: var(--accent); font-weight: 800; }
.card__foot { margin-top: auto; padding-top: 20px; border-top: 1px solid #EDEDED; }
.card__price { font-size: 1.06rem; font-weight: 800; color: var(--ink); }
.card__meta { font-size: .72rem; color: var(--faint); }
.card__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--white); font-size: .68rem; font-weight: 700;
  padding: 6px 14px; border-radius: var(--pill); white-space: nowrap;
}
.card--featured { position: relative; }

/* --- Плитки техніки ---------------------------------------------------- */
.tile { display: block; border-radius: var(--r); overflow: hidden; background: var(--bg); }
.tile__img { aspect-ratio: 3 / 2; overflow: hidden; background: var(--bg); }
.tile__img img { width: 100%; height: 100%; object-fit: cover; }
.tile__label { padding: 16px 4px 6px; font-weight: 700; color: var(--ink); font-size: 1rem; }

.chips-row { display: flex; flex-wrap: wrap; gap: 10px; }
.label-sm { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--faint); margin-bottom: 14px; }

/* --- Таблиця систем ---------------------------------------------------- */
.systems { display: grid; grid-template-columns: 340px 1fr; gap: clamp(28px, 4vw, 60px); }
.systems__row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; padding: 22px 0; border-top: 1px solid var(--line-dark); }
.systems__row:last-child { border-bottom: 1px solid var(--line-dark); }
.systems__row h3 { font-size: 1rem; }
.systems__row ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 7px; font-size: .82rem; color: #A3A3A3; }
.systems__row li::before { content: "· "; }

/* --- Чек-лист двома колонками ------------------------------------------ */
.checklist { list-style: none; margin: 28px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px; }
.checklist li { display: flex; gap: 10px; font-size: .9rem; }

/* --- Медіа-блок -------------------------------------------------------- */
.media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }
.media img { width: 100%; aspect-ratio: 7 / 5; object-fit: cover; }

/* --- Нумерований список кроків ----------------------------------------- */
.steps-list { list-style: none; margin: 0; padding: 0; counter-reset: s; }
.steps-list li {
  counter-increment: s; display: flex; gap: 18px; align-items: baseline;
  padding: 16px 0; border-bottom: 1px solid #EDEDED; font-weight: 600; color: var(--ink); font-size: .98rem;
}
.steps-list li::before { content: "0" counter(s); color: var(--accent); font-weight: 800; font-size: .92rem; }

/* --- Макет звіту ------------------------------------------------------- */
.report { background: var(--white); border: 1px solid #E0E0E0; border-radius: var(--r); padding: 24px; box-shadow: var(--shadow); }
.report__head { display: flex; gap: 12px; align-items: center; padding-bottom: 16px; border-bottom: 1px solid #EDEDED; }
.report__mark { width: 30px; height: 30px; border-radius: 8px; background: var(--accent); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: .85rem; }
.report__row { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 13px 0; font-size: .9rem; color: var(--ink); }
.badge { font-size: .68rem; font-weight: 600; padding: 5px 12px; border-radius: var(--pill); white-space: nowrap; }
.badge--note { background: var(--accent-soft); color: var(--accent); }
.badge--ok { background: var(--ok-bg); color: var(--ok); }
.badge--bad { background: var(--warn-bg); color: var(--warn); }
.report__skeleton { display: grid; gap: 9px; padding: 18px 0; border-top: 1px solid #EDEDED; }
.report__skeleton i { display: block; height: 8px; border-radius: 4px; background: #EDEDED; }
.report__total { font-size: 1.3rem; font-weight: 800; color: var(--ink); }

/* --- Процес ------------------------------------------------------------ */
.process { display: grid; grid-template-columns: repeat(5, 1fr); gap: 28px; position: relative; }
.process::before {
  content: ""; position: absolute; top: 26px; left: 10%; right: 10%;
  border-top: 2px dashed #DEDEDE; z-index: 0;
}
.process__item { position: relative; z-index: 1; text-align: center; }
.process__num {
  width: 52px; height: 52px; margin: 0 auto 20px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--accent); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; line-height: 1;
}
.process__item h3 { font-size: 1rem; margin-bottom: 8px; }
.process__item p { font-size: .84rem; color: var(--muted); }

/* --- Відгуки ----------------------------------------------------------- */
.review { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 26px; display: flex; flex-direction: column; }
.stars { color: var(--gold); letter-spacing: .18em; margin-bottom: 16px; }
.review p { font-size: .9rem; color: var(--text); }
.review__author { display: flex; gap: 12px; align-items: center; margin-top: auto; padding-top: 20px; border-top: 1px solid #EDEDED; }
.review__avatar { width: 38px; height: 38px; border-radius: 50%; background: #E0E0E0; display: grid; place-items: center; font-weight: 700; color: var(--muted); flex-shrink: 0; }
.review__author b { display: block; font-size: .9rem; color: var(--ink); }
.review__author span { font-size: .78rem; color: var(--muted); }
.rating-inline { font-weight: 600; color: var(--ink); white-space: nowrap; }
.rating-inline i { color: var(--gold); font-style: normal; }

/* --- FAQ (нативний акордеон) ------------------------------------------- */
.faq { display: grid; gap: 0; }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 26px 48px 26px 0; position: relative;
  font-weight: 700; color: var(--ink); font-size: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 8px; top: 50%; width: 26px; height: 26px;
  margin-top: -13px; border: 1px solid #D8D8D8; border-radius: 50%;
  background-image: linear-gradient(var(--accent), var(--accent)), linear-gradient(var(--accent), var(--accent));
  background-size: 11px 2px, 2px 11px; background-position: center, center; background-repeat: no-repeat;
  transition: transform .2s;
}
.faq details[open] summary::after { background-size: 11px 2px, 0 0; }
.faq details p { padding: 0 48px 28px 0; font-size: .92rem; color: var(--muted); }

/* --- CTA --------------------------------------------------------------- */
.cta__box {
  background: var(--ink); border-radius: var(--r-lg); color: #CFCFCF;
  padding: clamp(40px, 5vw, 64px);
  display: grid; grid-template-columns: 1.4fr auto; gap: 40px; align-items: center;
}
.cta__box h2 { color: var(--white); margin-bottom: 14px; }
.cta__box p { font-size: .92rem; }
.cta__side { text-align: right; }
.cta__phone { font-size: 1.5rem; font-weight: 800; color: var(--white); white-space: nowrap; display: block; }
.cta__hours { font-size: .78rem; color: #B0B0B0; display: block; margin-bottom: 20px; }

/* --- Форма ------------------------------------------------------------- */
.form { display: grid; gap: 12px; }
.form input, .form textarea, .form select {
  width: 100%; padding: 14px 16px; border-radius: var(--r-sm);
  border: 1px solid var(--line); background: var(--white);
  font: inherit; font-size: .92rem; color: var(--ink);
}
.form input:focus, .form textarea:focus, .form select:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: transparent; }
.form textarea { min-height: 110px; resize: vertical; }
.form--dark input, .form--dark textarea, .form--dark select { background: var(--ink-3); border-color: #3A3A3A; color: var(--white); }
.form--dark input::placeholder, .form--dark textarea::placeholder { color: #757575; }
.form__note { font-size: .72rem; color: var(--faint); }
.form--dark .form__note { color: #757575; }

/* --- Page hero (внутрішні сторінки) ------------------------------------ */
.page-hero { background: var(--ink); color: #B0B0B0; padding: clamp(36px, 5vw, 64px) 0; }
.page-hero h1 { color: var(--white); margin: 10px 0 16px; }
.page-hero p { max-width: 56ch; }
.crumbs { font-size: .78rem; color: #A3A3A3; }
.crumbs a:hover { color: var(--white); }
.crumbs span { color: var(--accent-light); }
.page-hero__rule { width: 56px; height: 4px; background: var(--accent); margin-top: 22px; }

/* --- Прайс-таблиця ----------------------------------------------------- */
.price-table { width: 100%; border-collapse: collapse; background: var(--white); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.price-table thead { background: var(--ink); color: var(--white); }
.price-table th { text-align: left; padding: 16px 20px; font-size: .82rem; font-weight: 600; }
.price-table td { padding: 18px 20px; border-top: 1px solid #EDEDED; font-size: .92rem; vertical-align: top; }
.price-table td:first-child { font-weight: 600; color: var(--ink); }
.price-table td:last-child { font-weight: 700; color: var(--ink); white-space: nowrap; }
.price-table tbody tr:hover { background: #FAFAFA; }

/* --- Footer ------------------------------------------------------------ */
.footer { background: var(--ink-2); color: #A3A3A3; padding: clamp(40px, 5vw, 64px) 0 28px; font-size: .88rem; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 44px; }
.footer h4 { font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: #A3A3A3; margin-bottom: 18px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer a { color: #E5E5E5; }
.footer a:hover { color: var(--white); text-decoration: underline; }
.footer .logo__name { color: var(--white); }
.footer .logo__tag { color: var(--accent-light); }
.footer .logo__mark { background: var(--accent); color: var(--white); }
.footer__contact b { color: var(--white); font-size: 1rem; }
.footer__soc { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px; }
.footer__soc a { padding: 8px 16px; border: 1px solid #3A3A3A; border-radius: var(--pill); background: var(--ink-3); font-size: .76rem; font-weight: 600; color: #D8D8D8; }
.footer__soc a:hover { border-color: var(--accent-light); text-decoration: none; }
.footer__bar { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 36px; padding-top: 22px; border-top: 1px solid #333; font-size: .76rem; color: var(--muted); }

/* --- Мобільна CTA-панель (прийом з obi.de) ----------------------------- */
.mobile-bar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: rgba(255,255,255,.97); backdrop-filter: blur(8px);
  border-top: 1px solid var(--line); padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
}
.mobile-bar .btn { flex: 1; padding: 13px 14px; font-size: .88rem; }

/* ==========================================================================
   Адаптив
   ========================================================================== */

@media (max-width: 1330px) {
  .header__contact { display: none; }
}

@media (max-width: 1150px) {
  .header__cta { display: none; }
  .nav { margin-left: auto; }
}

@media (max-width: 1100px) {
  .grid--5 { grid-template-columns: repeat(3, 1fr); }
  .nav a { padding: 8px 10px; font-size: .88rem; }
}

@media (max-width: 960px) {
  :root { --header-h: 68px; }

  .nav {
    position: fixed; inset: var(--header-h) 0 auto; margin: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--white); border-bottom: 1px solid var(--line);
    padding: 8px 16px 20px; box-shadow: var(--shadow-lg);
    transform: translateY(-120%); transition: transform .28s ease; z-index: 50;
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .nav.is-open { transform: translateY(0); }
  .nav a { padding: 15px 12px; border-radius: var(--r-sm); font-size: 1rem; border-bottom: 1px solid var(--line); }
  .nav > .btn { display: inline-flex; margin-top: 14px; border-bottom: none; }
  .burger { display: grid; }
  .header__cta { display: none; }

  .systems { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--flip > *:first-child { order: 2; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .benefits__box { grid-template-columns: repeat(2, 1fr); }
  .cta__box { grid-template-columns: 1fr; }
  .cta__side { text-align: left; }
  .footer__grid { grid-template-columns: 1fr 1fr; }

  .process { grid-template-columns: 1fr; gap: 0; }
  .process::before { top: 0; bottom: 0; left: 26px; right: auto; width: 0; border-top: none; border-left: 2px dashed #DEDEDE; }
  .process__item { display: grid; grid-template-columns: 52px 1fr; gap: 18px; text-align: left; padding-bottom: 26px; }
  .process__num { margin: 0; }
  .process__item > div { padding-top: 6px; }

  .hero__media img { object-position: 78% 100%; }
}

@media (max-width: 760px) {
  :root { --gut: 20px; }
  .topbar { display: none; }
  .section { padding: 52px 0; }
  .section-head { margin-bottom: 26px; }
  .benefits__box { padding: 28px 24px; gap: 28px; }
  .card { padding: 24px; }
  .cta__box { padding: 32px 24px; gap: 28px; }
  .hero__inner { padding-top: 48px; padding-bottom: 48px; }
  .hero h1 { margin-bottom: 18px; }
  .hero__actions { margin-top: 28px; }
  .faq summary { padding: 20px 44px 20px 0; font-size: .95rem; }
  .footer__grid { gap: 32px; }
  .grid--5, .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .checklist { grid-template-columns: 1fr; }
  .benefits__box { grid-template-columns: 1fr; gap: 26px; }
  .systems__row { grid-template-columns: 1fr; gap: 10px; }
  .systems__row ul { grid-template-columns: 1fr 1fr; display: grid; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 72px; }

  /* на вузькому екрані фото сильно кадрується — освітлюємо його,
     щоб текст лишався контрастним, а техніка читалась як фон */
  .hero__scrim {
    background: linear-gradient(180deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.95) 46%, rgba(255,255,255,.86) 78%, rgba(255,255,255,.78) 100%);
  }
  .hero__media img { object-position: 64% 100%; }
  .hero__stats { margin-top: 30px; gap: 22px 30px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }

  .price-table thead { display: none; }
  .price-table, .price-table tbody, .price-table tr, .price-table td { display: block; width: 100%; }
  .price-table tr { border-top: 1px solid var(--line); padding: 14px 0; }
  .price-table td { border: none; padding: 4px 16px; }
  .price-table td::before { content: attr(data-label) ": "; color: var(--faint); font-weight: 400; }
  .price-table td:first-child::before { content: ""; }
  .price-table td:first-child { font-size: 1rem; padding-bottom: 8px; }
}

@media (max-width: 460px) {
  .grid--4 { grid-template-columns: 1fr; }
  .systems__row ul { grid-template-columns: 1fr; }
  .logo__name { font-size: .96rem; }
  .logo__tag { font-size: .5rem; letter-spacing: .18em; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
