.call-us__header {
    font-weight: 700;
    font-size: 30px;
    line-height: 25px;
    margin-bottom: 20px;
}

.call-us__info--home .call-us__address {
    margin-bottom: 10px;
    margin-top: 30px;
}

/* Home page hero */
.home-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    padding-top: 10px;
}

.home-hero__title {
    font-weight: 700;
    font-size: 42px;
    line-height: 1.15;
    margin: 0 0 28px;
    color: #000;
    font-style: italic;
}

.home-hero__accent {
    color: #EE463E;
}

.home-hero__features {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.home-hero__feature {
    position: relative;
    padding-left: 18px;
    font-size: 16px;
    line-height: 1.3;
    color: #000;
}

.home-hero__feature::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 8px;
    height: 8px;
    background-color: #EE463E;
}

.home-hero__features--mobile {
    display: none;
}

.home-hero__visual {
    position: relative;
    text-align: center;
}

.home-hero__img {
    display: block;
    width: 100%;
    max-width: 520px;
    height: auto;
    margin: 0 auto;
}

.home-hero__badge {
    display: none;
}

.form__actions--repair {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 360px;
}

.form__btn--outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
}

@media screen and (max-width: 992px) {
    .home-hero {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 40px;
        padding-top: 0;
    }

    .home-hero__content {
        order: 1;
    }

    .home-hero__visual {
        order: 2;
    }

    .home-hero__title {
        font-size: 26px;
        line-height: 1.25;
        margin-bottom: 18px;
        text-align: left;
    }

    .home-hero__features--desktop {
        display: none;
    }

    .home-hero__features--mobile {
        display: flex;
    }

    .home-hero__feature {
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0.02em;
    }

    .home-hero__feature::before {
        width: 6px;
        height: 6px;
        top: 0.5em;
    }

    .home-hero__badge {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 108px;
        height: 108px;
        margin: 0;
        padding: 14px;
        border-radius: 50%;
        background-color: #EE463E;
        color: #fff;
        font-weight: 700;
        font-size: 12px;
        line-height: 1.2;
        text-align: center;
        box-sizing: border-box;
    }

    .form__actions--repair .form__btn--outline {
        display: inline-flex;
    }
}

@media screen and (min-width: 993px) {
    .form__actions--repair .form__btn--outline {
        display: none;
    }
}

@media screen and (max-width: 576px) {
    .home-hero__title {
        font-size: 22px;
    }

    .home-hero__features {
        gap: 10px 16px;
    }

    .home-hero__badge {
        width: 92px;
        height: 92px;
        font-size: 11px;
        padding: 10px;
    }

    .form__actions--repair {
        max-width: none;
    }
}

.additional-repair-services__list {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    gap: 10px;
}

.additional-repair-services__item {
    width: 100%;
    padding: 10px;
    border-bottom: solid 1px #D9D9D9;
    display: flex;
    gap: 15px;
    justify-content: space-between;
}

.additional-repair-services__name {
    margin-bottom: 16px;
}

.additional-repair-services__price {
    font-weight: 700;
    font-size: 20px;
    margin-top: 16px;
    margin-bottom: 16px;
    color: #000000;
    min-width: 110px;
}

@media screen and (max-width: 460px) {
    .additional-repair-services__item {
        gap: 0;
        flex-direction: column;
    }
}

@media screen and (max-width: 992px) {
    .additional-repair-services__list {
        flex-direction: column;
    }

    .additional-repair-services__item {
        width: auto;
        max-width: 100%;
    }

    .additional-repair-services__name {
        margin-bottom: 4px;
    }

    .additional-repair-services__price {
        margin-bottom: 4px;
    }
}

/* Сайдбара на этих доменах нет - контент занимает всю ширину.
   Файл подключается только при HelperController::isNewDesign(). */
.main-content {
    max-width: 100%;
}

/* Карты нет (у филиала не заполнены coords) - контакты занимают всю ширину,
   иначе вторая колонка грида осталась бы пустой. */
.call-us__wrapper--no-map {
    grid-template-columns: 1fr;
}

/* Поиск по товарам и корзина в шапке скрыты: каталог на филиалах отключён
   (прод-.htaccess 301-редиректит /catalog/* на /remont-turbin/, а /cart на /),
   поэтому обе кнопки вели в никуда. Скрываем и десктопные блоки, и их
   мобильные аналоги в main-nav. Правится здесь, а не в header.php: этот файл
   подключается только при HelperController::isNewDesign(), поэтому разметка
   шапки на остальных доменах филиалов остаётся нетронутой. */
.header__block--search,
.header__block--cart,
.main-nav__search,
.main-nav__cart {
    display: none;
}
