/* =========================================================
   Вивеземо — основні стилі. Mobile-first.
   Брейкпоінти: 768 (планшет), 1100 (десктоп).
   ========================================================= */

:root {
	--green: #1E4D3B;
	--green-dark: #133327;
	--green-dot: #2F8A5B;
	--yellow: #F6C343;
	--yellow-h: #EDB82E;
	--text: #16201B;
	--text-2: #3E4843;
	--muted: #5B6660;
	--ph: #8A938E;
	--bg-2: #F4F5F2;
	--green-l: #EEF4F0;
	--stub: #EEF1EC;
	--line: #E3E6E2;
	--line-2: #DCE0DC;
	--field: #C9CFCA;
	--err: #C8372D;
	--err-t: #B0322A;
	--rating: #B98500;
	--on-green: #DCE7E1;
	--on-green-2: #C9D6CF;
	--font: 'Onest', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
	--font-logo: 'Manrope', var(--font);
	--gutter: 16px;
	--section: 48px;
	--shadow: 0 12px 32px rgba(19, 51, 39, .16);
}

@media (min-width: 768px) { :root { --gutter: 32px; --section: 72px; } }
@media (min-width: 1200px) { :root { --gutter: 80px; --section: 96px; } }

/* ---------- База ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 92px; }
@media (min-width: 1100px) { html { scroll-padding-top: 108px; } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; } }
body {
	margin: 0;
	font-family: var(--font);
	font-size: 16px;
	line-height: 1.5;
	color: var(--text);
	background: #fff;
	-webkit-font-smoothing: antialiased;
	padding-bottom: calc(68px + env(safe-area-inset-bottom, 0px));
}
@media (min-width: 768px) { body { padding-bottom: 0; } }
body.no-scroll { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); }
a:hover { color: var(--green-dark); }
button { font: inherit; color: inherit; }
h1, h2, h3, p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
[hidden] { display: none !important; }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 2px; }

.skip-link { position: absolute; left: -9999px; top: 8px; z-index: 100; background: var(--yellow); color: var(--text); padding: 10px 16px; border-radius: 10px; font-weight: 700; }
.skip-link:focus { left: 8px; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }

@media (max-width: 767px) { .hide-m { display: none !important; } }
@media (min-width: 768px) { .hide-d { display: none !important; } }

.container { width: 100%; max-width: 1440px; margin-inline: auto; padding-inline: var(--gutter); }
.container--wide { padding-inline: 12px; }
@media (min-width: 1200px) { .container--wide { padding-inline: 40px; } }
.container--m0, .container--m12 { padding-inline: 12px; }
@media (min-width: 768px) { .container--m0, .container--m12 { padding-inline: var(--gutter); } }
.container--text { max-width: calc(840px + 2 * var(--gutter)); }

.section { padding-top: var(--section); }
.section--last { padding-bottom: 32px; }
@media (min-width: 1100px) { .section--last { padding-bottom: 64px; } }
.section__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; margin-bottom: 16px; }
.section__titles { display: flex; flex-direction: column; gap: 8px; }
.section__sub { font-size: 15px; color: var(--text-2); }
.section__title { margin-bottom: 16px; }
@media (min-width: 1100px) {
	.section__head { margin-bottom: 28px; }
	.section__title { margin-bottom: 32px; }
	.section__sub { font-size: 17px; }
}

.h2 { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; }
@media (min-width: 1100px) { .h2 { font-size: 44px; line-height: 1.1; } }

.link-more { font-size: 15px; font-weight: 600; white-space: nowrap; }
@media (min-width: 1100px) { .link-more { font-size: 16px; } }

/* ---------- Кнопки ---------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	min-height: 48px; padding: 0 20px; border-radius: 12px; border: 0;
	font-size: 15px; font-weight: 700; line-height: 1.2; text-decoration: none; text-align: center;
	cursor: pointer; transition: background-color .15s, border-color .15s, color .15s;
	color: var(--text);
}
.btn--sm { min-height: 44px; padding: 0 18px; border-radius: 10px; }
.btn--lg { min-height: 52px; border-radius: 12px; }
@media (min-width: 1100px) { .btn { min-height: 52px; font-size: 16px; } .btn--sm { min-height: 44px; font-size: 15px; } .btn--lg { min-height: 60px; padding: 0 28px; border-radius: 14px; font-size: 18px; } }
.btn--block { display: flex; width: 100%; }
.btn--yellow { background: var(--yellow); color: var(--text); }
.btn--yellow:hover { background: var(--yellow-h); color: var(--text); }
.btn--green { background: var(--green); color: #fff; }
.btn--green:hover { background: var(--green-dark); color: #fff; }
.btn--white { background: #fff; color: var(--text); }
.btn--white:hover { background: var(--green-l); color: var(--text); }
.btn--ghost { background: #fff; border: 1.5px solid var(--field); color: var(--text); font-weight: 600; }
.btn--ghost:hover { border-color: var(--green); }
.btn--outline { background: transparent; border: 1.5px solid var(--green); color: var(--green); }
.btn--outline:hover { background: var(--green-l); }

/* ---------- Лого ---------- */
.logo { display: inline-flex; align-items: center; gap: 8px; color: var(--text); text-decoration: none; }
.logo:hover { color: var(--text); }
.logo .logo__mark { width: 34px; height: 34px; flex-shrink: 0; }
.logo__text { font-family: var(--font-logo); font-weight: 800; font-size: 17px; text-transform: uppercase; letter-spacing: .01em; }
@media (min-width: 1100px) { .logo { gap: 10px; } .logo .logo__mark { width: 40px; height: 40px; } .logo__text { font-size: 21px; } }
.logo--inverse { color: #fff; }
.logo--inverse:hover { color: #fff; }
.logo--inverse .logo__mark { width: 36px; height: 36px; }
.logo--inverse .logo__text { font-size: 19px; }

/* ---------- Шапка ---------- */
.header {
	border-bottom: 1px solid var(--line);
	background: #fff;
	position: sticky;
	top: 0;
	z-index: 30;
	transition: box-shadow .25s ease;
}
.header.is-stuck { box-shadow: 0 4px 18px rgba(19, 51, 39, .08); }
/* Щоб адмінпанель WordPress не перекривала шапку */
.admin-bar .header { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .header { top: 46px; } }
@media screen and (max-width: 600px) { .admin-bar .header { top: 0; } }
/* Прокрутили сторінку — шапка стискається, щоб не з'їдати екран */
.header__in { transition: padding-block .25s ease; }
.header .logo__mark { transition: width .25s ease, height .25s ease; }
.header .logo__text { transition: font-size .25s ease; }
.header .icon-btn { transition: width .25s ease, height .25s ease, transform .15s ease, border-color .15s ease, color .15s ease; }
.header .btn--sm, .header__phone { transition: min-height .25s ease, font-size .25s ease, background-color .15s ease; }
.header.is-stuck .header__in { padding-block: 9px; }
.header.is-stuck .logo .logo__mark { width: 30px; height: 30px; }
.header.is-stuck .logo__text { font-size: 16px; }
@media (min-width: 1100px) {
	.header.is-stuck .logo .logo__mark { width: 32px; height: 32px; }
	.header.is-stuck .logo__text { font-size: 18px; }
	.header.is-stuck .icon-btn { width: 38px; height: 38px; }
	.header.is-stuck .btn--sm { min-height: 40px; }
	.header.is-stuck .header__phone { font-size: 15px; }
	.header.is-stuck .nav__list a { padding-block: 4px; }
}
.header__in { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 16px; }
@media (min-width: 1100px) { .header__in { padding-block: 18px; } }
.nav { display: none; }
.header__actions { display: none; }
@media (min-width: 1100px) {
	.nav { display: block; }
	.nav__list { display: flex; gap: 32px; font-size: 15px; font-weight: 500; white-space: nowrap; }
	.nav__list a { color: var(--text); text-decoration: none; padding: 8px 0; }
	.nav__list a:hover { color: var(--green); }
	.nav__list .is-active > a { color: var(--green); font-weight: 700; }
	.header__actions { display: flex; align-items: center; gap: 10px; white-space: nowrap; }
}
@media (min-width: 1100px) and (max-width: 1279px) { .nav__list { gap: 20px; } .header__in { gap: 16px; } }
.header__phone { font-size: 16px; font-weight: 700; margin-right: 6px; color: var(--text); text-decoration: none; }
.icon-btn { width: 42px; height: 42px; border-radius: 10px; border: 1.5px solid var(--field); display: inline-flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: var(--text); text-decoration: none; }
.icon-btn:hover { border-color: var(--green); color: var(--green); }
.burger { width: 44px; height: 44px; border-radius: 12px; background: var(--bg-2); border: 0; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; }
@media (min-width: 1100px) { .burger { display: none; } }

/* Мобільне меню */
.mnav { position: fixed; inset: var(--header-h, 77px) 0 0; z-index: 40; background: #fff; overflow-y: auto; padding: 8px var(--gutter) calc(96px + env(safe-area-inset-bottom, 0px)); border-top: 1px solid var(--line); }
.mnav__list a { display: block; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 20px; font-weight: 700; color: var(--text); text-decoration: none; }
.mnav__list .is-active > a { color: var(--green); }
.mnav__contacts { display: flex; flex-direction: column; gap: 12px; padding-top: 24px; }
.mnav__phone { font-size: 22px; font-weight: 800; color: var(--text); text-decoration: none; }
.mnav__note { color: var(--muted); font-size: 15px; }
.mnav__btns { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
@media (min-width: 1100px) { .mnav { display: none !important; } }

/* ---------- Перший екран ---------- */
.hero__head { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; padding-top: 28px; }
.badge { display: inline-flex; align-items: center; gap: 7px; background: var(--green-l); color: var(--green); border-radius: 999px; padding: 7px 13px; font-size: 13px; font-weight: 600; }
.badge__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green-dot); }
.hero__title { font-size: 34px; font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; max-width: 1040px; text-wrap: balance; }
.hero__lead { font-size: 16px; color: var(--text-2); line-height: 1.45; max-width: 640px; }
.hero__btns { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; width: 100%; padding-top: 4px; }
@media (max-width: 767px) {
	.hero__btns .btn { font-size: 15px; padding: 0 10px; }
	.hero__btns .btn .icon { display: none; }
	/* Третій месенджер займає весь рядок, щоб підписи не тиснулись */
	.hero__btns--wa > :nth-child(3) { grid-column: 1 / -1; }
}
.hero__call { display: none; }
.hero__perks { display: flex; flex-wrap: wrap; justify-content: center; gap: 4px 10px; font-size: 13px; font-weight: 600; color: var(--text-2); }
.hero__perks li + li::before { content: '·'; margin-right: 10px; }
.hero__grid { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.hero__photo { position: relative; height: 220px; border-radius: 20px; overflow: hidden; background: var(--stub); }
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.hero__tags { display: none; }
.tag { background: #fff; border-radius: 999px; padding: 9px 14px; font-size: 14px; font-weight: 600; }
.tag--green { background: var(--green); color: #fff; }

@media (min-width: 768px) {
	.hero__head { gap: 18px; padding-top: 48px; }
	.hero__title { font-size: 52px; }
	.hero__lead { font-size: 19px; }
	.hero__btns { display: flex; flex-wrap: wrap; justify-content: center; width: auto; gap: 12px; }
	.hero__btns .btn .icon { display: block; }
	.hero__call { display: inline-flex; }
	.hero__perks { font-size: 16px; gap: 28px; }
	.hero__perks li + li::before { margin-right: 28px; }
	.hero__photo { height: 420px; }
}
@media (min-width: 1100px) {
	.hero__head { gap: 22px; padding-top: 72px; }
	.hero__title { font-size: 72px; line-height: 1.02; letter-spacing: -0.035em; }
	.hero__lead { font-size: 21px; }
	.hero__btns { padding-top: 6px; }
	.hero__perks { padding-top: 6px; }
	.hero__grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 16px; margin-top: 56px; align-items: stretch; }
	.hero__photo { height: auto; min-height: 620px; border-radius: 24px; }
	.hero__photo img { position: absolute; inset: 0; object-position: center 62%; }
	.hero__tags { display: flex; gap: 8px; position: absolute; left: 20px; top: 20px; }
}

/* ---------- Квіз ---------- */
.quiz { background: var(--bg-2); border-radius: 20px; padding: 18px; display: flex; flex-direction: column; gap: 14px; scroll-margin-top: 12px; }
.quiz__top { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.quiz__kicker { font-size: 13px; font-weight: 700; color: var(--green); }
.quiz__label { font-size: 13px; font-weight: 600; color: var(--muted); }
.quiz__bar { height: 5px; border-radius: 3px; background: var(--line-2); overflow: hidden; }
.quiz__bar > div { height: 100%; background: var(--green); border-radius: 3px; transition: width .3s; }
.quiz__form { display: flex; flex-direction: column; gap: 14px; flex: 1; }
.quiz__pane { border: 0; margin: 0; padding: 0; min-width: 0; display: flex; flex-direction: column; gap: 14px; }
.quiz__q { padding: 0; font-size: 22px; font-weight: 800; letter-spacing: -0.01em; line-height: 1.2; margin-bottom: 14px; }
.quiz__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

.tile { position: relative; min-height: 64px; border-radius: 14px; border: 1.5px solid var(--line-2); background: #fff; padding: 10px 12px; display: flex; flex-direction: column; justify-content: center; gap: 2px; cursor: pointer; transition: border-color .15s; }
.tile:hover { border-color: var(--green); }
.tile input { position: absolute; opacity: 0; pointer-events: none; }
.tile__title { font-size: 15px; font-weight: 600; line-height: 1.25; padding-right: 4px; }
.tile__hint { font-size: 12px; color: var(--muted); line-height: 1.35; }
.tile__check { display: none; }
.tile:has(input:checked) { border: 2px solid var(--green); background: var(--green-l); padding: 9.5px 11.5px; }
.tile:has(input:checked) .tile__title { font-weight: 700; color: var(--green); }
.tile:has(input:checked) .tile__hint { color: var(--text-2); }
.tile:has(input:focus-visible) { outline: 3px solid var(--yellow); outline-offset: 2px; }

.quiz__loaders { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.quiz__loaders > span { font-size: 15px; font-weight: 600; }
.seg { display: grid; grid-template-columns: repeat(3, 56px); gap: 4px; background: #fff; border-radius: 12px; padding: 4px; }
.seg__item { position: relative; }
.seg__item input { position: absolute; opacity: 0; }
.seg__item span { height: 40px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-weight: 600; cursor: pointer; }
.seg__item input:checked + span { background: var(--green); color: #fff; font-weight: 700; }
.seg__item input:focus-visible + span { outline: 3px solid var(--yellow); }

.estimate { background: var(--green); color: #fff; border-radius: 14px; padding: 14px; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.estimate__txt { display: flex; flex-direction: column; gap: 4px; font-size: 13px; color: var(--on-green); }
.estimate__sum { display: none; }
.estimate__val { font-size: 24px; font-weight: 800; color: var(--yellow); white-space: nowrap; }

.field { display: flex; flex-direction: column; gap: 8px; }
.field__label { font-size: 14px; font-weight: 600; color: var(--text-2); }
.field__error { font-size: 13px; color: var(--err-t); }
.phone { height: 52px; border-radius: 12px; border: 1.5px solid var(--field); background: #fff; display: flex; align-items: center; overflow: hidden; }
.phone:focus-within { border: 2px solid var(--text); }
.field.is-error .phone { border: 2px solid var(--err); }
.phone__prefix { height: 100%; display: flex; align-items: center; padding: 0 12px; background: var(--bg-2); border-right: 1.5px solid var(--field); font-size: 16px; font-weight: 600; }
.phone__input { flex: 1; min-width: 0; height: 100%; border: 0; outline: none; padding: 0 12px; font: inherit; font-size: 16px; background: transparent; color: var(--text); }
.phone__input::placeholder { color: var(--ph); }
.quiz__note { font-size: 13px; color: var(--muted); }

.quiz__nav { display: flex; flex-direction: column; gap: 12px; margin-top: auto; }
.quiz__btns { display: flex; gap: 8px; }
.quiz__back { width: 52px; padding: 0; font-size: 18px; }
.quiz__back-t { display: none; }
.quiz__next { flex: 1; }
.quiz__next[aria-disabled="true"] { background: var(--line); color: var(--ph); cursor: not-allowed; }
.quiz__alt { display: none; font-size: 14px; color: var(--text-2); text-align: center; }
.quiz__alt a { color: var(--text); font-weight: 700; }
.form-error { font-size: 14px; color: var(--err-t); text-align: center; }

.quiz__done { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; text-align: center; padding: 12px 0; flex: 1; }
.quiz__ok { width: 52px; height: 52px; border-radius: 50%; background: var(--green); color: var(--yellow); display: flex; align-items: center; justify-content: center; font-size: 24px; }
.quiz__done-title { font-size: 20px; font-weight: 800; }
.quiz__done-text { font-size: 14px; color: var(--text-2); }

@media (min-width: 1100px) {
	.quiz { border-radius: 24px; padding: 32px; gap: 20px; }
	.quiz__kicker { font-size: 15px; }
	.quiz__label { font-size: 14px; }
	.quiz__bar { height: 6px; }
	.quiz__form { gap: 20px; }
	.quiz__pane { gap: 16px; }
	.quiz__q { font-size: 30px; letter-spacing: -0.02em; margin-bottom: 16px; }
	.quiz__grid { gap: 10px; }
	.tile { min-height: 92px; border-radius: 16px; padding: 16px; justify-content: space-between; gap: 6px; }
	.tile:has(input:checked) { padding: 15.5px; }
	.quiz__grid--short .tile { min-height: 76px; padding: 14px 16px; gap: 4px; }
	.quiz__grid--short .tile:has(input:checked) { padding: 13.5px 15.5px; }
	.tile__title { font-size: 17px; padding-right: 30px; }
	.tile__hint { font-size: 14px; }
	.tile:has(input:checked) .tile__check { display: flex; position: absolute; top: 16px; right: 16px; width: 22px; height: 22px; border-radius: 50%; background: var(--green); color: #fff; align-items: center; justify-content: center; font-size: 13px; }
	.quiz__grid--short .tile:has(input:checked) .tile__check { display: none; }
	.quiz__loaders { padding-top: 4px; }
	.quiz__loaders > span { font-size: 16px; }
	.seg { grid-template-columns: repeat(3, 72px); }
	.estimate { border-radius: 16px; padding: 20px; gap: 16px; }
	.estimate__txt { font-size: 14px; }
	.estimate__sum { display: block; }
	.estimate__val { font-size: 34px; }
	.phone { height: 60px; border-radius: 14px; }
	.phone__prefix { padding: 0 16px; font-size: 17px; }
	.phone__input { padding: 0 16px; font-size: 17px; }
	.quiz__nav { gap: 14px; }
	.quiz__btns { gap: 10px; }
	.quiz__btns .btn { min-height: 58px; border-radius: 14px; font-size: 17px; }
	.quiz__back { width: auto; padding: 0 22px; font-size: 16px !important; }
	.quiz__back-t { display: inline; }
	.quiz__alt { display: block; }
	.quiz__ok { width: 64px; height: 64px; font-size: 30px; }
	.quiz__done { gap: 14px; padding: 24px 0; }
	.quiz__done-title { font-size: 28px; }
	.quiz__done-text { font-size: 16px; max-width: 360px; line-height: 1.5; }
}

/* ---------- Що вивозимо ---------- */
.services { display: flex; flex-direction: column; gap: 8px; }
.service { background: var(--bg-2); border-radius: 14px; padding: 16px; display: flex; gap: 14px; align-items: center; color: var(--text); text-decoration: none; transition: background-color .15s; }
.service:hover { background: var(--green-l); color: var(--text); }
.service__icon { color: var(--green); display: flex; flex-shrink: 0; }
.service__icon .icon { width: 28px; height: 28px; stroke-width: 1.6; }
.service__body { flex: 1; display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.service__title { font-size: 16px; font-weight: 700; }
.service__desc { font-size: 13px; color: var(--muted); line-height: 1.4; }
.service__price { font-size: 14px; font-weight: 700; color: var(--green); white-space: nowrap; }
.service__arrow { display: none; }
@media (min-width: 768px) {
	.services { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
	.service { flex-direction: column; align-items: flex-start; border-radius: 18px; padding: 26px 22px; min-height: 240px; }
	.service__icon .icon { width: 32px; height: 32px; }
	.service__body { gap: 14px; }
	.service__title { font-size: 19px; }
	.service__desc { font-size: 14px; line-height: 1.45; }
	.service__price { font-size: 17px; margin-top: auto; }
	.service__arrow { display: inline; }
}
@media (min-width: 1100px) { .services { grid-template-columns: repeat(5, minmax(0, 1fr)); } }

/* ---------- Кроки ---------- */
.steps { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; counter-reset: none; }
.step { background: var(--green); color: #fff; border-radius: 14px; padding: 16px; display: flex; flex-direction: column; gap: 6px; }
.step__n { font-size: 12px; font-weight: 700; color: var(--yellow); }
.step__title { font-size: 15px; font-weight: 700; line-height: 1.3; }
.step__text { display: none; font-size: 15px; color: var(--on-green); }
.step--accent { background: var(--yellow); color: var(--text); }
.step--accent .step__n, .step--accent .step__text { color: var(--text); }
@media (min-width: 1100px) {
	.steps { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
	.step { border-radius: 18px; padding: 26px; gap: 10px; }
	.step__n { font-size: 14px; }
	.step__title { font-size: 20px; }
	.step__text { display: block; }
}

/* ---------- Ціни коротко ---------- */
.prices { display: flex; flex-direction: column; gap: 12px; padding-inline: 12px; }
.prices__card { background: var(--bg-2); border-radius: 20px; padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.prices__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.price { background: #fff; border-radius: 12px; padding: 14px; display: flex; flex-direction: column; gap: 2px; }
.price__label { font-size: 12px; color: var(--muted); }
.price__val { font-size: 22px; font-weight: 800; }
.prices__foot { display: flex; flex-direction: column; gap: 12px; }
.prices__example { font-size: 14px; color: var(--text-2); line-height: 1.45; }
.prices__example b { color: var(--text); }
.prices__foot .btn { width: 100%; }
.prices__photo { position: relative; height: 260px; border-radius: 20px; overflow: hidden; background: var(--stub); }
.prices__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.specs { position: absolute; left: 10px; right: 10px; bottom: 10px; background: #fff; border-radius: 12px; padding: 12px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.specs div { display: flex; flex-direction: column; }
.specs b { font-size: 19px; font-weight: 800; color: var(--green); }
.specs span { font-size: 11px; color: var(--muted); }
@media (min-width: 768px) {
	.prices { padding-inline: var(--gutter); }
	.prices__foot { flex-direction: row; justify-content: space-between; align-items: center; gap: 16px; }
	.prices__foot .btn { width: auto; white-space: nowrap; }
	.prices__photo { height: 420px; }
}
@media (min-width: 1100px) {
	.prices { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
	.prices__card { padding: 40px; gap: 18px; }
	.prices__card .h2 { font-size: 40px; }
	.prices__grid { gap: 10px; }
	.price { border-radius: 14px; padding: 20px; gap: 4px; }
	.price__label { font-size: 14px; }
	.price__val { font-size: 30px; }
	.prices__example { font-size: 16px; }
	.prices__photo { height: auto; min-height: 420px; }
	.prices__photo img { position: absolute; inset: 0; }
	.specs { left: 20px; right: 20px; bottom: 20px; border-radius: 16px; padding: 22px; gap: 12px; }
	.specs b { font-size: 28px; }
	.specs span { font-size: 14px; }
}

/* ---------- Каруселі ---------- */
.track { display: flex; gap: 10px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; margin-right: calc(-1 * var(--gutter)); padding-right: var(--gutter); overscroll-behavior-x: contain; }
.track::-webkit-scrollbar { display: none; }
.track > * { scroll-snap-align: start; flex-shrink: 0; }
.progress { height: 5px; border-radius: 3px; background: var(--line); margin-top: 16px; overflow: hidden; }
.progress > div { height: 100%; width: 30%; background: var(--green); border-radius: 3px; transition: width .2s; }
.arrows { display: none; gap: 8px; }
.arrow { width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid var(--field); background: #fff; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; color: var(--text); }
.arrow--fill { background: var(--green); border-color: var(--green); color: #fff; }
.arrow:disabled { opacity: .4; cursor: default; }
@media (min-width: 1100px) {
	.arrows { display: flex; }
	.track { gap: 16px; margin-right: 0; padding-right: 0; }
	.progress { height: 6px; margin-top: 28px; }
	[data-carousel].no-overflow .arrows, [data-carousel].no-overflow .progress { display: none; }
}

/* Техніка */
.truck { width: 290px; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; background: #fff; }
.truck__img { width: 100%; height: 150px; object-fit: cover; object-position: center 62%; }
.truck__head { background: var(--bg-2); padding: 12px 16px; display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.truck__head h3 { font-size: 17px; font-weight: 800; }
.truck__badge { font-size: 12px; font-weight: 700; color: var(--green); background: #fff; border-radius: 999px; padding: 4px 10px; white-space: nowrap; }
.truck__rates { padding: 12px 16px; display: flex; flex-direction: column; gap: 4px; border-bottom: 1px solid var(--line); }
.truck__rates div { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; font-size: 14px; }
.truck__rates small { font-size: 11px; color: var(--muted); }
.truck__rates b { font-size: 18px; font-weight: 800; color: var(--green); white-space: nowrap; }
.truck__rates b small { font-size: 13px; color: inherit; }
.truck__specs { margin: 0; padding: 10px 16px; display: grid; grid-template-columns: 1fr auto; gap: 4px 10px; font-size: 13px; }
.truck__specs dt { color: var(--text-2); }
.truck__specs dt b { color: var(--text); }
.truck__specs dd { margin: 0; text-align: right; }
.truck__min { padding: 0 16px 10px; font-size: 13px; color: var(--text-2); }
.truck__foot { margin-top: auto; padding: 12px 16px 16px; }
@media (min-width: 1100px) {
	.truck { width: calc((100% - 48px) / 4); border-radius: 20px; }
	.truck__img { height: 190px; }
	.truck__head { padding: 14px 20px; }
	.truck__head h3 { font-size: 19px; }
	.truck__rates { padding: 16px 20px; gap: 6px; }
	.truck__rates div { font-size: 15px; }
	.truck__rates small { font-size: 12px; }
	.truck__rates b { font-size: 22px; }
	.truck__specs { padding: 14px 20px; gap: 6px 12px; font-size: 14px; border-bottom: 1px solid var(--line); }
	.truck__min { padding: 12px 20px; }
	.truck__foot { padding: 16px 20px 20px; }
}
/* Одне авто: горизонтальна картка на всю ширину */
@media (min-width: 900px) {
	.track--single .truck { width: 100%; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); grid-template-rows: auto auto auto 1fr; }
	.track--single .truck__specs { align-content: start; }
	.track--single .truck__foot { align-self: end; }
	.track--single .truck__img { grid-row: 1 / -1; height: 100%; min-height: 0; max-height: 420px; }
	.track--single .truck { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); }
	.track--single .truck__foot .btn { width: auto; min-width: 240px; display: inline-flex; }
}

/* Роботи */
.work { width: 260px; display: flex; flex-direction: column; gap: 8px; color: var(--text); text-decoration: none; }
.work__media { position: relative; height: 300px; border-radius: 16px; overflow: hidden; background: var(--stub); display: grid; grid-template-columns: 1fr; gap: 4px; }
.work--pair .work__media { grid-template-columns: 1fr 1fr; }
.work__media img { width: 100%; height: 100%; object-fit: cover; }
.work__label { position: absolute; left: 12px; top: 12px; background: #fff; border-radius: 8px; padding: 5px 10px; font-size: 12px; font-weight: 700; }
.work__label--after { left: auto; right: 12px; background: var(--green); color: #fff; }
.work__cap { display: flex; flex-direction: column; gap: 2px; font-size: 15px; }
.work__cap span { font-size: 13px; color: var(--muted); }
@media (min-width: 1100px) {
	.work { width: calc((100% - 32px) / 3); gap: 12px; }
	.work--pair { width: calc((100% - 32px) / 3 * 1.6); }
	.work__media { height: 400px; border-radius: 20px; }
	.work__label { left: 14px; top: 14px; padding: 6px 12px; font-size: 13px; }
	.work__label--after { right: 14px; left: auto; }
	.work__cap { flex-direction: row; justify-content: space-between; gap: 12px; font-size: 16px; }
	.work__cap span { font-size: 16px; }
}

/* ---------- Довіра ---------- */
.trust { background: var(--bg-2); border-radius: 20px; padding: 20px; display: flex; flex-direction: column; gap: 14px; }
.trust__left { display: flex; flex-direction: column; gap: 14px; }
.trust__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.stat { background: #fff; border-radius: 12px; padding: 14px; display: flex; flex-direction: column; gap: 2px; }
.stat b { font-size: 22px; font-weight: 800; color: var(--green); }
.stat span { font-size: 13px; color: var(--muted); }
.trust__list { display: flex; flex-direction: column; gap: 10px; }
.trust__list li { display: flex; gap: 12px; align-items: center; background: #fff; border-radius: 12px; padding: 14px; font-size: 15px; }
.trust__list .icon { color: var(--green); flex-shrink: 0; }
.trust__not .icon { color: var(--err-t); }
@media (min-width: 1100px) {
	.trust { border-radius: 24px; padding: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
	.trust__left { gap: 20px; }
	.trust__left .h2 { font-size: 40px; }
	.trust__stats { gap: 10px; }
	.stat { border-radius: 14px; padding: 20px; gap: 4px; }
	.stat b { font-size: 30px; }
	.stat span { font-size: 14px; }
	.trust__list { gap: 12px; justify-content: center; }
	.trust__list li { border-radius: 14px; padding: 16px 18px; font-size: 17px; }
}

/* ---------- Географія ---------- */
.geo { display: flex; flex-direction: column; gap: 12px; }
.geo__intro { display: flex; flex-direction: column; gap: 12px; }
.geo__lead { font-size: 14px; color: var(--text-2); line-height: 1.5; }
.zones { display: flex; flex-direction: column; gap: 8px; }
.zone { display: flex; justify-content: space-between; align-items: center; gap: 16px; background: var(--bg-2); border-radius: 14px; padding: 16px 20px; }
.zone div { display: flex; flex-direction: column; gap: 2px; }
.zone b { font-size: 17px; }
.zone div span { font-size: 14px; color: var(--muted); }
.zone__fee { font-size: 24px; font-weight: 800; color: var(--green); white-space: nowrap; }
.zone__fee--na { font-size: 17px; color: var(--ph); }
.geo__note { font-size: 13px; color: var(--muted); }
.geo__visual { position: relative; border-radius: 24px; overflow: hidden; min-height: 400px; background: var(--stub); }
.geo__visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }
.geo__tag { position: absolute; left: 20px; top: 20px; }

.places { margin-top: 12px; }
.places__group { border-top: 1px solid var(--line); padding: 14px 0; display: flex; flex-direction: column; gap: 10px; }
.places__head { display: flex; align-items: center; gap: 8px 12px; flex-wrap: wrap; }
.places__head h3 { font-size: 16px; font-weight: 800; flex: 1; }
.chip { background: var(--green-l); color: var(--green); border-radius: 999px; padding: 5px 10px; font-size: 13px; font-weight: 700; white-space: nowrap; }
.places__count { display: none; font-size: 14px; color: var(--muted); }
.places__list { columns: 2; column-gap: 12px; }
.places__list li { break-inside: avoid; }
.places__list a, .places__list span { display: block; padding: 6px 0; font-size: 15px; color: var(--text); text-decoration: none; }
.places__list a { text-decoration: underline; text-decoration-color: var(--line-2); text-underline-offset: 3px; }
.places__list a:hover { color: var(--green); text-decoration-color: currentColor; }
.places__list .is-main a, .places__list .is-main span { font-weight: 700; }
.places__more { align-self: flex-start; background: none; border: 0; padding: 4px 0; font-size: 14px; font-weight: 600; color: var(--green); text-decoration: underline; cursor: pointer; }
@media (max-width: 767px) {
	.places__list:not(.is-open) li:nth-child(n + 11) { display: none; }
}
@media (min-width: 768px) {
	.places__list { columns: 4; column-gap: 24px; }
	.places__more { display: none; }
	.places__count { display: inline; }
	.places__head h3 { flex: 0 1 auto; }
}
@media (min-width: 1100px) {
	.geo { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: stretch; }
	.geo__intro { gap: 20px; }
	.geo__lead { font-size: 17px; }
	.places { margin-top: 32px; }
	.places__group { padding: 28px 0; gap: 14px; }
	.places__head h3 { font-size: 22px; }
	.chip { padding: 6px 12px; font-size: 14px; }
	.places__list--c6 { columns: 6; }
	.places__list--c5 { columns: 5; }
	.places__list a, .places__list span { padding: 5px 0; }
}

/* ---------- Відгуки ---------- */
.stars { color: var(--rating); letter-spacing: 2px; }
.review { margin: 0; width: 300px; border: 1px solid var(--line); border-radius: 16px; padding: 18px; display: flex; flex-direction: column; gap: 10px; }
.review blockquote { margin: 0; font-size: 15px; line-height: 1.5; flex: 1; }
.review figcaption { font-size: 13px; color: var(--muted); }
.review figcaption b { color: var(--text); }
@media (min-width: 1100px) {
	.track--reviews { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); overflow: visible; }
	.track--reviews > :nth-child(n + 4) { display: none; }
	.review { width: auto; border-radius: 18px; padding: 26px; gap: 12px; }
	.review .stars { font-size: 18px; }
	.review blockquote { font-size: 16px; line-height: 1.55; }
	.review figcaption { font-size: 14px; }
}

/* ---------- FAQ ---------- */
.faq .h2 { padding-bottom: 10px; }
.accordion__item { border-top: 1px solid var(--line); }
.accordion__item:last-child { border-bottom: 1px solid var(--line); }
.accordion summary { list-style: none; display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; padding: 16px 0; font-size: 16px; font-weight: 600; cursor: pointer; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion__sign { position: relative; width: 16px; height: 16px; flex-shrink: 0; margin-top: 4px; }
.accordion__sign::before, .accordion__sign::after { content: ''; position: absolute; left: 0; right: 0; top: 7px; height: 2px; background: currentColor; border-radius: 1px; transition: transform .2s; }
.accordion__sign::after { transform: rotate(90deg); }
.accordion__item[open] .accordion__sign::after { transform: rotate(0deg); }
.accordion__body { padding-bottom: 16px; font-size: 15px; color: var(--text-2); line-height: 1.55; }
.accordion__body p + p { margin-top: 8px; }
@media (min-width: 1100px) {
	.faq { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: start; }
	.accordion summary { padding: 20px 0; font-size: 18px; }
	.accordion__body { padding-bottom: 20px; font-size: 16px; margin-top: -10px; }
}

/* ---------- CTA ---------- */
.cta { background: var(--green); color: #fff; border-radius: 20px; padding: 24px 20px; display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.cta__title { font-size: 24px; font-weight: 800; line-height: 1.2; }
.cta__text { display: none; font-size: 18px; color: var(--on-green); }
.cta__btns { display: flex; flex-direction: column; gap: 10px; width: 100%; }
.cta__btns .btn--white { display: none; }
@media (min-width: 768px) {
	.cta__text { display: block; }
	.cta__btns { flex-direction: row; justify-content: center; width: auto; }
	.cta__btns .btn--white { display: inline-flex; }
}
@media (min-width: 1100px) {
	.cta { border-radius: 24px; padding: 56px; gap: 20px; }
	.cta__title { font-size: 42px; letter-spacing: -0.02em; }
	.cta__btns .btn { min-height: 56px; padding: 0 26px; font-size: 17px; }
}

/* ---------- SEO-текст ---------- */
.seo { max-width: 760px; }
.seo__text { font-size: 17px; line-height: 1.7; color: var(--text-2); }
.seo:not(.is-open) .seo__text { max-height: 420px; overflow: hidden; -webkit-mask-image: linear-gradient(#000 60%, transparent); mask-image: linear-gradient(#000 60%, transparent); }
.seo.no-more .seo__text { max-height: none; -webkit-mask-image: none; mask-image: none; }
.seo.no-more .seo__more { display: none; }
.seo__more { margin-top: 12px; background: none; border: 0; padding: 0; font-weight: 700; color: var(--green); text-decoration: underline; cursor: pointer; }

/* ---------- Текстові сторінки ---------- */
.page { padding-top: 24px; }
@media (min-width: 1100px) { .page { padding-top: 32px; } }
.crumbs { display: flex; flex-wrap: wrap; gap: 6px; font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.crumbs a { color: var(--muted); }
.crumbs [aria-current] { color: var(--text); }
.page__title { font-size: 30px; font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 24px; }
@media (min-width: 1100px) { .page__title { font-size: 52px; margin-bottom: 32px; } }
.entry { font-size: 17px; line-height: 1.7; color: var(--text-2); }
.entry > * + * { margin-top: 1em; }
.entry h2 { font-size: 26px; font-weight: 800; line-height: 1.2; color: var(--text); letter-spacing: -0.02em; margin-top: 1.6em; }
.entry h3 { font-size: 20px; font-weight: 700; color: var(--text); margin-top: 1.4em; }
.entry ul { list-style: disc; padding-left: 1.3em; }
.entry ol { list-style: decimal; padding-left: 1.3em; }
.entry img { border-radius: 16px; }
@media (min-width: 1100px) { .entry h2 { font-size: 34px; } .entry h3 { font-size: 22px; } }
.post-list { display: flex; flex-direction: column; gap: 12px; font-size: 18px; }

/* ---------- Дякуємо ---------- */
.thanks { padding-block: 48px 32px; }
.thanks__head { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.thanks__ok { width: 72px; height: 72px; border-radius: 50%; background: var(--green); color: var(--yellow); display: flex; align-items: center; justify-content: center; font-size: 34px; }
.thanks__title { font-size: 30px; font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; }
.thanks__lead { font-size: 15px; color: var(--text-2); }
.thanks__grid { margin-top: 28px; display: grid; gap: 16px; }
.thanks__card { background: var(--bg-2); border-radius: 18px; padding: 18px; display: flex; flex-direction: column; gap: 10px; }
.thanks__card-title { font-size: 16px; }
.thanks__text { font-size: 16px; color: var(--text-2); }
.thanks__btns { display: grid; grid-template-columns: 1fr; gap: 8px; margin-top: 6px; }
.thanks__steps { display: flex; flex-direction: column; gap: 12px; counter-reset: s; }
.thanks__steps li { display: flex; gap: 12px; align-items: center; font-size: 16px; counter-increment: s; }
.thanks__steps li::before { content: counter(s); width: 28px; height: 28px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; flex-shrink: 0; }
.thanks__home { display: none; }
@media (min-width: 768px) {
	.thanks { padding-block: 96px; }
	.thanks__head { gap: 20px; }
	.thanks__ok { width: 96px; height: 96px; font-size: 46px; }
	.thanks__title { font-size: 56px; }
	.thanks__lead { font-size: 20px; }
	.thanks__grid { margin: 56px auto 0; max-width: 880px; grid-template-columns: 1fr 1fr; }
	.thanks__card { border-radius: 20px; padding: 28px; gap: 12px; }
	.thanks__card-title { font-size: 21px; }
	.thanks__btns { grid-template-columns: 1fr 1fr; }
	.thanks__home { display: flex; justify-content: center; padding-top: 40px; font-weight: 700; }
}

/* ---------- 404 ---------- */
.e404 { padding-top: 40px; }
.e404__grid { display: flex; flex-direction: column; gap: 16px; }
.e404__text { display: flex; flex-direction: column; gap: 12px; }
.e404__code { font-size: 96px; font-weight: 800; letter-spacing: -0.05em; line-height: .9; color: var(--green); }
.e404__title { font-size: 28px; font-weight: 800; line-height: 1.1; }
.e404__lead { font-size: 15px; color: var(--text-2); }
.e404__btns { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.e404__photo { border-radius: 18px; overflow: hidden; height: 220px; margin-inline: -4px; }
.e404__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }
.e404__popular { display: flex; flex-direction: column; gap: 16px; padding-block: 72px 96px; }
.e404__popular b { font-size: 22px; }
.e404__links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.e404__links a { background: var(--bg-2); border-radius: 14px; padding: 18px 20px; display: flex; justify-content: space-between; font-weight: 700; color: var(--text); text-decoration: none; }
.e404__links a:hover { background: var(--green-l); }
@media (min-width: 768px) {
	.e404 { padding-top: 96px; }
	.e404__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
	.e404__text { gap: 20px; }
	.e404__code { font-size: 160px; }
	.e404__title { font-size: 44px; letter-spacing: -0.02em; }
	.e404__lead { font-size: 19px; line-height: 1.5; }
	.e404__btns { flex-direction: row; }
	.e404__photo { height: 440px; border-radius: 24px; margin: 0; }
}
@media (min-width: 1100px) { .e404__links { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 767px) { .e404 { padding-bottom: 32px; } }

/* ---------- Підвал ---------- */
.footer { background: var(--green-dark); color: #fff; }
.footer__in { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 20px; padding-block: 28px; font-size: 14px; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col a { color: var(--on-green-2); text-decoration: none; }
.footer__col a:hover { color: #fff; text-decoration: underline; }
.footer__brand { grid-column: 1 / -1; gap: 14px; }
.footer__brand .logo { color: #fff; }
.footer__phone { font-size: 18px; font-weight: 700; color: #fff !important; }
.footer__muted { color: var(--on-green-2); }
.footer__title { color: #fff; }
.footer__msgr { display: flex; gap: 8px; }
.footer__msgr a { border: 1px solid rgba(255, 255, 255, .3); border-radius: 10px; padding: 9px 14px; color: #fff; }
.footer__msgr a:hover { background: rgba(255, 255, 255, .1); text-decoration: none; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px; padding-block: 16px 20px; border-top: 1px solid rgba(255, 255, 255, .1); font-size: 13px; color: var(--on-green-2); }
.footer__bottom a { color: var(--on-green-2); }
@media (min-width: 1100px) {
	.footer__in { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-block: 56px; font-size: 15px; }
	.footer__brand { grid-column: auto; }
}

/* ---------- Мобільна панель дій ---------- */
.actionbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; display: grid; grid-template-columns: 1fr 1fr 1fr 1.3fr; gap: 6px; padding: 10px 10px calc(10px + env(safe-area-inset-bottom, 0px)); background: #fff; border-top: 1px solid var(--line); }
.actionbar a { height: 48px; border-radius: 10px; background: var(--bg-2); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; color: var(--text); text-decoration: none; }
.actionbar .actionbar__main { background: var(--yellow); font-weight: 700; }
@media (min-width: 768px) { .actionbar { display: none; } }

/* =========================================================
   Анімації. Лише transform/opacity, щоб не гальмувати сайт.
   Усе вимикається для prefers-reduced-motion: reduce.
   ========================================================= */

@media (prefers-reduced-motion: no-preference) {

	/* Поява блоків при прокрутці */
	.vz-js [data-reveal],
	.vz-js [data-reveal-group] > * {
		opacity: 0;
		transform: translateY(20px);
		transition: opacity .9s cubic-bezier(.16, .6, .22, 1), transform .9s cubic-bezier(.16, .6, .22, 1);
		will-change: opacity, transform;
	}
	.vz-js [data-reveal].is-in,
	.vz-js [data-reveal-group].is-in > *,
	.vz-reveal-all [data-reveal],
	.vz-reveal-all [data-reveal-group] > * {
		opacity: 1;
		transform: none;
		will-change: auto;
	}
	/* Сходинка між сусідніми картками */
	.vz-js [data-reveal-group].is-in > *:nth-child(2) { transition-delay: .11s; }
	.vz-js [data-reveal-group].is-in > *:nth-child(3) { transition-delay: .22s; }
	.vz-js [data-reveal-group].is-in > *:nth-child(4) { transition-delay: .33s; }
	.vz-js [data-reveal-group].is-in > *:nth-child(5) { transition-delay: .44s; }
	.vz-js [data-reveal-group].is-in > *:nth-child(6) { transition-delay: .55s; }
	.vz-js [data-reveal-group].is-in > *:nth-child(n + 7) { transition-delay: .66s; }

	/* Крапка «подача від 45 хвилин» */
	.badge__dot { animation: vz-pulse 2.6s ease-in-out infinite; }
	@keyframes vz-pulse {
		0%, 100% { box-shadow: 0 0 0 0 rgba(47, 138, 91, .45); }
		50% { box-shadow: 0 0 0 6px rgba(47, 138, 91, 0); }
	}

	/* Крок квізу */
	.quiz__pane, .quiz__done { animation: vz-step .42s cubic-bezier(.16, .6, .22, 1); }
	@keyframes vz-step {
		from { opacity: 0; transform: translateX(10px); }
		to { opacity: 1; transform: none; }
	}

	/* Галочка на обраній плитці */
	.tile:has(input:checked) .tile__check { animation: vz-pop .28s cubic-bezier(.2, 1.5, .4, 1); }
	@keyframes vz-pop {
		from { transform: scale(0); }
		to { transform: scale(1); }
	}

	/* Відповідь у FAQ */
	.accordion__item[open] .accordion__body { animation: vz-acc .42s ease; }
	@keyframes vz-acc {
		from { opacity: 0; transform: translateY(-6px); }
		to { opacity: 1; transform: none; }
	}
}

/* Наведення й натискання — працюють завжди, вони миттєві */
.service, .work, .truck, .review, .zone, .price, .trust__list li, .e404__links a {
	transition: transform .2s ease, box-shadow .2s ease, background-color .15s ease, border-color .15s ease;
}
.service:hover, .zone:hover, .e404__links a:hover { transform: translateY(-3px); }
.work:hover, .review:hover { transform: translateY(-4px); }
.review:hover { box-shadow: 0 10px 24px rgba(19, 51, 39, .07); }
.truck:hover { box-shadow: 0 12px 28px rgba(19, 51, 39, .09); }

.work__media img, .truck__img { transition: transform .5s cubic-bezier(.22, .7, .25, 1); }
.work:hover .work__media img, .truck:hover .truck__img { transform: scale(1.04); }

.btn:active { transform: translateY(1px); }
.arrow { transition: transform .15s ease, background-color .15s ease, border-color .15s ease; }
.arrow:hover:not(:disabled) { transform: translateY(-2px); }
.icon-btn { transition: transform .15s ease, border-color .15s ease, color .15s ease; }
.icon-btn:hover { transform: translateY(-2px); }

.link-more { transition: opacity .15s ease; }
.link-more:hover { opacity: .75; }
.step { transition: transform .2s ease; }
.step:hover { transform: translateY(-3px); }

@media (prefers-reduced-motion: reduce) {
	.service:hover, .zone:hover, .work:hover, .review:hover, .step:hover,
	.e404__links a:hover, .arrow:hover, .icon-btn:hover, .btn:active { transform: none; }
	.work:hover .work__media img, .truck:hover .truck__img { transform: none; }
}

/* ---------- Плаваючі кнопки месенджерів (десктоп) ---------- */
.msg-float {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 45;
	display: none;
	flex-direction: column;
	align-items: flex-end;
	gap: 12px;
}
@media (min-width: 768px) { .msg-float { display: flex; } }

.msg-float__btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	height: 56px;
	padding: 0 14px;
	border-radius: 999px;
	color: #fff;
	text-decoration: none;
	box-shadow: 0 8px 24px rgba(19, 51, 39, .22);
	transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.msg-float__btn:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 12px 28px rgba(19, 51, 39, .28); }
.msg-float__btn--tg { background: #229ED9; }
.msg-float__btn--tg:hover { background: #1E8FC4; }
.msg-float__btn--wa { background: #25D366; }
.msg-float__btn--wa:hover { background: #1FBA59; }
.msg-float__btn--vb { background: #7360F2; }
.msg-float__btn--vb:hover { background: #6250DE; }
.msg-float__btn .icon { width: 28px; height: 28px; stroke-width: 1.8; }
.msg-float__btn svg { width: 28px; height: 28px; flex-shrink: 0; }
.msg-float__btn--tg svg { transform: translateX(-1px); }
.msg-float__label {
	max-width: 0;
	overflow: hidden;
	white-space: nowrap;
	font-size: 15px;
	font-weight: 700;
	opacity: 0;
	transition: max-width .3s ease, opacity .25s ease, margin-left .3s ease;
}
.msg-float__btn:hover .msg-float__label,
.msg-float__btn:focus-visible .msg-float__label { max-width: 220px; opacity: 1; margin-left: 10px; }

@media (prefers-reduced-motion: no-preference) {
	.msg-float__btn::after {
		content: '';
		position: absolute;
		inset: 0;
		border-radius: inherit;
		animation: vz-ring 3.2s ease-out infinite;
	}
	.msg-float__btn--wa::after { animation-delay: 1.1s; }
	.msg-float__btn--vb::after { animation-delay: 2.2s; }
	.msg-float__btn:hover::after { animation: none; }
	@keyframes vz-ring {
		0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, .45); }
		60%, 100% { box-shadow: 0 0 0 14px rgba(255, 255, 255, 0); }
	}
}

/* Три месенджери в мобільному меню */
.mnav__btns--3 { grid-template-columns: 1fr 1fr 1fr; }
.mnav__btns--3 .btn { padding: 0 8px; font-size: 14px; }

/* ---------- Шапка сторінки (послуги, міста) ---------- */
.page-hero { padding-top: 24px; }
.page-hero__title { font-size: 30px; font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; max-width: 900px; text-wrap: balance; }
.page-hero__lead { margin-top: 12px; font-size: 16px; line-height: 1.5; color: var(--text-2); max-width: 720px; }
.page-hero__btns { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 20px; }
.page-hero__btns .btn { font-size: 15px; padding: 0 10px; }
.page-hero__btns .btn .icon { display: none; }
.page-hero__btns > :nth-child(3) { grid-column: 1 / -1; }
.page-hero__btns > :nth-child(4) { grid-column: 1 / -1; }
@media (min-width: 768px) {
	.page-hero { padding-top: 32px; }
	.page-hero__title { font-size: 44px; }
	.page-hero__lead { margin-top: 16px; font-size: 19px; }
	.page-hero__btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
	.page-hero__btns .btn { font-size: 16px; padding: 0 22px; }
	.page-hero__btns .btn .icon { display: block; }
}
@media (min-width: 1100px) { .page-hero__title { font-size: 52px; } }

/* Ціни в шапці послуги */
.svc-prices { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 20px; max-width: 720px; }
.svc-prices .price { background: var(--bg-2); }
@media (min-width: 768px) { .svc-prices { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; margin-top: 28px; max-width: 900px; } }

/* Текст послуги */
.entry--svc { max-width: 760px; }

/* Інші послуги */
.other-svc { display: grid; grid-template-columns: 1fr; gap: 8px; }
.other-svc__item {
	display: flex; align-items: center; gap: 12px;
	background: var(--bg-2); border-radius: 14px; padding: 16px 18px;
	font-size: 16px; font-weight: 700; color: var(--text); text-decoration: none;
	transition: transform .2s ease, background-color .15s ease;
}
.other-svc__item:hover { background: var(--green-l); color: var(--text); transform: translateY(-3px); }
.other-svc__icon { display: flex; color: var(--green); }
.other-svc__arrow { margin-left: auto; color: var(--green); }
@media (min-width: 768px) { .other-svc { grid-template-columns: 1fr 1fr; gap: 12px; } }
@media (min-width: 1100px) { .other-svc { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

/* ---------- Калькулятор ---------- */
.calc { display: grid; grid-template-columns: 1fr; gap: 16px; align-items: start; }
@media (min-width: 900px) { .calc { grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: 20px; } }

.calc__form { background: var(--bg-2); border-radius: 20px; padding: 20px; display: flex; flex-direction: column; gap: 22px; }
@media (min-width: 900px) { .calc__form { border-radius: 24px; padding: 32px; gap: 26px; } }
.calc__group { display: flex; flex-direction: column; gap: 10px; }
.calc__row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.calc__label { font-size: 16px; font-weight: 700; }
.calc__note { font-size: 13px; color: var(--muted); }
.calc__out { font-size: 22px; font-weight: 800; color: var(--green); }
.calc__tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.tile--sm { min-height: 62px; padding: 12px 14px; justify-content: center; gap: 2px; }
.tile--sm .tile__title { font-size: 15px; }
.tile--sm:has(input:checked) { padding: 11px 13px; }
.seg--wide { grid-template-columns: repeat(auto-fit, minmax(0, 1fr)); width: 100%; }
.seg--wide .seg__item span { padding-inline: 10px; }

.range { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 3px; background: var(--line-2); outline: none; }
.range::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 26px; height: 26px; border-radius: 50%; background: var(--green); border: 3px solid #fff; box-shadow: 0 2px 6px rgba(19,51,39,.25); cursor: pointer; }
.range::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: var(--green); border: 3px solid #fff; cursor: pointer; }
.range:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }

.check { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; line-height: 1.4; cursor: pointer; }
.check input { width: 20px; height: 20px; accent-color: var(--green); flex-shrink: 0; margin-top: 1px; }
.check em { font-style: normal; color: var(--muted); }
.calc__hint { font-size: 13px; line-height: 1.45; color: var(--err-t); background: #FDF1F0; border-radius: 10px; padding: 10px 12px; }

.calc__total { background: var(--green); color: #fff; border-radius: 20px; padding: 22px; display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 900px) { .calc__total { border-radius: 24px; padding: 28px; position: sticky; top: 96px; } }
.calc__total-label { font-size: 14px; color: var(--on-green); }
.calc__sum { font-size: 40px; font-weight: 800; color: var(--yellow); line-height: 1; }
.calc__break { margin: 0; display: grid; grid-template-columns: 1fr auto; gap: 6px 12px; font-size: 15px; padding-top: 4px; border-top: 1px solid rgba(255,255,255,.15); }
.calc__break dt { color: var(--on-green); }
.calc__break dd { margin: 0; text-align: right; font-weight: 700; }
.calc__disclaimer { font-size: 13px; color: var(--on-green-2); line-height: 1.45; }
.calc__order { display: flex; flex-direction: column; gap: 10px; }
.calc__order .field__label { color: var(--on-green); }
.calc__msgr { display: flex; flex-direction: column; gap: 8px; font-size: 13px; color: var(--on-green-2); padding-top: 4px; border-top: 1px solid rgba(255,255,255,.15); }
.calc__msgr-btns { display: grid; grid-template-columns: repeat(auto-fit, minmax(0, 1fr)); gap: 6px; }
.calc__msgr-btns .btn { min-height: 42px; font-size: 14px; padding: 0 8px; }

/* ---------- Прайс-таблиця ---------- */
.ptable-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 16px; }
.ptable { width: 100%; border-collapse: collapse; font-size: 15px; min-width: 380px; }
.ptable th { text-align: left; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); padding: 14px 18px; background: var(--bg-2); }
.ptable th:last-child, .ptable td:last-child { text-align: right; white-space: nowrap; }
.ptable td { padding: 14px 18px; border-top: 1px solid var(--line); }
.ptable td:last-child { font-weight: 700; }
.ptable tbody tr:hover { background: var(--bg-2); }
.ptable__note { margin-top: 14px; font-size: 15px; color: var(--text-2); }
@media (min-width: 768px) { .ptable { font-size: 16px; } }

/* ---------- Роботи: сітка й картка ---------- */
.works-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 600px) { .works-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .works-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; } }

.workcard { display: flex; flex-direction: column; gap: 10px; color: var(--text); text-decoration: none; transition: transform .2s ease; }
.workcard:hover { color: var(--text); transform: translateY(-4px); }
.workcard__media { position: relative; display: grid; grid-template-columns: 1fr; gap: 4px; height: 260px; border-radius: 18px; overflow: hidden; background: var(--stub); }
.workcard--pair .workcard__media { grid-template-columns: 1fr 1fr; }
.workcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.22,.7,.25,1); }
.workcard:hover .workcard__media img { transform: scale(1.04); }
.workcard__stub { display: flex; align-items: center; justify-content: center; color: var(--ph); }
.workcard__body { display: flex; flex-direction: column; gap: 3px; }
.workcard__title { font-size: 17px; font-weight: 700; line-height: 1.3; }
.workcard__meta { font-size: 14px; color: var(--muted); }
.workcard__nums { font-size: 14px; font-weight: 700; color: var(--green); }
.works-empty { font-size: 17px; color: var(--text-2); }

/* Сторінка роботи */
.case-media { position: relative; display: grid; grid-template-columns: 1fr; gap: 4px; border-radius: 20px; overflow: hidden; margin-bottom: 24px; max-height: 560px; }
.case-media--pair { grid-template-columns: 1fr 1fr; }
.case-media img { width: 100%; height: 100%; object-fit: cover; }
.case-facts { margin: 0 0 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.case-facts > div { background: var(--bg-2); border-radius: 14px; padding: 14px 16px; display: flex; flex-direction: column; gap: 2px; }
.case-facts dt { font-size: 13px; color: var(--muted); }
.case-facts dd { margin: 0; font-size: 17px; font-weight: 700; }
@media (min-width: 768px) { .case-facts { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; } }
.case-more__title { margin: 40px 0 20px; }

/* Пагінація */
.pagination { margin-top: 32px; }
.nav-links { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.page-numbers { min-width: 44px; height: 44px; padding: 0 12px; border-radius: 12px; border: 1.5px solid var(--line); display: inline-flex; align-items: center; justify-content: center; font-weight: 600; color: var(--text); text-decoration: none; }
.page-numbers:hover { border-color: var(--green); color: var(--green); }
.page-numbers.current { background: var(--green); border-color: var(--green); color: #fff; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }

/* ---------- Контакти ---------- */
.contacts { display: grid; grid-template-columns: 1fr; gap: 16px; align-items: start; }
@media (min-width: 900px) { .contacts { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 20px; } }
.contacts__card { background: var(--bg-2); border-radius: 20px; padding: 22px; display: flex; flex-direction: column; gap: 22px; }
@media (min-width: 900px) { .contacts__card { border-radius: 24px; padding: 32px; gap: 26px; } }
.contacts__row { display: flex; flex-direction: column; gap: 6px; }
.contacts__label { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.contacts__phone { font-size: 26px; font-weight: 800; color: var(--text); text-decoration: none; }
.contacts__phone:hover { color: var(--green); }
.contacts__link { font-size: 17px; font-weight: 600; }
.contacts__note, .contacts__text { font-size: 15px; color: var(--text-2); line-height: 1.5; }
.contacts__req { display: flex; flex-direction: column; gap: 4px; font-size: 15px; color: var(--text-2); }
@media (min-width: 1100px) { .contacts__phone { font-size: 32px; } }

.contacts__msgr { display: grid; grid-template-columns: 1fr; gap: 8px; }
@media (min-width: 600px) { .contacts__msgr { grid-template-columns: 1fr 1fr; } }
.msgr-btn { display: flex; align-items: center; gap: 12px; background: #fff; border-radius: 14px; padding: 14px 16px; color: var(--text); text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.msgr-btn:hover { color: var(--text); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(19,51,39,.08); }
.msgr-btn span { display: flex; flex-direction: column; }
.msgr-btn b { font-size: 16px; }
.msgr-btn em { font-style: normal; font-size: 13px; color: var(--muted); }
.msgr-btn--vb { color: #7360F2; } .msgr-btn--tg { color: #229ED9; } .msgr-btn--wa { color: #25D366; }
.msgr-btn b, .msgr-btn em { color: var(--text); } .msgr-btn em { color: var(--muted); }

/* ---------- Форма зворотного дзвінка ---------- */
.callback { background: var(--green); color: #fff; border-radius: 20px; padding: 22px; }
@media (min-width: 900px) { .callback { border-radius: 24px; padding: 32px; position: sticky; top: 96px; } }
.callback__form { display: flex; flex-direction: column; gap: 14px; }
.callback__title { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; }
.callback__text { font-size: 15px; color: var(--on-green); margin-top: -8px; }
.callback .field__label { color: var(--on-green); }
.callback .field__label span { color: var(--on-green-2); font-weight: 400; }
.callback__privacy { font-size: 12px; color: var(--on-green-2); line-height: 1.45; }
.input { width: 100%; border: 1.5px solid var(--field); border-radius: 12px; background: #fff; padding: 14px 16px; font: inherit; font-size: 16px; color: var(--text); }
.input:focus { outline: none; border: 2px solid var(--text); padding: 13.5px 15.5px; }
textarea.input { resize: vertical; min-height: 84px; line-height: 1.5; }
.places__head h3 a { color: inherit; text-decoration: underline; text-decoration-color: var(--line-2); text-underline-offset: 4px; }
.places__head h3 a:hover { color: var(--green); text-decoration-color: currentColor; }
