:root {
	--navy-900: #0b1324;
	--navy-800: #141f38;
	--navy-700: #1c2a4a;
	--accent: #f59e0b;
	--accent-dark: #d97706;
	--bg: #f7f8fb;
	--card-bg: #ffffff;
	--text-main: #1b2438;
	--text-muted: #64748b;
	--border: #e6e9f0;
	--success-bg: #ecfdf5;
	--success-text: #047857;
	--success-border: #a7f3d0;
	--danger-bg: #fef2f2;
	--danger-text: #b91c1c;
	--danger-border: #fecaca;
	--radius: 14px;
	--radius-sm: 8px;
	--shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
	--container: 1160px;
}

* { box-sizing: border-box; min-width: 0; }

html {
	scroll-behavior: smooth;
	scroll-padding-top: 90px;
	overflow-x: hidden;
	max-width: 100%;
}

body {
	margin: 0;
	font-family: "Manrope", "Segoe UI", Arial, sans-serif;
	color: var(--text-main);
	background: var(--bg);
	line-height: 1.5;
	overflow-x: hidden;
	max-width: 100%;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

.container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
}

/* ---------- Header ---------- */
/* position: fixed, а не sticky — на iOS при оттягивании страницы за нижний край
   (overscroll-bounce) sticky-элемент на секунду "отлипал" от верха и возвращался
   на место рывком. fixed всегда жёстко закреплён относительно вьюпорта независимо
   от bounce-эффекта. Раз шапка выпала из потока — компенсируем её высоту
   padding-top у main (см. #top ниже). */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	background: #fff;
	border-bottom: 1px solid var(--border);
}

#top {
	padding-top: 76px;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 76px;
	gap: 16px;
}

.logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 800;
	letter-spacing: 0.02em;
	white-space: nowrap;
	flex-shrink: 0;
}

.logo-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: var(--navy-900);
	color: var(--accent);
	font-size: 14px;
	font-weight: 800;
}

.logo-text .accent { color: var(--accent-dark); }

.main-nav {
	display: flex;
	align-items: center;
	gap: 22px;
	font-weight: 600;
	font-size: 14.5px;
	flex-wrap: nowrap;
}

.main-nav a { color: var(--text-main); opacity: 0.85; white-space: nowrap; }
.main-nav a:hover { opacity: 1; color: var(--accent-dark); }

