.process-steps {
    margin-bottom: var(--section-gap, 0) !important;
    padding: 120px 0;
    background: rgba(224, 229, 237, 1);
}

.process-steps__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
}

.process-steps__header-left {
    flex: 1 1 auto;
}

.process-steps__title {
    font-family: 'Mulish', sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 53px;
    color: rgba(31, 79, 206, 1);
    margin: 0 0 12px;
}

.process-steps__description {
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(27, 27, 27, 1);
    margin: 0;
    max-width: 600px;
}

.process-steps__nav {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
    align-self: flex-end;
    padding-bottom: 2px;
}

.process-steps__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(31, 79, 206, 0.5);
    background: transparent;
    color: rgba(31, 79, 206, 1);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.process-steps__btn:hover {
    background: rgba(31, 79, 206, 0.08);
    border-color: rgba(31, 79, 206, 1);
}

.process-steps__btn.swiper-button-disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}
.process-steps__swiper-outer {
    padding-left: max(30px, calc((100vw - 1232px) / 2 + 30px));
    margin-bottom: 50px;
}

.process-steps__swiper {
    overflow: hidden;
    width: 100%;
    /* touch-action: pan-y — браузер отдаёт горизонталь JS (Swiper),
       вертикальный скролл страницы остаётся работать нормально */
    touch-action: pan-y;
}

.process-steps__swiper .swiper-wrapper {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: stretch;
}

.process-steps__track {
    display: flex !important;
}

.process-steps__step {
    padding-top: 20px;
    position: relative;
    box-sizing: border-box;
}

.process-steps__track {
    position: relative;
    display: flex;
    align-items: center;
    height: 20px;
    margin-bottom: 20px;
}

.process-steps__num {
    position: absolute;
    top: -18px;
    left: 0;
    font-family: 'Mulish', sans-serif;
    font-weight: 700;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(31, 79, 206, 1);
    white-space: nowrap;
    z-index: 2;
}

.process-steps__dot {
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(31, 79, 206, 1);
    z-index: 1;
}

.process-steps__line {
    flex: 1 1 auto;
    height: 1px;
    background: rgba(31, 79, 206, 0.35);
    margin-right: -24px;
}

.process-steps__swiper .swiper-slide:last-child .process-steps__line {
}

.process-steps__swiper .swiper-slide:last-child {
    margin-right: 0 !important;
}

.process-steps__step-title-wrap {
    min-height: 64px;
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
}

.process-steps__step-title {
    font-family: 'Mulish', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 25px;
    color: rgba(27, 27, 27, 1);
    margin: 0;
}

.process-steps__step-text {
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: rgba(43, 43, 43, 1);
    margin: 0;
}

.process-steps__step-text p {
    margin: 0 0 8px;
}

.process-steps__step-text p:last-child {
    margin-bottom: 0;
}

.process-steps__step-text a {
    color: rgba(31, 79, 206, 1);
    text-decoration: underline;
}

/* ── NOTE ───────────────────────────────────────────────── */
.process-steps__note {
    min-height: 108px;
    background: linear-gradient(180deg, #4085D9 0%, #0C3E9A 100%);
    border-radius: 15px;
    padding: 20px 32px;
    display: flex;
    align-items: center;
}

.process-steps__note p {
    margin: 0;
    font-family: 'Mulish', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 240, 240, 1);
}

/* ── CTA BUTTON ─────────────────────────────────────────── */
.process-steps__cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    width: 175px;
    min-height: 44px;
    padding: 12px 20px;
    border-radius: 40px;
    background: linear-gradient(180deg, #4085D9 0%, #0C3E9A 100%);
    text-decoration: none;
    font-family: 'Mulish', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0;
    color: rgba(255, 240, 240, 1);
    transition: background 0.2s, color 0.2s, opacity 0.2s, transform 0.2s ease;
    border: none;
}

.process-steps__cta-btn:hover {
    opacity: 0.95;
    transform: translateY(-2px);
}

/* ---- TABLET (≤1024px) ---- */
@media (max-width: 1024px) {
    .process-steps,
    .process-steps * {
        text-align: left !important;
    }

    .process-steps__title {
        font-size: 28px;
        line-height: 35px;
    }

    .process-steps__description {
        font-size: 12px;
        line-height: 19px;
        font-weight: 400;
    }

    .process-steps__btn {
        width: 38px;
        height: 38px;
    }

    .process-steps__btn svg {
        width: 14px;
        height: 6px;
    }

    .process-steps__num {
        font-size: 17px;
        line-height: 18px;
    }

    .process-steps__dot {
        width: 6px;
        height: 6px;
    }

    .process-steps__step-title {
        font-size: 16px;
        line-height: 20px;
        font-weight: 600;
    }

    .process-steps__step-text {
        font-size: 12px;
        line-height: 19px;
        font-weight: 400;
        min-width: 200px !important;
    }

    .process-steps__note p {
        font-size: 16px;
        line-height: 1.5;
        font-weight: 600;
    }

    .process-steps__cta-btn {
        width: 163px;
        font-size: 12px;
    }
}

/* ---- MOBILE (≤640px) ---- */
@media (max-width: 640px) {
    .process-steps,
    .process-steps * {
        text-align: left !important;
    }
    .process-steps__swiper-outer {
        margin-bottom: 39px;
    }

    .process-steps {
        padding: 60px 0;
    }

    .process-steps__title {
        font-size: 22px;
        line-height: 29px;
        margin-bottom: 8px;
    }

    .process-steps__description {
        font-size: 12px;
        line-height: 19px;
        font-weight: 400;
    }

    .process-steps__nav {
        display: none !important;
    }

    .process-steps__line {
        margin-right: -20px;
    }

    .process-steps__num {
        font-size: 17px;
        line-height: 18px;
    }

    .process-steps__dot {
        width: 6px;
        height: 6px;
    }

    .process-steps__step-title {
        font-size: 16px;
        line-height: 20px;
        font-weight: 600;
    }

    .process-steps__step-text {
        font-size: 12px;
        line-height: 19px;
        font-weight: 400;
    }

    /* Note */
    .process-steps__note {
        padding: 16px 20px;
        min-height: auto;
    }

    .process-steps__note p {
        font-size: 16px;
        line-height: 1.5;
        font-weight: 600;
    }

    .process-steps__cta-btn {
        width: 163px;
        font-size: 12px;
    }

    .process-steps__title br,
    .process-steps__description br,
    .process-steps__step-title br,
    .process-steps__step-text br {
        display: none;
    }
}