/* ============================================================
   Sécurité & RGPD (préversion v2)
   ============================================================ */

.secu-section { max-width: 1320px; margin: 0 auto; padding: 60px 36px 0; }

.secu-body {
    margin-top: 40px;
    display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: start;
}
.secu-body-full { grid-template-columns: 1fr; }

.secu-prose { font-size: 17px; line-height: 1.7; color: var(--noir-doux); }
.secu-prose > * + * { margin-top: 1.1em; }
.secu-prose strong { color: var(--noir); font-weight: 600; }
.secu-prose a { color: var(--rose-fonce); text-decoration: underline; text-underline-offset: 2px; }
.secu-subtitle { font-family: 'Familjen Grotesk', sans-serif; font-size: 18px; font-weight: 600; color: var(--noir); margin-top: 28px; }

/* Liste d'engagements avec puce check */
.secu-list {
    list-style: none; margin: 0; padding: 28px 30px;
    background: var(--creme-clair); border: 1px solid var(--ligne); border-radius: 16px;
}
.secu-list li {
    position: relative; padding-left: 30px; padding-top: 12px; padding-bottom: 12px;
    font-size: 15px; color: var(--noir-doux); line-height: 1.5;
    border-bottom: 1px solid var(--ligne);
}
.secu-list li:last-child { border-bottom: 0; }
.secu-list li::before {
    content: ''; position: absolute; left: 0; top: 16px;
    width: 16px; height: 16px;
    background: var(--rose-trace);
    border-radius: 50%;
}
.secu-list li::after {
    content: ''; position: absolute; left: 5px; top: 20px;
    width: 6px; height: 3px;
    border-left: 1.6px solid var(--rose-fonce); border-bottom: 1.6px solid var(--rose-fonce);
    transform: rotate(-45deg);
}
.secu-list strong { color: var(--noir); font-weight: 600; }

/* Marqueur de placeholder visible */
.secu-flag {
    display: inline-block;
    font-size: 11px; font-weight: 700; letter-spacing: 0.04em;
    color: #9A3412; background: #FEF0C7;
    padding: 1px 6px; border-radius: 5px; white-space: nowrap;
    vertical-align: middle;
}

/* Tableau sous-traitants */
.secu-table-wrap { margin-top: 40px; }
.secu-table {
    width: 100%; border-collapse: collapse;
    background: var(--creme-clair); border: 1px solid var(--ligne); border-radius: 16px; overflow: hidden;
    font-size: 15px;
}
.secu-table th, .secu-table td { text-align: left; padding: 16px 20px; border-bottom: 1px solid var(--ligne); }
.secu-table thead th {
    font-family: 'Onest', sans-serif; font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em;
    color: var(--gris); font-weight: 600; background: var(--creme-fonce);
}
.secu-table tbody tr:last-child td { border-bottom: 0; }
.secu-table td { color: var(--noir-doux); }
.secu-table-note { margin-top: 14px; font-size: 13px; font-style: italic; color: var(--gris); }

.secu-editor-note {
    margin-top: 32px;
    padding: 20px 24px;
    background: var(--rose-trace);
    border-left: 3px solid var(--rose-fonce);
    border-radius: 0 12px 12px 0;
    font-size: 15px; line-height: 1.6; color: var(--noir-doux);
}
.secu-editor-note strong { color: var(--noir); font-weight: 600; }

@media (max-width: 900px) {
    .secu-body { grid-template-columns: 1fr; gap: 28px; }

    /* Tableau en cartes empilées */
    .secu-table thead { display: none; }
    .secu-table, .secu-table tbody, .secu-table tr, .secu-table td { display: block; width: 100%; }
    .secu-table tr { border-bottom: 1px solid var(--ligne); padding: 8px 0; }
    .secu-table tr:last-child { border-bottom: 0; }
    .secu-table td { border-bottom: 0; padding: 6px 20px; }
    .secu-table td::before {
        content: attr(data-label) ' · ';
        font-weight: 600; color: var(--gris); font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em;
    }
}