.nav-cta {
	background: var(--accent);
	color: #1b1200 !important;
	padding: 10px 18px;
	border-radius: 999px;
	opacity: 1 !important;
}
.nav-cta:hover { background: var(--accent-dark); color: #fff !important; }

/* Телефоны в шапке — два полноразмерных номера строкой в высоту (не мелкий текст),
   Telegram — отдельная пилюля справа от них, а не третьей строкой снизу. */
.header-contacts { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header-phones { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.header-phone { font-weight: 700; white-space: nowrap; line-height: 1.35; }
.header-phones .header-phone { font-size: 13.5px; }
/* Имя и номер сливались в одну сплошную строку — добавляем явный отступ вместо
   расчёта на одинарный пробел между </span> и текстом номера. */
.phone-name { color: var(--text-muted); font-weight: 600; margin-right: 5px; }

.header-tg {
	display: inline-flex;
	align-items: center;
	white-space: nowrap;
	font-weight: 700;
	font-size: 13px;
	color: var(--accent-dark);
	border: 1px solid var(--border);
	padding: 8px 14px;
	border-radius: 999px;
	flex-shrink: 0;
}
.header-tg:hover { background: #fff7e8; border-color: var(--accent); }

/* Дублируем контакты внутри мобильного меню — скрыты, пока nav не в мобильном режиме */
.nav-contacts { display: none; }

.burger {
	display: none;
	flex-direction: column;
	gap: 4px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 6px;
	flex-shrink: 0;
}
.burger span { width: 22px; height: 2px; background: var(--text-main); border-radius: 2px; }

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 26px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 15px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:active { transform: scale(0.98); }

.btn-primary { background: var(--accent); color: #1b1200; }
.btn-primary:hover { background: var(--accent-dark); }

.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-ghost:hover { border-color: #fff; }

.btn-outline { background: transparent; color: var(--navy-900); border-color: var(--border); width: 100%; }
.btn-outline:hover { border-color: var(--accent); color: var(--accent-dark); }

/* min-height — держит кнопку одной высоты в обычном и "загрузочном" состоянии.
   При клике текст меняется на более короткий ("Рассчитываем маршрут…") и
   появляется спиннер — без этой подстраховки высота кнопки могла на мгновение
   измениться (перенос текста на другое число строк) и сдвинуть всё, что ниже,
   включая футер (эффект "подпрыгивания"). */
.btn-submit { width: 100%; padding: 16px; font-size: 16px; position: relative; min-height: 58px; }
.btn-submit:disabled { opacity: 0.7; cursor: progress; }

/* Спиннер — абсолютным позиционированием, а НЕ обычным элементом в строке рядом
   с текстом: так его появление/исчезновение вообще не участвует в раскладке
   кнопки (не может вызвать перенос текста на другую строку) и никак не влияет на
   высоту кнопки, а значит и на то, что находится ниже. */
.btn-spinner {
	position: absolute;
	top: 50%;
	right: 22px;
	transform: translateY(-50%);
	width: 16px; height: 16px;
	border: 2px solid rgba(27,18,0,0.35);
	border-top-color: #1b1200;
	border-radius: 50%;
	animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Hero ---------- */
.hero {
	background: radial-gradient(1200px 500px at 80% -10%, var(--navy-700), var(--navy-900));
	color: #fff;
	padding: 72px 0 88px;
}

.hero-inner {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 48px;
	align-items: center;
}

.eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 13px;
	font-weight: 700;
	color: var(--accent);
	margin: 0 0 14px;
}

.hero h1 {
	font-size: 44px;
	line-height: 1.15;
	margin: 0 0 18px;
	font-weight: 800;
}

.hero-sub {
	color: rgba(255,255,255,0.78);
	font-size: 17px;
	max-width: 520px;
	margin: 0 0 30px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-stats { display: flex; gap: 32px; list-style: none; padding: 0; margin: 0; }
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong { font-size: 22px; font-weight: 800; }
.hero-stats span { font-size: 13px; color: rgba(255,255,255,0.65); }

.hero-art { display: flex; justify-content: center; }
.route-svg { width: 100%; max-width: 420px; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.35)); }

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section-alt { background: #fff; }

.section-title {
	font-size: 32px;
	font-weight: 800;
	margin: 0 0 12px;
	text-align: center;
}
.section-title span { color: var(--accent-dark); }
.section-title.light { color: #fff; text-align: left; }
.section-title.light span { color: var(--accent); }

.section-sub {
	text-align: center;
	color: var(--text-muted);
	max-width: 620px;
	margin: 0 auto 48px;
	font-size: 16px;
}
.section-sub.light { text-align: left; color: rgba(255,255,255,0.75); margin: 0 0 28px; }

.cards-grid { display: grid; gap: 24px; }
.cards-grid.three { grid-template-columns: repeat(3, 1fr); }
.cards-grid.four { grid-template-columns: repeat(4, 1fr); }
.cards-grid.five { grid-template-columns: repeat(5, 1fr); }

.feature-card {
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 28px 22px;
	text-align: left;
}
.feature-icon {
	width: 46px; height: 46px;
	border-radius: 12px;
	background: #fff7e8;
	color: var(--accent-dark);
	display: flex; align-items: center; justify-content: center;
	margin-bottom: 16px;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-card h3 { margin: 0 0 8px; font-size: 17px; }
.feature-card p { margin: 0; color: var(--text-muted); font-size: 14px; }

/* ---------- Tariffs ---------- */
.tariff-tables {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
}
.tariff-table-wrap {
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
}
.tariff-region-title {
	margin: 0;
	padding: 18px 22px;
	background: var(--navy-900);
	color: #fff;
	font-size: 16px;
}
.tariff-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.tariff-table { width: 100%; min-width: 360px; border-collapse: collapse; font-size: 14px; }
.tariff-table th, .tariff-table td { padding: 14px 22px; text-align: left; }
.tariff-table thead th { color: var(--text-muted); font-weight: 700; font-size: 13px; border-bottom: 1px solid var(--border); }
.tariff-table tbody tr:not(:last-child) td { border-bottom: 1px solid var(--border); }
.tariff-table tbody tr:hover { background: #fffaf0; }

.tariff-note { text-align: center; color: var(--text-muted); font-size: 13px; margin: 24px 0 0; }

/* ---------- Fleet ---------- */
.fleet-card {
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 24px 20px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
}
.fleet-icon { color: var(--navy-900); width: 100%; max-width: 90px; margin-bottom: 10px; }
.fleet-card h3 { margin: 4px 0 0; font-size: 17px; }
.fleet-seats { margin: 0; color: var(--text-muted); font-size: 13px; }
.fleet-price { margin: 6px 0 16px; font-size: 13px; color: var(--text-main); font-weight: 600; line-height: 1.4; }

/* ---------- Order form ---------- */
.order-section { background: var(--navy-900); color: #fff; }
.order-inner {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 48px;
	align-items: start;
}
.order-points { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.order-points li {
	position: relative;
	padding-left: 26px;
	color: rgba(255,255,255,0.85);
	font-size: 14.5px;
}
.order-points li::before {
	content: "";
	position: absolute; left: 0; top: 6px;
	width: 10px; height: 10px;
	border-radius: 50%;
	background: var(--accent);
}

.order-form {
	background: #fff;
	color: var(--text-main);
	border-radius: var(--radius);
	padding: 32px;
	box-shadow: var(--shadow);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.smart-captcha { margin-bottom: 20px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 13px; font-weight: 700; color: var(--text-muted); }

.form-field input,
.form-field select {
	width: 100%;
	padding: 12px 14px;
	border-radius: var(--radius-sm);
	border: 1px solid var(--border);
	font-size: 15px;
	font-family: inherit;
	background: #fbfbfd;
	color: var(--text-main);
}
.form-field input:focus,
.form-field select:focus {
	outline: none;
	border-color: var(--accent);
	background: #fff;
}

/* input[type=datetime-local] на телефонах рендерит свой встроенный календарик/поля
   времени с собственным минимальным content-width — на части устройств (не только
   iOS Safari, но и некоторые Android WebView/OEM-браузеры вроде Samsung Internet/
   MIUI, особенно если системная локаль форматирует дату длинно — "26 июля 2026 г."
   вместо "26.07.2026") этот виджет вылезает за границу своего же фона, ИГНОРИРУЯ
   overflow:hidden, поставленный на сам инпут — это уже пробовали (см. git-историю),
   не везде помогло, вылезание за рамку по-прежнему воспроизводится на части телефонов.
   Причина: input[type=datetime-local] — replaced-элемент, и на некоторых движках его
   собственный overflow не обрезает внутреннюю "нативную" отрисовку виджета.
   Обычный оборачивающий <div> (см. .datetime-wrap в index.html) — НЕ replaced-элемент,
   поэтому overflow:hidden на НЁМ обрезает содержимое гарантированно, в любом браузере,
   независимо от того, как конкретно движок рисует нативный виджет внутри инпута. */
.datetime-wrap {
	overflow: hidden;
	border-radius: var(--radius-sm);
	border: 1px solid var(--border);
	background: #fbfbfd;
	width: 100%;
}
/* Раньше border-color/background на фокусе менялись у самого инпута
   (.form-field input:focus) — теперь у инпута своей рамки/фона нет (см. ниже),
   поэтому состояние фокуса переехало на обёртку через :focus-within. */
.datetime-wrap:focus-within {
	border-color: var(--accent);
	background: #fff;
}
.datetime-wrap input[type="datetime-local"] {
	display: block;
	width: 100%;
	min-width: 0;
	max-width: none;
	border-radius: 0;
	border: none;
	background: transparent;
}

/* Базовый .field-hint — для подсказки ВНУТРИ .form-field, между label и input
   (напр. "Дата и время подачи" / "Комментарий к заказу"): .form-field — flex-колонка
   с gap:6px, этого достаточно для отступов самого по себе, поэтому здесь margin:0.
   Раньше тут стоял тот же margin (-8px сверху / 16px снизу), что и у
   .field-hint-row ниже — рассчитанный на СОВСЕМ другой контекст (подсказка между
   двумя .form-row, не внутри flex-колонки) — из-за него текст наезжал на label
   сверху, а перед полем ввода появлялся лишний разрыв (эффект "поплывшей" вёрстки). */
.field-hint { margin: 0; font-size: 12.5px; color: var(--text-muted); }

/* Подсказка МЕЖДУ двумя .form-row (не внутри .form-field) — здесь нужен именно
   отрицательный отступ сверху, чтобы визуально "прилипнуть" к строке над собой
   вместо лишнего зазора, и отступ снизу перед следующей строкой. */
.field-hint-row { margin: -8px 0 16px; }

/* Блок "едем по платной дороге" — оформлен как карточка с тем же
   бордером/фоном/радиусом, что и обычные поля формы (.form-field input), плюс
   иконка в стиле .feature-icon и пилюля-переключатель (тот же скруглённый
   язык дизайна, что у .nav-cta/.header-tg/.footer-messengers), а не голый
   нативный чекбокс — так он не выглядит вставленным отдельно от остальной
   формы. При переключении JS (app.js) дописывает/убирает "Платка: да" в
   комментарии клиента, см. TOLL_TAG в app.js. */
.toll-block {
	position: relative;
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 16px;
	margin-bottom: 16px;
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	background: #fbfbfd;
	cursor: pointer;
	transition: border-color 0.15s ease, background 0.15s ease;
}
.toll-block:hover { border-color: var(--accent); }

.toll-icon {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: #fff7e8;
	color: var(--accent-dark);
	display: flex;
	align-items: center;
	justify-content: center;
}
.toll-icon svg { width: 20px; height: 20px; }

.toll-text { display: flex; flex-direction: column; gap: 3px; flex: 1; min-width: 0; }
.toll-text strong { font-size: 14px; font-weight: 700; color: var(--text-main); }
.toll-text small { font-size: 12.5px; color: var(--text-muted); line-height: 1.5; }

/* Нативный чекбокс визуально скрыт, но остаётся в потоке доступности
   (не display:none) — фокус с клавиатуры и скринридеры продолжают его видеть,
   переключает его клик по всей карточке (она же <label for="toll_road">). */
.toll-checkbox {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.toll-switch {
	position: relative;
	flex-shrink: 0;
	width: 42px;
	height: 24px;
	border-radius: 999px;
	background: var(--border);
	transition: background 0.2s ease;
}
.toll-switch-knob {
	position: absolute;
	top: 2px;
	left: 2px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.25);
	transition: transform 0.2s ease;
}
.toll-checkbox:checked ~ .toll-switch { background: var(--accent); }
.toll-checkbox:checked ~ .toll-switch .toll-switch-knob { transform: translateX(18px); }
.toll-checkbox:focus-visible ~ .toll-switch { outline: 2px solid var(--accent); outline-offset: 2px; }

.toll-checkbox:checked ~ .toll-switch,
.toll-block:has(.toll-checkbox:checked) {
	border-color: var(--accent);
}
.toll-block:has(.toll-checkbox:checked) { background: #fff7e8; }

.form-disclaimer { font-size: 12px; color: var(--text-muted); text-align: center; margin: 12px 0 0; }

/* Настоящая причина "прыжка футера" была не в кнопке, а здесь: блок результата
   раньше переключался через атрибут hidden (display:none -> реальная высота
   контента) РОВНО в момент клика — это мгновенное появление/исчезновение
   толкало всё, что ниже (включая футер), и происходило одинаково что на
   телефоне, что на ПК (ширина экрана тут ни при чём). Теперь блок всегда
   присутствует в потоке, а видимость и высота анимируются через max-height —
   вместо рывка получаем плавное появление/исчезновение. */
.order-result {
	max-height: 0;
	margin-top: 0;
	padding: 0 20px;
	border-radius: var(--radius-sm);
	font-size: 14.5px;
	line-height: 1.6;
	overflow: hidden;
	opacity: 0;
	border-width: 0;
	transition: max-height 0.35s ease, opacity 0.25s ease, margin-top 0.35s ease, padding 0.35s ease;
}
.order-result.visible {
	max-height: 420px;
	margin-top: 22px;
	padding: 18px 20px;
	opacity: 1;
}
.order-result.success { background: var(--success-bg); color: var(--success-text); border: 1px solid var(--success-border); }
.order-result.error { background: var(--danger-bg); color: var(--danger-text); border: 1px solid var(--danger-border); }
.order-result strong { display: block; margin-bottom: 6px; font-size: 15.5px; }
.order-result .price { font-size: 22px; font-weight: 800; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-800); color: rgba(255,255,255,0.85); padding-top: 56px; }
.footer-inner {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 32px;
	padding-bottom: 40px;
}
.footer-logo { margin-bottom: 14px; }
.footer-col h4 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em; margin: 0 0 16px; }
.footer-col p { margin: 0 0 10px; font-size: 14px; }
.footer-col a:hover { color: var(--accent); }

/* Телефоны в футере — тот же порядок "имя, потом номер", что и в шапке, для
   единообразия. Больший тап-таргет: вся строка кликабельна, а не только цифры. */
.footer-phone a { display: inline-flex; align-items: baseline; gap: 6px; padding: 2px 0; font-weight: 600; }
.footer-phone .phone-name { color: rgba(255,255,255,0.55); font-weight: 600; font-size: 13px; }

/* .footer-contacts шириной "по содержимому" (fit-content) — если центрировать
   Telegram через justify-content на всю ширину колонки (.footer-col), пилюля
   оказывается по центру ПУСТОГО места колонки, а не под самими номерами (колонка
   в гриде футера шире, чем текст телефонов). Оборачиваем номера+Telegram в общий
   блок ровно по ширине самой длинной строки — тогда центр совпадает с номерами. */
.footer-contacts { width: fit-content; }
.footer-messengers { display: flex; justify-content: center; gap: 14px; margin-top: 6px; width: 100%; }
.footer-messengers a {
	border: 1px solid rgba(255,255,255,0.2);
	padding: 6px 12px;
	border-radius: 999px;
	font-size: 13px;
}
.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.12);
	padding: 18px 0;
	font-size: 13px;
	color: rgba(255,255,255,0.55);
}

/* ---------- Responsive ---------- */

/* Шапка: с двумя подписанными номерами полноценный ряд nav+телефоны не влезает
   уже на ноутбучных экранах — переключаемся на бургер раньше, чем ломается сетка. */
@media (max-width: 1080px) {
	.main-nav {
		position: fixed;
		top: 76px;
		left: 0;
		right: 0;
		max-height: calc(100vh - 76px);
		overflow-y: auto;
		background: #fff;
		flex-direction: column;
		align-items: flex-start;
		flex-wrap: nowrap;
		padding: 22px 24px 28px;
		gap: 16px;
		border-bottom: 1px solid var(--border);
		box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
		transform: translateY(-120%);
		transition: transform 0.22s ease;
		z-index: 40;
	}
	.main-nav.open { transform: translateY(0); }
	.main-nav a { font-size: 16px; width: 100%; }
	.nav-cta { width: 100%; text-align: center; }

	.nav-contacts {
		display: flex;
		flex-direction: column;
		gap: 10px;
		margin-top: 4px;
		padding-top: 18px;
		border-top: 1px solid var(--border);
		width: 100%;
	}
	.nav-contacts .header-phone { font-size: 15px; color: var(--text-main); }
	.nav-contacts .nav-contacts-tg { color: var(--accent-dark); }

	.burger { display: flex; }
	.header-contacts .header-phones,
	.header-contacts .header-tg { display: none; }
}

@media (max-width: 980px) {
	.cards-grid.three { grid-template-columns: repeat(2, 1fr); }
	.cards-grid.four { grid-template-columns: repeat(2, 1fr); }
	.cards-grid.five { grid-template-columns: repeat(2, 1fr); }
	.hero-inner { grid-template-columns: 1fr; }
	.hero-art { order: -1; max-width: 260px; margin: 0 auto 24px; }
	.order-inner { grid-template-columns: 1fr; }
	.tariff-tables { grid-template-columns: 1fr; }
	.footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
	.hero h1 { font-size: 30px; }
	.cards-grid.three, .cards-grid.four, .cards-grid.five { grid-template-columns: 1fr; }
	.form-row { grid-template-columns: 1fr; }
	.footer-inner { grid-template-columns: 1fr; }
	.section { padding: 56px 0; }
}

/* Точная подгонка под маленькие телефоны (320–480px) */
@media (max-width: 480px) {
	.container { padding: 0 16px; }
	.header-inner { gap: 10px; }
	.logo-badge { width: 32px; height: 32px; font-size: 12px; border-radius: 8px; }
	.logo-text { font-size: 13.5px; }

	.hero { padding: 48px 0 56px; }
	.eyebrow { font-size: 11.5px; }
	.hero h1 { font-size: 25px; }
	.hero-sub { font-size: 14.5px; }
	.hero-actions { flex-direction: column; align-items: stretch; gap: 12px; margin-bottom: 32px; }
	.hero-actions .btn { width: 100%; }
	.hero-stats { flex-wrap: wrap; row-gap: 14px; column-gap: 22px; }
	.hero-art { max-width: 220px; }

	.section { padding: 40px 0; }
	.section-title { font-size: 24px; }
	.section-sub { font-size: 14.5px; margin-bottom: 32px; }

	.feature-card, .fleet-card { padding: 20px 16px; }

	.tariff-region-title { padding: 14px 16px; font-size: 15px; }
	.tariff-table th, .tariff-table td { padding: 11px 14px; font-size: 13px; }

	.order-form { padding: 22px 18px; }
	/* На узких экранах текст кнопки в обычном состоянии не помещается в одну строку
	   и переносится на две, а короткий "загрузочный" текст ("Рассчитываем
	   маршрут…") — помещается в одну. Из-за этого высота кнопки при клике реально
	   МЕНЯЛАСЬ (не просто "почти" помещалась) — прежнего min-height:58px хватало
	   только на однострочный вариант. Считаем высоту двух строк при font-size:15px
	   (line-height 1.5 → 22.5px/строка) + padding 14px сверху/снизу: 2*22.5+28=73px,
	   с запасом ставим 80px — теперь оба состояния кнопки одной высоты. */
	.btn-submit { padding: 14px; font-size: 15px; min-height: 80px; }

	/* Ещё немного ужимаем padding/шрифт именно у datetime-local — на узких экранах
	   (320–375px) даже с overflow:hidden выше внутренним полям даты/времени
	   комфортнее с меньшим паддингом, чем у обычных text-полей. */
	.form-field input[type="datetime-local"] {
		padding: 12px 10px;
		font-size: 13.5px;
	}

	.footer-messengers { flex-wrap: wrap; }
}

/* Совсем узкие телефоны — прячем "ТРАНСФЕР" в лого, чтобы бейдж+название точно не вылезали за край */
@media (max-width: 380px) {
	.logo-suffix { display: none; }
}
