.step-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.step-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    background: var(--gray-100);
    color: var(--gray-400);
    transition: all 0.4s ease;
    position: relative;
}

.step-dot.active {
    background: var(--primary);
    color: white;
    transform: scale(1.15);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.step-dot.completed {
    background: var(--success);
    color: white;
}

.step-line {
    width: 60px;
    height: 3px;
    background: var(--gray-100);
    border-radius: 2px;
    transition: background 0.4s ease;
}

.step-line.active {
    background: var(--primary);
}

.step-line.completed {
    background: var(--success);
}

@media (max-width: 768px) {
    .step-line {
        width: 30px;
    }
}
