/* === GLOV SECURE AUDIT PAGE SPECIFIC STYLES (/secure/audit) === */
/* Process Cards */
.process-card {
    padding: 2rem;
    background: rgba(29, 211, 192, 0.08); /* Transparence de la couleur thème */
    border-radius: 0.5rem;
    border: 1px solid rgba(29, 211, 192, 0.2);
    transition: all 0.3s ease;
    height: 100%;
}

.process-card:hover {
    background: rgba(29, 211, 192, 0.12); /* Plus opaque au survol */
    border-color: rgba(29, 211, 192, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(29, 211, 192, 0.2);
}

.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1dd3c0 0%, #0ca99d 100%); /* Dégradé de couleur thème */
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    color: #001713; /* Couleur de fond la plus foncée pour le contraste */