:root {
    --beige-page: #f1f0ec;
    --beige-topbar: #f7f3e5;
    --rose-pale: #f7ebe6;
    --vert: #245e4f;
    --jaune: #f2bd21;
    --jaune-hover: #f2bd21;
    --noir: #1a1e1d;
    --nav-background-over: #bab8ab;
}

:root {
    --lc-nav-height: 56px; /* desktop par défaut */
}

@media (max-width: 768px) {
    :root {
        --lc-nav-height: 50px; /* mobile */
    }
}

html {
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    margin: 0;
    background: var(--beige-page);
    color: var(--noir);

    font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", sans-serif;
    line-height: 1.7;
}

/* Typo globale */
p {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 1.1rem;
}

@media (max-width: 768px) {
    img,
    svg,
    video,
    canvas {
        max-width: 100%;
        height: auto;
    }
}

/* =========================================
   NAVIGATION – LANTON COLLECTIF (FIX FULL HEIGHT)
========================================= */

.lc-header {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;

    width: min(1200px, 100% - 32px);
    min-height: 64px;

    background: #fdf6e9;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);

    overflow: hidden; /* 🔑 coupe tout ce qui dépasse + CTA au bord */
}

.lc-header-inner {
    display: flex;
    align-items: stretch; /* 🔥 clé : les enfants prennent la hauteur */
    width: 100%;
    min-height: 64px; /* 🔑 hauteur de référence */
}

/* ---------- LOGO ---------- */

.lc-logo {
    display: flex;
    align-items: center; /* centre VERTICALEMENT le logo */
    padding: 0 20px;
    text-decoration: none;
}

.lc-logo img,
.lc-logo svg {
    height: 40px;
    width: auto;
    display: block;
}

/* ---------- BLOC DROIT ---------- */

.lc-header-right {
    margin-left: auto;
    display: flex;
    align-items: stretch; /* 🔥 permet au CTA d’être plein hauteur */
}

/* ---------- ICÔNES RÉSEAUX ---------- */

.lc-header-socials {
    display: flex;
    align-items: center; /* centre verticalement les icônes */
    gap: 6px;
    padding: 0 12px 0 0; /* pas de padding vertical */
}

.lc-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    text-decoration: none;
    color: var(--noir);
    background: transparent;

    transition: background-color 0.15s ease, box-shadow 0.15s ease,
        transform 0.15s ease;
}

.lc-social-link i,
.lc-social-link img {
    width: 18px;
    height: 18px;
    display: block;
}

