/* maia.css */
.maia-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}

.maia-card {
    transition: all 0.3s ease-in-out;
}

.maia-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.maia-step {
    position: relative;
}

.maia-step:not(:last-child):after {
    content: '';
    position: absolute;
    left: 24px;
    top: 48px;
    height: 32px;
    width: 2px;
    background: #e5e7eb;
}

@media (max-width: 768px) {
    .maia-step:not(:last-child):after {
        display: none;
    }
}

/* Animazione per i numeri dei step */
.step-number {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}
