/* ============================================================================
   SECTION ICONS & ENHANCEMENTS
   Icons for How It Works, FAQ, and Policies sections
   ============================================================================ */

/* Step Icons - How It Works */
.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    animation: slideInDown 0.6s ease-out;
}

.step-icon svg {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 2px 4px rgba(79, 70, 229, 0.1));
    transition: transform 300ms ease;
}

.step-card:hover .step-icon svg {
    transform: scale(1.1) translateY(-2px);
}

/* FAQ Icons */
.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    padding: 12px;
    background: linear-gradient(135deg, #f0f4ff 0%, #e0e7ff 100%);
    border-radius: 12px;
    width: 56px;
    height: 56px;
}

.faq-icon svg {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 1px 2px rgba(79, 70, 229, 0.15));
    transition: transform 300ms ease;
}

.faq-card:hover .faq-icon svg {
    transform: rotate(5deg) scale(1.05);
}

/* Policy Icons */
.policy-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    padding: 14px;
    background: linear-gradient(135deg, #f0f4ff 0%, #e0e7ff 100%);
    border-radius: 14px;
    width: 64px;
    height: 64px;
}

.policy-icon svg {
    width: 36px;
    height: 36px;
    filter: drop-shadow(0 2px 4px rgba(79, 70, 229, 0.1));
    transition: transform 300ms ease;
}

.policy-card:hover .policy-icon svg {
    transform: scale(1.1);
}

/* Mobile Enhancements */
@media (max-width: 768px) {
    .step-icon {
        margin-bottom: 12px;
    }
    
    .step-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .step-number {
        font-size: 1.2rem !important;
    }
    
    .faq-icon {
        width: 48px;
        height: 48px;
        padding: 8px;
        margin-bottom: 10px;
    }
    
    .faq-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .policy-icon {
        width: 56px;
        height: 56px;
        padding: 10px;
        margin-bottom: 12px;
    }
    
    .policy-icon svg {
        width: 32px;
        height: 32px;
    }
}

/* Animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Step Card Styling Enhancements */
.step-card {
    text-align: center;
    transition: all 300ms ease;
}

.step-card h3 {
    margin-top: 12px;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.step-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #64718a;
}

/* FAQ Card Styling */
.faq-card {
    text-align: left;
    transition: all 300ms ease;
}

.faq-card h3 {
    margin-top: 8px;
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: #1a3a8a;
}

.faq-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #64718a;
    margin: 0;
}

/* Policy Card Styling */
.policy-card {
    text-align: left;
    transition: all 300ms ease;
}

.policy-card h3 {
    margin-top: 8px;
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: #1a3a8a;
}

.policy-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #64718a;
    margin: 0;
}

/* Grid responsiveness with increased width benefit */
@media (max-width: 640px) {
    .steps-grid,
    .faq-grid,
    .policy-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
}
