/* ==========================================================================
   VanMan — лендінг вантажоперевезень
   Структура: 1. Токени  2. База  3. Утиліти/компоненти  4. Секції  5. Адаптив
   ========================================================================== */

/* 1. Токени ---------------------------------------------------------------- */
:root {
  --ink: #111418;
  --ink-2: #4A5058;
  --muted: #5E646C;
  --line: #E6E4E0;
  --line-2: #D9D6D0;
  --field: #CFCBC4;
  --paper: #F5F4F1;
  --white: #FFFFFF;
  --orange: #F36F21;
  --orange-hover: #E05E12;
  --orange-text: #B84A0C;     /* помаранчевий для тексту на світлому (AA) */
  --dark-muted: #A7ADB4;
  --dark-line: #2A3038;
  --footer: #0B0D10;

  --font-display: 'Geologica', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-body: 'Manrope', 'Segoe UI', system-ui, -apple-system, sans-serif;

  --container: 1200px;
  --gutter: 24px;
  --section-y: clamp(64px, 8vw, 112px);
  --radius: 4px;
  --radius-lg: 6px;
  --shadow: 0 24px 48px rgba(17, 20, 24, .16);
  --header-h: 88px;
}

/* 2. База ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; } }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3, ul, ol, dl, dd, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
button, input, select { font: inherit; color: inherit; }
button { cursor: pointer; }
address { font-style: normal; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.skip-link { position: absolute; left: 16px; top: -60px; z-index: 100; padding: 12px 16px; background: var(--ink); color: var(--white); border-radius: var(--radius); }
.skip-link:focus { top: 16px; }

.container { width: 100%; max-width: calc(var(--container) + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); }

/* 3. Компоненти ------------------------------------------------------------ */
.icon { width: 24px; height: 24px; flex-shrink: 0; fill: none; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.icon--sm { width: 18px; height: 18px; stroke-width: 2; }
.icon--xs { width: 16px; height: 16px; stroke-width: 2.25; }
.icon--accent { color: var(--orange-text); }

.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-2); }
.eyebrow::before { content: ""; width: 8px; height: 8px; flex-shrink: 0; background: var(--orange); }
.eyebrow--accent { color: var(--orange); }

.h2 { font-family: var(--font-display); font-size: clamp(30px, 4vw, 44px); line-height: 1.1; font-weight: 700; letter-spacing: -.02em; text-wrap: balance; }
.h2--light { color: var(--white); }
.h3 { font-family: var(--font-display); font-size: 20px; line-height: 1.25; font-weight: 700; }
.text-lead { margin-top: 20px; font-size: 17px; color: var(--ink-2); }
.text-lead--light { color: var(--dark-muted); }

.btn {
  white-space: nowrap;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 24px;
  border: 1.5px solid transparent; border-radius: var(--radius);
  font-size: 15px; font-weight: 700; line-height: 1.2; text-align: center;
  transition: background-color .2s, color .2s, border-color .2s;
}
.btn--lg { min-height: 60px; padding: 0 30px; font-size: 17px; }
.btn--block { width: 100%; }
.btn--primary { background: var(--orange); color: var(--ink); font-weight: 800; }
.btn--primary:hover { background: var(--orange-hover); }
.btn--outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--outline:hover { background: var(--ink); color: var(--white); }
.btn--dark { background: var(--ink); color: var(--white); }
.btn--ghost { min-height: 44px; padding: 0 12px; border: 1px solid var(--field); font-size: 14px; }
.btn--ghost:hover { background: var(--ink); border-color: var(--ink); color: var(--white); }

.icon-btn { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; flex-shrink: 0; border: 1.5px solid var(--ink); border-radius: var(--radius); background: transparent; }
.icon-btn--dark { background: var(--ink); border-color: var(--ink); color: var(--white); }

.link-arrow { display: inline-flex; align-items: center; gap: 8px; margin-top: 28px; font-weight: 700; }
.link-arrow:hover { color: var(--orange-text); }

.messengers { display: flex; flex-wrap: wrap; gap: 8px; }
.messengers--small { gap: 14px; font-size: 13px; font-weight: 600; color: var(--muted); }
.messengers--small a:hover { color: var(--orange-text); }

