.turnkey-project {
    --turnkey-blue: #087eff;
    --turnkey-orange: #ff7b18;
    --turnkey-dark: #101a35;
    --turnkey-muted: #465166;
    --turnkey-border: #e2e6ec;

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

.turnkey-project__inner {
    display: grid;
    min-height: 270px;
    padding: 25px 30px;
    grid-template-columns: 240px minmax(420px, 1fr) minmax(230px, 300px);
    align-items: center;
    gap: 28px;
    overflow: hidden;
    border: 1px solid var(--turnkey-border);
    border-radius: 10px;
    box-shadow:
        0 8px 30px rgba(22, 41, 64, .07),
        0 2px 7px rgba(22, 41, 64, .04);
}

.turnkey-project__image {
    position: relative;
    align-self: stretch;
    min-width: 0;
}

.turnkey-project__image::after {
    position: absolute;
    top: 0;
    right: -30px;
    bottom: 0;
    width: 65px;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0),
        #fff
    );
    content: "";
    pointer-events: none;
}

.turnkey-project__image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: contain;
    object-position: center;
}

.turnkey-project__content {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.turnkey-project__label {
    display: block;
    margin-bottom: 10px;
    color: var(--turnkey-blue);
    font-size: 13px;
    line-height: 1.3;
}

.turnkey-project__title {
    margin: 0 0 12px;
    color: var(--turnkey-dark);
    font-size: clamp(28px, 2.5vw, 38px);
    line-height: 1.16;
}

.turnkey-project__description {
    max-width: 670px;
    margin: 0 0 22px;
    color: var(--turnkey-muted);
    font-size: 13px;
    line-height: 1.55;
}

.turnkey-project__advantages {
    display: flex;
    align-items: center;
    gap: 0;
}

.turnkey-project__advantage {
    display: flex;
    min-height: 37px;
    padding: 0 24px;
    align-items: center;
    gap: 10px;
    border-right: 1px solid var(--turnkey-border);
    color: var(--turnkey-dark);
    font-size: 12px;
    line-height: 1.35;
}

.turnkey-project__advantage:first-child {
    padding-left: 0;
}

.turnkey-project__advantage:last-child {
    padding-right: 0;
    border-right: 0;
}

.turnkey-project__icon {
    display: flex;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(8, 126, 255, .25);
    border-radius: 50%;
    color: var(--turnkey-blue);
}

.turnkey-project__icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.turnkey-project__action {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.turnkey-project__button {
    display: inline-flex;
    width: 100%;
    min-height: 58px;
    padding: 15px 22px;
    align-items: center;
    justify-content: center;
    gap: 13px;
    border: 0;
    border-radius: 6px;
    color: #fff;
    background: var(--turnkey-orange);
    box-shadow: 0 9px 22px rgba(255, 123, 24, .22);
    font-size: 13px;
    line-height: 1.3;
    cursor: pointer;
    transition:
        background-color .2s ease,
        box-shadow .2s ease,
        transform .2s ease;
}

.turnkey-project__button svg {
    flex: 0 0 19px;
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .2s ease;
}

.turnkey-project__button:hover {
    background: #ed6808;
    box-shadow: 0 13px 27px rgba(255, 123, 24, .32);
    transform: translateY(-2px);
}

.turnkey-project__button:hover svg {
    transform: translateX(4px);
}

.turnkey-project__button:active {
    transform: translateY(0);
}

.turnkey-project__button:focus-visible {
    outline: 3px solid rgba(8, 126, 255, .35);
    outline-offset: 4px;
}

@media (max-width: 1199px) {
    .turnkey-project__inner {
        grid-template-columns: 200px minmax(390px, 1fr) 240px;
        gap: 22px;
        padding: 24px;
    }

    .turnkey-project__advantage {
        padding: 0 13px;
        gap: 7px;
        font-size: 11px;
    }

    .turnkey-project__icon {
        flex-basis: 31px;
        width: 31px;
        height: 31px;
    }
}

@media (max-width: 991px) {
    .turnkey-project__inner {
        grid-template-columns: 210px minmax(0, 1fr);
    }

    .turnkey-project__action {
        grid-column: 2;
        justify-content: flex-start;
    }

    .turnkey-project__button {
        width: auto;
        min-width: 260px;
    }

    .turnkey-project__advantages {
        flex-wrap: wrap;
        gap: 13px 0;
    }
}

@media (max-width: 767px) {
    .turnkey-project {
        padding: 30px 0;
    }

    .turnkey-project__inner {
        display: flex;
        padding: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        border-radius: 9px;
    }

    .turnkey-project__image {
        height: 230px;
        padding: 15px;
    }

    .turnkey-project__image::after {
        top: auto;
        right: 0;
        bottom: -1px;
        left: 0;
        width: auto;
        height: 65px;
        background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0),
            #fff
        );
    }

    .turnkey-project__image img {
        min-height: 200px;
    }

    .turnkey-project__content {
        padding: 10px 21px 25px;
    }

    .turnkey-project__title {
        font-size: clamp(28px, 8vw, 36px);
    }

    .turnkey-project__description {
        font-size: 14px;
    }

    .turnkey-project__advantages {
        display: grid;
        gap: 15px;
    }

    .turnkey-project__advantage,
    .turnkey-project__advantage:first-child,
    .turnkey-project__advantage:last-child {
        min-height: 34px;
        padding: 0;
        border-right: 0;
        font-size: 13px;
    }

    .turnkey-project__action {
        padding: 0 21px 24px;
    }

    .turnkey-project__button {
        width: 100%;
        min-width: 0;
    }
}