.lc-social-link:hover {
    background-color: var(--nav-background-over);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

/* ---------- CTA "NOUS REJOINDRE" ---------- */

.lc-header-cta {
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 36px;

    background: var(--jaune);
    color: var(--noir);

    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    text-decoration: none;

    height: 100%; /* 🔑 */
    align-self: stretch; /* 🔥 plein hauteur */

    /* plus besoin d'arrondis ici : c'est le header qui clip (overflow hidden) */
    transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease,
        transform 0.1s ease;

    position: relative;
    gap: 10px;
}

/* la flèche : cachée par défaut */
.lc-header-cta::after {
    content: "→";
    display: inline-block;
    opacity: 0;
    transform: translateX(-6px); /* “rentre” un peu */
    transition: opacity 0.12s ease, transform 0.12s ease;
}

.lc-header-cta:hover {
    background-color: var(--jaune-hover); /* jaune flash #f6ff4a */
}

.lc-header-cta:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.lc-header-cta,
.btn-skew {
    font-weight: 700;
}

/* ---------- VERSION MOBILE ---------- */

@media (max-width: 768px) {
    .lc-header {
        top: 8px;
    }

    .lc-header-inner {
        min-height: 56px;
    }

    .lc-logo {
        padding: 0 12px;
    }

    .lc-logo img,
    .lc-logo svg {
        height: 30px;
    }

    .lc-header-socials {
        padding-right: 8px;
        gap: 4px;
    }

    .lc-header-cta {
        padding: 0 16px;
        font-size: 0.8rem;
    }
}

/* ===== HERO ===== */

.hero-section {
    min-height: 100vh;
    height: 100dvh;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background-color: var(--beige-page);
    background-image: url("img/hero-background-desktop.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    .hero-section {
        background-image: url("img/hero-background-mobile.webp");
        background-position: center top;
    }
}

.hero-inner {
    width: 100%;
    padding-top: 110px; /* laisse la place à la nav fixe */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (max-width: 576px) {
    .hero-inner {
        padding-top: 90px;
    }
}

.hero-main {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 16px;
}

.hero-box {
    background: var(--vert);
    color: #fff;
    padding: 3.2rem 3rem;
    max-width: 900px;
    width: calc(100% - 160px);
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
}

@media (max-width: 768px) {
    .hero-box {
        width: calc(100% - 40px);
        padding: 1.8rem 1.4rem;
        margin-top: 16px;
    }
}

/* ===== TITRE H1 HERO ===== */
.hero-title {
    font-weight: 900;
    font-size: clamp(2.2rem, 6vw, 2.8rem);
    line-height: 0.95;
    text-transform: none;
    letter-spacing: -0.01em;
}

@media (min-width: 769px) {
    .hero-title {
        font-size: 3.15rem; /* ← clé du réglage */
        line-height: 1;
    }
}

@media (min-width: 1200px) {
    .hero-title {
        font-size: 3.15rem;
        margin-bottom: 1.2rem;
    }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 1.9vw, 1.5rem);
    line-height: 1.3;
    font-weight: 500;
    margin-top: 1.2rem;
}

@media (min-width: 769px) {
    .hero-subtitle {
        margin-bottom: 2.4rem;
    }
}

/* ===== BOUTON JAUNE ===== */

.btn-skew {
    display: inline-block;
    background: var(--jaune);
    color: var(--noir);
    font-size: 1.89rem;
    padding: 1.2rem 3.2rem;
    border-radius: 0;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    transform: rotate(-3deg);
    transition: 0.15s ease;
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.btn-skew:hover,
.btn-skew:focus-visible {
    transform: rotate(-3deg) translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    color: var(--noir);
}

@media (max-width: 768px) {
    .btn-skew {
        font-size: 1.3rem;
        padding: 0.9rem 1.8rem;
        white-space: normal;
    }
}

@media (max-width: 400px) {
    .btn-skew {
        font-size: 1.05rem;
        padding: 0.9rem 1.6rem;
        letter-spacing: 0.08em;
    }
}

/* ===== SECTION TEXTE "APPEL" ===== */

.appel-section {
    background: var(--beige-page);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
}

@media (min-width: 992px) {
    .appel-inner {
        padding-top: 2.5rem;
        padding-bottom: 4rem;
    }
}

.appel-title {
    font-weight: 900;
    font-size: clamp(2.3rem, 3vw, 2.8rem);
    line-height: 1.15;
    margin-bottom: 1.75rem;
}

span.highlight-underline {
    background-image: linear-gradient(
        to top,
        var(--vert) 0,
        var(--vert) 0.22em,
        transparent 0.22em
    );
    background-repeat: no-repeat;
    background-size: 100% 0.22em;
    background-position: 0 88%;
}

.appel-lead {
    font-size: 20px;
    max-width: 46rem;
}

.appel-lead strong {
    font-weight: 700;
}

/* ===== SECTION INTRO JAUNE PLEINE LARGEUR ===== */

.appel-intro-section {
    background: var(--jaune);
    text-align: center;
}

.intro-title {
    font-weight: 900;
    font-size: 39px;
    line-height: 47px;
    max-width: 900px;
    margin: 0 auto;
}

.intro-title .u-underline {
    border-bottom: 4px solid var(--vert);
    padding-bottom: 2px;
}

@media (max-width: 576px) {
    .appel-intro-section {
        padding: 56px 18px 32px; /* haut | gauche/droite | bas */
    }

    .intro-title {
        font-size: 24px;
        line-height: 32px;
    }
}

/* ===== SECTION DES ENGAGEMENTS (fond + items/icônes) ===== */

.section-engagements {
    background: var(--rose-pale);
    padding: 80px 0;
}

.eng-item {
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
    padding: 0 12px;
}

.eng-icon-img {
    display: block;
    margin: 0 auto 16px;
    object-fit: contain;
}

/* Cadre unique pour toutes les icônes */
.eng-icon {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

/* L’image se cale dans la boîte */
.eng-icon-img {
    height: 60px; /* ← LA solution */
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

.eng-text {
    font-size: 17px !important;
    line-height: 27px !important;
    font-weight: 400;
    text-align: center;
    margin: 0 auto;
    max-width: 480px;
}

@media (max-width: 576px) {
    .eng-text {
        font-size: 16px;
        line-height: 26px;
    }
}

.eng-text strong {
    font-weight: 700;
}

.intro-text {
    text-align: center;
}

/* Neutraliser les marges/paddings Bootstrap dans la section engagements */
.section-engagements .container {
    padding-left: 0;
    padding-right: 0;
}

.section-engagements .row {
    margin-left: 0;
    margin-right: 0;
    justify-content: center; /* centre l’ensemble des colonnes dans la ligne */
}

/* ===== ANCRE : décalage pour nav fixe ===== */

#appel-deb,
#appel-fin {
    scroll-margin-top: 120px; /* nav + un peu d’air */
}

.special {
    font-weight: 700;
    font-size: 26px !important;
    line-height: 32px !important;
}

/* ===== CTA intégré dans la dernière section ===== */

.cta-in-appel {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    padding-bottom: 35px;
}

.cta-in-appel .cta-box {
    /* On réutilise hero-box mais on contrôle la largeur */
    width: 100%;
    max-width: 800px;
    padding: 3.2rem 3rem;
}

@media (max-width: 768px) {
    .cta-in-appel .cta-box {
        padding: 1.8rem 1.4rem;
    }
}

.cta-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.cta-btn {
    display: inline-block;
}

/* Bouton CTA dans le bloc final (plus petit que celui du hero) */
.cta-in-appel .cta-btn {
    font-size: 1.4rem;
    padding: 0.9rem 2.2rem;
    margin-top: 0.75rem;
}

/* Bouton CTA plus petit sur mobile */
@media (max-width: 576px) {
    .cta-in-appel .cta-btn {
        font-size: 1.05rem; /* au lieu de ~1.3-1.4 */
        padding: 0.7rem 1.4rem; /* réduit juste ce qu'il faut */
        letter-spacing: 0.05em; /* garde l'équilibre visuel */
        white-space: nowrap; /* force tout sur une ligne */
    }
}

@media (max-width: 576px) {
    .cta-in-appel {
        padding: 0 10px; /* air symétrique gauche/droite */
    }
}

/* Recentrer totalement le bloc CTA sur mobile */
@media (max-width: 576px) {
    /* On enlève les décalages de la grille Bootstrap dans la dernière section */
    #appel-fin .container {
        padding-left: 0;
        padding-right: 0;
    }

    #appel-fin .row {
        margin-left: 0;
        margin-right: 0;
    }

    #appel-fin .col-lg-9 {
        padding-left: 0;
        padding-right: 0;
    }

    /* On force le bloc CTA à être bien au centre et à occuper toute la largeur utile */
    .cta-in-appel {
        margin-left: auto;
        margin-right: auto;
        padding: 0 16px; /* un peu d'air symétrique à gauche/droite */
    }

    .cta-in-appel .hero-box {
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Rétablir un padding correct pour le texte dans #appel-fin */
@media (max-width: 576px) {
    #appel-fin .col-lg-9 {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* ===== FOOTER LANTON COLLECTIF ===== */

.lc-footer {
    background: var(--beige-page);
    padding: 32px 0;
}

/* CONTENEUR PRINCIPAL */
.lc-footer-inner {
    display: flex;
    align-items: center; /* 🔥 ALIGNEMENT VERTICAL PARFAIT */
    justify-content: space-between;
    gap: 32px;
}

/* LOGO */
.lc-footer-logo {
    height: 48px; /* 🔑 fixe la référence visuelle */
    width: auto;
    display: block;
}

/* LIENS TEXTE */
.lc-footer-links {
    display: flex;
    align-items: center; /* 🔥 même hauteur que le logo */
    gap: 24px;
}

.lc-footer-links a {
    font-weight: 700;
    text-decoration: none;
    color: var(--noir);
    font-size: 0.95rem;
    white-space: nowrap;
}

/* RÉSEAUX */
.lc-footer-socials {
    display: flex;
    align-items: center; /* 🔥 idem */
    gap: 12px;
}

.lc-footer-social {
    width: 40px;
    height: 40px;
    background: var(--jaune);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--noir);
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.lc-footer-social:hover {
    color: var(--noir);
    background: var(--jaune-hover); /* ✅ jaune flash */
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}

/* LIENS TEXTE DU FOOTER */

.lc-footer-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.lc-footer-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 6px 10px;
    border-radius: 0;

    color: var(--noir);
    text-decoration: none;
    font-weight: 700;

    background: transparent;

    transition: background-color 0.15s ease;
}

/* Hover identique à la nav (fond gris) */
.lc-footer-links a:hover {
    color: var(--noir);
    background-color: var(--nav-background-over);
}

/* MOBILE */
@media (max-width: 768px) {
    .lc-footer-inner {
        flex-direction: column; /* ✅ empile */
        align-items: center; /* ✅ centre horizontalement */
        justify-content: center;
        gap: 18px;
        text-align: center; /* ✅ centre le texte */
    }

    .lc-footer-links {
        flex-direction: column; /* ✅ liens l'un sous l'autre */
        align-items: center;
        gap: 2px;
    }

    .lc-footer-socials {
        justify-content: center;
    }
}

/* ===== HERO PAGES INTERNES ===== */

.page-hero {
    background: var(--vert);
    padding: 140px 16px 80px; /* espace pour la nav fixe */
    text-align: left;
}

.page-hero-inner {
    max-width: 900px;
    margin: 0 auto;
}

.page-hero-title {
    font-family: "DM Sans", sans-serif;
    font-weight: 900;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1.15;
    color: var(--beige-page);
    margin: 0;
}

.page-hero-subtitle {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: var(--beige-page);
}

/* Mobile */
@media (max-width: 576px) {
    .page-hero {
        padding: 110px 16px 56px;
    }
}

/* ==============================
   HERO PAGES INTERNES
============================== */

:root {
    --lc-nav-top: 24px; /* top: 24px sur ta nav */
    --lc-nav-h: 64px; /* min-height de la nav */
    --lc-hero-h: 360px; /* hauteur bandeau interne */
    --lc-hero-gap: 28px; /* espace entre nav et H1 */
    --lc-hero-bg: var(--vert);
}

.page-hero {
    background: var(--lc-hero-bg);
    width: 100%;

    /* 🔑 au lieu d'un margin-top (qui crée un “vide”),
     on pousse le contenu à l'intérieur du bandeau */
    padding-bottom: 28px;
}

.page-hero-title {
    margin: 0;
    color: var(--beige-page);
    font-family: "DM Sans", sans-serif;
    font-weight: 900;
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    line-height: 1.05;
    text-align: left;
}

/* Mobile */
@media (max-width: 576px) {
    :root {
        --lc-nav-top: 8px;
        --lc-nav-h: 56px;
        --lc-hero-h: 220px;
        --lc-hero-gap: 18px;
    }
}

/* ==============================
   PAGE "SIGNER L’APPEL" – CSS
   (à coller EN BAS de ton CSS)
============================== */

/* section */
.signer-section {
    padding-top: 20px;
}

/* colonne gauche */
.signer-left .signer-title {
    font-family: "DM Sans", sans-serif;
    font-weight: 900;
    font-size: clamp(1.6rem, 2.2vw, 2.1rem);
    line-height: 1.1;
    margin: 0 0 18px 0;
}

/* on réutilise tes .appel-lead, mais on ajuste l’espacement ici */
.signer-left .appel-lead {
    margin-bottom: 16px;
}

/* colonne droite */
.signer-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* messages flash */
.form-message {
    padding: 14px 16px;
    font-weight: 700;
    font-size: 0.98rem;
    line-height: 1.35;
    background: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}
.form-message--success {
    border-color: var(--vert);
    box-shadow: 0 8px 18px rgba(36, 94, 79, 0.12);
}
.form-message--error {
    border-color: rgba(180, 35, 24, 0.35);
    box-shadow: 0 8px 18px rgba(180, 35, 24, 0.12);
}

/* carte du formulaire */
.signer-form-card {
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(26, 30, 29, 0.12);
    padding: 26px 26px 22px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6px);
}

/* structure globale du form */
.signer-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Symfony form_row → souvent wrapper div */
.signer-form .mb-3 {
    margin-bottom: 0 !important;
}

/* labels */
.signer-form label {
    display: block;
    font-weight: 800;
    font-size: 0.95rem;
    margin-bottom: 6px;
    color: var(--noir);
}

label.signer-consent__label.required,
label.rejoindre-consent__label.required {
    font-size: 0.8rem;
    font-weight: 400;
}

/* inputs / select */
.signer-form input[type="text"],
.signer-form input[type="email"],
.signer-form input[type="tel"],
.signer-form select {
    width: 100%;
    height: 52px;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid rgba(26, 30, 29, 0.18);
    background: rgba(241, 240, 236, 0.6);
    color: var(--noir);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease,
        background-color 0.15s ease;
}

.signer-form input:focus,
.signer-form select:focus {
    border-color: rgba(36, 94, 79, 0.55);
    box-shadow: 0 0 0 4px rgba(36, 94, 79, 0.18);
    background: rgba(241, 240, 236, 0.85);
}

/* select : flèche custom simple (sans casser sur mobile) */
.signer-form select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--noir) 50%),
        linear-gradient(135deg, var(--noir) 50%, transparent 50%);
    background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 42px;
}

