/* ==========================================================================
   Taxi Energiya — Modern funnel theme
   ========================================================================== */

:root {
	--color-bg: #0c1222;
	--color-bg-alt: #111827;
	--color-surface: #1a2236;
	--color-surface-2: #243049;
	--color-text: #e8edf5;
	--color-text-muted: #94a3b8;
	--color-accent: #ffc107;
	--color-accent-hover: #ffcd38;
	--color-accent-dark: #c99700;
	--color-primary: #3b82f6;
	--color-success: #22c55e;
	--color-error: #ef4444;
	--color-border: rgba(255, 255, 255, 0.08);
	--font: 'Manrope', system-ui, -apple-system, sans-serif;
	--radius: 12px;
	--radius-lg: 20px;
	--shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
	--header-h: 78px;
	--container: 1180px;
	--transition: 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; }

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-h) + 16px);
	font-size: 112.5%;
	overflow-x: clip;
}

body {
	margin: 0;
	font-family: var(--font);
	font-size: 1rem;
	line-height: 1.6;
	color: var(--color-text);
	background: var(--color-bg);
	-webkit-font-smoothing: antialiased;
	overflow-x: clip;
}

body.is-nav-open {
	overflow: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a {
	color: var(--color-accent);
	text-decoration: none;
	transition: color var(--transition);
}

a:hover { color: var(--color-accent-hover); }

h1, h2, h3, h4 {
	margin: 0 0 0.5em;
	line-height: 1.2;
	font-weight: 700;
}

h1 { font-size: clamp(2.125rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.625rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }

ul[role="list"],
ol[role="list"],
.nav__list,
.nav__list li {
	list-style: none;
	padding: 0;
	margin: 0;
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link {
	position: absolute;
	top: -100px;
	left: 16px;
	z-index: 9999;
	padding: 12px 20px;
	background: var(--color-accent);
	color: #000;
	font-weight: 700;
	border-radius: var(--radius);
}

.skip-link:focus { top: 16px; }

.container {
	width: min(100% - 32px, var(--container));
	margin-inline: auto;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 24px;
	font-family: inherit;
	font-size: 0.9375rem;
	font-weight: 700;
	border: 2px solid transparent;
	border-radius: 999px;
	cursor: pointer;
	transition: all var(--transition);
	text-decoration: none;
	white-space: nowrap;
}

.btn--primary {
	background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
	color: #0c1222;
	box-shadow: 0 8px 24px rgba(255, 193, 7, 0.25);
}

.btn--primary:hover {
	background: linear-gradient(135deg, var(--color-accent-hover), var(--color-accent));
	color: #000;
	transform: translateY(-1px);
}

.btn--outline {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.25);
	color: var(--color-text);
}

.btn--outline:hover {
	border-color: var(--color-accent);
	color: var(--color-accent);
}

.btn--sm { padding: 8px 16px; font-size: 0.875rem; }
.btn--lg { padding: 16px 32px; font-size: 1rem; }

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	height: var(--header-h);
	background: rgba(12, 18, 34, 0.96);
	border-bottom: 1px solid var(--color-border);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
}

.site-header__brand {
	flex-shrink: 0;
}

.logo {
	display: block;
	line-height: 0;
}

.logo img,
.logo__img {
	height: 54px;
	width: auto;
	max-width: min(200px, 38vw);
}

.logo__img--mobile {
	display: none;
}

.nav {
	flex: 1;
	min-width: 0;
	display: flex;
	justify-content: center;
	padding: 0 12px;
}

.nav__list {
	display: flex;
	gap: 3px;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	padding: 5px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 999px;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.06),
		0 8px 24px rgba(0, 0, 0, 0.12);
}

.nav__list a {
	display: block;
	padding: 8px 13px;
	color: var(--color-text-muted);
	font-size: 15px;
	font-weight: 600;
	border-radius: 999px;
	line-height: 1.2;
	white-space: nowrap;
	transition:
		color var(--transition),
		background var(--transition),
		box-shadow var(--transition),
		transform var(--transition);
}

