
/* Sommaire ancres */
.actions-sommaire { border-top: 1px solid rgba(255,255,255,.12); position: relative; z-index: 1; }
.actions-sommaire-inner { max-width:1400px; margin:0 auto; display:flex; flex-wrap:wrap; }
.actions-sommaire a {
    font-size: 13px; font-weight: 600;
    color: rgba(255,255,255,.60);
    text-decoration: none;
    padding: 14px 20px;
    border-right: 1px solid rgba(255,255,255,.10);
    transition: color .15s, background-color .15s;
    white-space: nowrap;
}
.actions-sommaire a:hover { color: var(--defi-white); background-color: rgba(255,255,255,.06); }

/* ========================================
   SECTIONS ACTIONS
   ======================================== */
.actions-main {}

.action-section {
    background-color: var(--defi-white);
    padding: 80px 40px;
    scroll-margin-top: 68px;
}
.action-section.action-section-alt {
    background-color: var(--defi-cream);
}

.action-inner {
    max-width: 1400px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

/* ---- Colonne contenu texte ---- */
.action-content-col {}

.action-num {
    font-family: var(--defi-font-head);
    font-size: 52px; font-weight: 600;
    color: var(--defi-border);
    line-height: 1;
    margin-bottom: 4px;
}
.action-tag {
    font-size: 11px; font-weight: 600;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--defi-terra);
    margin-bottom: 14px;
}
.action-content-col h2 {
    font-family: var(--defi-font-head);
    font-size: 26px; font-weight: 600;
    color: var(--defi-slate);
    line-height: 1.3;
    margin-bottom: 24px;
}

/* Bloc enjeu */
.action-enjeu {
    background-color: var(--defi-sand);
    border: 1px solid var(--defi-border);
    border-left: 3px solid var(--defi-terra);
    border-radius: 0 var(--defi-radius) var(--defi-radius) 0;
    padding: 18px 20px;
    font-size: 15px;
    color: var(--defi-text-s);
    line-height: 1.7;
    margin-bottom: 28px;
}
.enjeu-label {
    font-weight: 600;
    color: var(--defi-terra);
    margin-right: 4px;
}

/* Bloc En Pratique */
.action-pratique { margin-bottom: 28px; }
.pratique-titre {
    display: flex; align-items: center; gap: 10px;
    font-size: 17px; font-weight: 600;
    color: var(--defi-slate);
    margin-bottom: 16px;
}
.pratique-titre svg {
    width: 22px; height: 22px;
    stroke: var(--defi-terra);
    flex-shrink: 0;
}
.action-liste {
    list-style: none;
    display: flex; flex-direction: column; gap: 10px;
}
.action-liste li {
    font-size: 15px;
    color: var(--defi-text-s);
    line-height: 1.65;
    padding-left: 18px;
    position: relative;
}
.action-liste li::before {
    content: '—';
    position: absolute; left: 0;
    color: var(--defi-terra);
    font-weight: 600;
}

/* ---- Colonne stats ---- */
.action-stats-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

/* Carte stat unique (grande) */
.stat-card {
    background-color: var(--defi-white);
    border: 1px solid var(--defi-border);
    border-radius: var(--defi-radius);
    padding: 28px 24px;
    width: 100%;
}
.action-section-alt .stat-card {
    background-color: var(--defi-white);
}

.stat-card-large {
    border: 2px solid var(--defi-slate);
}
.stat-num {
    font-family: var(--defi-font-head);
    font-size: 56px; font-weight: 600;
    color: var(--defi-slate);
    line-height: 1;
    margin-bottom: 10px;
}
.stat-card-large .stat-num { font-size: 72px; }
.stat-label {
    font-size: 15px;
    color: var(--defi-text-s);
    line-height: 1.4;
}

/* Grille 3 stats côte à côte */
.stat-row-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    width: 100%;
}
.stat-row-3 .stat-num { font-size: 36px; }
.stat-row-3 .stat-label { font-size: 13px; }

.stat-card-mt { margin-top: 16px; }

