.steps {
    --list-gap: 24px;
    padding: 0;
}

.steps__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--list-gap);
    margin-top: 40px;
}

.steps__item {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 20px;
    background-color: #F8FAFC66;
    border: 1px solid #E6ECF7;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(71, 71, 102, 0.08);
    min-height: 100%;
}

.steps__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 16px;
}

.steps__num--blue {
    background: linear-gradient(180deg, #4F7DFF 0%, #2E5BFF 100%);
}

.steps__num--green {
    background: linear-gradient(180deg, #10C98A 0%, #09B37B 100%);
}

.steps__num--purple {
    background: linear-gradient(180deg, #9B6BFF 0%, #7B4BFF 100%);
}

.steps__title {
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    color: var(--Secondary-500-Text-Heading, #474766);
    margin: 0 0 8px;
}

.steps__desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--Secondary-400-Text-Base, #8787AB);
    margin: 0 0 20px;
}

.steps__media {
    margin-top: auto;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.steps__image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.steps__arrow {
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    width: calc(var(--list-gap) + 4px);
}

.steps__arrow-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.steps__item:last-child .steps__arrow {
    display: none;
}

@media screen and (max-width: 900px) {
    .steps__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .steps__list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .steps__item {
        padding: 24px;
    }

    .steps__arrow {
        display: none;
    }
}

@media screen and (max-width: 600px) {
    .steps__title {
        font-size: 18px;
        line-height: 24px;
    }

    .steps__desc {
        font-size: 14px;
        line-height: 22px;
    }

    .steps__media {
        min-height: 120px;
    }
}

