.estimate-section {
    --estimate-blue: #087eff;
    --estimate-text: #111;
    --estimate-muted: #39465a;

    padding: 40px 0;
    background: #fff;
}

.estimate-section__inner {
    position: relative;
    display: grid;
    min-height: 500px;
    grid-template-columns: minmax(390px, .85fr) minmax(540px, 1.45fr);
    overflow: hidden;
    border: 1px solid #e2e5e9;
    border-radius: 12px;
    background: #fff;
    box-shadow:
        0 8px 30px rgba(22, 41, 64, .07),
        0 2px 6px rgba(22, 41, 64, .04);
}

.estimate-section__content {
    position: relative;
    z-index: 2;
    padding: 57px 20px 50px 50px;
}

.estimate-section__title {
    margin: 0 0 18px;
    color: var(--estimate-text);
    font-size: clamp(36px, 3.3vw, 52px);
    line-height: 1.08;
}

.estimate-section__title span {
    color: var(--estimate-blue);
}

.estimate-section__description {
    max-width: 470px;
    margin: 0 0 27px;
    color: var(--estimate-muted);
    font-size: 17px;
    line-height: 1.65;
}

.estimate-section__list {
    display: grid;
    margin: 0;
    padding: 0;
    gap: 17px;
    list-style: none;
}

.estimate-section__list li {
    position: relative;
    min-height: 23px;
    padding: 1px 0 0 38px;
    color: var(--estimate-muted);
    font-size: 16px;
    line-height: 1.4;
}

.estimate-section__list li::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 21px;
    height: 21px;
    border: 2px solid var(--estimate-blue);
    border-radius: 50%;
    content: "";
}

.estimate-section__list li::after {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 7px;
    height: 4px;
    border-bottom: 2px solid var(--estimate-blue);
    border-left: 2px solid var(--estimate-blue);
    content: "";
    transform: rotate(-45deg);
}

.estimate-section__image {
    position: relative;
    min-width: 0;
    min-height: 500px;
}

.estimate-section__image::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -75px;
    z-index: 1;
    width: 155px;
    background: linear-gradient(
        90deg,
        #fff 12%,
        rgba(255, 255, 255, .88) 42%,
        rgba(255, 255, 255, 0) 100%
    );
    content: "";
    pointer-events: none;
}

.estimate-section__image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 1199px) {
    .estimate-section__inner {
        grid-template-columns: minmax(370px, .9fr) minmax(430px, 1.1fr);
    }

    .estimate-section__content {
        padding-left: 38px;
    }

    .estimate-section__image img {
        object-position: 56% center;
    }
}

@media (max-width: 991px) {
    .estimate-section__inner {
        display: block;
        min-height: auto;
    }

    .estimate-section__content {
        padding: 42px 35px 38px;
    }

    .estimate-section__description {
        max-width: 610px;
    }

    .estimate-section__image {
        min-height: 360px;
    }

    .estimate-section__image::before {
        top: -80px;
        right: 0;
        bottom: auto;
        left: 0;
        width: auto;
        height: 130px;
        background: linear-gradient(
            180deg,
            #fff 10%,
            rgba(255, 255, 255, .8) 45%,
            rgba(255, 255, 255, 0) 100%
        );
    }

    .estimate-section__image img {
        min-height: 360px;
        object-position: center;
    }
}

@media (max-width: 575px) {
    .estimate-section {
        padding: 25px 0;
    }

    .estimate-section__inner {
        border-radius: 9px;
    }

    .estimate-section__content {
        padding: 30px 21px 28px;
    }

    .estimate-section__title {
        margin-bottom: 15px;
        font-size: clamp(30px, 9vw, 39px);
    }

    .estimate-section__title br {
        display: none;
    }

    .estimate-section__description {
        margin-bottom: 24px;
        font-size: 15px;
        line-height: 1.55;
    }

    .estimate-section__list {
        gap: 15px;
    }

    .estimate-section__list li {
        padding-left: 33px;
        font-size: 14px;
    }

    .estimate-section__image,
    .estimate-section__image img {
        min-height: 250px;
    }
}