.steps {
    position: relative;
}

.steps__wrap {
    display: flex;
    gap: 24px;
    position: relative;
    z-index: 3;
}

.steps__steps {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: fit-content;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    padding: 4px;
}

.steps__video iframe {
    max-width: 818px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    min-height: 460px;
    border-radius: 12px;
    object-fit: cover;
}

.steps__video-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #c4c1df;
    margin-top: 0;
    max-width: 818px;
    margin-left: auto;
    margin-right: auto;
}

.steps__step {
    flex-basis: calc((100% - 24px) / 3);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 40px;
    padding: 4px 12px;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #fff;
    cursor: pointer;
}

.steps__step.step-active {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #522feb;
}

.steps__body-item {
    display: none;
}

.steps__body-item.body-item-active {
    display: block;
}

body .steps h3.steps__name {
    font-size: 24px;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 16px;
    color: white;
}

.steps__text p{
    color: #c4c1df;
    margin-top: 0;
    margin-bottom: 16px;
}

.steps__text p:last-child {
    margin-bottom: 0px;
}

.steps__lists {
    display: flex;
    flex-direction: column;
}

.steps__list-title {
    padding: 4px;
    width: 100%;
    background: radial-gradient(100% 100% at 50.04% 0%, #110d2f 45%, #251470 100%);
    border-radius: 4px 4px 0 0;
    font-weight: 500;
    font-size: 18px;
    line-height: 178%;
    text-align: center;
    color: #fff;
}

.steps__list-body {
    border-radius: 0 0 4px 4px;
    background: rgba(255, 255, 255, 0.2);
}

.steps__list-body ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.steps__list-body ul li {
    list-style: none;
    font-weight: 500;
    color: white;
    display: flex;
    gap: 12px;
}

.steps__list-body ul li:before {
    content: '';
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    background: center/contain no-repeat url("/wp-content/uploads/2026/02/check-white.svg");
}

.steps__lists {
    display: none;
    position: relative;
}

.steps__lists.lists-active {
    display: flex;
}

.steps__button-prev, .steps__button-next {
    cursor: pointer;
}

.steps__decor2, .steps__decor1 {
    position: absolute;
}

.steps__decor1 {
    left: 0px;
    bottom: -181px;
    opacity: 0.3;
}

.steps__decor2 {
    right: -59px;
    top: -40px;
}

@media screen and (min-width: 1025px) {
    .steps__steps {
        margin-bottom: 40px;
        min-width: 251px;
    }

    .steps__wrap {
        justify-content: space-between;
    }

    .steps__main {
        flex-basis: 559px;
    }

    .steps__lists {
        flex-basis: 464px;
    }

    .steps__text p{
        font-size: 16px;
    }

    .steps__lists {
        gap: 20px;
    }

    .steps__list-body {
        padding: 24px;
    }

    .steps__list-body ul li {
        align-items: center;
        font-size: 16px;
    }

    .steps__buttons {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-top: 40px;
    }

    .steps__video {
        margin-bottom: 24px;
    }

    .steps__video-text {
        margin-bottom: 100px;
    }
}

@media screen and (max-width: 1024px) {
    .steps__steps {
        margin-bottom: 24px;
        min-width: 300px;
    }

    .steps__wrap {
        flex-direction: column;
    }

    .steps__text p{
        font-size: 14px;
    }

    .steps__lists {
        gap: 24px;
    }

    .steps__list-body {
        padding: 16px;
    }

    .steps__list-body ul li {
        font-size: 14px;
    }

    .steps__buttons {
        display: none;
    }

    .steps__decor1 {
        display: none;
    }

    .steps__decor2 {
        display: none;
    }

    .steps__video {
        margin-bottom: 16px;
    }

    .steps__video-text {
        margin-bottom: 60px;
    }
}

@media screen and (max-width: 440px) {
    .steps__steps {
        min-width: 100%;
    }

    .steps__video iframe {
        max-height: 224px;
        min-height: fit-content;
    }
}