step-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 56px;
}

step-card {
    display: block;
    background: var(--bg);
    border-radius: var(--radius);
    padding: 36px 32px;
    border: 1px solid var(--border);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.step-heading {
    display: block;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.step-body {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-body p { margin: 0; }
