/* ═══════════════════════════════════════════════════
   CONFIDENTIALITÉ — SPÉCIFIQUE
═══════════════════════════════════════════════════ */

/* Couleur secondaire propre à cette page */
:root {
    --secondary: #06b6d4; /* cyan au lieu de purple */
}

/* NAV LINK — style propre à la confidentialité (border-left) */
.nav-link-active {
    border-left: 3px solid var(--primary);
    padding-left: 16px;
}

.nav-link {
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    padding-left: 16px;
}

/* LEGAL CARD — variante arrondie légèrement différente */
.legal-card {
    border-radius: 1.5rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(20px);
}

.legal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -12px rgba(79, 70, 229, 0.08);
}
