@font-face {
	font-family: "Manrope";
	src: url("../assets/fonts/Manrope/Manrope-VariableFont_wght.ttf") format("truetype");
	font-weight: 200 800;
	font-style: normal;
	font-display: swap;
}

:root {
	--aa-primary: #22c55e;
	--aa-foreground: #111827;
	--aa-muted: #6b7280;
	--aa-border: #e5e7eb;
	--aa-bg: #ffffff;
	--aa-dark: #2d2d2d;
	--aa-hero: #2d3748;
}

*:focus {
	outline: none;
}

/* button:focus {
	outline: 1px dotted;
	outline: 5px auto -webkit-focus-ring-color;
} */

.aa-home{
	width: 100%;
}
.aa-header,
.aa-home,
.aa-footer,
.aa-popup {
	font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
	color: var(--aa-foreground);
}

.aa-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 16px;
}

.aa-text-primary {
	color: var(--aa-primary);
}

/* Header */
.aa-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 40;
	background: var(--aa-bg);
	border-bottom: 1px solid var(--aa-border);
}

.aa-header a {
	cursor: pointer;
}

.aa-header__inner {
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

@media (min-width: 1024px) {
	.aa-header__inner {
		height: 72px;
	}
}

.aa-logo {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: var(--aa-foreground);
}

.aa-logo__mark {
	width: 32px;
	height: 32px;
	border-radius: 8px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.aa-logo__text {
	font-weight: 700;
	font-size: 18px;
	letter-spacing: 0.02em;
}

.aa-logo__text span {
	font-weight: 900;
}
.aa-logo__text_1 {
	color: #61b60c;
}
.aa-logo__text_2 {
	color: #333c41;
}

.aa-nav--desktop {
	display: none;
	gap: 24px;
}

@media (min-width: 1024px) {
	.aa-nav--desktop {
		display: flex;
	}
}

.aa-nav__link {
	color: var(--aa-foreground);
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
	transition: color 0.2s ease;
}

.aa-nav__link:hover {
	color: var(--aa-primary);
}

.aa-header__actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.aa-header__phone {
	display: none;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	color: var(--aa-foreground);
	font-size: 14px;
	font-weight: 700;
}

@media (min-width: 768px) {
	.aa-header__phone {
		display: inline-flex;
	}
}

.aa-header__cta {
	display: none;
}

@media (min-width: 640px) {
	.aa-header__cta {
		display: inline-flex;
	}
}

.aa-icon {
	width: 20px;
	height: 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--aa-primary);
}

.aa-icon svg {
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.aa-icon-btn {
	width: 36px;
	height: 36px;
	border: none;
	background: transparent;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: var(--aa-foreground);
}

.aa-icon-btn svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.aa-icon-btn--menu {
	position: relative;
}

.aa-icon-btn__close {
	display: none;
}

.aa-icon-btn.is-open .aa-icon-btn__menu {
	display: none;
}

.aa-icon-btn.is-open .aa-icon-btn__close {
	display: block;
}

.aa-mobile-nav {
	display: none;
	border-top: 1px solid var(--aa-border);
	background: var(--aa-bg);
}

.aa-mobile-nav.is-open {
	display: block;
}

.aa-mobile-nav__inner {
	padding: 16px 16px 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.aa-mobile-nav__link,
.aa-mobile-nav__phone {
	text-decoration: none;
	color: var(--aa-foreground);
	padding: 8px 0;
	font-size: 15px;
	font-weight: 700;
}

.aa-mobile-nav__cta {
	margin-top: 4px;
}

/* Buttons */
.aa-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border-radius: 12px;
	border: none;
	cursor: pointer;
	padding: 10px 18px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.aa-btn--primary {
	background: var(--aa-primary);
	color: #ffffff;
}

.aa-btn--primary:hover {
	background: #1faa55;
}

.aa-btn--outline {
	background: transparent;
	border: 1px solid var(--aa-border);
	color: var(--aa-foreground);
}

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

.aa-btn--pill {
	border-radius: 999px;
}

.aa-btn--lg {
	padding: 14px 32px;
	font-size: 16px;
}

.aa-btn--sm {
	padding: 8px 16px;
	font-size: 12px;
}

.aa-btn--full {
	width: 100%;
}

.aa-btn__icon svg {
	width: 14px;
	height: 14px;
	stroke: currentColor;
}

/* Main layout */
.aa-main {
	padding-top: 72px;
}

@media (max-width: 640px) {
	.aa-main {
		padding-top: 64px;
	}
}

.aa-section {
	padding: 56px 0;
	background: var(--aa-bg);
}

@media (min-width: 1024px) {
	.aa-section {
		padding: 80px 0;
	}
}

@media (max-width: 767px) {
	.aa-section {
		padding: 20px 0;
	}
	.aa-consultation__image {
		display: none;
	}
}

.aa-section__title {
	text-align: center;
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 32px;
}

.aa-section__subtitle {
	text-align: center;
	color: var(--aa-muted);
	margin-top: 6px;
}

.aa-section__action {
	margin-top: 24px;
	text-align: center;
}

.aa-empty {
	text-align: center;
	color: var(--aa-muted);
	font-size: 14px;
	margin-top: 12px;
}

/* Hero */
.aa-hero {
	background:linear-gradient(rgba(45, 55, 72, 0.9), rgb(25 29 35 / 90%)), url(/assets/img/home-page-bg__1.png) center / cover no-repeat;
	color: #ffffff;
	position: relative;
	overflow: hidden;
	padding: 40px 0 0;
	min-height: 520px;
	display: flex;
}

@media (min-width: 1024px) {
	.aa-hero {
		min-height: 550px;
		padding: 60px 0 0;
	}
}

.aa-hero__inner {
	display: grid;
	gap: 32px;
	align-items: center;
	min-height: 100%;
	width: 100%;
	flex: 1;
}

@media (min-width: 1024px) {
	.aa-hero__inner {
		grid-template-columns: 1.3fr 0.7fr;
		align-items: stretch;
	}
}

.aa-hero__title {
	font-size: 32px;
	line-height: 1.2;
	font-weight: 700;
	margin-bottom: 16px;
}

@media (min-width: 1024px) {
	.aa-hero__title {
		font-size: 42px;
	}
}

.aa-hero__subtitle {
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 24px;
}

.aa-hero__image {
	display: none;
	justify-content: flex-end;
	align-self: stretch;
	align-items: flex-end;
}

.aa-hero__image img {
	max-width: 420px;
	width: 100%;
	height: auto;
	object-fit: contain;
}

@media (min-width: 1024px) {
	.aa-hero__image {
		display: flex;
	}
}

.aa-hero__accent {
	position: absolute;
	top: 0;
	right: 0;
	width: 140px;
	height: 140px;
	background: #22c55e94;
	border-bottom-left-radius: 140px;
	opacity: 0.85;
}

/* Cities */
.aa-cities {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	max-width: 900px;
	margin: 0 auto;
}

@media (min-width: 768px) {
	.aa-cities {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

.aa-city {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	border: 1px solid var(--aa-border);
	border-radius: 12px;
	text-decoration: none;
	color: var(--aa-foreground);
	font-size: 14px;
	font-weight: 500;
	transition: border-color 0.2s ease, color 0.2s ease;
}

.aa-city:hover {
	border-color: var(--aa-primary);
	color: var(--aa-primary);
}

.aa-city.is-hidden {
	display: none;
}

.aa-city.is-visible {
	display: inline-flex;
}

/* Brands */
.aa-brands {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	max-width: 900px;
	margin: 0 auto;
}

@media (min-width: 768px) {
	.aa-brands {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

.aa-brand {
	border: 1px solid var(--aa-border);
	border-radius: 16px;
	padding: 20px;
	text-align: center;
	text-decoration: none;
	color: var(--aa-foreground);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	background: #ffffff;
	min-height: 130px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.aa-brand:hover {
	border-color: var(--aa-primary);
	box-shadow: 0 8px 24px rgba(17, 24, 39, 0.08);
}

.aa-brand__logo img {
	max-width: 124px;
	max-height: 70px;
	object-fit: contain;
}

.aa-brand__name {
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
}

/* Services */
.aa-services {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 16px;
	max-width: 900px;
	margin: 0 auto;
}

@media (min-width: 640px) {
	.aa-services {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.aa-services {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.aa-service {
	display: flex;
	align-items: center;
	gap: 12px;
	border: 1px solid var(--aa-border);
	border-radius: 16px;
	padding: 16px;
	text-decoration: none;
	color: var(--aa-foreground);
	transition: border-color 0.2s ease;
	background: #ffffff;
}

.aa-service:hover {
	border-color: var(--aa-primary);
}

.aa-service__icon {
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: rgba(34, 197, 94, 0.12);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--aa-primary);
}

.aa-service__icon svg {
	width: 24px;
	height: 24px;
	stroke: currentColor;
}

.aa-service__title {
	font-size: 14px;
	font-weight: 600;
	white-space: pre-line;
}

/* Cards */
.aa-card {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.aa-card__media {
	border-radius: 18px;
	height: 160px;
}

.aa-card__media--promo {
	background: linear-gradient(180deg, #fcd34d 0%, #fdba74 50%, #fca5a5 100%);
}

.aa-card__media--article {
	background: linear-gradient(180deg, #fca5a5 0%, #fdba74 50%, #fcd34d 100%);
}

.aa-card__title {
	font-size: 16px;
	font-weight: 700;
	color: var(--aa-foreground);
}

.aa-card__title a {
	color: inherit;
	text-decoration: none;
}

.aa-card__title a:hover {
	color: var(--aa-primary);
}

.aa-card__meta {
	font-size: 13px;
	color: var(--aa-muted);
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.aa-card__meta svg {
	width: 14px;
	height: 14px;
	stroke: currentColor;
	fill: none;
	stroke-width: 2;
}

.aa-card__meta-row {
	display: flex;
	gap: 16px;
}

/* Promo cards */
.aa-promo-card {
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border: 1px solid var(--aa-border);
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
}

.aa-promo-card__media {
	height: 140px;
	width: 100%;
}

@media (min-width: 1024px) {
	.aa-promo-card__media {
		height: 160px;
	}
}

.aa-promo-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.aa-promo-card__body {
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

@media (min-width: 1024px) {
	.aa-promo-card__body {
		padding: 20px;
	}
}

.aa-promo-card__title {
	font-size: 15px;
	font-weight: 700;
	color: rgba(90, 208, 94, 1);
	margin: 0;
}

@media (min-width: 1024px) {
	.aa-promo-card__title {
		font-size: 16px;
	}
}

.aa-promo-card__meta {
	font-size: 13px;
	color: var(--aa-muted);
	margin: 0 0 12px;
}

/* Article cards */
.aa-article-card {
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border: 1px solid var(--aa-border);
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 4px 6px rgba(17, 24, 39, 0.06);
}

.aa-article-card__media {
	height: 180px;
	width: 100%;
}

@media (min-width: 1024px) {
	.aa-article-card__media {
		height: 200px;
	}
}

.aa-article-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.aa-article-card__body {
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

@media (min-width: 1024px) {
	.aa-article-card__body {
		padding: 20px;
	}
}

.aa-article-card__meta {
	display: flex;
	align-items: center;
	gap: 16px;
	font-size: 12px;
	color: var(--aa-muted);
}

.aa-article-card__meta-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.aa-article-card__meta-item svg {
	width: 14px;
	height: 14px;
	stroke: currentColor;
	fill: none;
	stroke-width: 2;
}

.aa-article-card__title {
	font-size: 14px;
	font-weight: 700;
	color: var(--aa-foreground);
	line-height: 1.4;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

@media (min-width: 1024px) {
	.aa-article-card__title {
		font-size: 15px;
	}
}

.aa-article-card__title a {
	color: inherit;
	text-decoration: none;
}

.aa-article-card__title a:hover {
	color: var(--aa-primary);
}

.aa-article-card__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 600;
	background: var(--aa-primary);
	color: #ffffff!important;
	padding: 8px 14px;
	border-radius: 999px;
	text-decoration: none;
	width: fit-content;
}

.aa-article-card__link:hover {
	background: #1faa55;
}

.aa-article-card__link-icon svg {
	width: 14px;
	height: 14px;
	stroke: currentColor;
	fill: none;
	stroke-width: 2;
}

/* Promotions */
.aa-promo-grid {
	display: none;
	gap: 24px;
	max-width: 1100px;
	margin: 0 auto;
}

@media (min-width: 1024px) {
	.aa-promo-grid {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

/* Slider */
.aa-slider {
	position: relative;
}

.aa-slider__track {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding: 8px 0;
}

.aa-slider__track::-webkit-scrollbar {
	display: none;
}

.aa-slider__item {
	min-width: 260px;
	scroll-snap-align: start;
}

.aa-promo-slider {
	display: block;
	padding: 0 48px;
}

@media (min-width: 1024px) {
	.aa-promo-slider {
		display: none;
	}
}

.aa-articles-slider {
	padding: 0 48px;
}

@media (min-width: 1024px) {
	.aa-articles-slider {
		padding: 0 64px;
	}
}

.aa-slider__btn {
	position: absolute;
	top: 100px;
	width: 40px;
	height: 40px;
	border-radius: 999px;
	border: 1px solid var(--aa-border);
	background: #ffffff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: border-color 0.2s ease, background 0.2s ease;
	z-index: 2;
}

.aa-slider__btn svg {
	width: 18px;
	height: 18px;
	stroke: var(--aa-foreground);
	stroke-width: 2;
	fill: none;
}

.aa-slider__btn--next {
	right: 0;
}

.aa-slider__btn--prev {
	left: 0;
}

.aa-slider__btn:hover {
	border-color: var(--aa-primary);
}

.aa-promo-slider .aa-slider__item {
	min-width: 260px;
}

.aa-articles-slider .aa-slider__item {
	min-width: 280px;
}

@media (min-width: 1024px) {
	.aa-articles-slider .aa-slider__item {
		min-width: 320px;
	}
}

.aa-articles-slider .aa-slider__btn {
	top: 130px;
}

@media (min-width: 1024px) {
	.aa-articles-slider .aa-slider__btn {
		top: 140px;
	}
}

/* Benefits */
.aa-benefits {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 16px;
	max-width: 760px;
	margin: 0 auto;
}

@media (min-width: 640px) {
	.aa-benefits {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.aa-benefit {
	display: flex;
	align-items: center;
	gap: 12px;
	border: 1px solid var(--aa-border);
	border-radius: 16px;
	padding: 16px;
	background: #ffffff;
}

.aa-benefit__icon {
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: rgba(34, 197, 94, 0.12);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--aa-primary);
}

.aa-benefit__icon svg {
	width: 24px;
	height: 24px;
	stroke: currentColor;
	fill: none;
	stroke-width: 2;
}

.aa-benefit__title {
	font-size: 14px;
	font-weight: 600;
}

/* Booking form */
.aa-booking-header {
	text-align: center;
	margin-bottom: 32px;
}

.aa-booking-wrap {
	display: grid;
	gap: 24px;
	align-items: start;
}

@media (min-width: 1024px) {
	.aa-booking-wrap {
		grid-template-columns: 1fr auto;
		gap: 40px;
		align-items: center;
	}
}

.aa-booking {
	max-width: 640px;
	margin: 0 auto;
	border: 1px solid var(--aa-border);
	border-radius: 20px;
	padding: 24px;
	background: #ffffff;
}

.aa-section--booking-form .aa-booking-wrap .aa-booking {
	margin: 0;
	max-width: none;
}

.aa-booking__image {
	text-align: center;
}

.aa-booking__image img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}

@media (min-width: 1024px) {
	.aa-booking__image {
		text-align: right;
		max-width: 360px;
	}
	.aa-booking__image img {
		margin: 0;
	}
}

.aa-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.aa-form__group label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 8px;
}

.aa-form__group input,
.aa-select select {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--aa-border);
	border-radius: 10px;
	font-size: 14px;
	font-family: inherit;
}

.aa-form__row {
	display: grid;
	gap: 12px;
}

@media (min-width: 640px) {
	.aa-form__row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.aa-select {
	position: relative;
}

.aa-form__message {
	margin: 0 0 8px;
	font-size: 14px;
}
.aa-form__message--error {
	color: #dc2626;
}
.aa-form__message--success {
	color: var(--aa-primary, #16a34a);
}

/* Лоадер при отправке форм записи */
.aa-form.is-loading,
[data-aa-popup-form].is-loading,
form[data-aa-hero-booking-form].is-loading {
	pointer-events: none;
	opacity: 0.85;
}
.aa-btn.is-loading,
.aa-popup__submit.is-loading,
.aa-consultation__btn.is-loading,
.aa-auto-hero__card-btn.is-loading {
	position: relative;
	color: transparent !important;
	pointer-events: none;
}
.aa-btn.is-loading::after,
.aa-popup__submit.is-loading::after,
.aa-consultation__btn.is-loading::after,
.aa-auto-hero__card-btn.is-loading::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -9px 0 0 -9px;
	width: 18px;
	height: 18px;
	border: 2px solid currentColor;
	border-right-color: transparent;
	border-radius: 50%;
	animation: aa-booking-spin 0.6s linear infinite;
	color: #fff;
}
.aa-btn--outline.is-loading::after { color: var(--aa-primary, #16a34a); }
@keyframes aa-booking-spin {
	to { transform: rotate(360deg); }
}

.aa-select select {
	appearance: none;
	background: #ffffff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 12px center;
	background-size: 16px;
}

.aa-form__submit-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px 24px;
}

.aa-form__submit-row .aa-btn {
	flex-shrink: 0;
}

.aa-form__agreement {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 12px;
	color: var(--aa-muted);
	line-height: 1.5;
	flex: 1;
	min-width: 0;
}

.aa-form__submit-row .aa-form__agreement {
	flex: 1;
	min-width: 200px;
}

.aa-form__agreement input {
	margin-top: 3px;
	flex-shrink: 0;
}

/* Чекбокс соглашения: крупнее и аккуратнее */
.aa-form__agreement input[type="checkbox"] {
	appearance: none;
	-webkit-appearance: none;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	border: 2px solid #d1d5db;
	border-radius: 4px;
	background: #fff;
	cursor: pointer;
	transition: border-color 0.2s, background-color 0.2s;
	margin-top: 0;
}
.aa-form__agreement input[type="checkbox"]:checked {
	background: #3bc06b;
	border-color: #4ed47f;
	background-image: none;
	position: relative;
}
.aa-form__agreement input[type="checkbox"]:checked::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: url("../assets/images/svg/5.svg");
	background-size: 10px 10px;
	background-position: center;
	background-repeat: no-repeat;
	filter: brightness(0) invert(1);
	pointer-events: none;
}
.aa-form__agreement input[type="checkbox"]:hover {
	border-color: #9ca3af;
}
.aa-form__agreement input[type="checkbox"]:focus {
	outline: none;
	box-shadow: 0 0 0 2px rgba(74, 222, 128, 0.35);
}

.aa-form__agreement-text {
	display: inline;
}

.aa-form__agreement a {
	color: var(--aa-primary);
	text-decoration: underline;
}

/* Footer */
.aa-footer {
	background: var(--aa-dark);
	color: #ffffff;
	padding: 48px 0;
}

.aa-footer__grid {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 32px;
	margin-bottom: 32px;
}

@media (min-width: 768px) {
	.aa-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.aa-footer__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

.aa-footer__logo {
	font-weight: 900;
	font-size: 20px;
	color: #ffffff!important;
	text-decoration: none;
}

.aa-footer__brand p {
	color: rgba(255, 255, 255, 0.6);
	font-size: 14px;
	line-height: 1.6;
	margin-top: 12px;
}

.aa-footer__column h3 {
	font-size: 16px;
	margin-bottom: 16px;
}

.aa-footer__column a {
	display: block;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	margin-bottom: 8px;
}

.aa-footer__column a:hover {
	color: var(--aa-primary);
}

.aa-footer__cta {
	margin-top: 12px;
}

.aa-footer__legal {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 20px;
	margin-bottom: 20px;
}

.aa-footer__legal p {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.4);
	line-height: 1.6;
}

.aa-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 20px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: flex-start;
}

@media (min-width: 640px) {
	.aa-footer__bottom {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}

.aa-footer__bottom p {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.4);
}

.aa-footer__links {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.aa-footer__links a {
	color: rgba(255, 255, 255, 0.4);
	text-decoration: none;
	font-size: 13px;
}

.aa-footer__links a:hover {
	color: var(--aa-primary);
}

/* Popup */
.aa-popup {
	position: fixed;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 16px;
	z-index: 100;
}

.aa-popup.is-open {
	display: flex;
}

.aa-popup__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(6px);
}

.aa-popup__dialog {
	position: relative;
	background: #ffffff;
	border-radius: 24px;
	max-width: 800px;
	width: 100%;
	overflow: hidden;
	z-index: 2;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.aa-popup__close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 32px;
	height: 32px;
	border-radius: 999px;
	border: none;
	background: #ef4444;
	color: #ffffff;
	font-size: 22px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	pointer-events: auto;
}

.aa-popup__body {
	display: flex;
	align-items: stretch;
}

.aa-popup__content {
	padding: 32px;
	flex: 1;
}

.aa-popup__variant {
	display: none;
}

.aa-popup__content h2 {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.35;
	margin-bottom: 16px;
	padding-right: 32px;
}

.aa-popup__form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.aa-popup__form input {
	padding: 12px 14px;
	border: 1px solid var(--aa-border);
	border-radius: 10px;
	font-size: 14px;
}

.aa-popup__error {
	color: #ef4444;
	font-size: 13px;
	min-height: 18px;
	margin-top: -4px;
	display: none;
}

.aa-popup__submit {
	padding: 20px 18px;
	font-size: 14px;
	max-width: 330px;
}

.aa-popup__success {
	display: none;
	padding: 32px;
}

.aa-popup__success .aa-popup__success-title {
	display: block;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 8px;
}

.aa-popup__success p {
	font-size: 16px;
}

.aa-popup__image {
	display: none;
	width: 270px;
	position: relative;
	flex-shrink: 0;
	align-items: flex-end;
	justify-content: flex-end;
}

.aa-popup__image img {
	width: 270px;
	height: auto;
	object-fit: contain;
	object-position: bottom;
}

@media (min-width: 640px) {
	.aa-popup__image {
		display: flex;
	}
}

.aa-popup.is-success .aa-popup__content {
	display: none;
}

.aa-popup.is-success .aa-popup__success {
	display: block;
}

/* Single usluga page */
.aa-single-usluga .aa-usluga-hero {
	position: relative;
	background-size: cover;
	background-position: center;
	background-color: #1a1a1a;
	color: #fff;
	padding: 40px 0 56px;
}

.aa-usluga-hero__inner {
	position: relative;
}

.aa-usluga-hero__breadcrumbs {
	margin-bottom: 24px;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: rgba(255, 255, 255, 0.6);
}

.aa-usluga-hero__breadcrumbs .breadcrumb,
.aa-usluga-hero__breadcrumbs a {
	color: inherit;
}

.aa-usluga-hero__breadcrumbs .breadcrumb_last,
.aa-usluga-hero__breadcrumbs [class*="breadcrumb_last"] {
	color: #fff;
}

.aa-usluga-hero__grid {
	display: grid;
	gap: 32px;
}

@media (min-width: 1024px) {
	.aa-usluga-hero__grid {
		grid-template-columns: 1fr 1fr;
		align-items: start;
		gap: 48px;
	}
}

.aa-usluga-hero__title {
	font-size: 28px;
	line-height: 1.2;
	font-weight: 700;
	margin: 0 0 16px;
	color: #fff;
}

@media (min-width: 768px) {
	.aa-usluga-hero__title {
		font-size: 40px;
	}
}

@media (min-width: 1024px) {
	.aa-usluga-hero__title {
		font-size: 48px;
	}
}

.aa-usluga-hero__price {
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 24px;
	color: #fff;
	font-family: inherit;
}

.aa-usluga-hero__price:last-child {
	margin-bottom: 24px;
}

.aa-usluga-hero__form-text {
	margin: 0 0 12px;
	font-size: 14px;
}
.aa-usluga-hero__form {
	display: flex;
	flex-direction: column;
	gap: 12px;
	max-width: 320px;
}
.aa-usluga-hero__form .aa-usluga-hero__phone {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--aa-border);
	border-radius: 10px;
	font-size: 14px;
}
.aa-usluga-hero__form-message.aa-form__message--error {
	color: #dc2626;
}
.aa-usluga-hero__form-message.aa-form__message--success {
	color: var(--aa-primary, #16a34a);
}

@media (min-width: 768px) {
	.aa-usluga-hero__price {
		font-size: 28px;
	}
}

@media (max-width: 767px) {
	.aa-usluga-hero__title,
	.aa-usluga-hero__price {
		max-width: 100%;
		overflow-wrap: break-word;
		word-wrap: break-word;
		min-width: 0;
	}
}

.aa-usluga-hero__benefits {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

@media (max-width: 767px) {
	.aa-usluga-hero .aa-usluga-hero__benefits {
		display: none;
	}
}

@media (min-width: 1024px) {
	.aa-usluga-hero__benefits {
		max-width: 550px;
		margin-left: 0;
	}
}

/* Блок бенефитов под героем — только на телефоне, сетка по 2, зелёная обводка */
.aa-usluga-benefits-outside {
	display: none;
}

@media (max-width: 767px) {
	.aa-usluga-benefits-outside {
		display: block;
		padding-left: 16px;
		padding-right: 16px;
		margin-top: 35px;
		margin-bottom: 24px;
	}
	.aa-usluga-benefits-outside__grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
		max-width: 100%;
		min-width: 0;
	}
	.aa-usluga-benefit--outside {
		border: 2px solid rgba(90, 208, 94, 1);
		min-width: 0;
		overflow-wrap: break-word;
		word-wrap: break-word;
	}
	.aa-usluga-benefit--outside .aa-usluga-benefit__text {
		min-width: 0;
	}
	.aa-usluga-benefit {
		padding: 5px !important;
	}
	.aa-usluga-benefit__icon {
		width: 50px;
		height: 50px;
	}
	.aa-usluga-benefit__text {
		font-size: 11px;
	}
}

.aa-usluga-benefit {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px;
	background: #fff;
	color: var(--aa-foreground);
	border-radius: 12px;
}

.aa-usluga-benefit__icon {
	flex-shrink: 0;
	width: 56px;
	height: 56px;
	color: var(--aa-primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.aa-usluga-benefit__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.aa-usluga-benefit__icon svg {
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.aa-usluga-benefit__text {
	font-size: 13px;
	font-weight: 500;
	line-height: 1.4;
	margin: 0;
}

.aa-usluga-description__content {
	max-width: 900px;
}

.aa-usluga-description__content h2 {
	font-size: 1.5rem;
	font-weight: 700;
	margin: 1.5em 0 0.5em;
}

.aa-usluga-description__content h2:first-child {
	margin-top: 0;
}

.aa-usluga-description__content p {
	margin: 0 0 1em;
	line-height: 1.6;
}

/* Когда нужна [услуга] */
.aa-usluga-symptoms__list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	max-width: 900px;
}

.aa-usluga-symptoms__item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.aa-usluga-symptoms__icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	color: var(--aa-primary);
}

.aa-usluga-symptoms__icon svg {
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
}

.aa-usluga-symptoms__text {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
}

@media (min-width: 768px) {
	.aa-usluga-symptoms__text {
		font-size: 16px;
	}
}

/* Примеры работ по [услуга] */
.aa-usluga-examples__list {
	display: flex;
	flex-direction: column;
	gap: 20px;
	max-width: 900px;
}

.aa-usluga-examples__item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.aa-usluga-examples__icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	color: var(--aa-primary);
}

.aa-usluga-examples__icon svg {
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
}

.aa-usluga-examples__text {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
}

.aa-usluga-examples__item--warning .aa-usluga-examples__text {
	font-weight: 500;
}

@media (min-width: 768px) {
	.aa-usluga-examples__text {
		font-size: 16px;
	}
}

/* Почему [услугу] лучше сделать у нас */
.aa-usluga-why__list {
	display: flex;
	flex-direction: column;
	gap: 20px;
	max-width: 900px;
}

.aa-usluga-why__item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.aa-usluga-why__icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	color: var(--aa-primary);
}

.aa-usluga-why__icon svg {
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
}

.aa-usluga-why__item p {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
}

@media (min-width: 768px) {
	.aa-usluga-why__item p {
		font-size: 16px;
	}
}

/* Сколько стоит [услуга] */
.aa-usluga-cost__text {
	max-width: 900px;
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
}

@media (min-width: 768px) {
	.aa-usluga-cost__text {
		font-size: 16px;
	}
}

/* Чем мы отличаемся (сравнение) */
.aa-usluga-compare__wrap {
	border: 1px solid var(--aa-border);
	border-radius: 16px;
	overflow: hidden;
}

@media (min-width: 1024px) {
	.aa-usluga-compare__wrap {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}
}

.aa-usluga-compare__col {
	padding: 24px 20px;
}

@media (min-width: 768px) {
	.aa-usluga-compare__col {
		padding: 40px;
	}
}

.aa-usluga-compare__col--other {
	background: rgba(241, 243, 248, 1);
}

.aa-usluga-compare__col--us {
	background: rgba(28, 28, 38, 1);
	color: #fff;
	border-radius: 10px;
}

.aa-usluga-compare__title {
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 24px;
}

@media (min-width: 768px) {
	.aa-usluga-compare__title {
		font-size: 26px;
	}
}

.aa-usluga-compare__subtitle {
	font-size: 18px;
	font-weight: 600;
	margin: 0 0 16px;
}

.aa-usluga-compare__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.aa-usluga-compare__list > li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 14px;
	line-height: 1.5;
}

@media (min-width: 768px) {
	.aa-usluga-compare__list > li {
		font-size: 16px;
	}
}

.aa-usluga-compare__list > li::before {
	content: "";
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	margin-top: 2px;
	background: url("../assets/images/svg/bad.svg") no-repeat center;
	background-size: contain;
}

.aa-usluga-compare__list--check > li::before {
	background-image: url("../assets/images/svg/check.svg");
}

.aa-usluga-compare__brand {
	margin-bottom: 24px;
}

.aa-usluga-compare__brand-logo {
	display: block;
	max-width: 160px;
	height: auto;
	object-fit: contain;
}

/* Как проходит [услуга] в нашем сервисе */
.aa-usluga-process__header {
	display: grid;
	gap: 24px;
	margin-bottom: 40px;
}

@media (min-width: 1024px) {
	.aa-usluga-process__header {
		grid-template-columns: 1fr 1fr;
		gap: 48px;
		align-items: start;
	}
}

.aa-usluga-process__title {
	font-size: 22px;
	font-weight: 700;
	margin: 0;
}

@media (min-width: 768px) {
	.aa-usluga-process__title {
		font-size: 26px;
	}
}

.aa-usluga-process__intro {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	color: var(--aa-muted);
}

@media (min-width: 768px) {
	.aa-usluga-process__intro {
		font-size: 16px;
	}
}

.aa-usluga-process__steps {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.aa-usluga-process__step {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.aa-usluga-process__step-num {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: 700;
	color: var(--aa-foreground);
}

@media (min-width: 768px) {
	.aa-usluga-process__step-num {
		font-size: 24px;
		width: 48px;
		height: 48px;
	}
}

.aa-usluga-process__step-text {
	flex: 1;
	font-size: 14px;
	line-height: 1.6;
}

.aa-usluga-process__step-text p {
	margin: 0 0 0.5em;
}

.aa-usluga-process__step-text p:last-child {
	margin-bottom: 0;
}

@media (min-width: 768px) {
	.aa-usluga-process__step-text {
		font-size: 16px;
	}
}

/* Бесплатная консультация мастера */
.aa-consultation {
	border-radius: 16px;
	overflow: hidden;
	background: var(--aa-border);
	border: 1px solid var(--aa-border);
}

@media (min-width: 1024px) {
	.aa-consultation {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}
}

.aa-consultation__image {
	order: -1;
	min-height: 220px;
	background: var(--aa-muted);
	position: relative;
	overflow: hidden;
}

.aa-consultation__image::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.6) 25%, rgba(255, 255, 255, 0) 55%);
	pointer-events: none;
	z-index: 1;
}

.aa-consultation__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

@media (min-width: 1024px) {
	.aa-consultation__image {
		order: 0;
		min-height: 350px;
	}
}

@media (max-width: 767px) {
	.aa-avtoservis-booking .aa-consultation__image {
		display: none;
	}
}

.aa-consultation__form-wrap {
	padding: 24px;
	background: #fff;
}

@media (min-width: 1024px) {
	.aa-consultation__form-wrap {
		padding: 40px;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
}

.aa-consultation__text {
	font-size: 16px;
	font-weight: 600;
	margin: 0 0 16px;
	line-height: 1.4;
}

@media (min-width: 1024px) {
	.aa-consultation__text {
		font-size: 18px;
		margin-bottom: 20px;
	}
}

.aa-consultation__phone {
	width: 100%;
	padding: 12px 0;
	margin-bottom: 16px;
	border: none;
	border-bottom: 2px solid var(--aa-foreground);
	background: transparent;
	font-size: 16px;
	font-family: inherit;
	outline: none;
}

.aa-consultation__phone::placeholder {
	color: var(--aa-muted);
}

.aa-consultation__row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px 24px;
}

.aa-consultation__row .aa-consultation__btn {
	margin-bottom: 0;
	flex-shrink: 0;
}

.aa-consultation__row .aa-form__agreement {
	flex: 1;
	min-width: 200px;
}

.aa-consultation__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
}

.aa-consultation__btn-icon {
	flex-shrink: 0;
	stroke: currentColor;
	fill: none;
	stroke-width: 2;
}

@media (min-width: 1024px) {
	.aa-consultation__btn {
		margin-bottom: 0;
	}
}

.aa-consultation__agreement {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin: 0;
	font-size: 12px;
	line-height: 1.5;
	color: var(--aa-muted);
}

.aa-consultation__agreement svg {
	flex-shrink: 0;
	margin-top: 2px;
	color: var(--aa-primary);
	stroke: currentColor;
	fill: none;
	stroke-width: 2;
}

@media (min-width: 1024px) {
	.aa-consultation__form-wrap {
		flex-direction: column;
		align-items: flex-start;
	}
	.aa-consultation__phone {
		margin-bottom: 20px;
	}
	.aa-consultation__agreement {
		margin-top: 12px;
	}
}

/* Popular services slider on single usluga */
.aa-usluga-popular__slider {
	position: relative;
}

.aa-usluga-popular__track {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	padding: 8px 0;
}

.aa-usluga-popular__track::-webkit-scrollbar {
	display: none;
}

.aa-usluga-popular__card {
	scroll-snap-align: start;
	flex: 0 0 200px;
	min-width: 200px;
	border: 1px solid var(--aa-border);
	border-radius: 16px;
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	background: #fff;
}

@media (min-width: 768px) {
	.aa-usluga-popular__card {
		flex: 0 0 220px;
		min-width: 220px;
	}
}

.aa-usluga-popular__card-title {
	font-size: 14px;
	font-weight: 700;
	margin: 0;
	line-height: 1.3;
}

.aa-usluga-popular__card-title a {
	color: inherit;
	text-decoration: none;
}

.aa-usluga-popular__card-title a:hover {
	color: var(--aa-primary);
}

.aa-usluga-popular__card-price {
	font-size: 13px;
	color: var(--aa-muted);
	margin: 0;
}

.aa-usluga-popular__card-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: auto;
	fill: #fff;
	color: #fff !important;
}

.aa-usluga-popular__card-btn svg {
	flex-shrink: 0;
	stroke: currentColor;
	fill: none;
	stroke-width: 2;
}

.aa-usluga-popular__btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid var(--aa-border);
	background: #fff;
	display: none;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 2;
	color: var(--aa-foreground);
	transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.aa-usluga-popular__btn svg {
	width: 20px;
	height: 20px;
	stroke: currentColor;
	fill: none;
	stroke-width: 2;
}

.aa-usluga-popular__btn--prev {
	left: -12px;
}

.aa-usluga-popular__btn--next {
	right: -12px;
	background: var(--aa-primary);
	border-color: var(--aa-primary);
	color: #fff;
}

.aa-usluga-popular__btn--next:hover {
	background: #1faa55;
	border-color: #1faa55;
}

.aa-usluga-popular__btn--prev:hover {
	border-color: var(--aa-primary);
	color: var(--aa-primary);
}

@media (min-width: 1024px) {
	.aa-usluga-popular__btn {
		display: inline-flex;
	}
}

/* Скрыть стрелки, если скроллить некуда */
.aa-usluga-popular__slider--no-scroll .aa-usluga-popular__btn {
	display: none !important;
}

@media (max-width: 1023px) {
	.aa-usluga-popular__slider {
		padding: 0;
	}
}

/* FAQ on single usluga */
.aa-usluga-faq__list {
	border-top: 1px solid var(--aa-border);
}

.aa-usluga-faq__item {
	border-bottom: 1px solid var(--aa-border);
}

.aa-usluga-faq__question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 0;
	text-align: left;
	background: none;
	border: none;
	cursor: pointer;
	font: inherit;
	color: inherit;
}

.aa-usluga-faq__question-text {
	margin: 0;
	font-size: 16px;
	font-weight: 600;
}

.aa-usluga-faq__icon {
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	border-radius: 50%;
	background: var(--aa-border);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.2s, background 0.2s;
}

.aa-usluga-faq__icon svg {
	width: 20px;
	height: 20px;
	stroke: currentColor;
	fill: none;
	stroke-width: 2;
}

.aa-usluga-faq__item.is-open .aa-usluga-faq__icon {
	background: var(--aa-primary);
	color: #fff;
	transform: rotate(180deg);
}

.aa-usluga-faq__answer {
	padding: 0 0 20px 0;
	padding-right: 56px;
}

.aa-usluga-faq__answer p {
	margin: 0 0 0.5em;
	font-size: 14px;
	line-height: 1.6;
	color: var(--aa-muted);
}

.aa-usluga-faq__answer p:last-child {
	margin-bottom: 0;
}

/* --- Reviews (Yandex) --- */
.aa-reviews {
	display: none;
	/* background: #1a1a1a; */
	color: #000000;
}

@media (min-width: 1200px) {
	.aa-reviews {
		display: block;
	}
}

.aa-reviews__head {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 24px;
	margin-bottom: 32px;
	justify-content: space-between;
}

.aa-reviews__title {
	margin: 0;
	font-size: clamp(1.25rem, 2.5vw, 1.875rem);
	font-weight: 700;
	flex: 0 1 auto;
	min-width: 0;
}

.aa-reviews__yandex {
	flex-shrink: 0;
}

.aa-reviews__yandex-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	border-radius: 12px;
	background: #f1f2f4;
}

.aa-reviews__yandex-rating {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0;
}

.aa-reviews__yandex-logo {
	display: block;
	width: 32px;
	height: 32px;
	flex-shrink: 0;
	object-fit: contain;
}

.aa-reviews__stars {
	display: flex;
	gap: 2px;
}

.aa-reviews__star {
	color: #fbbf24;
	fill: #fbbf24;
}

.aa-reviews__stars .aa-reviews__star {
	width: 24px;
	height: 24px;
}

.aa-reviews__star-half {
	display: inline-block;
	width: 12px;
	overflow: hidden;
}

.aa-reviews__star-half .aa-reviews__star {
	display: block;
	width: 24px;
	height: 24px;
}

.aa-reviews__yandex-label {
	font-size: 12px;
	color: #999;
}

.aa-reviews__stats {
	margin: 0;
	font-size: 14px;
	flex-shrink: 0;
}

@media (min-width: 768px) {
	.aa-reviews__stats {
		font-size: 16px;
	}
}

.aa-reviews__image-wrap {
	width: 100%;
	line-height: 0;
}

.aa-reviews__image-wrap img {
	width: 100%;
	height: auto;
	display: block;
	vertical-align: middle;
}

/* --- Single avtoservis (location page) --- */
.aa-single-avtoservis .aa-avtoservis-hero {
	position: relative;
	background-size: cover;
	background-position: center;
	background-color: #2a2a2a;
	color: #fff;
	padding: 32px 0 48px;
}

.aa-avtoservis-hero__inner {
	position: relative;
}

.aa-avtoservis-hero__breadcrumbs {
	margin-bottom: 24px;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: rgba(255, 255, 255, 0.6);
}

.aa-avtoservis-hero__breadcrumbs .breadcrumb,
.aa-avtoservis-hero__breadcrumbs a {
	color: inherit;
}

.aa-avtoservis-hero__breadcrumbs .breadcrumb_last,
.aa-avtoservis-hero__breadcrumbs [class*="breadcrumb_last"] {
	color: #fff;
}

.aa-avtoservis-hero__title {
	font-size: 28px;
	line-height: 1.2;
	font-weight: 700;
	margin: 0;
	color: #fff;
}

@media (min-width: 768px) {
	.aa-avtoservis-hero__title {
		font-size: 40px;
	}
}

@media (min-width: 1024px) {
	.aa-avtoservis-hero__title {
		font-size: 48px;
	}
}

.aa-avtoservis-address__grid {
	display: grid;
	gap: 24px;
}

@media (min-width: 1024px) {
	.aa-avtoservis-address__grid {
		grid-template-columns: 1fr 2.5fr;
		align-items: start;
		gap: 32px;
	}
}

.aa-avtoservis-address__info {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.aa-avtoservis-address__label {
	font-weight: 700;
	margin: 0 0 4px;
	font-size: 14px;
	color: var(--aa-primary);
}

.aa-avtoservis-address__value {
	margin: 0;
	font-size: 16px;
	line-height: 1.5;
}

.aa-avtoservis-address__phone {
	font-size: 20px;
	font-weight: 700;
	color: var(--aa-primary);
	text-decoration: none;
}

.aa-avtoservis-address__phone:hover {
	text-decoration: underline;
}

.aa-avtoservis-address__map-wrap {
	position: relative;
	min-height: 280px;
	border-radius: 12px;
	overflow: hidden;
	background: var(--aa-border);
}

@media (min-width: 1024px) {
	.aa-avtoservis-address__map-wrap {
		min-height: 320px;
	}
}

.aa-avtoservis-address__map-iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	min-height: 280px;
	display: block;
}

@media (min-width: 1024px) {
	.aa-avtoservis-address__map-iframe {
		min-height: 320px;
	}
}

.aa-avtoservis-address__map-open {
	position: absolute;
	bottom: 12px;
	right: 12px;
	z-index: 2;
	padding: 8px 14px;
	font-size: 13px;
	font-weight: 600;
	color: #fff;
	background: rgba(0, 0, 0, 0.7);
	border-radius: 8px;
	text-decoration: none;
	transition: background 0.2s;
}

.aa-avtoservis-address__map-open:hover {
	background: rgba(0, 0, 0, 0.85);
	color: #fff;
}

.aa-avtoservis-address__map-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	min-height: 280px;
	padding: 24px;
	text-align: center;
	color: var(--aa-muted);
	text-decoration: none;
	background: var(--aa-border);
}

.aa-avtoservis-address__map-link:hover {
	background: #e0e0e0;
	color: var(--aa-foreground);
}

.aa-avtoservis-address__map-placeholder {
	font-size: 14px;
}

.aa-avtoservis-description__content {
	font-size: 16px;
	line-height: 1.6;
}

.aa-avtoservis-description__content p {
	margin: 0 0 1em;
}

.aa-avtoservis-nearby__slider {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 0 8px;
}

@media (min-width: 1024px) {
	.aa-avtoservis-nearby__slider {
		padding: 0 48px;
	}
}

.aa-avtoservis-nearby__btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid var(--aa-border);
	background: #fff;
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 2;
	cursor: pointer;
	transition: background 0.2s, border-color 0.2s;
}

.aa-avtoservis-nearby__btn:hover {
	background: var(--aa-border);
}

.aa-avtoservis-nearby__btn--prev {
	left: -8px;
}

.aa-avtoservis-nearby__btn--next {
	right: -8px;
	border-color: var(--aa-primary);
	color: var(--aa-primary);
}

.aa-avtoservis-nearby__btn--next:hover {
	background: var(--aa-primary);
	color: #fff;
}

@media (min-width: 1024px) {
	.aa-avtoservis-nearby__btn {
		display: inline-flex;
	}
}

.aa-avtoservis-nearby__track {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
	flex: 1;
	padding: 4px 0;
}

.aa-avtoservis-nearby__track::-webkit-scrollbar {
	display: none;
}

.aa-avtoservis-nearby__card {
	flex: 0 0 auto;
	width: 180px;
	scroll-snap-align: start;
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 16px;
	border: 1px solid var(--aa-border);
	border-radius: 12px;
	background: #fff;
}

@media (min-width: 768px) {
	.aa-avtoservis-nearby__card {
		width: 200px;
	}
}

.aa-avtoservis-nearby__address {
	margin: 0;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	flex: 1;
}

.aa-avtoservis-nearby__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin-top: auto;
	fill: #fff;
	color: #fff !important;
}

/* List markers: SVG icon for all ul li in .aa-home (compare section keeps its own icons) */
/* Маркеры списка li.svg только в блоке текста (услуги, авто, автосервис) */
.content-area-single-text ul {
	list-style: none;
	padding-left: 0;
	margin: 0 0 1em;
}
.content-area-single-text ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.25em;
	width: 2em;
	height: 2em;
	background: url("../assets/images/svg/li.svg") no-repeat center;
	background-size: contain;
}
.content-area-single-text ul li {
	list-style: none;
	padding-left: calc(2em + 10px);
	position: relative;
	margin-bottom: 0.35em;
	padding: 6px 0 6px calc(2em + 10px);
	margin-bottom: 14px;
}

@media (max-width: 767px) {
	.content-area-single-text ul li::before {
		width: 1.7em;
	}
	.content-area-single-text ul li {
		padding: 6px 0 0 calc(2em + 10px);
	}
}

/* Нумерованный список: крупные жирные зелёные цифры */
.content-area-single-text ol {
	list-style: none;
	counter-reset: ol-num;
	padding-left: 0;
	margin: 0 0 1em;
}
.content-area-single-text ol li {
	position: relative;
	padding: 0.5em 0 0.6em 2.5em;
	margin-bottom: 1.5em;
}
.content-area-single-text ol li::before {
	content: counter(ol-num);
	counter-increment: ol-num;
	position: absolute;
	left: 0;
	top: -0.05em;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.2;
	color: #4ade80;
}
@media (min-width: 768px) {
	.content-area-single-text ol li::before {
		font-size: 2.5rem;
	}
}

.aa-brand__letters {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--aa-foreground);
}

/* Single Auto page: hero */
.aa-single-auto .aa-auto-hero {
	position: relative;
	background-size: cover;
	background-position: center;
	background-color: #1a1d29;
	color: #fff;
	padding: 40px 0 48px;
}
.aa-auto-hero__inner {
	position: relative;
}
.aa-auto-hero__title {
	font-size: 28px;
	line-height: 1.2;
	font-weight: 700;
	margin: 0 0 12px;
	color: #fff;
}
@media (min-width: 768px) {
	.aa-auto-hero__title {
		font-size: 40px;
	}
}
@media (min-width: 1024px) {
	.aa-auto-hero__title {
		font-size: 48px;
	}
}
.aa-auto-hero__subtitle {
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 32px;
	color: #fff;
	line-height: 1.3;
}
@media (min-width: 768px) {
	.aa-auto-hero__subtitle {
		font-size: 22px;
	}
}
.aa-auto-hero__card {
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	overflow: hidden;
	border-radius: 16px;
	background: #f5f5f5;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
@media (min-width: 768px) {
	.aa-auto-hero__card {
		display: flex;
		flex-direction: row;
	}
}
/* Левая часть: форма — 2/3 ширины, задаёт высоту карточки */
.aa-auto-hero__card-form {
	padding: 24px 20px;
	min-width: 0;
}
@media (min-width: 768px) {
	.aa-auto-hero__card-form {
		flex: 0 0 50.666667%;
		padding: 32px 40px;
	}
}
.aa-auto-hero__card-text {
	font-size: 14px;
	font-weight: 600;
	color: var(--aa-foreground);
	margin: 0 0 16px;
}
@media (min-width: 768px) {
	.aa-auto-hero__card-text {
		font-size: 16px;
	}
}
.aa-auto-hero__card-phone {
	display: block;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	padding: 10px 0 !important;
	margin-bottom: 20px;
	font-size: 16px;
	color: var(--aa-foreground, #1c2233) !important;
	background: transparent !important;
	border: none !important;
	border-bottom: 2px solid #4ade80 !important;
	outline: none;
	transition: border-color 0.2s !important;
}
.aa-auto-hero__card-phone:focus {
	border-bottom-color: #22c55e;
}
.aa-auto-hero__card-phone::placeholder {
	color: var(--aa-muted, #9ca3af);
}
.aa-auto-hero__card-row {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 12px;
}
@media (min-width: 640px) {
	.aa-form__agreement {
		margin-top: 10px;
	}
}
.aa-auto-hero__card-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.aa-auto-hero__card-btn-icon {
	flex-shrink: 0;
	stroke: currentColor;
	fill: none;
	stroke-width: 2;
}
/* Правая часть: картинка — 1/3 ширины, не участвует в расчёте высоты */
.aa-auto-hero__card-image {
	display: none;
}
@media (min-width: 768px) {
	.aa-auto-hero__card-image {
		display: block;
		position: absolute;
		right: 0;
		top: 0;
		bottom: 0;
		width: 33.333333%;
	}
	.aa-auto-hero__card-image::before {
		content: "";
		position: absolute;
		inset: 0;
		background: linear-gradient(to right, rgb(245 245 245) 0%, rgb(245 245 245 / 6%) 25%, rgb(255 255 255 / 0%) 55%);
		pointer-events: none;
		z-index: 1;
	}
}
.aa-auto-hero__card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Single Auto: specs (generation / modification) */
.aa-auto-specs__selects {
	display: grid;
	gap: 16px;
	margin-bottom: 32px;
	min-width: 0;
	max-width: 100%;
}
@media (min-width: 640px) {
	.aa-auto-specs__selects {
		grid-template-columns: 1fr 1fr;
	}
}
.aa-auto-specs__field {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
}
.aa-auto-specs__select-wrap {
	min-width: 0;
}
.aa-auto-specs__label {
	font-size: 14px;
	font-weight: 600;
	color: var(--aa-foreground);
}
.aa-auto-specs__select {
	width: 100%;
	max-width: 100%;
	height: 48px;
	padding: 0 20px;
	font-size: 15px;
	color: var(--aa-foreground);
	background: #fff;
	border: 2px solid var(--aa-border);
	border-radius: 999px;
	outline: none;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	background-size: 18px;
	padding-right: 44px;
}
.aa-auto-specs__select--mod {
	border-color: var(--aa-primary);
	color: var(--aa-primary);
}

/* Custom dropdown (reference style) — when enhanced, native select is hidden */
.aa-auto-specs__select-wrap {
	position: relative;
	width: 100%;
}
.aa-auto-specs__select-wrap .aa-auto-specs__select {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 48px;
	opacity: 0;
	pointer-events: none;
	z-index: 0;
}
.aa-auto-specs__select-trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 48px;
	padding: 0 20px 0 20px;
	font-size: 15px;
	color: var(--aa-foreground);
	background: #fff;
	border: 2px solid var(--aa-border);
	border-radius: 15px;
	cursor: pointer;
	position: relative;
	z-index: 1;
	transition: border-color 0.2s, box-shadow 0.2s;
}
.aa-auto-specs__select-trigger:hover {
	border-color: var(--aa-muted);
}
.aa-auto-specs__select-trigger.is-open {
	border-color: var(--aa-primary);
	box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}
.aa-auto-specs__select-wrap--mod .aa-auto-specs__select-trigger {
	border-color: var(--aa-primary);
	color: var(--aa-primary);
}
.aa-auto-specs__select-wrap--mod .aa-auto-specs__select-trigger:hover,
.aa-auto-specs__select-wrap--mod .aa-auto-specs__select-trigger.is-open {
	border-color: #22c55e;
	color: #22c55e;
}
.aa-auto-specs__select-trigger.is-disabled {
	opacity: 0.65;
	cursor: not-allowed;
}
.aa-auto-specs__select-trigger__text {
	flex: 1;
	text-align: left;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.aa-auto-specs__select-trigger__text.is-placeholder {
	color: var(--aa-muted);
}
.aa-auto-specs__select-trigger__icon {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	margin-left: 8px;
	stroke: currentColor;
	fill: none;
	stroke-width: 2;
	transition: transform 0.2s;
}
.aa-auto-specs__select-trigger.is-open .aa-auto-specs__select-trigger__icon {
	transform: rotate(180deg);
}
.aa-auto-specs__select-dropdown {
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	right: 0;
	z-index: 50;
	max-height: 240px;
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--aa-border);
	border-radius: 8px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	display: none;
}
.aa-auto-specs__select-dropdown.is-open {
	display: block;
}
.aa-auto-specs__select-list {
	max-height: 240px;
	overflow-y: auto;
	padding: 4px;
}
/* Green scrollbar (reference audi-a4-repair) */
.aa-auto-specs__select-list::-webkit-scrollbar {
	width: 6px;
}
.aa-auto-specs__select-list::-webkit-scrollbar-track {
	background: #e5e7eb;
	border-radius: 3px;
}
.aa-auto-specs__select-list::-webkit-scrollbar-thumb {
	background: #4ade80;
	border-radius: 3px;
}
.aa-auto-specs__select-list::-webkit-scrollbar-thumb:hover {
	background: #22c55e;
}
.aa-auto-specs__select-list {
	scrollbar-width: thin;
	scrollbar-color: #4ade80 #e5e7eb;
}
.aa-auto-specs__select-option {
	display: block;
	width: 100%;
	padding: 10px 12px;
	text-align: left;
	font-size: 14px;
	color: var(--aa-foreground);
	background: none;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: background 0.15s;
}
.aa-auto-specs__select-option:hover {
	background: rgba(74, 222, 128, 0.12);
}
.aa-auto-specs__select-option.is-selected {
	background: rgba(74, 222, 128, 0.2);
	color: var(--aa-foreground);
}

.aa-auto-specs__subtitle {
	font-size: 20px;
	font-weight: 700;
	margin: 24px 0 12px;
}
.aa-auto-specs__photos {
	margin-top: 24px;
}
.aa-auto-specs__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 16px;
	margin-top: 12px;
}
.aa-auto-specs__photo-wrap {
	border: 1px solid var(--aa-border);
	padding: 12px;
	background: #fff;
	border-radius: 8px;
}
.aa-auto-specs__photo-wrap img {
	width: 100%;
	height: auto;
	display: block;
}
.aa-auto-specs__values {
	margin-top: 24px;
}
/* Specs table: layout and styles from audi-a4-repair reference */
.aa-auto-specs__table-wrap {
	margin-top: 12px;
	overflow-x: auto;
	border: 1px solid var(--aa-border);
	border-radius: 8px;
}
.aa-auto-specs__table-wrap .aa-auto-specs__table {
	width: 100%;
	min-width: 600px;
	border-collapse: collapse;
	border: none;
	border-radius: 0;
	margin: 0;
}
.aa-auto-specs__table thead tr {
	background: rgba(90, 208, 94, 1);
}
.aa-auto-specs__table thead th {
	padding: 12px 24px;
	text-align: left;
	font-size: 14px;
	font-weight: 600;
	color: #ffffff;
	border: none;
	border-right: 1px solid var(--aa-border);
}
.aa-auto-specs__table thead th:last-child {
	border-right: none;
}
.aa-auto-specs__table tbody tr {
	border-top: 1px solid var(--aa-border);
}
.aa-auto-specs__table tbody td {
	padding: 14px 24px;
	font-size: 14px;
	font-weight: 500;
	color: var(--aa-foreground);
	border-right: 1px solid var(--aa-border);
}
.aa-auto-specs__table tbody td:last-child {
	border-right: none;
}

/* Третий столбец (Группа) скрыт на всех экранах */
.aa-auto-specs__table thead th:nth-child(3),
.aa-auto-specs__table tbody td:nth-child(3) {
	display: none;
}

/* На мобильной: только 2 столбца (Характеристика, Значение), без горизонтального скролла */
@media (max-width: 767px) {
	.aa-auto-specs__table-wrap {
		overflow-x: hidden;
		max-width: 100%;
	}
	.aa-auto-specs__table-wrap .aa-auto-specs__table {
		min-width: 0;
		width: 100%;
		table-layout: fixed;
	}
	.aa-auto-specs__table thead th,
	.aa-auto-specs__table tbody td {
		padding-left: 12px;
		padding-right: 12px;
		word-wrap: break-word;
		overflow-wrap: break-word;
	}
}

.aa-auto-specs__empty,
.aa-auto-specs__error {
	margin: 12px 0 0;
	font-size: 14px;
	color: var(--aa-muted);
}
.aa-auto-specs__error {
	color: #dc2626;
}
.aa-usluga-description{
	padding: 0;
}
@media screen and (max-width: 782px) {

	.aa-auto-hero__card-row {
		display: grid;
	}
}

/* ========== HTML Sitemap page ========== */
.aa-sitemap .aa-sitemap__content {
	max-width: 800px;
	margin-top: 1rem;
}
.aa-sitemap__main-title {
	margin-bottom: 0.5em;
}
.aa-sitemap__section {
	margin-bottom: 2rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid var(--aa-border);
}
.aa-sitemap__section:last-of-type {
	border-bottom: none;
}
.aa-sitemap__section-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--aa-foreground);
	margin: 0 0 0.75rem;
}
.aa-sitemap__list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.aa-sitemap__list > li {
	margin-bottom: 0.5rem;
}
.aa-sitemap__list > li > a {
	color: var(--aa-foreground);
	text-decoration: none;
}
.aa-sitemap__list > li > a:hover {
	color: var(--aa-primary);
	text-decoration: underline;
}
.aa-sitemap__list--tree .aa-sitemap__sublist {
	list-style: none;
	margin: 0.25rem 0 0.75rem 1.25rem;
	padding: 0;
}
.aa-sitemap__list--tree .aa-sitemap__sublist li {
	margin-bottom: 0.35rem;
}
.aa-sitemap__list--tree .aa-sitemap__sublist a {
	color: var(--aa-muted);
	font-size: 0.95rem;
}
.aa-sitemap__list--tree .aa-sitemap__sublist a:hover {
	color: var(--aa-primary);
}