.nav__list a:hover {
	color: var(--color-accent);
	background: rgba(255, 193, 7, 0.1);
}

.nav__list a:focus-visible {
	outline: 2px solid var(--color-accent);
	outline-offset: 2px;
}

.nav__list .is-nav-active a,
.nav__list .current-menu-item a,
.nav__list .current_page_item a {
	color: #0c1222;
	font-weight: 700;
	background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
	box-shadow: 0 4px 14px rgba(255, 193, 7, 0.28);
}

.nav__list .is-nav-active a:hover,
.nav__list .current-menu-item a:hover,
.nav__list .current_page_item a:hover {
	color: #0c1222;
	background: linear-gradient(135deg, var(--color-accent-hover), var(--color-accent));
}

.nav__list--section-active .current-menu-item:not(.is-nav-active) a,
.nav__list--section-active .current_page_item:not(.is-nav-active) a {
	color: var(--color-text-muted);
	font-weight: 600;
	background: transparent;
	box-shadow: none;
}

.nav__list--section-active .current-menu-item:not(.is-nav-active) a:hover,
.nav__list--section-active .current_page_item:not(.is-nav-active) a:hover {
	color: var(--color-accent);
	background: rgba(255, 193, 7, 0.1);
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
	margin-left: 8px;
}

.header-phone {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--color-text);
	font-weight: 700;
	font-size: 1.0625rem;
	letter-spacing: 0.01em;
}

.header-phone svg {
	width: 22px;
	height: 22px;
	flex-shrink: 0;
}

.header-phone:hover { color: var(--color-accent); }

.header-messengers {
	display: flex;
	align-items: center;
	gap: 8px;
}

.header-messenger {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 11px;
	color: #ffffff;
	flex-shrink: 0;
	transition: transform var(--transition), box-shadow var(--transition);
}

.header-messenger:hover {
	color: #ffffff;
	transform: translateY(-1px);
}

.header-messenger--telegram {
	background: linear-gradient(135deg, #37c7ff, #229ed9);
	box-shadow: 0 4px 14px rgba(34, 158, 217, 0.35);
}

.header-messenger--telegram:hover {
	box-shadow: 0 6px 18px rgba(34, 158, 217, 0.45);
}

.header-messenger--max {
	background: linear-gradient(135deg, #29c5ff 0%, #4f8fff 42%, #7b2fd6 78%, #9b2ef0 100%);
	border: 1px solid rgba(255, 255, 255, 0.22);
	box-shadow: 0 4px 14px rgba(91, 45, 255, 0.35);
}

.header-messenger--max:hover {
	box-shadow: 0 6px 18px rgba(91, 45, 255, 0.45);
}

.header-messenger svg {
	width: 20px;
	height: 20px;
}

.header-messenger .messenger-icon--max {
	width: 24px;
	height: 24px;
	border-radius: 7px;
	box-shadow: none;
}

.header-cta { display: none; }

.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	padding: 0;
	background: var(--color-surface);
	border: none;
	border-radius: 8px;
	cursor: pointer;
}

.nav-toggle span {
	display: block;
	width: 20px;
	height: 2px;
	margin: 0 auto;
	background: var(--color-text);
	transition: var(--transition);
}

/* Hero */
.hero {
	position: relative;
	min-height: calc(100vh - var(--header-h));
	min-height: calc(100dvh - var(--header-h));
	display: flex;
	align-items: center;
	padding: 60px 0;
	overflow: hidden;
}

.hero__bg {
	position: absolute;
	inset: 0;
	background: url('../images/hero-bg.jpg') center/cover no-repeat;
}

.hero__content {
	position: relative;
	max-width: 1150px;
}

.hero__panel {
	padding: 32px 36px;
	background: rgba(12, 18, 34, 0.88);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--radius-lg);
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.hero h1 {
	color: #ffffff;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.hero h1 span {
	color: var(--color-accent);
}

.hero__lead {
	font-size: 1.2rem;
	font-weight: 600;
	line-height: 1.55;
	margin-bottom: 28px;
	color: #f1f5f9;
}

.hero__badge {
	display: inline-block;
	padding: 8px 16px;
	margin-bottom: 20px;
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--color-accent);
	background: rgba(255, 193, 7, 0.16);
	border: 1px solid rgba(255, 193, 7, 0.45);
	border-radius: 999px;
	letter-spacing: 0.01em;
}

.hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 20px;
}

.hero__cta .btn,
.messenger-buttons .btn {
	text-shadow: none;
	filter: none;
	transform: translateZ(0);
	-webkit-font-smoothing: antialiased;
}

.btn--phone {
	background: #ffffff;
	color: #0c1222;
	border: 2px solid #ffffff;
	font-weight: 800;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn--phone:hover {
	background: #f8fafc;
	color: #0c1222;
	transform: translateY(-1px);
}

.messenger-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 20px;
}

.messenger-buttons--contacts {
	margin-top: 0;
	margin-bottom: 16px;
}

.btn--messenger {
	font-weight: 800;
	color: #ffffff;
	border: none;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

.btn--messenger .messenger-icon {
	flex-shrink: 0;
	display: block;
}

.btn--messenger .messenger-icon--max {
	width: 28px;
	height: 28px;
	border-radius: 9px;
	object-fit: cover;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.btn--messenger:hover {
	color: #ffffff;
	transform: translateY(-2px);
}

.btn--telegram {
	background: linear-gradient(135deg, #37c7ff, #229ed9);
}

.btn--telegram:hover {
	background: linear-gradient(135deg, #5dd4ff, #2aabee);
	box-shadow: 0 10px 28px rgba(34, 158, 217, 0.45);
}

.btn--max {
	background: linear-gradient(135deg, #29c5ff 0%, #4f8fff 42%, #7b2fd6 78%, #9b2ef0 100%);
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.28);
	box-shadow:
		0 10px 28px rgba(91, 45, 255, 0.38),
		inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn--max:hover {
	background: linear-gradient(135deg, #45d4ff 0%, #6ba3ff 42%, #8f45ff 78%, #b04aff 100%);
	color: #ffffff;
	box-shadow:
		0 12px 32px rgba(91, 45, 255, 0.48),
		inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.hero__contacts {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	font-size: 0.875rem;
	font-weight: 600;
	padding-top: 4px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__contacts li {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	padding: 6px 14px;
}

.hero__contacts a {
	color: #f8fafc;
	font-weight: 600;
}

.hero__contacts a:hover {
	color: var(--color-accent);
}

/* Benefits */
.benefits {
	padding: 0 0 48px;
	margin-top: -40px;
	position: relative;
	z-index: 2;
}

.benefits__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.benefit-card {
	padding: 24px 20px;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	text-align: center;
	transition: transform var(--transition), border-color var(--transition);
}

.benefit-card:hover {
	transform: translateY(-4px);
	border-color: rgba(255, 193, 7, 0.3);
}

.benefit-card__icon {
	display: flex;
	justify-content: center;
	margin-bottom: 12px;
	color: var(--color-accent);
}

.benefit-card strong {
	display: block;
	margin-bottom: 4px;
	font-size: 1rem;
}

.benefit-card p {
	margin: 0;
	font-size: 0.8125rem;
	color: var(--color-text-muted);
}

/* Sections */
.section {
	padding: 72px 0;
}

.section--alt { background: var(--color-bg-alt); }
.section--order { background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%); }

.section__header {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 40px;
}

.section__header--left {
	text-align: left;
	margin-left: 0;
}

.section__header p {
	color: var(--color-text-muted);
	margin-bottom: 0;
}

.section__note {
	margin-top: 16px;
	font-size: 0.875rem;
	color: var(--color-text-muted);
	text-align: center;
}

/* Tables */
.routes-table-wrap {
	overflow-x: auto;
	border-radius: var(--radius);
	border: 1px solid var(--color-border);
}

.routes-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.9375rem;
}

.routes-table th,
.routes-table td {
	padding: 14px 18px;
	text-align: left;
	border-bottom: 1px solid var(--color-border);
}

.routes-table th {
	background: var(--color-surface);
	font-size: 0.8125rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--color-text-muted);
}

.routes-table tbody tr:hover { background: rgba(255, 255, 255, 0.02); }
.routes-table tbody tr:last-child td { border-bottom: none; }

.routes-table strong { color: var(--color-accent); }

.routes-cards {
	display: none;
}

.routes-card {
	padding: 14px 16px;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
}

.routes-card__route {
	margin: 0 0 10px;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.35;
	color: var(--color-text);
}

.routes-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.routes-card__km {
	font-size: 0.875rem;
	color: var(--color-text-muted);
}

.routes-card__price {
	font-size: 1.125rem;
	color: var(--color-accent);
	white-space: nowrap;
}

@media (max-width: 1100px) {
	.routes-cards {
		display: flex;
		flex-direction: column;
		gap: 10px;
	}

	.routes-table-wrap {
		display: none;
	}
}

/* Route calculator */
.route-calc {
	display: grid;
	grid-template-columns: minmax(300px, 42%) minmax(0, 1fr);
	gap: 24px;
	align-items: start;
	min-width: 0;
}

.route-calc__panel {
	display: flex;
	flex-direction: column;
	gap: 16px;
	min-width: 0;
	max-width: 100%;
	padding: 20px;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	box-sizing: border-box;
	overflow: visible;
}

.route-calc__field-group {
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-width: 0;
}

.route-calc__field-wrap--street > label {
	font-size: 0.8125rem;
	color: var(--color-text-muted, #6b7280);
	font-weight: 500;
}

.route-calc__field-wrap--street input {
	font-size: 0.9375rem;
}

.route-calc__fields {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	gap: 10px;
	align-items: start;
	min-width: 0;
	overflow: visible;
}

.route-calc__fields .form-field {
	margin: 0;
	min-width: 0;
}

.route-calc__fields input {
	min-width: 0;
	width: 100%;
}

.route-calc__field-wrap,
.route-calc__input-wrap {
	position: relative;
	min-width: 0;
	overflow: visible;
	z-index: 2;
}

.route-calc__field-wrap:focus-within {
	z-index: 30;
}

.route-calc__panel ymaps[class*="suggest"],
.route-calc__panel [class*="suggest-view"],
.route-calc__panel [class*="suggest-panel"] {
	z-index: 200 !important;
}

.route-calc__suggest {
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	right: 0;
	z-index: 40;
	margin: 0;
	padding: 6px 0;
	list-style: none;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	max-height: 220px;
	overflow-y: auto;
}

.route-calc__suggest-item {
	padding: 8px 12px;
	font-size: 0.875rem;
	color: var(--color-text);
	cursor: pointer;
	line-height: 1.3;
}

.route-calc__suggest-item:hover,
.route-calc__suggest-item:focus {
	background: var(--color-bg);
	color: var(--color-accent-dark);
}

.route-calc__swap {
	width: 44px;
	height: 44px;
	margin-bottom: 2px;
	border: 1px solid var(--color-border);
	border-radius: 50%;
	background: var(--color-bg);
	color: var(--color-accent);
	font-size: 1.25rem;
	line-height: 1;
	cursor: pointer;
	transition: border-color var(--transition), background var(--transition);
}

.route-calc__swap:hover {
	border-color: var(--color-accent);
	background: rgba(255, 193, 7, 0.08);
}

.route-calc__presets {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.route-calc__preset {
	padding: 7px 11px;
	font-family: inherit;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--color-text-muted);
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: 999px;
	cursor: pointer;
	max-width: 100%;
	white-space: normal;
	text-align: center;
	line-height: 1.3;
	transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.route-calc__preset:hover {
	color: var(--color-accent);
	border-color: rgba(255, 193, 7, 0.45);
	background: rgba(255, 193, 7, 0.08);
}

.route-calc__submit {
	width: 100%;
	margin-top: 4px;
}

.route-calc__result {
	padding-top: 8px;
	border-top: 1px solid var(--color-border);
}

.route-calc__result-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin-bottom: 12px;
}

.route-calc__stat {
	padding: 10px;
	min-width: 0;
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
}

.route-calc__stat-label {
	display: block;
	margin-bottom: 4px;
	font-size: 0.6875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: var(--color-text-muted);
	overflow-wrap: anywhere;
}

.route-calc__stat-value {
	font-size: 1rem;
	line-height: 1.2;
	overflow-wrap: anywhere;
}

.route-calc__stat--price {
	background: rgba(255, 193, 7, 0.08);
	border-color: rgba(255, 193, 7, 0.35);
}

.route-calc__price {
	color: var(--color-accent);
	font-size: 1.2rem;
}

.route-calc__note {
	margin: 0 0 14px;
	font-size: 0.8125rem;
	color: var(--color-text-muted);
	line-height: 1.5;
	overflow-wrap: anywhere;
}

.route-calc__warning {
	margin: 0;
	padding: 12px 14px;
	font-size: 0.8125rem;
	line-height: 1.5;
	color: #fde68a;
	background: rgba(255, 193, 7, 0.1);
	border: 1px solid rgba(255, 193, 7, 0.35);
	border-radius: var(--radius);
}

.route-calc__map-wrap {
	display: flex;
	flex-direction: column;
	gap: 10px;
	height: 420px;
	min-height: 420px;
}

.route-calc__map {
	flex: 1;
	width: 100%;
	height: 100%;
	min-height: 0;
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--color-border);
	background: var(--color-surface);
}

.route-calc__map--disabled {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	color: var(--color-text-muted);
	text-align: center;
}

.route-calc__map-hint {
	margin: 0;
	font-size: 0.8125rem;
	color: var(--color-text-muted);
	text-align: center;
}

/* Order form */
.order-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
}

.order-form {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	padding: 28px;
}

.order-form__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.order-form__grid--callback { grid-template-columns: 1fr; }

.form-field--full { grid-column: 1 / -1; }

.form-field > label:not(.checkbox) {
	display: block;
	margin-bottom: 6px;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--color-text-muted);
	margin-left: 5px;
}

.form-field input:not([type="checkbox"]),
.form-field textarea,
.prices-search input {
	width: 100%;
	padding: 12px 16px;
	font-family: inherit;
	font-size: 16px;
	color: var(--color-text);
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	transition: border-color var(--transition);
}

.form-field input:not([type="checkbox"]):focus,
.form-field textarea:focus,
.prices-search input:focus {
	outline: none;
	border-color: var(--color-accent);
}

.form-field textarea { resize: vertical; min-height: 80px; }

.form-field--consent { margin: 20px 0; }

.checkbox {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	font-size: 0.8125rem;
	font-weight: 400;
	line-height: 1.5;
	color: var(--color-text-muted);
	cursor: pointer;
}

.checkbox span a {
	color: var(--color-accent);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.checkbox span a:hover {
	color: var(--color-accent-hover);
}

.checkbox input[type="checkbox"] {
	appearance: none;
	-webkit-appearance: none;
	width: 18px;
	height: 18px;
	margin: 2px 0 0;
	flex-shrink: 0;
	border: 2px solid rgba(255, 255, 255, 0.28);
	border-radius: 5px;
	background: var(--color-bg);
	cursor: pointer;
	transition:
		border-color var(--transition),
		background var(--transition),
		box-shadow var(--transition);
}

.checkbox input[type="checkbox"]:checked {
	background: var(--color-accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath fill='none' stroke='%230c1222' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M1 5l3 3 7-7'/%3E%3C/svg%3E") center / 11px no-repeat;
	border-color: var(--color-accent);
}

.checkbox input[type="checkbox"]:focus-visible {
	outline: 2px solid var(--color-accent);
	outline-offset: 2px;
}

.order-form__honeypot {
	position: absolute;
	left: -9999px;
	opacity: 0;
	pointer-events: none;
}

.order-form .btn { width: 100%; margin-top: 4px; }

.form-message {
	margin-top: 12px;
	padding: 12px;
	border-radius: var(--radius);
	font-size: 0.875rem;
}

.form-message.is-success {
	background: rgba(34, 197, 94, 0.15);
	color: var(--color-success);
}

.form-message.is-error {
	background: rgba(239, 68, 68, 0.15);
	color: var(--color-error);
}

.check-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
	color: var(--color-text-muted);
}

.check-list svg { color: var(--color-success); flex-shrink: 0; }

/* About */
.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

.about-figure img {
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
}

/* Fleet */
.fleet-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.fleet-card {
	position: relative;
	background: var(--color-bg-alt);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: transform var(--transition);
}

.fleet-card:hover { transform: translateY(-4px); }

.fleet-card img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	background: var(--color-bg-alt);
	filter: brightness(0.90) contrast(1.2) saturate(0.90);
}

.fleet-card::after {
	content: '';
	position: absolute;
	inset: 0 auto auto;
	width: 100%;
	height: 180px;
	background: rgba(12, 18, 34, 0.22);
	pointer-events: none;
}

.fleet-card__body { padding: 16px 18px; }
.fleet-card__body h3 { color: #d4dce8; }
.fleet-card__body p { margin: 0; font-size: 0.875rem; color: var(--color-text-muted); }

.fleet-note {
	margin-top: 20px;
	text-align: center;
	font-size: 0.875rem;
	color: var(--color-text-muted);
}

/* Promo */
.section--promo { padding: 48px 0; }

.promo-card {
	background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), rgba(59, 130, 246, 0.1));
	border: 1px solid rgba(255, 193, 7, 0.3);
	border-radius: var(--radius-lg);
	padding: 40px;
}

.promo-card__note {
	font-size: 0.875rem;
	color: var(--color-text-muted);
}

/* Callback */
.callback-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

.callback-layout__content .section__header {
	margin-bottom: 24px;
}

.callback-figure,
.faq-figure {
	margin: 0;
}

.callback-figure img,
.faq-figure img {
	width: 100%;
	height: 100%;
	min-height: 360px;
	max-height: 520px;
	object-fit: cover;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	border: 1px solid var(--color-border);
}

.callback-layout .order-form { text-align: left; }

/* Reviews */
.yandex-reviews {
	width: 100%;
	max-width: none;
	margin: 0;
}

.yandex-reviews__summary {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 24px;
	padding: 20px 24px;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
}

.yandex-reviews__rating {
	font-size: 2.5rem;
	font-weight: 800;
	line-height: 1;
	color: var(--color-accent);
}

.yandex-reviews__stars {
	display: flex;
	gap: 2px;
	margin: 0 0 6px;
	color: var(--color-accent);
}

.yandex-reviews__meta {
	margin: 0;
	font-size: 0.9375rem;
	color: var(--color-text-muted);
}

.yandex-reviews__meta a {
	color: var(--color-accent);
}

.yandex-reviews__frame-wrap {
	width: 100%;
	height: 720px;
	overflow: hidden;
	position: relative;
	display: flex;
	justify-content: center;
	background: #ffffff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
}

.yandex-reviews__frame-wrap iframe {
	display: block;
	width: 100%;
	max-width: 760px;
	height: 100%;
	margin: 0 auto;
	border: 0;
	background: #ffffff;
}

.yandex-reviews__source {
	display: block;
	margin-top: 14px;
	text-align: center;
	font-size: 0.875rem;
	color: var(--color-text-muted);
}

.yandex-reviews__source:hover {
	color: var(--color-accent);
}

.reviews-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.review-card {
	height: 100%;
	padding: 24px;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
}

.review-card__header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}

.review-card__avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	color: #000;
	flex-shrink: 0;
}