/* erreurs Symfony */
.signer-form .invalid-feedback,
.signer-form .form-error-message,
.signer-form .form-errors {
    color: #b42318;
    font-weight: 700;
    margin-top: 6px;
}

/* ===== consentement ===== */
.signer-consent {
    border-top: 0;
}

/* le rendu Symfony peut être .form-check */
.signer-consent .form-check {
    display: grid;
    grid-template-columns: 22px 1fr;
    column-gap: 12px;
    align-items: start;
    margin: 0;
    padding: 0;
}

/* checkbox */
.signer-consent .form-check-input {
    width: 18px;
    height: 18px;
    margin: 0;
    transform: translateY(4px);
    accent-color: var(--vert);
}

/* texte long */
.signer-consent .form-check-label {
    margin: 0;
    font-weight: 500;
    font-size: 0.98rem;
    line-height: 1.4;
}

/* ===== bouton submit ===== */
.signer-submit {
    display: flex;
    justify-content: center;
    margin-top: 6px;
}

.btn-signer {
    margin-bottom: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: var(--jaune);
    color: var(--noir);

    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;

    border: none;
    cursor: pointer;

    font-size: 1.1rem;
    padding: 0.95rem 2.2rem;

    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
    transform: rotate(-3deg);
    transition: transform 0.15s ease, box-shadow 0.15s ease,
        background-color 0.15s ease;
}