.cards-grid { display: grid; gap: 24px; }
.cards-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.section { padding-block: var(--section-y); }
.section--paper { background: var(--paper); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 48px 80px; margin-bottom: 56px; }
.section-head__text { max-width: 380px; flex-shrink: 0; font-size: 17px; color: var(--ink-2); }

.split { display: grid; grid-template-columns: 5fr 7fr; gap: 64px 96px; align-items: start; }
.split--center { align-items: center; }

/* 4. Секції ---------------------------------------------------------------- */

/* Шапка */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--white); border-bottom: 1px solid var(--line); transition: box-shadow .2s; }
.site-header.is-scrolled { box-shadow: 0 8px 24px rgba(17, 20, 24, .08); }
.site-header__inner { display: flex; align-items: center; gap: 28px; height: var(--header-h); }
.logo img { width: 81px; height: 60px; object-fit: contain; }
.nav { margin-right: auto; margin-left: 24px; }
.nav__list { display: flex; gap: 28px; font-size: 15px; font-weight: 600; white-space: nowrap; }
.nav__list a:hover { color: var(--orange-text); }
.nav__mobile-extra { display: none; }
.site-header__contacts { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; flex-shrink: 0; white-space: nowrap; }
.site-header__phone { font-family: var(--font-display); font-size: 18px; font-weight: 700; letter-spacing: -.01em; white-space: nowrap; }
.site-header__phone:hover { color: var(--orange-text); }
.site-header__call, .burger { display: none; }
.burger__lines, .burger__lines::before, .burger__lines::after { display: block; width: 20px; height: 2px; background: currentColor; transition: transform .2s; }
.burger__lines { position: relative; }
.burger__lines::before, .burger__lines::after { content: ""; position: absolute; left: 0; }
.burger__lines::before { top: -6px; }
.burger__lines::after { top: 6px; }
.burger[aria-expanded="true"] .burger__lines { background: transparent; }
.burger[aria-expanded="true"] .burger__lines::before { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] .burger__lines::after { transform: translateY(-6px) rotate(-45deg); }

/* Hero */
.hero { padding-block: 64px 80px; overflow: hidden; }
.hero__inner { display: grid; grid-template-columns: minmax(0, 620px) minmax(0, 520px); justify-content: space-between; align-items: center; gap: 60px; }
.hero__title { font-family: var(--font-display); font-size: clamp(28px, 7.4vw, 52px); overflow-wrap: break-word; line-height: 1.06; font-weight: 700; letter-spacing: -.025em; text-wrap: balance; }
.underline { text-decoration: underline; text-decoration-color: var(--orange); text-decoration-thickness: .1em; text-underline-offset: .14em; }
.hero__lead { margin-top: 24px; max-width: 560px; font-size: clamp(17px, 1.6vw, 19px); color: var(--ink-2); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; }
.hero__note { display: flex; align-items: center; gap: 8px; margin-top: 20px; font-size: 14px; color: var(--muted); }
.hero__visual { position: relative; aspect-ratio: 1 / 1; width: 100%; max-width: 520px; justify-self: end; }
.hero__circle { position: absolute; right: -12%; top: -4%; width: 85%; aspect-ratio: 1; border-radius: 50%; background: var(--orange); }
.hero__visual picture { position: absolute; left: 8%; top: 10%; width: 85%; height: 86%; }
.hero__img { width: 100%; height: 100%; object-fit: cover; object-position: 45% 60%; border-radius: var(--radius); box-shadow: var(--shadow); }
.hero__badge { position: absolute; left: 0; bottom: 7%; display: flex; align-items: center; gap: 16px; padding: 20px 24px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); }
.hero__badge-icon { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; background: var(--orange); border-radius: var(--radius); color: var(--ink); }
.hero__badge-text { display: flex; flex-direction: column; }
.hero__badge-text small { font-size: 13px; font-weight: 600; color: var(--muted); }
.hero__badge-text strong { font-family: var(--font-display); font-size: 26px; line-height: 1.2; letter-spacing: -.02em; }

