/* ============================================================
   会员等级页 - 开通流程步骤
   ============================================================ */
.vip__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.vip__step {
    position: relative;
    text-align: center;
    padding: 34px 24px 28px;
    background: #fff;
    border: 1px solid var(--color-border, #E5E7EB);
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(15, 42, 80, .06);
    transition: transform .25s, box-shadow .25s;
}

.vip__step:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(15, 42, 80, .12);
}

.vip__step-num {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--gradient-primary, linear-gradient(135deg, #2E74C0, #7C3AED));
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.vip__step h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-text, #12233B);
    margin-bottom: 8px;
}

.vip__step p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-text-muted, #6B7280);
}

@media (max-width: 768px) {
    .vip__steps { grid-template-columns: 1fr; gap: 18px; }
}