.btn-signer:hover,
.btn-signer:focus-visible {
    background-color: var(--jaune-hover);
    transform: rotate(-3deg) translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
    outline: none;
}

/* responsive */
@media (max-width: 576px) {
    .signer-form-card {
        padding: 18px 16px 16px;
    }

    .btn-signer {
        width: 100%;
        font-size: 1.05rem;
        padding: 0.85rem 1.2rem;
        letter-spacing: 0.08em;
        transform: rotate(-2deg);
    }

    .signer-consent .form-check {
        grid-template-columns: 20px 1fr;
        column-gap: 10px;
    }

    .signer-consent .form-check-label {
        font-size: 0.95rem;
    }
}

/* Consentement : checkbox à gauche, texte à droite */
.signer-consent {
    margin-top: -20px !important;
    display: grid;
    grid-template-columns: 22px 1fr;
    column-gap: 12px;
    align-items: start;
}

.signer-consent__input {
    grid-column: 1;
    grid-row: 1;
    width: 18px;
    height: 18px;
    margin: 0;
    transform: translateY(4px);
    accent-color: var(--vert);
}

.signer-consent__label {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
}

/* erreurs éventuelles sous le texte */
.signer-consent .form-error-message,
.signer-consent .invalid-feedback,
.signer-consent .form-errors {
    grid-column: 2;
    margin-top: 6px;
    color: #b42318;
    font-weight: 600;
}

/* Espacement vertical entre chaque champ */
.signer-fields > .mb-3,
.signer-fields > div {
    margin-bottom: 20px;
}

/* ==============================
   FLASH MESSAGE – FULL WIDTH
============================== */