/* Проблема → рішення */
.compare { border-top: 1px solid var(--line-2); }
.compare__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px; padding-block: 24px; border-bottom: 1px solid var(--line-2); }
.compare__label { display: block; margin-bottom: 8px; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.compare__bad { font-size: 17px; line-height: 1.5; color: var(--ink-2); }
.compare__good { font-size: 17px; line-height: 1.5; font-weight: 600; }
.compare__good .compare__label { color: var(--orange-text); }

/* Послуги */
.service-card { display: flex; flex-direction: column; gap: 12px; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); transition: border-color .2s; }
.service-card:hover { border-color: var(--orange); }
.service-card__icon { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; margin-bottom: 12px; background: var(--paper); border-radius: var(--radius); }
.service-card p { font-size: 15px; line-height: 1.5; color: var(--muted); }

/* Автопарк */
.fleet-card { position: relative; display: flex; flex-direction: column; overflow: hidden; background: var(--white); border-radius: var(--radius); }
.fleet-card--featured { outline: 2px solid var(--orange); outline-offset: -2px; }
.fleet-card__badge { position: absolute; top: 16px; left: 16px; z-index: 1; padding: 6px 10px; background: var(--ink); color: var(--white); border-radius: 2px; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.fleet-card__img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.fleet-card__body { display: flex; flex-direction: column; gap: 16px; flex-grow: 1; padding: 24px; }
.specs { font-size: 14px; }
.specs dt { min-width: 0; }
.specs > div { display: flex; justify-content: space-between; gap: 12px; padding-block: 8px; border-bottom: 1px solid #EEECE8; }
.specs > div:last-child { border-bottom: 0; }
.specs dt { color: var(--muted); }
.specs dd { font-weight: 600; text-align: right; white-space: nowrap; }
.price { display: flex; align-items: baseline; gap: 6px; margin-top: auto; font-size: 14px; color: var(--muted); }
.price strong { font-family: var(--font-display); font-size: 26px; letter-spacing: -.02em; color: var(--ink); }
.custom-order { display: flex; align-items: center; justify-content: space-between; gap: 32px; margin-top: 24px; padding: 32px 40px; background: var(--ink); color: var(--white); border-radius: var(--radius); }
.custom-order__label { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); }
.custom-order__title { margin-top: 8px; font-family: var(--font-display); font-size: 24px; }
.custom-order__text { margin-top: 8px; font-size: 15px; color: var(--dark-muted); }

/* Як працюємо */
.steps { position: relative; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 32px; margin-top: 56px; }
.steps::before { content: ""; position: absolute; left: 28px; right: 28px; top: 27px; height: 2px; background: var(--line); }
.steps__item { position: relative; display: flex; flex-direction: column; gap: 12px; }
.steps__num { display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; margin-bottom: 12px; border: 2px solid var(--ink); border-radius: 50%; background: var(--white); font-family: var(--font-display); font-size: 18px; font-weight: 700; }
.steps__item:first-child .steps__num { background: var(--orange); border-color: var(--orange); }
.steps__item p { font-size: 15px; line-height: 1.55; color: var(--muted); }
.cta-line { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--line); font-size: 17px; color: var(--ink-2); }

/* Географія */
.chips-title { margin-top: 28px; font-size: 13px; font-weight: 700; color: #3A3F46; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.chips li { padding: 8px 14px; background: var(--white); border-radius: var(--radius); font-size: 14px; font-weight: 600; }
.map { overflow: hidden; aspect-ratio: 4 / 3; border-radius: var(--radius); background: #ECEAE5; }
.map iframe { width: 100%; height: 100%; border: 0; }

/* Відгуки */
.review { display: flex; flex-direction: column; gap: 16px; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); }
.review__stars { display: flex; gap: 2px; color: var(--orange); }
.review__stars .icon { fill: currentColor; stroke: none; }
.review blockquote p { font-size: 16px; line-height: 1.6; color: var(--ink-2); }
.review__author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review__author > span:last-child { display: flex; flex-direction: column; }
.review__author strong { font-size: 15px; }
.review__author small { font-size: 13px; color: var(--muted); }
.review__avatar { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; flex-shrink: 0; border-radius: 50%; background: var(--paper); font-weight: 700; }

/* FAQ */
.split__aside .btn { margin-top: 28px; }
.faq { border-top: 1px solid var(--line-2); }
.faq__item { border-bottom: 1px solid var(--line-2); }
.faq__item summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 72px; padding-block: 16px; font-size: 18px; font-weight: 700; line-height: 1.35; cursor: pointer; list-style: none; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--orange-text); }
.faq__chev { transition: transform .2s; }
.faq__item[open] .faq__chev { transform: rotate(180deg); }
.faq__item p { padding: 0 48px 24px 0; font-size: 16px; color: var(--ink-2); }

