/* How It Works - Horizontal Steps */
.steps-horizontal {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
    margin: 0 auto;
    flex-wrap: nowrap;
    max-width: 1400px;
    padding: 2rem 1rem;
}

.steps-horizontal .step {
    text-align: center;
    flex: 0 0 auto;
    width: 160px;
    position: relative;
    padding: 0.5rem;
}

.steps-horizontal .step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border: 3px solid #8b5cf6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    font-size: 2rem;
    color: #8b5cf6;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
    transition: all 0.3s;
}

.steps-horizontal .step:hover .step-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    color: white;
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

.steps-horizontal .step-number {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

.steps-horizontal .step h3 {
    font-size: 1.1rem;
    margin: 0.5rem 0;
    color: #f1f5f9;
}

.steps-horizontal .step p {
    font-size: 0.9rem;
    color: #94a3b8;
    margin: 0;
}

.steps-horizontal .step-arrow {
    font-size: 1.5rem;
    color: #6366f1;
    margin: 0;
    display: flex;
    align-items: center;
    padding-top: 2rem;
}

/* Mobile only */
@media (max-width: 480px) {
    .steps-horizontal {
        flex-direction: column;
        gap: 2rem;
    }
    
    .steps-horizontal .step-arrow {
        transform: rotate(90deg);
        padding-top: 0;
    }
    
    .steps-horizontal .step {
        width: 100%;
        max-width: 300px;
    }
}