.flash-row {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.flash-message,
.form-message {
    width: 100%;
    max-width: 760px; /* cohérent avec la largeur du formulaire */
    padding: 14px 18px;
    border-radius: 14px;
    text-align: center;
    font-weight: 600;
    line-height: 1.4;
}

/* Succès */
.flash-message--success,
.form-message--success {
    background: rgba(36, 94, 79, 0.12);
    border: 1px solid rgba(36, 94, 79, 0.35);
    color: #245e4f;
}

/* Erreur */
.flash-message--error,
.form-message--error {
    background: rgba(180, 35, 24, 0.1);
    border: 1px solid rgba(180, 35, 24, 0.35);
    color: #b42318;
}

/* Mobile */
@media (max-width: 576px) {
    .flash-message,
    .form-message {
        max-width: 100%;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .signer-section .row {
        margin-left: 0;
        margin-right: 0;
    }
    .signer-section .row > [class^="col-"],
    .signer-section .row > [class*=" col-"] {
        padding-left: 0;
        padding-right: 0;
    }
    .signer-form-card {
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
    }
}

.signer-form textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(26, 30, 29, 0.18);
    background: rgba(241, 240, 236, 0.55);
    color: var(--noir);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease,
        background-color 0.15s ease;
    resize: vertical;
    min-height: 140px;
}
.signer-form textarea:focus {
    border-color: rgba(36, 94, 79, 0.55);
    box-shadow: 0 0 0 4px rgba(36, 94, 79, 0.18);
    background: rgba(241, 240, 236, 0.8);
}

/* erreurs Symfony */
.signer-form-card ul {
    margin: 6px 0 0;
    padding-left: 18px;
}

.signer-form-card li,
.signer-form-card .form-error-message,
.signer-form-card .invalid-feedback,
.signer-form-card .form-error,
.signer-form-card .form-errors {
    color: #b42318;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.35;
}

/* message global (optionnel) */
.form-global-error {
    margin: 0 0 14px;
    padding: 10px 12px;
    border: 1px solid rgba(180, 35, 24, 0.35);
    background: rgba(180, 35, 24, 0.08);
    border-radius: 10px;
}

/* ===== AIDE : liste de checkboxes en 2 colonnes ===== */
.signer-choices {
    margin-top: 16px;
}

.signer-choices__list {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Chaque ligne = 2 colonnes : checkbox / label */
.signer-choice-item {
    display: grid;
    grid-template-columns: 22px 1fr;
    column-gap: 12px;
    align-items: start;
}

/* checkbox */
.signer-choice-item__input {
    width: 18px;
    height: 18px;
    margin: 0;
    transform: translateY(4px);
}

/* label */
.signer-choice-item__label {
    margin: 0;
    line-height: 1.35;
    cursor: pointer;
}

label.signer-choice-item__label {
    font-weight: 400;
}

/* =========================
   TITRES NIVEAU H2
========================= */
h2 {
    font-size: 24px; /* entre 24 et 26 */
    font-weight: 900; /* semi-bold, lisible sans être lourd */
    line-height: 1.35;
    margin-bottom: 0.75em;
}

/* =========================
   LIENS – STYLE NEUTRE
========================= */
a,
a:visited {
    color: inherit; /* reprend la couleur du texte */
    text-decoration: none; /* pas de soulignement */
}

a:hover,
a:focus {
    text-decoration: none;
    opacity: 0.85; /* léger feedback visuel */
    color: var(--noir);
}

.legal-content a {
    font-weight: 500;
    border-bottom: 1px solid var(--noir);
}

.legal-content a:hover {
    border-bottom-color: var(--noir);
}

h2.appel-manifeste-title {
    font-size: 36px;
    line-height: 1.15;
}

a.btn-skew {
    color: var(--noir);
}

.hero-main .btn-skew {
    font-size: 1.45rem;
    padding: 0.75rem 1.4rem;
    letter-spacing: 0.08em;
}

@media (max-width: 768px) {
    .hero-main .btn-skew {
        font-size: 0.9rem;
    }
}

/* 1) La section HERO prend la hauteur écran */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* 2) Le header reste en haut, taille auto */
.lc-header {
    flex: 0 0 auto;
}

/* 3) Le contenu du hero prend tout l'espace restant et centre */
.hero-inner {
    flex: 1 1 auto;
    display: flex;
    align-items: center; /* centre vertical */
    justify-content: center; /* centre horizontal */
    padding: 2.5rem 1rem; /* respirer */
}

.btn-outline {
    margin-top: 1.4rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;

    padding: 0.85rem 1.4rem;

    border: 2px solid var(--noir); /* à adapter à ta couleur texte */
    background: transparent;

    color: var(--noir);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;

    text-decoration: none;
    cursor: pointer;

    transition: background-color 0.2s ease, color 0.2s ease,
        transform 0.15s ease;
}

.btn-outline:hover {
    background-color: var(--noir);
    color: var(--beige-page);
    transform: translateY(-1px);
}

@media (min-width: 768px) {
    .btn-outline {
        font-size: 1.15rem;
    }
}

@media (max-width: 576px) {
    .appel-lead,
    .intro-text {
        font-size: 17px;
        line-height: 25px;
    }

    .signer-right {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .signer-left {
        margin-left: 10px;
        margin-right: 10px;
    }

    .intro-text {
        padding: 0 10px 30px 10px;
    }

    .appel-manifeste-title {
        font-size: 26px !important;
        line-height: 32px !important;
    }

    .cta-in-appel {
        margin-top: 0;
    }

    p.appel-lead.special.full-appel {
        margin-bottom: 50px !important;
    }
}

.cta-subtitle {
    line-height: 1.3 !important;
}

img.eng-icon-img.icon-jaune {
    height: 60px;
    padding: 12px 0;
}

.legal-content h2 {
    margin-bottom: 10px;
}

.legal-content p {
    margin-bottom: 25px;
    font-size: 17px;
    line-height: 25px;
}

@media (max-width: 768px) {
    .lc-header-socials {
        display: none;
    }
}

.lc-header-inner {
    display: flex;
    align-items: stretch; /* garde */
    width: 100%;
    min-height: 64px;
}

.lc-logo {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 20px;
}

.lc-header-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch; /* essentiel */
    height: auto; /* évite les surprises */
    padding: 0 36px;
}

/* 1) Le wrapper du logo prend toute la hauteur du header */
.lc-logo {
    align-self: stretch; /* clé */
    display: flex;
    align-items: center; /* centre verticalement le contenu du logo */
    height: auto; /* laisse flex gérer */
    padding: 0 12px; /* mobile ok, desktop tu peux garder 20px si tu veux */
}

/* 2) L’image ne doit jamais avoir de marges “fantômes” */
.lc-logo img {
    display: block;
    margin: 0;
    height: 30px; /* mobile */
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    /* 1️⃣ Forcer le CTA sur une seule ligne */
    .lc-header-cta {
        white-space: nowrap; /* empêche le retour à la ligne */
        padding: 0 20px; /* réduit la largeur interne */
        font-size: 0.85rem; /* légèrement plus petit si besoin */
        letter-spacing: 0.06em; /* garde le style */
    }

    /* 2️⃣ Créer plus d’espace entre logo et CTA */
    .lc-header-right {
        margin-left: auto; /* pousse bien le bloc à droite */
    }

    /* 3️⃣ Réduire légèrement le logo pour libérer de la place */
    .lc-logo img {
        height: 24px; /* un poil plus petit */
    }

    /* 4️⃣ Augmenter l’espace à droite du logo */
    .lc-logo {
        padding-right: 18px; /* 🔑 espace visuel entre logo et CTA */
    }
}

@media (min-width: 769px) {
    .lc-logo img,
    .lc-logo svg {
        height: 40px; /* ou 50px si tu veux plus affirmé */
    }

    .lc-logo {
        padding: 20px;
    }
}

.lc-header-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    /* IMPORTANT : symétrique */
    padding: 0 56px; /* même valeur à gauche et à droite */
    gap: 0;

    background: var(--jaune);
    color: var(--noir);
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    text-decoration: none;
    height: 100%;
    align-self: stretch;
}

