/* ==================================================
   HOW IT WORKS SECTION STYLES
   ================================================== */

/* How It Works Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: #F7F9FA;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.step:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(5, 131, 210, 0.15);
    transition: all 0.3s ease;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #0583D2;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #23272C;
}

.step p {
    color: #7A8998;
}

/* Step Icons */
.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, #0583D2, #0470b8);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(5, 131, 210, 0.3);
}

.step:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(5, 131, 210, 0.4);
}

.step-icon i {
    font-size: 2rem;
    color: white;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .steps {
        gap: 2rem;
    }
    
    .step {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }
    
    .step-icon i {
        font-size: 1.8rem;
    }
    
    .step h4 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .step p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .step {
        padding: 1.2rem;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .step-icon i {
        font-size: 1.5rem;
    }
    
    .step h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .step p {
        font-size: 0.9rem;
    }
}