.review-card__header h3 { margin: 0; font-size: 1rem; }
.review-card__header p { margin: 0; font-size: 0.8125rem; color: var(--color-text-muted); }

.review-card__stars {
	margin-left: auto;
	display: flex;
	gap: 2px;
	color: var(--color-accent);
}

.review-card blockquote {
	margin: 0;
}

.review-card blockquote p {
	margin: 0;
	font-size: 0.9375rem;
	color: var(--color-text-muted);
}

/* FAQ */
.section--faq { background: var(--color-bg-alt); }

.faq-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
}

.faq-list {
	max-width: none;
	margin: 0;
}

.faq-item {
	margin-bottom: 8px;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	overflow: hidden;
}

.faq-item summary {
	padding: 18px 20px;
	font-weight: 600;
	cursor: pointer;
	list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
	content: '+';
	float: right;
	color: var(--color-accent);
	font-size: 1.25rem;
}

.faq-item[open] summary::after { content: '−'; }

.faq-item p {
	padding: 0 20px 18px;
	margin: 0;
	color: var(--color-text-muted);
	font-size: 0.9375rem;
}

/* Contacts */
.contacts-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: start;
}

.contacts-list { font-style: normal; }
.contacts-list p { margin-bottom: 8px; }

.contacts-map {
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--color-border);
	min-height: 360px;
}