/* flèche hors flux */
.lc-header-cta::after {
    content: "→";
    position: absolute;
    right: 22px; /* dans le padding droit */
    top: 50%;
    transform: translateY(-50%) translateX(-6px);
    opacity: 0;
    transition: opacity 0.12s ease, transform 0.12s ease;
}

.lc-header-cta:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

@media (max-width: 768px) {
    .lc-header-cta {
        padding: 0 22px; /* symétrique aussi */
        font-size: 0.8rem;
        white-space: nowrap;
    }
    .lc-header-cta::after {
        right: 10px;
    }
}

.lc-header {
    min-height: var(--lc-nav-height);
}

.lc-header-inner {
    min-height: var(--lc-nav-height);
    display: flex;
    align-items: stretch;
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-box p.hero-subtitle,
    .hero-box .cta-subtitle {
        font-size: 1.05rem;
    }

    .hero-main .btn-skew,
    .hero-main .btn-skew,
    .cta-in-appel .cta-btn {
        font-size: 0.8rem;
    }
}

.faq-group__title {
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    margin: 0 0 1rem 0;
}

.faq-item {
    border-bottom: 2px solid var(--noir);
}

.faq-item__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 0;
    background: transparent;
    border: 0;
    text-align: left;
    cursor: pointer;
}

.faq-item__question {
    font-weight: 700;
    font-size: 1.35rem;
    line-height: 1.35;
}

.faq-item__icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    position: relative;
}

/* Le + (deux barres) */
.faq-item__icon::before,
.faq-item__icon::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 2px;
    background: rgba(0, 0, 0, 0.75);
    border-radius: 2px;
}
.faq-item__icon::after {
    transform: rotate(90deg);
}

/* Quand c'est ouvert : on affiche une croix (×) en “désactivant” la barre verticale */
.faq-item.is-open .faq-item__icon::after {
    transform: rotate(0deg);
    opacity: 0; /* -> devient “×” car il ne reste que la barre horizontale */
}

/* Contenu */
.faq-item__panel {
    padding: 0 0 1.25rem 0;
}
.faq-item__content {
    max-width: 70ch;
    color: rgba(0, 0, 0, 0.85);
}
.faq-item__content p {
    margin: 0.75rem 0 0 0;
}

.faq-item p,
.faq-item li {
    font-size: 20px;
    line-height: 26px;
}

.faq-item ul {
    margin-top: 1rem;
}

.faq-item a,
.faq-contact a {
    border-bottom: 0.75px solid var(--noir);
}

.faq-item__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 0;
    background: transparent;
    border: 0;
    text-align: left;
    cursor: pointer;
}

.faq-item__icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    position: relative;
}

/* Le + (deux barres) */
.faq-item__icon::before,
.faq-item__icon::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 2px;
    background: rgba(0, 0, 0, 0.75);
    border-radius: 2px;
}
.faq-item__icon::after {
    transform: rotate(90deg);
}

/* Quand c'est ouvert : on affiche une croix (×) en “désactivant” la barre verticale */
.faq-item.is-open .faq-item__icon::after {
    transform: rotate(0deg);
    opacity: 0; /* -> devient “×” car il ne reste que la barre horizontale */
}

/* Contenu */
.faq-item__panel {
    padding: 0 0 1.25rem 0;
}
.faq-item__content {
    max-width: 70ch;
    color: rgba(0, 0, 0, 0.85);
}
.faq-item__content p {
    margin: 0.75rem 0 0 0;
}

