.form-wizard {
    padding: 1rem 0;
}

.wizard-steps {
    padding: 0 24px;
    position: relative;
}

.wizard-progress-bar {
    position: absolute;
    top: 20px;
    left: 10%;
    height: 2px;
    background: var(--bk-primary, #007AFF);
    transition: width .4s cubic-bezier(.4,0,.2,1);
    z-index: 1;
    max-width: 80%;
}

.wizard-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    position: relative;
    z-index: 2;
    flex: 1;
}

.wizard-step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .85rem;
    background: #E5E5EA;
    color: var(--bk-text-tertiary, #8E8E93);
    transition: all .3s cubic-bezier(.4,0,.2,1);
    border: 2px solid transparent;
}

.wizard-step.active .wizard-step-circle {
    background: var(--bk-primary, #007AFF);
    color: white;
    border-color: var(--bk-primary, #007AFF);
    box-shadow: 0 0 0 4px rgba(0,122,255,.15);
    transform: scale(1.1);
}

.wizard-step.completed .wizard-step-circle {
    background: var(--bk-success, #34C759);
    color: white;
    border-color: var(--bk-success, #34C759);
}

.wizard-step-label {
    margin-top: .5rem;
    text-align: center;
    color: var(--bk-text-tertiary, #8E8E93);
    font-weight: 500;
    font-size: .8rem;
}

.wizard-step.active .wizard-step-label {
    color: var(--bk-primary, #007AFF);
    font-weight: 600;
}

.wizard-step.completed .wizard-step-label {
    color: var(--bk-success, #34C759);
}

.wizard-content {
    min-height: 200px;
    padding: 1.5rem 0;
}

.wizard-footer {
    padding: 1rem 0;
}

.wizard-section {
    animation: fadeIn .3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.wizard-section-card {
    border: 1px solid var(--bk-border, #C6C6C8);
    border-radius: var(--bk-radius, 12px);
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: var(--bk-bg-card, #fff);
}

.wizard-section-card h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--bk-primary, #007AFF);
    border-bottom: 1px solid #F2F2F7;
    padding-bottom: .75rem;
}

@media (max-width: 768px) {
    .wizard-step-label {
        font-size: .7rem;
        max-width: 60px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .wizard-step-circle {
        width: 32px;
        height: 32px;
        font-size: .75rem;
    }

    .wizard-progress-bar {
        top: 17px;
    }

    .wizard-section-card {
        padding: 1rem;
    }
}
