/* progress */
    .progress_bar {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 48px;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .prog_step {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .prog_dot {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--primary);
        color: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 16px;
        transition: all 0.2s;
    }
    
    .prog_dot.active {
        background: var(--third);
        color: var(--white);
    }
    
    .prog_label {
        font-size: 10px;
        transition: color 0.2s;
    }
    
    .prog_label.active {
        color: var(--third);
    }
    
    .prog_line {
        width: 60px;
        height: 1.5px;
        background: var(--third);
        margin: 0 4px;
        margin-top: -16px;
    }
    
    .prog_line.active {
        background: var(--primary);
    }
/* progress */