.contacts-map iframe { display: block; border: 0; min-height: 360px; }

/* Footer */
.site-footer {
	padding: 48px 0 24px;
	background: var(--color-bg-alt);
	border-top: 1px solid var(--color-border);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 32px;
	margin-bottom: 32px;
}

.site-footer__brand address {
	font-style: normal;
	color: var(--color-text-muted);
	font-size: 0.875rem;
}

.site-footer__legal,
.site-footer__links {
	font-size: 0.875rem;
	color: var(--color-text-muted);
}

.site-footer__links {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.site-footer__copy {
	margin: 0;
	padding-top: 24px;
	border-top: 1px solid var(--color-border);
	font-size: 0.8125rem;
	color: var(--color-text-muted);
	text-align: center;
}

/* FAB phone */
.fab-phone {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 90;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	background: var(--color-accent);
	color: #000;
	border-radius: 50%;
	box-shadow: 0 8px 24px rgba(255, 193, 7, 0.4);
	transition: transform var(--transition);
}

.fab-phone:hover {
	color: #000;
	transform: scale(1.08);
}

/* Page hero (prices) */
.page-hero {
	padding: 40px 0 20px;
	background: var(--color-bg-alt);
	border-bottom: 1px solid var(--color-border);
}

.breadcrumb ol {
	display: flex;
	gap: 8px;
	font-size: 0.875rem;
	color: var(--color-text-muted);
	margin-bottom: 16px;
}

.breadcrumb li:not(:last-child)::after {
	content: '/';
	margin-left: 8px;
	opacity: 0.5;
}

.prices-search {
	margin-bottom: 32px;
}

.prices-search label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
}

