/* ======= Premium Check&Do Glass Cards ======= */

.checkdo-steps-wrapper {
    width: 100%;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 40px;
}

.checkdo-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 0 4px 16px rgba(0,0,0,0.4);
    backdrop-filter: blur(12px);
    display: inline-block;
    padding: 16px 28px;
    border-radius: 18px;
    background: rgba(0,0,0,0.15);
}

/* Блок с карточками */
.checkdo-steps {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: nowrap;
}

/* Карточки стекло */
.checkdo-card {
    width: 275px;
    padding: 26px;
    border-radius: 22px;
    background: rgba(10, 40, 40, 0.45);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 
        0 8px 25px rgba(0,0,0,0.35),
        inset 0 1px 2px rgba(255,255,255,0.25);
    color: #ffffff;
    text-align: left;
}

/* Номер шага */
.step-number {
    font-size: 16px;
    font-weight: 600;
    color: #71f3d6;
    margin-bottom: 12px;
}

/* Заголовок шага */
.step-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

/* Описание */
.step-text {
    font-size: 15px;
    opacity: 0.88;
    line-height: 1.45;
}

/* Адаптив */
@media (max-width: 1200px) {
    .checkdo-steps {
        flex-wrap: wrap;
    }
    .checkdo-card {
        margin-bottom: 20px;
    }
}
