.yandex-approach-process {
    border-radius: 20px;
    background: linear-gradient(180deg, #eff0ff 0%, #d9ddff 58%, #b9c0ff 100%);
}

.yandex-approach-process__inner {
    padding: 56px 34px 100px;
}

.yandex-approach-process__slider-head {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-start;
}

.yandex-approach-process__title {
    margin: 0;
/*     max-width: 540px; */
    font-size: 56px;
    line-height: 0.98;
    font-weight: 600;
    color: #4a5fe6;
}

.yandex-approach-process__arrows {
    position: static;
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.yandex-approach-process__arrows .splide__arrow {
    position: static;
    inset: auto;
    transform: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(47, 52, 67, 0.35);
    background: rgba(255, 255, 255, 0.45);
    color: #2f3443;
    opacity: 1;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}

.yandex-approach-process__arrows .splide__arrow:hover {
    background: #4a5fe6;
    border-color: #4a5fe6;
    color: #ffffff;
}

.yandex-approach-process__arrows .splide__arrow:disabled {
    opacity: 0.45;
    cursor: default;
}

.yandex-approach-process__arrows .splide__arrow svg {
    width: 18px;
    height: 18px;
    fill: none;
}

.yandex-approach-process__slider .splide__track {
    margin-top: 44px;
    overflow: hidden;
}

.yandex-approach-process__slider .splide__slide {
    height: auto;
}

.yandex-approach-process__card {
    min-height: 230px;
    height: 100%;
    padding: 22px 20px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(164, 174, 233, 0.34);
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 14px;
    align-items: flex-start;
}

.yandex-approach-process__card--accent {
    background: linear-gradient(140deg, #4a5fe6 0%, #9ea8f6 100%);
    border-color: rgba(74, 95, 230, 0.4);
}

.yandex-approach-process__card-number {
    display: block;
    margin-top: -4px;
    font-size: 58px;
    line-height: 1;
    font-weight: 500;
    color: #c6cffd;
}

.yandex-approach-process__card-content {
    display: grid;
    gap: 16px;
}

.yandex-approach-process__card-title {
    margin: 0;
    font-size: 20px;
    line-height: 1.08;
    font-weight: 600;
    color: #2f3443;
}

.yandex-approach-process__card-text {
    margin: 0;
    font-size: 16px;
    line-height: 1.28;
    color: #666d82;
}

.yandex-approach-process__card--accent .yandex-approach-process__card-number,
.yandex-approach-process__card--accent .yandex-approach-process__card-title,
.yandex-approach-process__card--accent .yandex-approach-process__card-text {
    color: #f5f7ff;
}

.yandex-approach-process__work {
    margin-top: 170px;
    display: flex;
    justify-content: space-between;
    gap: 36px;
    align-items: flex-start;
}

.yandex-approach-process__work-title {
    margin: 0;
    width: 400px;
    font-size: 56px;
    line-height: 0.95;
    font-weight: 600;
    color: #4a5fe6;
}

.yandex-approach-process__timeline {
    position: relative;
}

.yandex-approach-process__line {
    position: absolute;
    left: 29px;
    top: 16px;
    bottom: 20px;
    width: 15px;
    height: calc(100% - 36px);
    object-fit: fill;
}

.yandex-approach-process__steps {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 58px;
}

.yandex-approach-process__step {
    display: grid;
    grid-template-columns: 74px minmax(0, 510px);
    column-gap: 18px;
    align-items: center;
}

.yandex-approach-process__step-icon {
    width: 74px;
    height: 74px;
}

.yandex-approach-process__step-content {
    max-width: 510px;
}

.yandex-approach-process__step-title {
    margin: 0;
    font-size: 28px;
    line-height: 0.95;
    letter-spacing: -0.02em;
    font-weight: 500;
    color: #2600e5;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
    .yandex-approach-process__step-title {
        background: linear-gradient(90deg, #15007f 0%, #2600e5 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
    }
}

.yandex-approach-process__step-text {
    margin: 10px 0 0;
    max-width: 420px;
    font-size: 14px;
    line-height: 1.25;
    color: #4d5568;
}

@media (max-width: 1440px) {
    .yandex-approach-process__title,
    .yandex-approach-process__work-title {
        font-size: 46px;
    }
}

@media (max-width: 1024px) {
    .yandex-approach-process__inner {
        padding: 38px 22px 70px;
    }

    .yandex-approach-process__title,
    .yandex-approach-process__work-title {
        font-size: 40px;
    }

    .yandex-approach-process__card {
        min-height: 220px;
    }

    .yandex-approach-process__work {
        margin-top: 70px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .yandex-approach-process__work-title {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .yandex-approach-process {
        border-radius: 14px;
    }

    .yandex-approach-process__inner {
        padding: 26px 14px 42px;
    }

    .yandex-approach-process__slider-head {
        flex-direction: column;
        gap: 18px;
    }

    .yandex-approach-process__title,
    .yandex-approach-process__work-title {
        font-size: 34px;
    }

    .yandex-approach-process__arrows {
        margin-top: 0;
    }

    .yandex-approach-process__slider .splide__track {
        margin-top: 22px;
    }

    .yandex-approach-process__card {
        min-height: 0;
        padding: 18px 16px;
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 10px;
    }

    .yandex-approach-process__card-number {
        font-size: 46px;
    }

    .yandex-approach-process__card-title {
        font-size: 18px;
    }

    .yandex-approach-process__card-text {
        font-size: 13px;
    }

    .yandex-approach-process__work {
        margin-top: 38px;
        gap: 22px;
    }

    .yandex-approach-process__line {
        left: 24px;
        width: 12px;
    }

    .yandex-approach-process__step {
        grid-template-columns: 62px minmax(0, 1fr);
        column-gap: 12px;
        align-items: start;
    }

    .yandex-approach-process__step-icon {
        width: 62px;
        height: 62px;
    }

    .yandex-approach-process__step-title {
        font-size: 22px;
        line-height: 1;
    }

    .yandex-approach-process__step-text {
        max-width: 100%;
        font-size: 13px;
    }
}