.page-hero {
    padding-top: calc(3rem + 130px);
    padding-bottom: 5rem;
}

.page-hero-title.alt-v {
    font-size: 62px;
}

@media (max-width: 576px) {
    .page-hero-title.alt-v {
        font-size: 45px;
    }

    .page-hero {
        padding-top: calc(2.25rem + 84px);
        padding-bottom: 3.5rem;
    }
}

.demarche {
    background: var(--rose-pale);
}

/* ========== Presse ========== */

.press-section {
    /* si besoin : garde l’air comme sur ta capture */
    padding-top: 3rem;
    padding-bottom: 4rem;
}

/* Titre de section style "surlignage" (marker) */
.section-title {
    font-weight: 800;
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    line-height: 1.15;
    margin: 0;
    display: inline-block;
    /* effet "surlignage" */
    background: linear-gradient(transparent 65%, rgba(244, 197, 63, 0.85) 65%);
    padding: 0 0.12em;
}

/* Bloc liste de ressources avec cadre turquoise */
.press-resources {
    margin-top: 0.75rem;
    border: 3px solid var(--vert); /* turquoise comme la capture */
    border-radius: 4px;
    overflow: hidden; /* pour que les séparateurs restent propres */
    background: transparent;
}

/* Chaque item cliquable (ligne entière) */
.press-item {
    display: flex;
    align-items: center;
    gap: 1rem;

    text-decoration: none;
    color: inherit;

    padding: 1.15rem 1.25rem;
    background: transparent;
}

/* séparateurs entre items */
.press-item + .press-item {
    border-top: 3px solid var(--vert);
}

/* "PDF" discret à gauche */
.press-item-type {
    flex: 0 0 auto;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.55;
    letter-spacing: 0.02em;

    /* option : un petit badge très léger */
    padding: 0.15rem 0.35rem;
    border-radius: 3px;
    border: 1px solid rgba(0, 0, 0, 0.12);
}

/* Titre du doc */
.press-item-title {
    flex: 1 1 auto;
    font-size: 1.05rem;
    line-height: 1.35;
}

/* hover/focus subtil, sans "carte" lourde */
.press-item:hover,
.press-item:focus-visible {
    background: rgba(20, 203, 180, 0.08);
    outline: none;
}

.press-item:focus-visible {
    box-shadow: 0 0 0 3px rgba(20, 203, 180, 0.25);
}

/* Retombées presse : léger et propre */
.press-mentions .text-muted {
    margin: 0;
    opacity: 0.7;
    font-size: 1rem;
}

/* Responsive : garde la ligne lisible */
@media (max-width: 576px) {
    .press-item {
        padding: 1rem 0.9rem;
        gap: 0.75rem;
    }

    .press-item-title {
        font-size: 0.98rem;
    }

    .press-item-type {
        font-size: 0.85rem;
    }
}

.press-legal-note {
    font-size: 0.9rem;
    color: var(--noir);
    line-height: 1.35;
}

/* ==========================
   QUESTIONNAIRE (CSS CLEAN)
   ========================== */

/* (optionnel) si tu l'utilises encore */
.lc-yellow-panel{
  background-color: var(--jaune);
  padding: 48px;
}

/* Wrapper global du bloc formulaire (largeur alignée sur header) */
.lc-form-wrap{
  width: min(1200px, calc(100% - 32px));
  margin: 48px auto 0;
}

/* Carte jaune (fond) */
.lc-form-card{
  background: var(--jaune);
  padding: 40px;
  border-radius: 0;
  box-shadow: 0 16px 40px rgba(0,0,0,.10);
}

/* ==========================
   Progress
   ========================== */
.lc-form-progress{
  margin-bottom: 22px;
}

.lc-form-progress-bar{
  height: 6px;
  width: 0%;
  background: var(--noir);
  transition: width .2s ease;
}

.lc-form-progress-steps{
  display:flex;
  gap:10px;
  margin-top:10px;
}

.lc-form-progress-steps span{
  width:26px;
  height:26px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size: 13px;
  background: rgba(255,255,255,.45);
  color:var(--noir);
}

.lc-form-progress-steps span.is-active{
  background:var(--noir);
  color:var(--beige-topbar);
}

/* ==========================
   Steps
   ========================== */
.lc-step{ display:none; }
.lc-step.is-active{ display:block; }

.lc-step-title {
  font-size: 24px;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.lc-step-intro {
  font-size: 17px;
  line-height: 25px;
}

.lc-field,.lc-step-intro {
  font-size: 17px;
  line-height: 25px;
}

.lc-step-intro {
  margin: 0 0 18px;
  max-width: 70ch;
}

/* ==========================
   Fields
   ========================== */
.lc-field{ margin: 18px 0; }

.lc-label{
  display:block;
  font-weight: 700;
  margin-bottom: 8px;
}

.lc-input{
  width:100%;
  border: 2px solid var(--noir);
  background: var(--beige-topbar);
  padding: 12px 12px;
  outline: none;
}

.lc-input:focus{
  border-color: var(--noir);
  background: var(--beige-topbar);
}

.lc-textarea{ resize: vertical; }

.lc-choice-row{
  display:flex;
  flex-wrap: wrap;
  gap: 14px 18px;
}

.lc-choice{
  display:flex;
  gap: 10px;
  align-items:center;
  font-weight: 600;
}

.lc-help{
  margin-top:8px;
  font-size: 14px;
  opacity: 1;
}

/* ==========================
   Boutons + Navigation
   ========================== */

/* Base bouton */
.lc-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;

  border: 2px solid var(--noir);
  background: var(--beige-topbar);
  padding: 12px 18px;

  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  cursor: pointer;

  border-radius: 0;
}

