.promo-steps {
    max-width: 1440px;
    margin: 0 auto;
    padding: 70px 120px;
    background-color: #020303;
}

.promo-steps__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 100%;
    text-align: center;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #F4F4F4;
    margin-bottom: 25px;
    margin-top: 0px;
}

.promo-steps__subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
    background: linear-gradient(90deg, #F4F4F4 0%, #8E8E8E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 45px;
}

.promo-steps__grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: flex-start;
}

.promo-steps__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
}

.promo-steps__icon {
    width: 59px;
    height: 59px;
    background: #923FFF;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: box-shadow 0.2s ease;
}

.promo-steps__icon:hover {
    box-shadow: 0 0 12px rgba(146, 63, 255, 1.3);
}

.promo-steps__icon img {
    width: 45px;
    height: 45px;
}

.promo-steps__text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    color: #F4F4F4;
    max-width: 285px;
    padding-right: 5px;
}

.promo-steps__item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: calc(100% - 170px);
    top: 29px;
    width: 152px;
    height: 1px;
    background: repeating-linear-gradient(90deg, #3E3E3E, #3E3E3E 2px, #8E8E8E 2px, #8E8E8E 4px), linear-gradient(90deg, #3E3E3E, #F4F4F4);
    background-blend-mode: multiply;
    background-repeat: repeat-x, no-repeat;
}

@media (max-width: 1280px) {
    .promo-steps {
        padding: 50px 60px;
    }

    .promo-steps__item:not(:last-child)::after {
        left: calc(100% - 140px);
        width: 120px;
    }
}

@media (max-width: 1024px) {
    .promo-steps {
        padding: 40px 40px;
    }

    .promo-steps__title {
        font-size: 36px;
    }

    .promo-steps__subtitle {
        font-size: 18px;
        margin-bottom: 35px;
    }

    .promo-steps__text {
        font-size: 16px;
        max-width: 220px;
    }

    .promo-steps__item:not(:last-child)::after {
        left: calc(100% - 100px);
        width: 90px;
    }
}

@media (max-width: 768px) {
    .promo-steps {
        padding: 30px 20px;
    }

    .promo-steps__title {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .promo-steps__subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .promo-steps__grid {
        flex-direction: column;
        gap: 35px;
        align-items: center;
        padding: 0 5px;
    }

    .promo-steps__item {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        width: 100%;
        max-width: 335px;
    }

    .promo-steps__icon {
        width: 53px;
        height: 53px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .promo-steps__icon img {
        width: 35px;
        height: 35px;
    }

    .promo-steps__text {
        font-size: 16px;
        max-width: none;

    }

    .promo-steps__item:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .promo-steps {
        padding: 40px 15px;
    }

    .promo-steps__title {
        font-size: 20px;
        padding: 0 20px;
    }

    .promo-steps__subtitle {
        font-size: 14px;
    }

    .promo-steps__grid {
        align-items: flex-start;
    }

    .promo-steps__item {
        max-width: none;
        width: 100%;
    }

    .promo-steps__icon {
        width: 48px;
        height: 48px;
    }

    .promo-steps__icon img {
        width: 32px;
        height: 32px;
    }

    .promo-steps__text {
        font-size: 14px;
        padding-right: 40px;
    }
}