/* =========================================
   TAILLE ENTREPRISE BADGES
   ========================================= */

.badge-taille-ge {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(239, 68, 68, 0.3);
}

.badge-taille-eti {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(245, 158, 11, 0.3);
}

.badge-taille-pme {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

.badge-taille-tpe {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: white;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(107, 114, 128, 0.3);
}

/* =========================================
   CARTES ENTREPRISES - AFFINEMENTS
   ========================================= */

.prospect-card .secteur-badge {
    transition: all 0.3s ease;
}

.prospect-card:hover .secteur-badge {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Style spécifique pour les cartes entreprises */
.prospect-card[data-type="entreprise"] .budget-entreprise {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.2) 100%);
    border-left: 4px solid #10b981;
}

.dark .prospect-card[data-type="entreprise"] .budget-entreprise {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(34, 197, 94, 0.25) 100%);
}

/* Animation pour les badges de décideur */
.prospect-card .badge-decideur {
    animation: pulse-decideur 2s infinite;
}

@keyframes pulse-decideur {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4);
    }
    50% {
        box-shadow: 0 0 0 4px rgba(99, 102, 241, 0);
    }
}

/* =========================================
   VALEUR PIPELINE DANS L'EN-TÊTE DE COLONNE
   ========================================= */

.kanban-column-header .valeur-pipeline {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.dark .kanban-column-header .valeur-pipeline {
    background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
}

/* =========================================
   RESPONSIVE SPÉCIFIQUE ENTREPRISES
   ========================================= */

@media (max-width: 768px) {
    .prospect-card .flex-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .prospect-card .badge-taille {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }

    .prospect-card .secteur-badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }
}
