
/* ===================== Новые инфоблоки услуг ===================== */

/* --- Вертикальный шаг как у остальных блоков темы (margin-top 182 -> 150 -> 120 -> 100) --- */
.breakdowns,
.price,
.specialists,
.reviews,
.faq { margin-top: 182px; }
@media (max-width: 61.99875em) {
	.breakdowns, .price, .specialists, .reviews, .faq { margin-top: 150px; }
}
@media (max-width: 47.99875em) {
	.breakdowns, .price, .specialists, .reviews, .faq { margin-top: 120px; }
}
@media (max-width: 29.99875em) {
	.breakdowns, .price, .specialists, .reviews, .faq { margin-top: 100px; }
}

/* --- Поломки --- */
.breakdowns { padding: 0; }
.breakdowns__title { margin-bottom: 45px; }
.breakdowns__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; grid-auto-rows: 1fr; }
.breakdowns__item { height: 100%; }
.breakdowns__img { position: relative; background: #f0f2f5; aspect-ratio: 1 / 1; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 14px 10px; text-align: center; gap: 10px; box-sizing: border-box; }
.breakdowns__pic { flex: 1 1 auto; min-height: 0; width: 100%; display: flex; align-items: center; justify-content: center; }
.breakdowns__pic img { max-width: 92%; max-height: 92%; object-fit: contain; }
.breakdowns__badge { position: absolute; top: 10px; right: 10px; width: 22px; height: 22px; border-radius: 50%; background: #fd0000; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 15px; line-height: 1; }
.breakdowns__name { flex: 0 0 auto; color: #5c8ee5; font-size: 14px; line-height: 1.3; }

/* --- Прайс --- */
.price { padding: 0; }
.price__title { margin-bottom: 45px; }
.price__row { display: grid; grid-template-columns: 2fr 1fr 1fr; padding: 16px 20px; align-items: center; gap: 12px; }
.price__row:nth-child(even) { background: #fafbfc; }
.price__row--head { background: none !important; color: #828a99; font-size: 12px; text-transform: uppercase; letter-spacing: .5px; border-bottom: 1px solid #ebebf0; }
.price__name { font-weight: 600; color: #000; }
.price__value, .price__guar { color: #828a99; }
.price__row.is-hidden { display: none; }
.price__more { margin: 22px auto 0; background: none; border: none; display: inline-flex; }

/* --- Специалисты --- */
.specialists { padding: 0; }
.specialists__title { margin-bottom: 45px; }
.specialists__slider { position: relative; }
.specialists__card { display: flex; flex-direction: column; background: #fff; border: 1px solid #ebebf0; height: 100%; box-sizing: border-box; text-align: center; }
.specialists__photo { width: 100%; }
.specialists__photo img { width: 100%; height: 360px; object-fit: cover; display: block; }
.specialists__info { padding: 20px 18px; }
.specialists__name { font-weight: 700; font-size: 19px; color: #000; }
.specialists__role { color: #828a99; font-size: 15px; margin: 6px 0 12px; }
.specialists__exp { font-size: 15px; color: #000; }
.specialists__exp span { color: #828a99; text-transform: uppercase; font-size: 12px; letter-spacing: .4px; }
.specialists__rating { margin-top: 10px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.specialists__rating-num { font-size: 14px; color: #828a99; }
.specialists__nav { display: flex; gap: 10px; margin-top: 24px; }
.specialists__nav .btn { padding: 0; width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; background-color: #5c8ee5; }
.specialists__nav .btn svg { width: 16px; height: 16px; }

/* --- Звёзды --- */
.stars { display: inline-flex; gap: 2px; }
.stars .star { color: #d9dde3; font-size: 15px; line-height: 1; }
.stars .star.is-on { color: #f5b301; }

/* --- Отзывы --- */
.reviews { padding: 0; }
.reviews__title { margin-bottom: 45px; }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.reviews__item { background: #fff; border: 1px solid #ebebf0; padding: 20px; }
.reviews__meta { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin: 12px 0; }
.reviews__name { font-weight: 700; color: #000; }
.reviews__date { color: #828a99; font-size: 13px; }
.reviews__text { color: #828a99; font-size: 14px; line-height: 1.55; }

/* --- Бренды: логотипы по центру ячейки --- */
.aerosol__brand { display: flex; align-items: center; justify-content: center; }
.aerosol__brand .aerosol__image { width: 100%; }

/* --- FAQ --- */
.faq { padding: 0; }
.faq__container { display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; align-items: start; }
.faq__subtitle { color: #5c6b82; margin: 16px 0 24px; }
.faq__btn { padding: 16px 32px; }
.faq__list { display: flex; flex-direction: column; gap: 14px; }
.faq__item { background: #fff; border: 1px solid #ebebf0; overflow: hidden; transition: background-color .35s ease, border-color .35s ease; }
.faq__item.is-open { background: #5c8ee5; border-color: #5c8ee5; }
.faq__q { width: 100%; background: none; border: none; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 22px 24px; cursor: pointer; font-size: 16px; font-weight: 600; color: #000; transition: color .3s ease; }
.faq__item.is-open .faq__q { color: #fff; }
.faq__icon { position: relative; flex: 0 0 26px; width: 26px; height: 26px; border-radius: 50%; transition: background-color .3s ease; }
.faq__icon::before, .faq__icon::after { content: ''; position: absolute; top: 50%; left: 50%; background: #5c8ee5; transition: transform .35s ease, background-color .3s ease; }
.faq__icon::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.faq__icon::after { width: 2px; height: 14px; transform: translate(-50%, -50%); }
.faq__item.is-open .faq__icon { background: rgba(255, 255, 255, .2); }
.faq__item.is-open .faq__icon::before,
.faq__item.is-open .faq__icon::after { background: #fff; }
.faq__item.is-open .faq__icon::before { transform: translate(-50%, -50%) rotate(45deg); }
.faq__item.is-open .faq__icon::after { transform: translate(-50%, -50%) rotate(45deg); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a-inner { min-height: 0; overflow: hidden; color: rgba(255, 255, 255, .85); line-height: 1.6; padding: 0 24px; }
.faq__item.is-open .faq__a-inner { padding: 0 24px 22px; }

@media (max-width: 1240px) {
	.breakdowns__grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 992px) {
	.breakdowns__grid { grid-template-columns: repeat(3, 1fr); }
	.reviews__grid { grid-template-columns: repeat(2, 1fr); }
	.faq__container { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
	.breakdowns__grid { grid-template-columns: repeat(2, 1fr); }
	.reviews__grid { grid-template-columns: 1fr; }
	.price__row { grid-template-columns: 1.6fr 1fr .8fr; padding: 12px; font-size: 13px; }
	.specialists__photo img { height: 300px; }
}