.prices-group {
	margin-bottom: 40px;
}

.prices-group h2 {
	font-size: 1.25rem;
	margin-bottom: 16px;
	padding-bottom: 8px;
	border-bottom: 2px solid var(--color-accent);
	display: inline-block;
}

.prices-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	margin-top: 40px;
}

.prices-table tr.is-hidden { display: none; }

.entry-content {
	color: var(--color-text-muted);
	line-height: 1.7;
}

/* Responsive */
@media (max-width: 1100px) {
	.nav {
		position: fixed;
		top: var(--header-h);
		left: 0;
		right: 0;
		width: 100%;
		max-height: calc(100dvh - var(--header-h));
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		background: rgba(12, 18, 34, 0.98);
		border-bottom: 1px solid var(--color-border);
		padding: 16px;
		transform: translateY(-120%);
		opacity: 0;
		pointer-events: none;
		transition: transform 0.3s ease, opacity 0.3s ease;
		justify-content: flex-start;
		flex: none;
		z-index: 99;
	}

	.nav.is-open {
		transform: translateY(0);
		opacity: 1;
		pointer-events: auto;
	}

	.nav__list {
		flex-direction: column;
		gap: 6px;
		align-items: stretch;
		padding: 8px;
		border-radius: 16px;
		width: 100%;
	}

	.nav__list a {
		padding: 12px 16px;
		font-size: 16px;
		text-align: center;
		white-space: normal;
	}

	.site-header__inner {
		display: grid;
		grid-template-columns: auto 1fr auto;
		align-items: center;
		gap: 8px;
	}

	.site-header__brand {
		grid-column: 1;
	}

	.site-header__actions {
		grid-column: 2;
		justify-self: center;
		gap: 6px;
		margin-left: 0;
	}

	.nav-toggle {
		grid-column: 3;
		justify-self: end;
		display: flex;
	}

	.header-phone span { display: none; }
	.header-cta { display: inline-flex; }

	.logo__img--desktop {
		display: none;
	}

	.logo__img--mobile {
		display: block;
		height: 46px;
		width: 46px;
		max-width: none;
		border-radius: 50%;
		object-fit: cover;
	}
}