.lc-btn:hover{
  background: var(--noir);
  border: 2px solid var(--noir);
  color: var(--beige-topbar);

}

.lc-btn-primary{
  background: var(--noir);
  color: var(--beige-topbar);
  border-color: var(--noir);
}

.lc-btn-primary:hover{
  background: var(--jaune);
  color: var(--noir);
  border-color: var(--noir);
}

.lc-btn-outline{
  background: transparent;
  border-color: var(--noir);
}

.lc-btn-icon{
  font-weight: 900;
  line-height: 1;
}

/* Navigation standard (steps 1-4) */
.lc-nav{
  display:flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
}

/* ==========================
   Bloc priorités (Étape 3)
   ========================== */
.q-help{
  margin: 0 0 12px 0;
  opacity: .9;
}

.priority-board{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.priority-col{
  background: var(--beige-topbar);
  border: 1px solid var(--noir);
  padding: 14px;
}

.priority-title{
  margin: 0 0 4px 0;
  font-weight: 600;
  font-size: 17px;
  line-height: 25px;
}

.priority-subtitle{
  margin: 0 0 10px 0;
  opacity: .8;
  font-size: .95rem;
  line-height: 1.15;
}

.priority-list{
  list-style: none;
  padding: 0;
  margin: 0;
  min-height: 120px;

  display: flex;
  flex-direction: column;
  gap: 10px;
}

.priority-item{
  display: flex;
  align-items: center;
  gap: .6rem;
  line-height: 1.15;

  padding: 12px 12px;
  border: 1px solid var(--noir);
  background: var(--rose-pale);
}

.priority-item.is-ghost{
  opacity: .4;
}

/* Poignée drag */
.priority-handle{
  font-size: 18px;
  opacity: .6;
  cursor: grab;
  user-select: none;
  line-height: 1;
  touch-action: none; /* améliore drag mobile */
}

.priority-text{
  flex: 1 1 auto;
}

/* Rang : visible uniquement dans Mes priorités */
.priority-rank{
  font-weight: 600;
  opacity: .7;
  min-width: 18px;
  text-align: right;
}

/* Actions à droite ( +/− et ↑↓ ) */
.priority-actions{
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  flex: 0 0 auto;
}

/* Style commun boutons d’action */
.priority-actions button{
  border: 1px solid var(--noir);
  background: var(--beige-topbar);
  padding: .2rem .45rem;
  line-height: 1.1;
  font-weight: 400;
  cursor: pointer;
  border-radius: 0;
}

.priority-actions button:hover{
  background: var(--beige-topbar);
}

.priority-actions button:focus{
  outline: 2px solid var(--noir);
  outline-offset: 2px;
}

/* Bouton +/− un peu plus large */
.priority-toggle{
  min-width: 34px;
  text-align: center;
}

/* Flèches ↑↓ */
.priority-move{
  min-width: 34px;
  text-align: center;
  font-weight: 900;
}

/* IMPORTANT : flèches uniquement dans "Mes priorités" */
#prioritiesPool .priority-move{
  display: none;
}

/* Rang masqué dans la colonne de droite */
#prioritiesPool .priority-rank{
  display: none;
}

/* ==========================
   Étape 5 : nav spécifique
   - bouton "Envoyer" centré
   - bouton "Précédent" à gauche
   ========================== */

/*
  HTML attendu :
  <div class="lc-nav lc-nav-step5">
    <button data-prev ...>...</button>
    <button type="submit" class="lc-btn lc-btn-primary lc-btn-submit">...</button>
    <span class="lc-nav-spacer" aria-hidden="true"></span>
  </div>
*/

.lc-nav-step5{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

/* Précédent à gauche */
.lc-nav-step5 [data-prev]{
  justify-self: start;
}

/* Submit centré */
.lc-btn-submit{
  justify-self: center;
  min-width: 260px;
}

/* Spacer à droite */
.lc-nav-spacer{
  justify-self: end;
  display: block;
}

/* ==========================
   Responsive
   ========================== */

@media (max-width: 768px){
  .priority-board{
    grid-template-columns: 1fr;
  }
  .priority-actions button{
    padding: .35rem .6rem;
  }
  .priority-item{
    padding: 12px 10px;
  }
}

@media (max-width: 640px){
  .lc-form-card{ padding: 22px; }

  /* nav steps 1-4 */
  .lc-nav{ flex-direction: column; }
  .lc-btn{ width: 100%; }

  /* step 5 */
  .lc-nav-step5{
    grid-template-columns: 1fr;
  }
  .lc-nav-spacer{
    display: none;
  }
  .lc-btn-submit{
    min-width: 0;
  }
}

/* Step 1 : un seul bouton => aligné à droite */
.lc-nav.is-single{
  justify-content: flex-end;
}

@media (max-width: 640px){
  .priority-actions{
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .priority-actions button{
    min-width: 34px;
    padding: .25rem .4rem;
  }

  /* le texte reprend toute la place */
  .priority-text{
    flex: 1 1 auto;
  }
}

/* Radios et checkboxes en noir */
input[type="radio"],
input[type="checkbox"] {
  accent-color: var(--noir);
}

.lc-hp{ position:absolute; left:-9999px; width:1px; height:1px; opacity:0; }

.cta-questionnaire {
  background: var(--rose-pale);
}