/* Bouton contact */
.btn-action-contact {
    background-color: var(--defi-terra);
    color: var(--defi-white);
    padding: 11px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-family: var(--defi-font-body);
    font-weight: 600; font-size: 14px;
    display: inline-block;
    transition: background-color .15s;
    margin-top: 8px;
}
.btn-action-contact:hover { background-color: var(--defi-terra-d); }

/* ---- Projet Phare ---- */
.projet-phare-card {
    background-color: var(--defi-sand);
    border: 1px solid var(--defi-border);
    border-radius: var(--defi-radius);
    padding: 28px;
    width: 100%;
}
.projet-phare-titre {
    font-size: 11px; font-weight: 600;
    letter-spacing: .10em; text-transform: uppercase;
    color: var(--defi-terra);
    margin-bottom: 8px;
}
.projet-phare-nom {
    font-family: var(--defi-font-head);
    font-size: 17px; font-weight: 600;
    color: var(--defi-slate);
    line-height: 1.35;
    margin-bottom: 10px;
}
.projet-phare-desc {
    font-family: var(--defi-font-head);
    font-style: italic;
    font-size: 14px;
    color: var(--defi-text-s);
    line-height: 1.5;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--defi-border);
}
.projet-phare-liste {
    list-style: none;
    display: flex; flex-direction: column; gap: 12px;
}
.projet-phare-liste li {
    font-size: 14px;
    color: var(--defi-text-s);
    line-height: 1.55;
    padding-left: 16px;
    position: relative;
}
.projet-phare-liste li::before {
    content: '→';
    position: absolute; left: 0;
    color: var(--defi-terra);
}
.projet-phare-liste strong { color: var(--defi-slate); }

/* ---- Checklist emploi ---- */
.action-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 100%;
}
.checklist-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background-color: var(--defi-sand);
    border: 1px solid var(--defi-border);
    border-radius: var(--defi-radius);
    padding: 18px;
    font-size: 14px;
    color: var(--defi-text-s);
    line-height: 1.55;
}
.checklist-icon {
    width: 24px; height: 24px;
    flex-shrink: 0;
    margin-top: 1px;
}
.checklist-icon svg {
    width: 24px; height: 24px;
    fill: var(--defi-terra);
}
.checklist-item strong { color: var(--defi-slate); }

/* ========================================
   GRAPHIQUES
   ======================================== */
.graphique-card {
    background-color: var(--defi-white);
    border: 1px solid var(--defi-border);
    border-radius: var(--defi-radius);
    padding: 24px 20px 16px;
    width: 100%;
}
.action-section-alt .graphique-card {
    background-color: var(--defi-white);
}
.graphique-titre {
    font-family: var(--defi-font-head);
    font-size: 16px;
    font-weight: 600;
    font-style: italic;
    color: var(--defi-slate);
    text-align: center;
    margin-bottom: 16px;
}
.graphique-legende {
    font-size: 11px;
    color: var(--defi-warm-gray);
    font-style: italic;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 0;
}
.graphique-vide {
    font-size: 14px;
    color: var(--defi-warm-gray);
    text-align: center;
    padding: 24px 0;
}

/* ========================================
   CTA BÉNÉVOLAT
   ======================================== */
.actions-cta { background-color: var(--defi-slate); padding: 56px 40px; }
.actions-cta-inner {
    max-width: 1400px; margin: 0 auto;
    display: flex; align-items: center;
    justify-content: space-between; gap: 40px;
}
.actions-cta-text h3 { font-family:var(--defi-font-head); font-size:24px; font-weight:600; color:var(--defi-white); margin-bottom:8px; }
.actions-cta-text p  { font-size:15px; color:rgba(255,255,255,.65); line-height:1.6; }
.btn-cta {
    background-color: var(--defi-terra); color: var(--defi-white);
    padding: 13px 28px; border-radius: 8px; text-decoration: none;
    font-family: var(--defi-font-body); font-weight: 600; font-size: 15px;
    white-space: nowrap; flex-shrink: 0;
    display: inline-block; transition: background-color .15s;
}
.btn-cta:hover { background-color: var(--defi-terra-d); }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    