@media (max-width: 1024px) {
	.benefits__grid { grid-template-columns: repeat(2, 1fr); }
	.fleet-grid { grid-template-columns: repeat(2, 1fr); }
	.reviews-grid { grid-template-columns: 1fr; }
	.yandex-reviews__frame-wrap { height: 620px; }
	.yandex-reviews__summary {
		flex-direction: column;
		text-align: center;
	}
	.order-layout { grid-template-columns: 1fr; }
	.about-grid { grid-template-columns: 1fr; }
	.contacts-grid { grid-template-columns: 1fr; }
	.callback-layout { grid-template-columns: 1fr; }
	.faq-layout { grid-template-columns: 1fr; }
	.route-calc { grid-template-columns: 1fr; }
	.route-calc__result-grid { grid-template-columns: 1fr; }
	.route-calc__fields {
		grid-template-columns: 1fr;
	}
	.route-calc__swap {
		justify-self: center;
		margin: 0;
		transform: rotate(90deg);
	}
	.faq-figure { order: -1; }
	.callback-figure img,
	.faq-figure img { min-height: 240px; max-height: 320px; }
}

@media (max-width: 768px) {
	:root {
		--header-h: 72px;
	}

	.container {
		width: min(100% - 24px, var(--container));
	}

	.section {
		padding: 48px 0;
	}

	.hero__panel {
		padding: 20px 16px;
	}

	.hero h1 {
		font-size: 1.75rem;
	}

	.hero__lead {
		font-size: 1.05rem;
		margin-bottom: 20px;
	}

	.hero__badge {
		display: block;
		font-size: 0.8125rem;
		line-height: 1.45;
		text-align: center;
	}

	.hero__cta {
		flex-direction: column;
	}

	.hero__cta .btn {
		width: 100%;
		white-space: normal;
	}

	.messenger-buttons {
		flex-direction: column;
	}

	.messenger-buttons .btn {
		width: 100%;
		justify-content: center;
		white-space: normal;
	}

	.hero__contacts {
		flex-direction: column;
	}

	.hero__contacts li {
		text-align: center;
	}

	.logo__img--mobile {
		height: 44px;
		width: 44px;
		max-width: none;
	}

	.header-messenger {
		width: 34px;
		height: 34px;
	}

	.header-cta {
		padding: 8px 12px;
		font-size: 0.8125rem;
	}

	.benefits {
		margin-top: -24px;
	}

	.benefits__grid { grid-template-columns: 1fr; }
	.fleet-grid { grid-template-columns: 1fr; }
	.order-form__grid { grid-template-columns: 1fr; }
	.site-footer__grid { grid-template-columns: 1fr; }

	.hero { min-height: auto; padding: 40px 0; }

	.btn--lg {
		padding: 14px 20px;
	}

	.fab-phone {
		right: 14px;
		bottom: 14px;
		width: 52px;
		height: 52px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
}
