/* ===== Steps (1, 2, 3) — 라이트 카드 (참고 랜딩 / other_project) ===== */

#step1, #step2, #step3 {
    padding-top: calc(var(--header-top-inset, 20px) + var(--header-height, 70px) + 20px);
}

.step-header {
    background: var(--surface-muted);
    border: 1px solid var(--border-subtle);
    border-bottom: none;
    border-radius: var(--radius-card) var(--radius-card) 0 0;
    padding: var(--space-12) var(--space-10);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.step-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
}

.step-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-size: var(--fs-xs);
    font-weight: 700;
    margin-bottom: var(--space-6);
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(var(--primary-rgb), 0.2);
    position: relative;
    z-index: 1;
}

.step-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: var(--space-3);
    position: relative;
    z-index: 1;
}

.step-description {
    font-size: var(--fs-md);
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.step-form {
    background: var(--white);
    border: 1px solid var(--border-subtle);
    border-top: 1px solid var(--border-subtle);
    border-radius: 0 0 var(--radius-card) var(--radius-card);
    padding: var(--space-12) var(--space-10);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
}

@media (max-width: 768px) {
    .step-header {
        padding: var(--space-8) var(--space-5);
    }

    .step-badge {
        font-size: 0.75rem;
        padding: 6px 15px;
    }

    .step-title {
        font-size: 1.3rem;
    }

    .step-form {
        padding: var(--space-6) var(--space-5);
    }
}
