.repair-hero {
    position: relative;
    min-height: 620px;
    padding: 64px 0 48px;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(
            90deg,
            rgba(4, 18, 27, .98) 0%,
            rgba(4, 18, 27, .91) 35%,
            rgba(4, 18, 27, .36) 57%,
            rgba(4, 18, 27, .04) 100%
        ),
        url("/assets/img/main-block/repair-hero.jpg") center / cover no-repeat;
}

.repair-hero .container {
    position: relative;
    min-height: 508px;
}

.repair-hero__content {
    position: relative;
    z-index: 2;
    width: min(100%, 610px);
}

.repair-hero__title {
    max-width: 600px;
    margin: 0 0 22px;
    color: #fff;
    font-size: clamp(38px, 4vw, 62px);
    line-height: 1.08;
}

.repair-hero__title span {
    color: #078cff;
}

.repair-hero__subtitle {
    margin: 0 0 25px;
    font-size: clamp(18px, 1.5vw, 24px);
    line-height: 1.4;
}

.repair-hero__description {
    max-width: 440px;
    margin: 0 0 33px;
    color: rgba(255, 255, 255, .72);
    font-size: 16px;
    line-height: 1.65;
}

.repair-hero__advantages {
    display: grid;
    grid-template-columns: repeat(4, max-content);
    gap: 26px;
    margin-bottom: 43px;
}

.repair-hero__advantage {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .82);
    font-size: 14px;
    line-height: 1.4;
}

.repair-hero__icon {
    display: flex;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
}

.repair-hero__icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.repair-hero__button {
    min-width: 280px;
    min-height: 66px;
    padding: 18px 32px;
    border: 0;
    border-radius: 9px;
    color: #fff;
    background: #ff9000;
    box-shadow: 0 12px 30px rgba(255, 144, 0, .24);
    font-size: 16px;
    cursor: pointer;
    transition:
        background-color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.repair-hero__button:hover {
    background: #f48200;
    box-shadow: 0 15px 34px rgba(255, 144, 0, .34);
    transform: translateY(-2px);
}

.repair-hero__button:active {
    transform: translateY(0);
}

.repair-hero__button:focus-visible {
    outline: 3px solid rgba(255, 255, 255, .8);
    outline-offset: 4px;
}

.repair-hero__result {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    min-width: 390px;
    padding: 20px 28px;
    align-items: center;
    gap: 17px;
    border-radius: 16px;
    color: #27313a;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .18);
    font-size: 16px;
    line-height: 1.45;
}

.repair-hero__result-icon {
    display: flex;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border: 3px solid #078cff;
    border-radius: 50%;
    color: #078cff;
}

.repair-hero__result-icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 1199px) {
    .repair-hero {
        background-position: 58% center;
    }

    .repair-hero__advantages {
        grid-template-columns: repeat(2, max-content);
    }

    .repair-hero__result {
        right: 20px;
    }
}

@media (max-width: 767px) {
    .repair-hero {
        min-height: auto;
        padding: 310px 0 35px;
        background:
            linear-gradient(
                0deg,
                rgba(4, 18, 27, 1) 0%,
                rgba(4, 18, 27, .98) 56%,
                rgba(4, 18, 27, .2) 100%
            ),
            url("/assets/img/repair/repair-hero.webp") 68% top / auto 370px no-repeat,
            #04121b;
    }

    .repair-hero .container {
        min-height: auto;
    }

    .repair-hero__title {
        margin-bottom: 18px;
        font-size: clamp(32px, 9vw, 44px);
    }

    .repair-hero__subtitle {
        margin-bottom: 18px;
    }

    .repair-hero__description {
        margin-bottom: 27px;
    }

    .repair-hero__advantages {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px 14px;
        margin-bottom: 30px;
    }

    .repair-hero__advantage {
        font-size: 13px;
    }

    .repair-hero__button {
        width: 100%;
        min-width: 0;
    }

    .repair-hero__result {
        position: static;
        min-width: 0;
        margin-top: 25px;
        padding: 17px;
        border-radius: 12px;
        font-size: 14px;
    }

    .repair-hero__result-icon {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 420px) {
    .repair-hero {
        padding-top: 270px;
        background-size: auto 325px;
    }

    .repair-hero__advantages {
        grid-template-columns: 1fr;
    }

    .repair-hero__result br {
        display: none;
    }
}