body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
}

.glow-gold {
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.3), 0 0 25px rgba(251, 191, 36, 0.15) !important;
    border-left-width: 6px !important;
    background: linear-gradient(135deg, #fef3c7 0%, #fde047 50%, #facc15 100%) !important;
}

.glow-green {
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.3), 0 0 25px rgba(34, 197, 94, 0.15) !important;
    border-left-width: 6px !important;
    background: linear-gradient(135deg, #d1fae5 0%, #6ee7b7 50%, #34d399 100%) !important;
}

.consultant-card {
    position: relative;
    background: white;
}

/* TOP 3 cards - GEEN border-left! */
.consultant-card-top3 {
    position: relative;
    background: white;
    border-left: none !important;
}

.delay-75 {
    animation-delay: 0.2s;
}

.delay-150 {
    animation-delay: 0.4s;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.animate-bounce {
    animation: bounce 1s ease-in-out infinite;
}

@keyframes pulse-slow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.animate-pulse-slow {
    animation: pulse-slow 2s ease-in-out infinite;
}

/* ===== VLOEIENDE FADE OVERGANG TUSSEN VIEWS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.view-fade-in {
    animation: fadeIn 0.8s ease-in-out;
}

/* ===== #1 HELE CARD PULSE ANIMATIE (groter en kleiner) - SUBTIEL ===== */
@keyframes pulse-card {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
}

.animate-pulse-card {
    animation: pulse-card 3s ease-in-out infinite;
}

/* ===== VOL VERMOGEN STYLING (>10 pogingen/uur) - PAARSE ACHTERGROND (LICHTER) ===== */
.glow-vol-vermogen {
    box-shadow: 0 0 20px rgba(147, 51, 234, 0.3), 0 0 35px rgba(147, 51, 234, 0.15) !important;
    border-left-width: 6px !important;
    background: linear-gradient(135deg, #faf5ff 0%, #e9d5ff 40%, #d8b4fe 100%) !important;
}
