.cj-process {
    padding: 6px 0 0;
    padding-bottom: 0;
}

.cj-process__list {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0;
    margin-top: 28px;
}

.cj-process-item {
    position: relative;
    min-height: 150px;
    padding: 2px 10px 0;
    text-align: center;
}

.cj-process-item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, .9);
}

.cj-process-item__number {
    position: absolute;
    top: -4px;
    left: 24px;
    z-index: 0;
    color: rgba(255, 255, 255, .88);
    font-size: 74px;
    line-height: .8;
    font-weight: 700;
    font-style: italic;
}

.cj-process-item__icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    margin-bottom: 13px;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    background: linear-gradient(180deg, #04b6ec 0%, #179add 100%);
    box-shadow: inset 0 0 0 4px rgba(255, 255, 255, .8), 0 3px 7px rgba(0, 121, 205, .35);
}

.cj-process-item__title {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: none;
    min-height: 42px;
    margin: 0 0 8px;
    color: var(--cj-cyan);
    font-size: 18px;
    line-height: 1.15;
    font-weight: 700;
    text-transform: uppercase;
}

.cj-process-item__desc {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: none;
    margin: 0;
    color: var(--cj-text);
    font-size: 16px;
    line-height: 1.3;
}

.cj-process-item__content {
    width: 100%;
}

.cj-process-item__pill {
    display: none;
}

@media (min-width: 850px) and (max-width: 1439px) {
    .cj-process {
        padding: 32px 0 18px;
    }

    .cj-process__list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
        margin-top: 26px;
    }

    .cj-process-item {
        min-height: 152px;
        padding: 22px 22px 22px 78px;
        overflow: hidden;
        border-radius: 16px;
        background: rgba(255, 255, 255, .72);
        box-shadow: 0 14px 30px rgba(0, 137, 216, .08);
        text-align: left;
    }

    .cj-process-item:not(:last-child) {
        border-right: 0;
    }

    .cj-process-item__number {
        top: auto;
        bottom: 12px;
        left: 18px;
        color: rgba(0, 157, 222, .06);
        font-size: 56px;
        line-height: .9;
    }

    .cj-process-item__icon {
        position: absolute;
        top: 22px;
        left: 20px;
        width: 42px;
        height: 42px;
        margin-bottom: 0;
        font-size: 20px;
    }

    .cj-process-item__title {
        min-height: 0;
        margin-bottom: 8px;
        font-size: clamp(17px, 1.55vw, 20px);
        line-height: 1.18;
    }

    .cj-process-item__desc {
        font-size: clamp(14px, 1.3vw, 16px);
        line-height: 1.32;
    }
}

@media (max-width: 849px) {
    .cj-process {
        padding: 8px 0 0;
    }

    .cj-process__list {
        width: calc(100% + 64px);
        margin: 14px -32px 0;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        background: rgba(255, 255, 255, .46);
    }

    .cj-process-item {
        min-height: 108px;
        padding: 17px 30px 12px 28px;
        text-align: left;
        border-right: 1px solid rgba(255, 255, 255, .82);
        border-bottom: 1px solid rgba(255, 255, 255, .82);
    }

    .cj-process-item__number,
    .cj-process-item__icon {
        display: none;
    }

    .cj-process-item__pill {
        position: absolute;
        top: 18px;
        right: 14px;
        display: inline-flex;
        min-width: 28px;
        height: 17px;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        color: #fff;
        font-size: 12px;
        line-height: 1;
        font-weight: 700;
        background: var(--cj-cyan);
    }

    .cj-process-item__title {
        min-height: 32px;
        margin-bottom: 6px;
        padding-right: 26px;
        font-size: 13px;
        line-height: 1.15;
    }

    .cj-process-item__desc {
        font-size: 13px;
        line-height: 1.3;
    }
}