/* Фінальний CTA + форма */
.final-cta { position: relative; overflow: hidden; padding-block: 80px; background: var(--ink); color: var(--white); }
.final-cta__circle { position: absolute; right: -80px; top: -140px; width: 620px; aspect-ratio: 1; border-radius: 50%; background: var(--orange); }
.final-cta__inner { position: relative; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px 96px; align-items: center; }
.final-cta .h2 { font-size: clamp(30px, 4vw, 48px); }

.lead-form { display: flex; flex-direction: column; gap: 18px; padding: 36px; background: var(--white); color: var(--ink); border-radius: var(--radius-lg); box-shadow: 0 32px 64px rgba(0, 0, 0, .28); }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 13px; font-weight: 700; color: #3A3F46; }
.field input, .field select { height: 52px; padding: 0 16px; border: 1px solid var(--field); border-radius: var(--radius); background: var(--white); font-size: 16px; }
.field select { padding-inline: 12px; }
.field input:focus, .field select:focus { outline: 2px solid var(--orange); outline-offset: 1px; border-color: var(--orange); }
.field__error { display: none; font-size: 13px; color: #B42318; }
.field.is-invalid input { border-color: #B42318; }
.field.is-invalid .field__error { display: block; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.lead-form__consent { font-size: 13px; color: var(--muted); text-align: center; }
.lead-form__consent a { text-decoration: underline; }
.lead-form__success { padding: 12px 16px; background: #EAF6EC; border-radius: var(--radius); font-size: 15px; font-weight: 600; color: #1D5E2A; }
.lead-form__alt { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 14px; color: var(--muted); }
.lead-form__alt .messengers { flex-grow: 1; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* Вакансії */
.jobs { padding-block: 48px; background: var(--paper); }
.jobs__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px 40px; }
.jobs__text { display: flex; align-items: center; gap: 24px; }
.jobs__icon { display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; flex-shrink: 0; background: var(--white); border-radius: var(--radius); }
.jobs__title { font-family: var(--font-display); font-size: 24px; line-height: 1.25; }
.jobs p { margin-top: 4px; font-size: 15px; color: var(--muted); }

/* Футер */
.site-footer { padding-block: 80px 32px; background: var(--footer); color: var(--white); }
.site-footer__grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.3fr; gap: 40px; }
.site-footer__logo { display: flex; align-items: center; justify-content: center; width: 116px; height: 88px; background: var(--white); border-radius: var(--radius); }
.site-footer__logo img { width: 96px; height: 71px; object-fit: contain; }
.site-footer__brand p { margin-top: 20px; font-size: 15px; color: var(--dark-muted); }
.site-footer__title { margin-bottom: 16px; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #8C939B; }
.site-footer ul { display: flex; flex-direction: column; gap: 12px; font-size: 15px; }
.site-footer a:hover { color: var(--orange); }
.site-footer__contacts { display: flex; flex-direction: column; gap: 12px; font-size: 15px; color: #C4C9CE; }
.site-footer__phone { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--white); }
.site-footer .messengers--small { color: var(--white); }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 16px; margin-top: 56px; padding-top: 24px; border-top: 1px solid #22272E; font-size: 13px; color: #8C939B; }
.site-footer__legal { display: flex; gap: 24px; }

/* Нижня панель (мобільні) */
.mobile-bar { display: none; }

/* Модальне вікно */
.modal { width: min(480px, calc(100% - 32px)); max-height: calc(100% - 32px); padding: 0; border: 0; border-radius: var(--radius-lg); background: transparent; overflow: visible; }
.modal::backdrop { background: rgba(17, 20, 24, .72); }
.modal__box { position: relative; padding: 40px; border-top: 4px solid var(--orange); box-shadow: none; }
.modal__close { position: absolute; top: 12px; right: 12px; border: 0; }
.modal__title { padding-right: 40px; font-family: var(--font-display); font-size: 28px; line-height: 1.2; letter-spacing: -.015em; }
.modal__text { font-size: 15px; color: var(--muted); }

/* 5. Адаптив --------------------------------------------------------------- */
@media (max-width: 1240px) {
  .site-header__inner { gap: 20px; }
  .nav__list { gap: 22px; }
  .site-header__cta { display: none; }
  .messengers--small { gap: 10px; }
}

@media (max-width: 1080px) {
  :root { --header-h: 72px; }
  .logo img { width: 70px; height: 52px; }
  .burger, .site-header__call { display: inline-flex; }
  .site-header__contacts { margin-left: auto; }
  .nav {
    position: fixed; inset: var(--header-h) 0 0 0; z-index: 49; margin: 0;
    display: flex; flex-direction: column; gap: 32px; padding: 32px var(--gutter) 120px;
    background: var(--white); overflow-y: auto;
    visibility: hidden; opacity: 0; transform: translateY(-8px); transition: opacity .2s, transform .2s, visibility .2s;
  }
  .nav.is-open { visibility: visible; opacity: 1; transform: none; }
  .nav__list { flex-direction: column; gap: 0; font-size: 20px; }
  .nav__list a { display: block; padding-block: 14px; border-bottom: 1px solid var(--line); }
  .nav__mobile-extra { display: flex; flex-direction: column; gap: 16px; }
  .nav__phone { font-family: var(--font-display); font-size: 26px; font-weight: 700; }
  body.nav-open { overflow: hidden; }

  .hero__inner { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 40px; }
  .hero__title { font-size: clamp(28px, 4vw, 52px); }
  .cards-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 40px; }
  .steps::before { display: none; }
  .split { gap: 48px 56px; }
  .final-cta__inner { gap: 48px; }
  .site-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .site-header__contacts { display: none; }
  .site-header__call { margin-left: auto; }

  .hero { padding-block: 32px 56px; }
  .hero__inner { grid-template-columns: minmax(0, 1fr); }
  .hero__title { font-size: clamp(28px, 7.4vw, 52px); }
  .hero__visual { justify-self: center; max-width: 480px; }
  .split, .final-cta__inner { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 40px; }
  .section-head__text { max-width: none; }
  .cards-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .compare__row { gap: 24px; }
  .final-cta__circle { width: 420px; right: -160px; top: auto; bottom: -160px; }
  .cta-line, .custom-order, .jobs__inner { flex-direction: column; align-items: flex-start; }

  /* нижня панель з'являється, тож лишаємо під неї місце */
  body { padding-bottom: 76px; }
  .mobile-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: var(--white); border-top: 1px solid var(--line); box-shadow: 0 -8px 24px rgba(17, 20, 24, .08);
  }
}

@media (max-width: 600px) {
  :root { --gutter: 16px; --header-h: 64px; }
  .logo img { width: 62px; height: 46px; }
  .eyebrow { font-size: 11px; margin-bottom: 14px; }
  .hero__actions .btn { width: 100%; }
  .btn { white-space: normal; }
  .hero__badge { padding: 14px 16px; gap: 12px; }
  .hero__badge-icon { width: 40px; height: 40px; }
  .hero__badge-text strong { font-size: 22px; }
  .cards-grid--3, .cards-grid--4 { grid-template-columns: 1fr; }
  .compare__row { grid-template-columns: 1fr; gap: 12px; }
  .service-card, .review { padding: 24px; }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .steps__item { display: grid; grid-template-columns: 56px 1fr; column-gap: 20px; row-gap: 4px; }
  .steps__num { grid-row: span 2; margin: 0; }
  .cta-line .btn, .custom-order .btn, .jobs .btn { width: 100%; }
  .custom-order { padding: 28px 24px; }
  .faq__item summary { font-size: 16px; min-height: 64px; }
  .faq__item p { padding-right: 0; }
  .lead-form, .modal__box { padding: 24px; }
  .lead-form__alt { flex-direction: column; align-items: stretch; }
  .jobs__text { flex-direction: column; align-items: flex-start; gap: 16px; }
  .site-footer { padding-top: 56px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .site-footer__bottom { flex-direction: column; }
  .site-footer__legal { flex-wrap: wrap; gap: 8px 20px; }
}
