/* ==========================================
   Dynasty 8 - Barre de progression
   ========================================== */

.progress-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    position: relative;
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border-color);
    z-index: 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
    flex: 1;
}

.progress-step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    border: 3px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0;
    color: transparent;
    transition: all 0.3s ease;
    position: relative;
}

.progress-step.active .progress-step-circle {
    background: var(--primary-green);
    border-color: var(--primary-green);
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(27, 176, 96, 0.4);
}

.progress-step.active .progress-step-circle::after {
    content: '';
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    position: absolute;
}

.progress-step.completed .progress-step-circle {
    background: var(--primary-green);
    border-color: var(--primary-green);
}

.progress-step.completed .progress-step-circle::before {
    content: '✓';
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    position: absolute;
}

.progress-step-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-align: center;
}

.progress-step.active .progress-step-label {
    color: var(--primary-green);
    font-weight: 600;
}
