/* ============================================================
   PATCH V2 DÉFINITIF — Alexandra Roiret
   Thème Neptune — alexandra.on-forge.com

   CLAUDE CODE : REMPLACER le contenu ENTIER de
   wp-content/themes/neptune/dist/styles/fixes.css
   par ce fichier. Vider le cache après.
   ============================================================ */

/* Override global : Montserrat partout, remplace Playfair Display */
h3, h4, h5, h6,
blockquote, blockquote p {
    font-family: 'Montserrat', sans-serif !important;
}


/* ============================================================
   A. PAGE OFFRES HUB — désormais géré par offres-hub.css (1:1 source)
   ============================================================ */


/* ============================================================
   B. PAGE WEEKEND — Hero image zoomée sur le plafond
   
   CAUSE : L'image hero (portrait 1333x2000) est dans 
   .hero-page.offres-hero-weekend > .container.grid > 
   div[anim-img-slide].hero-page__img > img
   Le sujet est au centre/bas de l'image portrait.
   Le fond violet gradient (.offres-hero-weekend) cache le titre.
   ============================================================ */

/* Hero weekend : contraindre la hauteur de l'image */
.offres-hero-weekend .hero-page__img {
    max-height: 420px !important;
    overflow: hidden !important;
    border-radius: 0.5rem !important;
}

.offres-hero-weekend .hero-page__img img {
    width: 100% !important;
    height: 100% !important;
    max-height: 420px !important;
    object-fit: cover !important;
    object-position: center 60% !important; /* Cadrer vers le bas où est la scène */
}

/* Images dans les sections content du weekend */
/* Image programme (groupe) et image conclusion (Alexandra lunettes) */
.content div[anim-img-slide] {
    overflow: hidden !important;
    border-radius: 0.5rem !important;
}

.content div[anim-img-slide] img {
    width: 100% !important;
    max-height: 450px !important;
    object-fit: cover !important;
    object-position: center 40% !important;
    border-radius: 0.5rem !important;
    display: block !important;
}


/* ============================================================
   C. PAGE COACHING — Hero portrait trop grand
   
   CAUSE : Image 1635x2000 (portrait) dans .hero-page__img
   Prend toute la hauteur sans contrainte.
   ============================================================ */

/* Hero coaching : limiter la hauteur */
.hero-page .hero-page__img {
    max-height: 450px !important;
    overflow: hidden !important;
    border-radius: 0.5rem !important;
}

.hero-page .hero-page__img img {
    width: 100% !important;
    height: 100% !important;
    max-height: 450px !important;
    object-fit: cover !important;
    object-position: center 20% !important; /* Cadrer sur le visage */
}


/* ============================================================
   D. PAGE ENTREPRISE — Badge "Séminaire" qui déborde + 
   image "Ma méthode" coupée
   
   CAUSE : .offres-format-duration a border-radius: 2rem 
   et padding fixe, mais le texte "1 journée ou 2 demi-journées" 
   est trop long pour un badge pill.
   
   CAUSE 2 : .content-grid .grid a max-width: 90rem et 
   grid 2 colonnes, mais [anim-img-slide] déborde.
   ============================================================ */

/* Badge durée : autoriser le wrapping et agrandir */
.offres-format-duration {
    white-space: normal !important;
    text-align: center !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: 0.75rem !important;  /* Moins arrondi pour les textes longs */
    line-height: 1.4 !important;
    max-width: 200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Cards formats : même hauteur */
.offres-formats {
    align-items: stretch !important;
}

.offres-format-card {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}

/* Section Ma méthode : image contrainte dans sa colonne */
.content-grid div[anim-img-slide] {
    overflow: hidden !important;
    border-radius: 0.5rem !important;
}

.content-grid div[anim-img-slide] img {
    width: 100% !important;
    max-height: 400px !important;
    object-fit: cover !important;
    object-position: center center !important;
    border-radius: 0.5rem !important;
}

/* Empêcher débordement dans content-grid */
.content-grid .grid > div {
    overflow: hidden !important;
}


/* ============================================================
   E. PAGE QUI SUIS-JE — Images portraits
   ============================================================ */

/* Images dans les sections content-grid (3 piliers) */
.content-grid .grid img {
    max-height: 450px !important;
    object-fit: cover !important;
    object-position: center 20% !important;
    border-radius: 0.5rem !important;
}

/* Image hero */
.qsj-hero-img img {
    max-height: 500px !important;
    object-fit: cover !important;
    object-position: center 10% !important;
    border-radius: 0.5rem !important;
}


/* ============================================================
   F. PAGE FAQ — CTA coupé + espacement
   ============================================================ */

/* CTA dual : espace et centrage */
section.offres-cta-dual,
.content.offres-cta-section.offres-cta-dual {
    padding: 4rem 0 !important;
    background: #e9eaf1 !important;
    width: 100% !important;
}

.offres-cta-dual > .container.grid,
.offres-cta-dual .container.grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1.5rem !important;
    max-width: 90rem !important;
}

.offres-cta-dual .offres-cta-buttons {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 1rem !important;
}

.offres-cta-dual .offres-cta-buttons .btn,
.offres-cta-dual .offres-cta-buttons .btn-secondary {
    min-width: 340px !important;
    text-align: center !important;
    padding: 1rem 2rem !important;
}

.offres-cta-dual .btn {
    background: #3e3952 !important;
    border-color: #3e3952 !important;
    color: #e9eaf1 !important;
}

.offres-cta-dual .btn-secondary {
    background: #e9eaf1 !important;
    color: #3e3952 !important;
    border-color: #e9eaf1 !important;
}

.offres-cta-dual h2 {
    color: #3e3952 !important;
}

@media (max-width: 700px) {
    .offres-cta-dual .offres-cta-buttons .btn,
    .offres-cta-dual .offres-cta-buttons .btn-secondary {
        min-width: auto !important;
        width: 100% !important;
        max-width: 340px !important;
    }
}

/* Espacement FAQ */
.faq .grid div:not(:last-of-type) {
    padding-bottom: 2.5rem !important;
    margin-bottom: 2.5rem !important;
}

/* Strong dans la FAQ */
.faq .grid div p strong {
    color: #3e3952 !important;
    font-weight: 700 !important;
}


/* ============================================================
   G. GLOBAL — Cohérence
   ============================================================ */

/* Liens dans contenu */
.content p a,
.faq p a {
    color: #3e3952 !important;
    text-decoration: underline !important;
    text-decoration-color: #cfc8df !important;
    text-underline-offset: 3px !important;
}

.content p a:hover,
.faq p a:hover {
    text-decoration-color: #cfc8df !important;
}

/* Accents dorés */
.qsj-pullquote,
blockquote {
    border-left-color: #cfc8df !important;
}

.offres-thematique {
    border-left-color: #cfc8df !important;
}

.qsj-formations li {
    border-left-color: #cfc8df !important;
}

.offres-croyance-card {
    border-left-color: #cfc8df !important;
}

/* Masquer barre notification ancienne */
.njt-nofi-notification-bar {
    display: none !important;
}


/* ============================================================
   FOOTER — Layout 2 colonnes + logo
   ============================================================ */

.footer-top {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    padding: 3rem 0 2rem;
}

.footer-logo {
    flex-shrink: 0;
}

.footer-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    flex-grow: 1;
}

.footer-col-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #cfc8df;
    margin-bottom: 1rem;
}

.footer-col .menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col .menu li {
    margin-bottom: 0.5rem;
}

.footer-col .menu li a {
    color: #e9eaf1;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.footer-col .menu li a:hover {
    color: #cfc8df;
}

/* Subfooter : copyright + mentions légales */
.subfooter p a {
    color: #cfc8df;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(207, 200, 223, 0.4);
}

.subfooter p a:hover {
    color: #cfc8df;
}

@media (max-width: 700px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }

    .footer-columns {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        width: 100%;
    }

    .footer-col {
        text-align: center;
    }
}
/* ============================================================
   PAGE ENTREPRISE — 3 blocs redesignés
   
   CLAUDE CODE : AJOUTER à la fin de fixes.css
   Puis vider le cache.
   ============================================================ */


/* ─── BLOC 1 : FORMATS — Bordure dorée + badge pill ─── */

.ent-formats-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.25rem !important;
    width: 100% !important;
    align-items: stretch !important;
}

.ent-fmt-card {
    background: #fff !important;
    border-left: 3px solid #cfc8df !important;
    border-radius: 0 !important;
    padding: 1.25rem 1.5rem !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.4rem !important;
}

.ent-fmt-card h3 {
    font-family: 'Montserrat', sans-serif !important;
    font-style: italic !important;
    font-weight: 400 !important;
    font-size: 1.15rem !important;
    color: #3e3952 !important;
    margin: 0 !important;
}

.ent-pill {
    display: inline-block !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500 !important;
    font-size: 0.6875rem !important;
    padding: 0.2rem 0.7rem !important;
    border-radius: 1rem !important;
    background: #f5f4f8 !important;
    color: #3e3952 !important;
    width: fit-content !important;
    letter-spacing: 0.02em !important;
    margin: 0.15rem 0 !important;
}

.ent-fmt-card p {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.9rem !important;
    color: #555 !important;
    line-height: 1.65 !important;
    margin: 0 !important;
    flex-grow: 1 !important;
}


/* ─── BLOC 2 : POUR QUI — Cards icône centrées ─── */

.ent-qui-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.25rem !important;
    width: 100% !important;
    align-items: stretch !important;
}

.ent-qui-card {
    background: #f5f4f8 !important;
    border-radius: 0.5rem !important;
    padding: 1.5rem 1.25rem !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 0.4rem !important;
}

.ent-qui-icon {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background: #cfc8df !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 0.35rem !important;
}

.ent-qui-icon svg {
    width: 18px !important;
    height: 18px !important;
}

.ent-qui-card h3 {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    color: #3e3952 !important;
    margin: 0 !important;
    line-height: 1.35 !important;
}

.ent-qui-card p {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.9rem !important;
    color: #555 !important;
    line-height: 1.6 !important;
    margin: 0 !important;
    flex-grow: 1 !important;
}


/* ─── BLOC 3 : CE QUI ME DIFFÉRENCIE — Liste numérotée ─── */

.ent-diff-list {
    max-width: 36rem !important;
    margin: 0 auto !important;
    width: 100% !important;
}

.ent-diff-row {
    display: flex !important;
    align-items: flex-start !important;
    gap: 1rem !important;
    padding: 1rem 0 !important;
}

.ent-diff-row:not(:last-child) {
    border-bottom: 1px solid rgba(62, 57, 82, 0.1) !important;
}

.ent-diff-num {
    min-width: 2rem !important;
    height: 2rem !important;
    border-radius: 50% !important;
    background: #3e3952 !important;
    color: #e9eaf1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.8125rem !important;
    font-weight: 600 !important;
    flex-shrink: 0 !important;
}

.ent-diff-content h3 {
    font-family: 'Montserrat', sans-serif !important;
    font-style: italic !important;
    font-weight: 400 !important;
    font-size: 1.05rem !important;
    color: #3e3952 !important;
    margin: 0 0 0.25rem !important;
    text-align: left !important;
}

.ent-diff-content p {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.9rem !important;
    color: #555 !important;
    line-height: 1.6 !important;
    margin: 0 !important;
    text-align: left !important;
}


/* ─── RESPONSIVE ─── */

@media (max-width: 1000px) {
    .ent-formats-grid,
    .ent-qui-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 700px) {
    .ent-formats-grid,
    .ent-qui-grid {
        grid-template-columns: 1fr !important;
        max-width: 420px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}


/* ============================================================
   MÉGA-PATCH — Coaching + Weekend + Qui suis-je + Footer
   ============================================================ */


/* ══════════════════════════════════════════════════════════════
   PAGE COACHING — Redesign blocs
   ══════════════════════════════════════════════════════════════ */

/* --- Bloc douleurs : bordure rouge/brique --- */
.coach-pain-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.25rem !important;
    width: 100% !important;
    align-items: stretch !important;
}

.coach-pain-card {
    border-left: 3px solid #9a6265 !important;
    border-radius: 0 !important;
    padding: 1.25rem 1.5rem !important;
    background: #fff !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.5rem !important;
}

.coach-pain-card h3 {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    color: #9a6265 !important;
    margin: 0 !important;
    line-height: 1.35 !important;
}

.coach-pain-card p {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.9rem !important;
    color: #555 !important;
    line-height: 1.65 !important;
    margin: 0 !important;
    flex-grow: 1 !important;
}

/* --- Croyances : fond violet foncé pleine largeur, texte lavande --- */
.offres-croyances-section {
    background: #3e3952 !important;
    padding: 4rem 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
/* Supprimer la marge basse de la section précédente et haute de la suivante */
.offres-grid-section:has(+ .offres-croyances-section) {
    margin-bottom: 0 !important;
}
.offres-croyances-section + .content {
    margin-top: 0 !important;
}

/* Supprimer les bandes claires autour du CTA intermédiaire et des témoignages */
.offres-cta-section {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 4rem 0 !important;
}
.content:has(+ .offres-cta-section) {
    margin-bottom: 0 !important;
}
.content.white + .offres-cta-section,
.offres-cta-section + .content.white {
    margin-top: 0 !important;
}
.content.white:has(+ .testimonials) {
    margin-bottom: 0 !important;
}
.testimonials {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.testimonials + .content {
    margin-top: 0 !important;
}

.offres-croyances-section h2 {
    color: #cfc8df !important;
    margin-bottom: 2rem !important;
}

.offres-croyances .grid,
.offres-croyances .container.grid {
    max-width: 72rem !important;
}

.offres-croyances-flow {
    max-width: 540px;
    margin: 0 auto;
    padding: 2rem 0 0;
}

.offres-croyances-items {
    font-style: italic;
    font-size: 1.25rem;
    color: #cfc8df;
    line-height: 2.4;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.offres-croyances-cta {
    font-size: 1rem;
    color: #cfc8df;
    text-align: center;
    margin-top: 2rem !important;
    line-height: 1.6;
    opacity: 0.8;
}

/* --- Bonus : section violet foncé, titre blanc, pleine largeur sans bandes --- */
.coach-bonus-section {
    background: #3e3952 !important;
    margin: -3rem 0 !important;
    padding: 6rem 0 !important;
}
@media (min-width: 700px) {
    .coach-bonus-section {
        margin: -6rem 0 !important;
        padding: 9rem 0 !important;
    }
}
.coach-bonus-section h2 {
    color: #ffffff !important;
}

/* --- Bonus : cards avec icône au lieu de placeholders --- */
.coach-bonus-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.25rem !important;
    max-width: 42rem !important;
    margin: 0 auto !important;
}

.coach-bonus-card {
    background: #f5f4f8 !important;
    border-radius: 0.5rem !important;
    padding: 1.5rem !important;
    text-align: center !important;
    border: 0.5px solid rgba(62, 57, 82, 0.1) !important;
}

.coach-bonus-icon {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    background: #cfc8df !important;
    margin: 0 auto 0.75rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.coach-bonus-icon svg {
    width: 20px !important;
    height: 20px !important;
}

.coach-bonus-card h3 {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    color: #3e3952 !important;
    margin: 0 0 0.35rem !important;
}

.coach-bonus-card p {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.85rem !important;
    color: #555 !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* --- Programme 5 étapes : élargir --- */
.offres-programme .grid,
.offres-programme .container.grid {
    max-width: 52rem !important;
}

/* --- Section grille coaching : élargir --- */
.offres-grid-section .grid,
.offres-grid-section .container.grid {
    max-width: 72rem !important;
}

@media (max-width: 1000px) {
    .coach-pain-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 700px) {
    .coach-pain-grid {
        grid-template-columns: 1fr !important;
        max-width: 420px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .coach-bonus-grid {
        grid-template-columns: 1fr !important;
        max-width: 280px !important;
    }
}


/* ══════════════════════════════════════════════════════════════
   PAGE WEEKEND — Images + espacement
   ══════════════════════════════════════════════════════════════ */

/* Hero : cadrer le sujet (centre/bas de l'image portrait) */
.offres-hero-weekend .hero-page__img {
    max-height: 420px !important;
    overflow: hidden !important;
    border-radius: 0.5rem !important;
}

.offres-hero-weekend .hero-page__img img {
    width: 100% !important;
    height: 420px !important;
    object-fit: cover !important;
    object-position: center 60% !important;
}

/* Liste "Vous repartirez avec" : ajouter un peu de couleur */
.offres-list-results li {
    border-left: 3px solid #cfc8df !important;
    background: #fff !important;
    border-radius: 0 !important;
    padding: 0.75rem 1rem 0.75rem 1.25rem !important;
}

.offres-list-results li::before {
    display: none !important;
}

/* Checklist weekend : style amélioré */
.offres-checklist li {
    border-left: 3px solid #dfced4 !important;
    border-radius: 0 !important;
}


/* ══════════════════════════════════════════════════════════════
   PAGE QUI SUIS-JE — Images portrait
   ══════════════════════════════════════════════════════════════ */

/* Content-grid : 2 colonnes, image contrainte */
.content-grid .container.grid {
    max-width: 72rem !important;
}

.content-grid .grid > div[anim-img-slide] {
    overflow: hidden !important;
    border-radius: 0.5rem !important;
    max-height: 450px !important;
}

.content-grid .grid > div[anim-img-slide] img {
    width: 100% !important;
    height: 100% !important;
    max-height: 450px !important;
    object-fit: cover !important;
    object-position: center 20% !important;
}

/* Images pleine largeur QSJ */
.qsj-img-full {
    overflow: hidden !important;
    border-radius: 0.5rem !important;
    max-height: 400px !important;
}

.qsj-img-full img {
    max-height: 400px !important;
    object-fit: cover !important;
    object-position: center 25% !important;
}

/* Formations : style cohérent avec le workbook */
.qsj-formations li {
    border-left-color: #cfc8df !important;
    background: #fff !important;
    transition: transform 0.2s ease !important;
}

.qsj-formations li:hover {
    transform: translateX(4px) !important;
}


/* ══════════════════════════════════════════════════════════════
   FOOTER — Redesign 3 colonnes
   ══════════════════════════════════════════════════════════════ */

footer {
    background: #3e3952 !important;
    padding: 4rem 0 2rem !important;
}

footer::before {
    display: none !important;
}

/* Grille principale : baseline | logo+socials | menu */
.footer-main {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
    padding-bottom: 3rem;
    margin-bottom: 2rem;
    border-bottom: 0.5px solid rgba(233, 234, 241, 0.2);
}

/* Gauche : baseline */
.footer-left p {
    color: #e9eaf1;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    line-height: 1.6;
    white-space: nowrap;
    margin: 0;
}

/* Centre : logo + réseaux */
.footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-center .logo {
    width: auto !important;
}

.footer-center .logo img {
    width: 100px !important;
    height: auto !important;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    display: inline-flex;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.footer-socials a:hover {
    opacity: 1;
}

.footer-socials a svg {
    width: 40px;
    height: 40px;
    fill: #e9eaf1;
}

/* Droite : menu footer */
.footer-right {
    text-align: right;
}

.footer-right ul,
.footer-right .menu {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    gap: 0.5rem !important;
}

.footer-right .menu li {
    list-style: none !important;
}

.footer-right .menu a {
    color: #e9eaf1 !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500 !important;
    font-size: 0.85rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.footer-right .menu a:hover {
    color: #cfc8df !important;
}

/* Sous-liens footer */
.footer-right .menu li ul {
    display: none !important;
}

/* Subfooter */
footer .subfooter {
    text-align: center !important;
    display: block !important;
}

footer .subfooter p {
    color: #e9eaf1 !important;
    font-size: 0.8rem !important;
    opacity: 0.6;
    margin: 0;
}

footer .subfooter a {
    color: #e9eaf1 !important;
    font-size: 0.8rem !important;
}

footer .subfooter a:hover {
    color: #cfc8df !important;
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 2rem;
    }
    .footer-left p {
        max-width: none;
        margin: 0 auto;
    }
    .footer-right {
        text-align: center;
    }
    .footer-right ul,
    .footer-right .menu {
        align-items: center !important;
    }
}


/* ══════════════════════════════════════════════════════════════
   NAV — Fond violet foncé + logo centré
   ══════════════════════════════════════════════════════════════ */

/* Fond violet foncé */
nav#nav,
nav.js-nav {
    background: #3e3952 !important;
    padding: 1rem 0 !important;
    position: relative !important;
    z-index: 10 !important;
}

/* Grille : 3 colonnes — menu gauche | logo | menu droit */
nav .container.grid,
nav .grid {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important;
    align-items: center !important;
    gap: 0 !important;
}

/* Logo : colonne 2 (centre) */
nav .logo {
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: center !important;
    order: 0 !important;
    width: auto !important;
}

nav .logo img {
    max-height: 100px !important;
    width: auto !important;
}

/* Burger mobile : colonne 3, à droite */
nav .burger,
nav .js-burger {
    grid-column: 3 !important;
    grid-row: 1 !important;
    justify-self: end !important;
}

/* Menu container : colonne 1 à 3 (pleine largeur sous le logo sur mobile) */
@media (min-width: 1000px) {
    nav .menu_container {
        grid-column: 1 / 4 !important;
        grid-row: 1 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
    }

    nav .menu_container .menu {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
    }

    nav .menu_container .menu > ul {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 2rem !important;
        width: 100% !important;
    }

    /* Liens répartis avec space-between autour du logo */
    nav .menu_container .menu > ul {
        justify-content: space-between !important;
        padding: 0 1rem !important;
    }

    /* Espace au milieu pour le logo (environ 200px) */
    nav .menu_container .menu > ul > li:nth-child(3) {
        margin-right: auto !important;
    }

    nav .menu_container .menu > ul > li:nth-child(4) {
        margin-left: auto !important;
    }
}

/* Liens nav : couleur claire sur fond violet */
nav .menu_container .menu > ul > li > a {
    color: #e9eaf1 !important;
    font-weight: 400 !important;
    font-size: 0.9rem !important;
    transition: color 0.3s ease !important;
}

nav .menu_container .menu > ul > li > a:hover {
    color: #cfc8df !important;
}

/* Sous-menu dropdown : fond violet */
@media (min-width: 1000px) {
    nav .menu_container .menu > ul > li ul {
        background: #4e4670 !important;
        border: 1px solid rgba(207, 200, 223, 0.15) !important;
        border-radius: 0.5rem !important;
        padding: 0.75rem !important;
    }

    nav .menu_container .menu > ul > li ul a {
        color: #cfc8df !important;
        font-size: 0.85rem !important;
    }

    nav .menu_container .menu > ul > li ul a:hover {
        color: #cfc8df !important;
    }
}

/* Flèche dropdown : dorée */
nav .menu_container .menu > ul > li.menu-item-has-children > a::after {
    filter: brightness(1) !important;
}

/* Bouton CTA nav (Faites le Quiz) */
nav .menu_container .menu > ul > li.btn a {
    background: #cfc8df !important;
    color: #12101b !important;
    border-radius: 0.5rem !important;
    padding: 0.5rem 1.1rem !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    border: none !important;
    transition: all 0.3s ease !important;
}

nav .menu_container .menu > ul > li.btn a:hover {
    background: #cfc8df !important;
}

nav .menu_container .menu > ul > li.btn a span {
    color: #12101b !important;
}

/* Mobile : fond violet aussi */
@media (max-width: 999px) {
    nav .menu_container {
        background: #3e3952 !important;
    }

    nav .menu_container::before {
        background: #3e3952 !important;
    }

    nav .menu_container .menu > ul > li > a {
        color: #e9eaf1 !important;
    }

    /* Burger : blanc sur fond violet */
    nav .burger span {
        background: #e9eaf1 !important;
    }
}


/* ══════════════════════════════════════════════════════════════
   FIX — Breadcrumbs visibilité sur fond clair
   ══════════════════════════════════════════════════════════════ */

.yoast-breadcrumbs {
    padding-top: 1rem !important;
}


/* ══════════════════════════════════════════════════════════════
   HEROES OFFRES — Layout 2 colonnes
   Photo gauche + texte droite
   ══════════════════════════════════════════════════════════════ */

/* ─── Layout hero 2 colonnes ─── */
.hero-page .container.grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: auto !important;
    gap: 0 3rem !important;
    align-items: center !important;
    max-width: 90rem !important;
}

/* Photo : colonne 1, prend toute la hauteur */
.hero-page .hero-page__img {
    grid-column: 1 !important;
    grid-row: 1 / 20 !important;
    max-height: 550px !important;
    overflow: hidden !important;
    border-radius: 0.75rem !important;
    align-self: stretch !important;
}

.hero-page .hero-page__img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 20% !important;
    border-radius: 0.75rem !important;
}

/* Weekend : cadrage plus bas */
.offres-hero-weekend .hero-page__img img {
    object-position: center 55% !important;
}

/* Supprimer le fond violet du hero weekend */
.offres-hero-weekend {
    background: none !important;
}

.offres-hero-weekend::before {
    display: none !important;
}

/* Texte : colonne 2 */
.hero-page .container.grid > h1,
.hero-page .container.grid > .hero-offer-badge,
.hero-page .container.grid > .hero-offer-accroche,
.hero-page .container.grid > .hero-offer-desc,
.hero-page .container.grid > .hero-offer-cta,
.hero-page .container.grid > p[anim-text],
.hero-page .container.grid > div[anim-text],
.hero-page .container.grid > .hero-subtitles {
    grid-column: 2 !important;
    text-align: left !important;
    align-self: auto !important;
}

/* Badge : petit pill inline */
.hero-offer-badge {
    display: inline-block !important;
    width: auto !important;
    max-width: fit-content !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600 !important;
    font-size: 0.6875rem !important;
    padding: 0.25rem 0.85rem !important;
    border-radius: 1rem !important;
    background: #cfc8df !important;
    color: #12101b !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
    margin-bottom: 0.5rem !important;
}

/* H1 */
.hero-page h1 {
    text-align: left !important;
    max-width: 100% !important;
}

/* Accroche italique */
.hero-offer-accroche {
    font-family: 'Montserrat', sans-serif !important;
    font-style: italic !important;
    font-size: 1.3rem !important;
    line-height: 1.5 !important;
    color: #cfc8df !important;
    max-width: 100% !important;
    text-align: left !important;
}

/* Description */
.hero-offer-desc {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 1rem !important;
    line-height: 1.7 !important;
    color: #12101b !important;
    max-width: 100% !important;
    text-align: left !important;
}

/* CTA bouton */
a.hero-offer-cta,
.hero-offer-cta {
    display: inline-block !important;
    width: auto !important;
    max-width: fit-content !important;
    margin-top: 1rem !important;
    padding: 0.85rem 1.75rem !important;
    background: #3e3952 !important;
    color: #e9eaf1 !important;
    border-radius: 0.5rem !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500 !important;
    font-size: 0.9rem !important;
    border: 1px solid #3e3952 !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

a.hero-offer-cta:hover,
.hero-offer-cta:hover {
    background: #cfc8df !important;
    border-color: #cfc8df !important;
    color: #12101b !important;
}

/* Masquer les anciens éléments hero-question / hero-subtitle */
.hero-subtitles,
.hero-question,
h2.hero-subtitle {
    display: none !important;
}

/* ─── Hero centré (FAQ, Offres hub) : garder centré ─── */
.hero-page-center .container.grid {
    grid-template-columns: 1fr !important;
    text-align: center !important;
}

.hero-page-center .container.grid > * {
    grid-column: 1 !important;
    text-align: center !important;
    justify-self: center !important;
}

/* ─── Responsive ─── */
@media (max-width: 999px) {
    .hero-page .container.grid {
        grid-template-columns: 1fr !important;
        gap: 2rem 0 !important;
    }

    .hero-page .hero-page__img {
        grid-column: 1 !important;
        grid-row: auto !important;
        max-height: 400px !important;
    }

    .hero-page .container.grid > h1,
    .hero-page .container.grid > .hero-offer-badge,
    .hero-page .container.grid > .hero-offer-accroche,
    .hero-page .container.grid > .hero-offer-desc,
    .hero-page .container.grid > .hero-offer-cta,
    .hero-page .container.grid > p[anim-text],
    .hero-page .container.grid > div[anim-text] {
        grid-column: 1 !important;
    }
}

@media (max-width: 700px) {
    .hero-page .hero-page__img {
        max-height: 350px !important;
    }

    .hero-offer-accroche {
        font-size: 1.1rem !important;
    }
}
/* ============================================================
   PAGE CONTACT — Redesign

   CLAUDE CODE : AJOUTER à la fin de fixes.css
   Puis vider le cache.
   ============================================================ */


/* ─── Hero contact : centrer le hero (pas d'image) ─── */
.page-id-64 .hero-page .container.grid {
    grid-template-columns: 1fr !important;
    text-align: center !important;
}

/* ─── Page Weekend : supprimer la bande violet clair entre
       "Le programme" et "Vous repartirez avec" (2 sections white consécutives) ─── */
.page-id-995 .content.white + .content.white {
    margin-top: 0 !important;
}
.page-id-995 .content.white:has(+ .content.white) {
    margin-bottom: 0 !important;
}

/* ─── Intro contact : titre + image + texte ─── */
.contact-intro {
    margin-bottom: 1.5rem !important;
    padding-top: 7rem !important;
    padding-bottom: 1rem !important;
}
@media (min-width: 700px) {
    .contact-intro {
        padding-top: 8rem !important;
        margin-bottom: 3rem !important;
    }
}
.contact-intro__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 2.5rem;
    text-align: center;
    color: #12101b;
    margin-bottom: 2.5rem;
}
@media (min-width: 700px) {
    .contact-intro__title {
        font-size: 3.25rem;
        margin-bottom: 3.5rem;
    }
}
.contact-intro__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 72rem;
    margin: 0 auto;
}
@media (min-width: 900px) {
    .contact-intro__grid {
        grid-template-columns: 1fr 1.2fr;
        gap: 4rem;
    }
}
.contact-intro__img {
    border-radius: 0.5rem;
    overflow: hidden;
    max-height: 480px;
}
.contact-intro__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 0.5rem;
}
.contact-intro__text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    line-height: 1.7;
    color: #12101b;
    margin-bottom: 1.25rem;
}
.contact-intro__text p:last-child {
    margin-bottom: 0;
}

.page-id-64 .hero-page .container.grid > * {
    grid-column: 1 !important;
    text-align: center !important;
    justify-self: center !important;
}

/* ─── Hero contact : accroche sous le H1 ─── */
.contact-accroche {
    font-family: 'Montserrat', sans-serif !important;
    font-style: italic !important;
    font-size: 1.25rem !important;
    color: #cfc8df !important;
    max-width: 36rem !important;
    text-align: center !important;
    margin: 0 auto !important;
    line-height: 1.5 !important;
}

/* ─── Bloc coordonnées : redesign en cards ─── */
.contact-info-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
    width: 100% !important;
    max-width: 54rem !important;
    margin: 2rem auto !important;
}

.contact-info-card {
    background: #fff !important;
    border-radius: 0.5rem !important;
    padding: 1.75rem 1.5rem !important;
    text-align: center !important;
    border: 0.5px solid rgba(62, 57, 82, 0.1) !important;
    transition: transform 0.3s ease !important;
}

.contact-info-card:hover {
    transform: translateY(-4px) !important;
}

.contact-info-icon {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    background: #cfc8df !important;
    margin: 0 auto 1rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.contact-info-icon svg {
    width: 20px !important;
    height: 20px !important;
}

.contact-info-card h3 {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    color: #3e3952 !important;
    margin: 0 0 0.5rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
}

.contact-info-card p {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.95rem !important;
    color: #12101b !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

.contact-info-card a {
    color: #3e3952 !important;
    text-decoration: underline !important;
    text-decoration-color: #cfc8df !important;
    text-underline-offset: 3px !important;
    display: inline !important;
}

.contact-info-card a:hover {
    text-decoration-color: #cfc8df !important;
}

/* ─── Formulaire : cadre et style amélioré ─── */
.contact-form-wrapper {
    max-width: 36rem !important;
    margin: 0 auto !important;
    padding: 2.5rem !important;
    background: #fff !important;
    border-radius: 0.75rem !important;
    border: 0.5px solid rgba(62, 57, 82, 0.1) !important;
}

.contact-form-title {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.5rem !important;
    color: #3e3952 !important;
    text-align: center !important;
    margin: 0 0 0.5rem !important;
}

.contact-form-subtitle {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.9rem !important;
    color: #888 !important;
    text-align: center !important;
    margin: 0 0 2rem !important;
}

/* Style des champs WPForms */
div.wpforms-container input:not([type='submit']):not([type='checkbox']),
div.wpforms-container textarea {
    border: 1px solid rgba(62, 57, 82, 0.2) !important;
    border-radius: 0.375rem !important;
    background: #f5f4f8 !important;
    padding: 0.85rem 1rem !important;
    font-size: 0.95rem !important;
    transition: border-color 0.3s ease !important;
}

div.wpforms-container input:not([type='submit']):not([type='checkbox']):focus,
div.wpforms-container textarea:focus {
    border-color: #3e3952 !important;
    outline: none !important;
    background: #fff !important;
}

/* Bouton Envoyer */
div.wpforms-container input[type='submit'],
div.wpforms-container-full button[type='submit']:not(:hover):not(:active),
div.wpforms-container-full button[type='submit']:hover,
div.wpforms-container-full button[type='submit']:active {
    background: #3e3952 !important;
    color: #e9eaf1 !important;
    border: 1px solid #3e3952 !important;
    border-radius: 0.5rem !important;
    padding: 0.85rem 2.5rem !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

div.wpforms-container input[type='submit']:hover,
div.wpforms-container-full button[type='submit']:hover {
    background: #cfc8df !important;
    border-color: #cfc8df !important;
    color: #12101b !important;
}

/* Labels */
div.wpforms-container .wpforms-field-label {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500 !important;
    font-size: 0.9rem !important;
    color: #3e3952 !important;
}

/* ─── Responsive ─── */
@media (max-width: 700px) {
    .contact-info-grid {
        grid-template-columns: 1fr !important;
        max-width: 320px !important;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem !important;
    }
}
/* ============================================================
   PAGE QUI SUIS-JE — Corrections complètes
   
   CLAUDE CODE : AJOUTER à la fin de fixes.css
   Puis vider le cache.
   ============================================================ */


/* ─── HERO : centré, image portrait bien cadrée ─── */

/* Le hero QSJ a hero-page-center — forcer 1 colonne */
.hero-page-center .container.grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    max-width: 42rem !important;
}

/* Image hero : cadrage portrait propre */
.qsj-hero-img {
    width: 100% !important;
    max-width: 320px !important;
    max-height: 420px !important;
    overflow: hidden !important;
    border-radius: 0.75rem !important;
    margin: 1.5rem auto 0 !important;
}

.qsj-hero-img img {
    width: 100% !important;
    height: 100% !important;
    max-height: 420px !important;
    object-fit: cover !important;
    object-position: center 10% !important;
    border-radius: 0.75rem !important;
}


/* ─── SECTION CONTENT-GRID (Pilier CGP - 2 colonnes) ─── */

/* Élargir la grille */
.content-grid .container.grid {
    max-width: 72rem !important;
    display: grid !important;
    grid-template-columns: 1fr 1.2fr !important;
    gap: 3rem !important;
    align-items: start !important;
}

/* Image pilier CGP : portrait, bien contenue */
.content-grid .grid > div[anim-img-slide] {
    overflow: hidden !important;
    border-radius: 0.75rem !important;
    max-height: 500px !important;
}

.content-grid .grid > div[anim-img-slide] img {
    width: 100% !important;
    height: 100% !important;
    max-height: 500px !important;
    object-fit: cover !important;
    object-position: center 15% !important;
    border-radius: 0.75rem !important;
}


/* ─── SECTIONS TEXTE (Entrepreneure, Synthèse, Conclusion) ─── */

/* Narrative text : largeur confortable */
.qsj-narrative {
    max-width: 42rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Pullquotes : accent doré, pas trop larges */
.qsj-pullquote {
    border-left: 3px solid #cfc8df !important;
    border-radius: 0 !important;
    padding: 1.25rem 1.75rem !important;
    margin: 1.5rem 0 !important;
    background: rgba(207, 200, 223, 0.1) !important;
}

.white .qsj-pullquote {
    background: #fff !important;
}


/* ─── SECTION EXPLORATRICE (formations + image) ─── */

/* Formations : bordure dorée, hover subtil */
.qsj-formations li {
    border-left: 3px solid #cfc8df !important;
    border-radius: 0 !important;
    background: #f5f4f8 !important;
    padding: 1rem 1.25rem !important;
    transition: transform 0.2s ease !important;
}

.white .qsj-formations li {
    background: #fff !important;
}

.qsj-formations li:hover {
    transform: translateX(4px) !important;
}

.qsj-formations li strong {
    color: #3e3952 !important;
    font-size: 0.95rem !important;
}

.qsj-formations li span {
    color: #666 !important;
    font-size: 0.85rem !important;
}

/* Image après les formations : contenue */
.qsj-img-full {
    max-height: 400px !important;
    overflow: hidden !important;
    border-radius: 0.75rem !important;
    margin-top: 2rem !important;
}

.qsj-img-full img {
    width: 100% !important;
    max-height: 400px !important;
    object-fit: cover !important;
    object-position: center 25% !important;
    border-radius: 0.75rem !important;
}


/* ─── IMAGES DANS LES SECTIONS CONTENT (pas content-grid) ─── */

/* Image Olifan (entrepreneure) */
.content:not(.content-grid) div[anim-img-slide] {
    max-height: 400px !important;
    overflow: hidden !important;
    border-radius: 0.75rem !important;
    margin: 1.5rem auto !important;
    max-width: 600px !important;
}

.content:not(.content-grid) div[anim-img-slide] img {
    width: 100% !important;
    max-height: 400px !important;
    object-fit: cover !important;
    object-position: center 20% !important;
    border-radius: 0.75rem !important;
}


/* ─── SYNTHÈSE + CONCLUSION : texte centré, aéré ─── */

.qsj-synthese .qsj-narrative,
.qsj-conclusion .qsj-narrative {
    text-align: center !important;
    max-width: 38rem !important;
}

.qsj-strong-statement {
    font-size: 1.1rem !important;
    line-height: 1.7 !important;
    color: #3e3952 !important;
}

.qsj-strong-statement strong {
    color: #3e3952 !important;
}


/* ─── CTA QUI SUIS-JE ─── */

.qsj-cta-section .container.grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.qsj-cta-section .btn {
    display: inline-block !important;
    width: auto !important;
    max-width: fit-content !important;
    padding: 0.85rem 2rem !important;
    background: #3e3952 !important;
    border-color: #3e3952 !important;
    font-weight: 500 !important;
}

.qsj-cta-section .btn:hover {
    background: #cfc8df !important;
    border-color: #cfc8df !important;
    color: #12101b !important;
}


/* ─── RESPONSIVE ─── */

@media (max-width: 999px) {
    .content-grid .container.grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .content-grid .grid > div[anim-img-slide] {
        max-height: 350px !important;
    }
}

@media (max-width: 700px) {
    .qsj-hero-img {
        max-width: 260px !important;
        max-height: 340px !important;
    }
    
    .qsj-hero-img img {
        max-height: 340px !important;
    }
    
    .content:not(.content-grid) div[anim-img-slide] {
        max-height: 300px !important;
        max-width: 100% !important;
    }
    
    .qsj-img-full {
        max-height: 300px !important;
    }
}
/* ============================================================
   PATCH FAQ — Corrections CTA + Alignement Q4 offres
   À ajouter dans CSS additionnel ou à la fin de faq.css
   ============================================================ */

/* ─── FIX 1 : CTA coupé en bas de page ─── */

/* Le bloc CTA dual n'a pas assez d'espace */
.faq + .offres-cta-section.offres-cta-dual,
.content.faq + .offres-cta-section,
section.content.faq ~ section.offres-cta-dual {
    padding: 4rem 0 !important;
    margin-top: 2rem !important;
}

/* Forcer le centrage des boutons */
.offres-cta-dual .offres-cta-buttons {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 1rem !important;
    padding: 0 1rem !important;
}

.offres-cta-dual .offres-cta-buttons .btn,
.offres-cta-dual .offres-cta-buttons .btn-secondary {
    min-width: 320px !important;
    text-align: center !important;
    display: inline-block !important;
    padding: 1rem 2rem !important;
}

/* Si le CTA utilise la structure .container.grid */
.offres-cta-dual .container.grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1.5rem !important;
}

/* S'assurer que le fond foncé prend toute la largeur */
.offres-cta-dual {
    width: 100% !important;
    background: #e9eaf1 !important;
    padding: 4rem 0 !important;
}

@media (max-width: 700px) {
    .offres-cta-dual .offres-cta-buttons .btn,
    .offres-cta-dual .offres-cta-buttons .btn-secondary {
        min-width: auto !important;
        width: 100% !important;
        max-width: 340px !important;
    }
}


/* ─── FIX 2 : Espacement vertical FAQ trop grand ─── */

/* Réduire l'espace entre chaque Q/R */
.faq .grid div:not(:last-of-type) {
    padding-bottom: 2rem !important;
    margin-bottom: 2rem !important;
}

@media (min-width: 700px) {
    .faq .grid div:not(:last-of-type) {
        padding-bottom: 3rem !important;
        margin-bottom: 3rem !important;
    }
}


/* ─── FIX 3 : Q4 — Alignement des 3 offres ─── */

/* Cibler le paragraphe de la Q4 qui contient les 3 offres en <strong> + <br> */
/* On ne peut pas structurer le HTML depuis le CSS seul, mais on peut 
   améliorer la lisibilité en donnant de l'espace aux <strong> et <br> */

.faq .grid div p strong {
    display: inline-block;
    color: #3e3952;
    font-weight: 700;
    margin-top: 0.5rem;
}

/* Si le contenu utilise des <br><br> pour séparer les offres,
   on donne plus d'espace entre les blocs */
.faq .grid div p br + br + strong {
    margin-top: 0.75rem;
}
/* ============================================================
   PAGE FAQ — Corrections alignements + hero + Q4
   
   CLAUDE CODE : AJOUTER à la fin de fixes.css
   Puis vider le cache.
   ============================================================ */


/* ─── HERO FAQ : forcer centré, Montserrat, pas de 2 colonnes ─── */
.hero-page-center .container.grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    max-width: 42rem !important;
}

.hero-page-center h1 {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
    font-style: normal !important;
    text-align: center !important;
}

.hero-page-center p {
    text-align: center !important;
}


/* ─── FAQ : grille Q/R — élargir ─── */
.faq .grid {
    max-width: 72rem !important;
}

/* Aligner les questions à gauche, réponses à droite */
.faq .grid > div {
    display: grid !important;
    grid-template-columns: 1fr 2fr !important;
    gap: 2rem !important;
    align-items: start !important;
}

.faq .grid > div h2.small {
    text-align: left !important;
    margin: 0 !important;
    max-width: 100% !important;
    font-size: 1.35rem !important;
    line-height: 1.35 !important;
}


/* ─── Q4 : cards offres alignées en grille 3 colonnes ─── */
.faq .grid > div:has(.faq-offres-grid) {
    grid-template-columns: 1fr !important;
}

.faq-offres-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1rem !important;
    width: 100% !important;
    margin-top: 1rem !important;
    align-items: stretch !important;
}

.faq-offre-card {
    border-left: 3px solid #cfc8df !important;
    border-radius: 0 !important;
    padding: 1.25rem !important;
    background: #f5f4f8 !important;
    display: flex !important;
    flex-direction: column !important;
}

/* Cacher les <p> vides que WordPress ajoute */
.faq-offre-card > p:empty {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ============================================================
   TÉMOIGNAGES — fond violet + flèches latérales
   ============================================================ */
.testimonials {
    background: #3e3952 !important;
    position: relative;
}
.testimonials h2,
.testimonials > .container > p,
.testimonials .embla__slide h3,
.testimonials .embla__slide p {
    color: #e9eaf1 !important;
}
.testimonials .embla__buttons {
    position: absolute;
    top: 50%;
    left: -3rem;
    right: -3rem;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    margin: 0;
    pointer-events: none;
    z-index: 2;
}
.testimonials .embla__button {
    pointer-events: auto;
    color: #e9eaf1;
}
.testimonials .embla__button svg path {
    stroke: #e9eaf1 !important;
}
.testimonials .embla_testimonials {
    position: relative;
    max-width: 50%;
    margin: 0 auto;
}

@media (max-width: 1000px) {
    .testimonials .embla__buttons {
        left: -2rem;
        right: -2rem;
    }
    .testimonials .embla_testimonials {
        max-width: 65%;
    }
}
@media (max-width: 700px) {
    .testimonials .embla__buttons {
        left: -1.5rem;
        right: -1.5rem;
    }
    .testimonials .embla_testimonials {
        max-width: 85%;
    }
}

/* Le <p> du texte descriptif : prend tout l'espace */
.faq-offre-card > p:not(:empty):not(:last-child) {
    flex: 1 !important;
    margin: 0 !important;
    font-size: 0.875rem !important;
    line-height: 1.6 !important;
    color: #555 !important;
}

/* Le <p> qui wrappe le lien : collé en bas */
.faq-offre-card > p:last-of-type:not(:empty) {
    margin-top: auto !important;
    padding-top: 0.75rem !important;
    border-top: 1px solid rgba(62, 57, 82, 0.1) !important;
}

.faq-offre-card strong {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    color: #3e3952 !important;
    margin-bottom: 0.35rem !important;
}

.faq-offre-link {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500 !important;
    font-size: 0.8rem !important;
    color: #3e3952 !important;
    text-decoration: none !important;
}

.faq-offre-link:hover {
    color: #cfc8df !important;
}

@media (max-width: 700px) {
    .faq .grid > div {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
}

/* Accroches pages offres — violet foncé + Montserrat italique */
.hero-offer-accroche {
    color: #3e3952 !important;
    font-family: 'Montserrat', sans-serif !important;
    font-style: italic !important;
}

/* --- Bloc "Vous repartirez avec" violet arrondi --- */
.offres-repartirez-block {
    background: #3e3952;
    border-radius: 12px;
    padding: 2rem 2.5rem;
    max-width: 520px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.offres-repartirez-block p {
    color: #cfc8df !important;
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

/* --- Bloc "Mes dynamiques fondatrices" violet foncé --- */
.qsj-dynamiques-section {
    background: #3e3952 !important;
    padding: 5rem 0 !important;
    margin: 4rem 0 !important;
}
.qsj-dynamiques-section h2 {
    color: #e9eaf1 !important;
}
.qsj-dynamiques-section p {
    color: #e9eaf1 !important;
}
.qsj-dynamiques-section strong {
    color: #e9eaf1 !important;
}

/* --- Liste "Ce week-end est fait pour vous si…" --- */
.offres-pourvous-list {
    max-width: 520px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
.offres-pourvous-item {
    padding: 14px 0;
    border-bottom: 0.5px solid rgba(80, 73, 122, 0.12);
    display: flex;
    align-items: baseline;
    gap: 14px;
}
.offres-pourvous-item--last {
    border-bottom: none;
}
.offres-pourvous-check {
    color: #50497A;
    flex-shrink: 0;
    font-size: 14px;
}
.offres-pourvous-item p {
    font-size: 1rem;
    color: #12101b;
    margin: 0;
    line-height: 1.6;
}

/* --- Icône LinkedIn header --- */
.nav-linkedin {
    display: inline-flex;
    align-items: center;
    margin-left: 1rem;
    opacity: 0.85;
    transition: opacity 0.2s;
}
.nav-linkedin:hover {
    opacity: 1;
}


/* --- CTA "Faire le Quiz" fond rose poudré --- */
.offres-cta-dual .btn-secondary {
    background: #dfced4 !important;
    color: #3e3952 !important;
    border-color: #dfced4 !important;
}

/* --- Footer : email sous réseaux sociaux --- */
.footer-email {
    color: #e9eaf1 !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s;
}
.footer-email:hover {
    opacity: 1;
}

/* --- Page Contact : masquer les 3 cards reassurance --- */
body.page-template-page-contact .hp-reassurance {
    display: none !important;
}

/* --- Page Contact : intro en violet foncé --- */
body[class*="contact"] .content-max p {
    color: #3e3952 !important;
    font-weight: 600;
}

/* --- Page Contact : grille 2 colonnes --- */
.contact-dual {
    padding: 2rem 0 4rem !important;
}
.contact-dual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.contact-dual-col h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    color: #3e3952;
    margin-bottom: 0.25rem;
    text-align: center;
}
.contact-dual-sub {
    color: #6b6480;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-align: center;
}
.contact-embed-wrapper {
    width: 100%;
    min-height: 650px;
}
.contact-embed-wrapper iframe {
    width: 100%;
    min-height: 650px;
}

/* Formulaire Metaforma : crop le header/photo du haut */
.contact-metaforma-crop {
    overflow: hidden;
    border-radius: 0.75rem;
    max-height: 675px;
}
.contact-metaforma-crop iframe {
    width: 125%;
    height: 1750px;
    margin-top: -250px;
    border: none;
    transform: scale(0.8);
    transform-origin: top left;
    display: block;
}

@media (max-width: 768px) {
    .contact-dual-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* --- Supprimer le carré violet/lavande sur le hero accueil --- */
.grid::after {
    display: none !important;
}

/* --- Masquer les pictos dans le bloc 4 étapes accueil --- */
.number .grid-4 img {
    display: none !important;
}

/* --- HP Transform : texte + image côte à côte --- */
.hp-transform__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
@media (max-width: 768px) {
    .hp-transform__grid {
        grid-template-columns: 1fr;
    }
}
.hp-transform__img img {
    border-radius: 0.75rem;
    width: 100%;
}

/* --- HP About : image + texte + CTAs --- */
.hp-about__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}
.hp-about__img img {
    border-radius: 0.75rem;
    width: 100%;
}
.hp-about__buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}
@media (max-width: 768px) {
    .hp-about__grid {
        grid-template-columns: 1fr;
    }
}

/* --- CTA Accueil : fond violet foncé + titre blanc --- */
section.content.offres-cta-section.offres-cta-dual.hp-cta-compact {
    background: #3e3952 !important;
}
section.hp-cta-compact h2 {
    color: #e9eaf1 !important;
}
section.hp-cta-compact .btn {
    background: #12101b !important;
    border-color: #12101b !important;
    color: #e9eaf1 !important;
}

/* ============================================================
   PAGE CONTACT — Layout 2 colonnes (Calendly + Infos)
   ============================================================ */
.contact-dual .container {
    max-width: 90rem;
}
.contact-dual-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}
@media (max-width: 768px) {
    .contact-dual-grid {
        grid-template-columns: 1fr;
    }
}
.contact-dual-col h2 {
    text-align: center !important;
    margin-bottom: 0.5rem !important;
}
.contact-dual-col > p {
    text-align: center !important;
    color: #888;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}
.contact-info-card {
    background: #3e3952;
    border-radius: 12px;
    padding: 2rem;
}
.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.contact-info-item svg {
    flex-shrink: 0;
    stroke: #cfc8df;
}
.contact-info-item a {
    color: #50497A !important;
    font-size: 1rem;
    text-decoration: none;
    display: inline !important;
}
.contact-info-item a:hover {
    color: #3e3952 !important;
}

/* ══════════════════════════════════════════════════════════════
   BLOC ALEXANDRA ROIRET (home) — alignement à gauche
   ══════════════════════════════════════════════════════════════ */
.wp-block-lazyblock-contenu-contact .content-max p,
.wp-block-lazyblock-contenu-contact p,
.wp-block-lazyblock-contenu-contact h2 {
    text-align: left !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.wp-block-lazyblock-contenu-contact .btn {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* ══════════════════════════════════════════════════════════════
   BLOC PODCAST — bouton rond play + vignette clicable
   ══════════════════════════════════════════════════════════════ */
.podcast-play-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: #cfc8df;
    color: #12101b;
    transition: transform 0.2s ease, background 0.2s ease;
    margin-top: 0.5rem;
}
.podcast-play-btn:hover {
    background: #bdb4d3;
    transform: scale(1.08);
}
.podcast-play-btn svg {
    width: 1.6rem;
    height: 1.6rem;
    margin-left: 0.2rem;
}
.podcast-play-btn .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.interview [anim-img-slide] > a {
    display: block;
    cursor: pointer;
}
.interview [anim-img-slide] > a:hover img {
    opacity: 0.95;
    transition: opacity 0.2s ease;
}

/* ══════════════════════════════════════════════════════════════
   NAV — Sticky header (desktop + mobile)
   ══════════════════════════════════════════════════════════════ */
nav#nav,
nav.js-nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18) !important;
    padding: 0.5rem 0 !important;
}

/* Logo plus compact pour un sticky discret */
nav .logo img {
    max-height: 70px !important;
}

/* Offset du body : le header ar-chrome est fixed (~76px).
   Pas de padding-top sur le body — chaque hero gère son propre
   padding-top pour dégager le header fixe.
   Seules les pages Neptune (.hero-page) ont besoin d'un coup de pouce. */
.hero-page {
    margin-top: 5.5rem !important;
}
@media (min-width: 700px) {
    .hero-page {
        margin-top: 6rem !important;
    }
}

/* ══════════════════════════════════════════════════════════════
   HERO HOME — Image arrondie (cohérence avec le reste du site)
   ══════════════════════════════════════════════════════════════ */
.hero-home .grid > div:last-of-type,
.hero-home div[anim-img-slide] {
    border-radius: 0.5rem !important;
    overflow: hidden !important;
}
.hero-home .grid > div:last-of-type img,
.hero-home div[anim-img-slide] img {
    border-radius: 0.5rem !important;
}

/* Nav animation may hide logo/items initially — force visible on sticky nav */
[data-nav] .logo,
[data-nav] li:not(.btn) {
    opacity: 1 !important;
    transform: translateX(0) !important;
}
[data-nav] li.btn {
    transform: scale(1) !important;
}
[data-nav] li.btn span {
    opacity: 1 !important;
}

/* ══════════════════════════════════════════════════════════════
   CTA DUAL — Unification cross-pages (accueil, offres, croissance)
   Fond violet foncé + bouton 1 violet clair / bouton 2 blanc clair
   ══════════════════════════════════════════════════════════════ */
section.offres-cta-dual,
section.content.offres-cta-section.offres-cta-dual,
section.content.offres-cta-section.offres-cta-dual.hp-cta-compact {
    background: #3e3952 !important;
}

section.offres-cta-dual h2,
section.offres-cta-dual .container.grid h2,
section.hp-cta-compact h2 {
    color: #ffffff !important;
}

section.offres-cta-dual .offres-cta-buttons .btn,
section.hp-cta-compact .offres-cta-buttons .btn {
    background: #7c70a8 !important;
    border-color: #7c70a8 !important;
    color: #ffffff !important;
}
section.offres-cta-dual .offres-cta-buttons .btn:hover,
section.hp-cta-compact .offres-cta-buttons .btn:hover {
    background: #6b5e99 !important;
    border-color: #6b5e99 !important;
    color: #ffffff !important;
}

section.offres-cta-dual .offres-cta-buttons .btn-secondary,
section.hp-cta-compact .offres-cta-buttons .btn-secondary {
    background: #f5f3fa !important;
    border-color: #f5f3fa !important;
    color: #3e3952 !important;
}
section.offres-cta-dual .offres-cta-buttons .btn-secondary:hover,
section.hp-cta-compact .offres-cta-buttons .btn-secondary:hover {
    background: #ffffff !important;
    border-color: #ffffff !important;
    color: #3e3952 !important;
}

/* ══════════════════════════════════════════════════════════════
   PODCAST / INTERVIEW — Vignette image arrondie
   ══════════════════════════════════════════════════════════════ */
section.interview .grid-md [anim-img-slide],
section.interview .grid-md [anim-img-slide] a,
section.interview .grid-md [anim-img-slide] img {
    border-radius: 0.5rem !important;
    overflow: hidden !important;
}

/* ══════════════════════════════════════════════════════════════
   FIX GLOBAL — Wysiwyg <p> dans les titres/sections fond foncé
   Cause racine : style.css `p, li { color: #12101b; font-size: 1.2rem }`
   écrase les inline styles des <h2>/<blockquote> quand Wysiwyg injecte un <p>.
   ══════════════════════════════════════════════════════════════ */
.section-deep h2 p,
.section-deep blockquote p,
.on-dark h2 p,
.on-dark blockquote p,
.chapter-opener h2 p {
    all: inherit !important;
}
/* Exception: testimonial cards keep their own colors */
.temoignage-card blockquote p {
    all: unset !important;
    margin: 0 !important;
    font-family: var(--font-display) !important;
    font-style: italic !important;
    font-weight: 300 !important;
    font-size: clamp(1.05rem, 1.4vw, 1.18rem) !important;
    line-height: 1.45 !important;
    letter-spacing: -0.005em !important;
    color: var(--ar-violet-900) !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Logo nav : pas de changement de couleur au survol */
.ar-chrome-logo,
.ar-chrome-logo:hover,
.ar-chrome-logo:focus,
.ar-chrome-logo svg,
.ar-chrome-logo:hover svg,
.ar-chrome-logo:hover path {
    color: inherit !important;
    fill: currentColor !important;
    transition: none !important;
}

/* ARX button overrides — higher specificity to beat legacy .btn in style.css */
a.btn.btn--ghost { background: transparent; color: var(--ar-mist); border-color: var(--ar-line-dark); }
a.btn.btn--ghost:hover { background: var(--ar-mist); color: var(--ar-indigo); border-color: var(--ar-mist); }
a.btn.btn-light { background: var(--ar-mist); color: var(--ar-indigo); border-color: var(--ar-mist); }
a.btn.btn-light:hover { background: #fff; color: var(--ar-indigo); }
a.btn.btn--secondary { background: transparent; color: var(--ar-indigo); border-color: var(--ar-indigo); }
a.btn.btn--secondary:hover { background: var(--ar-indigo); color: var(--ar-mist); }

/* ══════════════════════════════════════════════════════════════
   SECTION TYPES — global classes for ACF blocks
   ══════════════════════════════════════════════════════════════ */
section.section-light {
    background: var(--ar-paper);
    color: var(--ar-violet-900);
    padding-block: clamp(4rem, 8vw, 8rem);
    position: relative;
}
section.section-dark {
    background: var(--ar-violet-900);
    color: var(--ar-mist);
    padding-block: clamp(4rem, 8vw, 8rem);
    position: relative;
}
section.section-center { text-align: center; }

/* ══════════════════════════════════════════════════════════════
   KICKER — global class (used across all pages)
   Replaces eyebrow-rule + explicit span pattern
   ══════════════════════════════════════════════════════════════ */
.kicker {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--ar-violet-500);
}
.kicker::before {
    content: '';
    width: 32px;
    height: 1px;
    background: currentColor;
}
.kicker--center { justify-content: center; }
.kicker--center::after {
    content: '';
    width: 32px;
    height: 1px;
    background: currentColor;
}
.section-deep .kicker,
.section-dark .kicker { color: var(--ar-violet-200); }

/* Mobile menu: force white links (override global a { color: var(--color-link) }) */
.ar-chrome-mobile a,
.ar-chrome-mobile .primary a,
.ar-chrome-mobile .section-divider a { color: var(--ar-mist) !important; }
.ar-chrome-mobile a:hover,
.ar-chrome-mobile .primary a:hover { color: var(--ar-violet-200) !important; }
.ar-chrome-mobile .eyebrow { color: var(--ar-violet-200) !important; }

/* À propos — Tournant: image réduite 50% (portrait très haut) */
.apropos [data-screen-label="11 Tournant"] .pilier-media {
    min-height: auto !important;
    align-self: center !important;
}
.apropos [data-screen-label="11 Tournant"] .pilier-media img {
    width: 50% !important;
    height: auto !important;
    min-height: auto !important;
    display: block !important;
    margin: 0 auto !important;
    object-fit: contain !important;
}

/* LinkedIn icon: no red hover (override global a:hover from colors_and_type.css) */
.ar-chrome-social:hover,
.ar-chrome-social:hover svg,
.ar-chrome-social:hover path { color: inherit !important; fill: currentColor !important; }

/* ══════════════════════════════════════════════════════════════
   R1 — <em> accent color in block titles (source design system)
   Light sections: rouge-brique | Dark sections: violet-200
   ══════════════════════════════════════════════════════════════ */
.section-paper h2 em,
.section-light h2 em,
.section-paper h1 em { color: var(--ar-rouge-brique); font-weight: 200; }

.section-deep h2 em,
.section-deep h1 em,
.section-dark h2 em,
.section-dark h1 em,
.arx-section-fullscreen h1 em { color: var(--ar-violet-200); font-weight: 200; }

/* ══════════════════════════════════════════════════════════════
   Coaching bonus — responsive (2 col → 1 col)
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 700px) {
    .bonus-grid { grid-template-columns: 1fr !important; }
    .bonus-card { grid-template-columns: 110px 1fr !important; gap: 1rem !important; }
    .bonus-media { width: 110px !important; height: 140px !important; }
}

/* ══════════════════════════════════════════════════════════════
   Témoignages grille foncée — responsive
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1000px) {
    .section-deep .temoignages-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 640px) {
    .section-deep .temoignages-grid { grid-template-columns: 1fr !important; }
}

/* ══════════════════════════════════════════════════════════════
   Repartirez grille — responsive (3 col → 2 → 1)
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .repartirez-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 600px) {
    .repartirez-grid { grid-template-columns: 1fr !important; }
}

/* ══════════════════════════════════════════════════════════════
   Programme — last item border-bottom
   ══════════════════════════════════════════════════════════════ */
.section-paper ol > li:last-child,
.section-deep ol > li:last-child { border-bottom: 1px solid var(--ar-line); }

/* ══════════════════════════════════════════════════════════════
   Hero À propos — image stretches to match text height
   Source: coaching-page.jsx / apropos-page.jsx hero CSS
   ══════════════════════════════════════════════════════════════ */
.hero {
    background: var(--ar-violet-900);
    color: var(--ar-mist);
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 50vh;
}
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    min-height: 50vh;
}
.hero-text {
    padding: clamp(8rem, 14vw, 12rem) clamp(2rem, 5vw, 6rem) clamp(3rem, 5vw, 5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(2rem, 4vw, 3rem);
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    font-size: 12px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--ar-violet-200);
    margin-bottom: clamp(2rem, 4vw, 3rem);
    width: max-content;
}
.hero-badge::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--ar-violet-200);
}
.hero-media {
    position: relative;
    overflow: hidden;
    min-height: 50vh;
    background: var(--ar-paper-warm, #efe9e0);
}
.hero-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 88% center;
}
.hero-fig-caption {
    position: absolute;
    bottom: clamp(2rem, 4vw, 3rem);
    left: clamp(1.5rem, 3vw, 2.5rem);
    right: clamp(1.5rem, 3vw, 2.5rem);
    color: rgba(255,255,255,0.92);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
}
.hero-lead {
    margin: 0 0 16px;
    font-size: clamp(1.15rem, 1.4vw, 1.35rem);
    line-height: 1.5;
    color: var(--ar-mist);
    font-weight: 400;
    max-width: 30rem;
}
.hero-sub {
    margin: 0 0 36px;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(244,238,249,0.78);
    max-width: 32rem;
}
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero, .hero-media { min-height: auto; }
    .hero-media { aspect-ratio: 16/10; min-height: auto; max-height: 50vh; }
    .hero-media img { object-position: center center !important; }
    .hero-text { padding: clamp(6rem, 10vw, 8rem) clamp(1.5rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem); }
}

/* ══════════════════════════════════════════════════════════════
   Footer rule — ligne de séparation entre contenu et footer
   Source: coaching-page.jsx → .cta-footer-rule
   ══════════════════════════════════════════════════════════════ */
footer.ar-chrome-footer::before {
    content: '' !important;
    display: block !important;
    height: 1px !important;
    background: rgba(244, 238, 249, 0.18) !important;
    margin: 0 clamp(2rem, 6vw, 6rem) clamp(3rem, 5vw, 4rem) !important;
}

/* ══════════════════════════════════════════════════════════════
   Quote-list closing text — force color on <p> inside dark section
   (leçon 18: Neptune p { color:#12101b } overrides inheritance)
   ══════════════════════════════════════════════════════════════ */
.section-deep .prose p { color: inherit !important; }
.section-deep > .container > .reveal > p { color: inherit !important; }

/* ══════════════════════════════════════════════════════════════
   Coaching hero (page 1317) — dezoom + align right
   Le sujet est à droite de la photo ; contain montre l'image
   entière, positionnée à droite, fond paper comble le vide.
   ══════════════════════════════════════════════════════════════ */
.page-id-1317 .arx-section-fullscreen .img-curtain {
    background: var(--ar-paper);
}
.page-id-1317 .arx-section-fullscreen .img-curtain img {
    object-fit: contain !important;
    object-position: right center !important;
}

/* ══════════════════════════════════════════════════════════════
   Blog articles — hero grid responsive + content typography
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .arx-blog-hero {
        grid-template-columns: 1fr !important;
    }
    .arx-blog-hero > div:last-child {
        aspect-ratio: 16/9 !important;
        max-height: 280px;
    }
}

/* Blog content hierarchy */
.arx-blog-content .prose h2 {
    margin-top: 3rem !important;
    margin-bottom: 1.25rem !important;
    padding-top: 2rem;
    border-top: 1px solid var(--ar-line);
    font-family: var(--font-display) !important;
    font-weight: 300 !important;
    font-size: clamp(1.6rem, 3vw, 2.2rem) !important;
    line-height: 1.2 !important;
    color: var(--ar-violet-900) !important;
}

.arx-blog-content .prose h2:first-child {
    border-top: none;
    padding-top: 0;
    margin-top: 0 !important;
}

.arx-blog-content .prose h3 {
    margin-top: 2.25rem !important;
    margin-bottom: 1rem !important;
    font-family: var(--font-display) !important;
    font-weight: 400 !important;
    font-size: clamp(1.15rem, 2vw, 1.45rem) !important;
    line-height: 1.3 !important;
    color: var(--ar-violet-900) !important;
}

.arx-blog-content .prose p {
    margin-bottom: 1.35rem !important;
}

.arx-blog-content .prose ul,
.arx-blog-content .prose ol {
    margin: 1.25rem 0 1.75rem !important;
    padding-left: 1.5rem !important;
}

.arx-blog-content .prose li {
    margin-bottom: 0.5rem !important;
    line-height: 1.7 !important;
}

.arx-blog-content .prose blockquote {
    margin: 2.5rem 0 !important;
    padding: 1.75rem 2rem !important;
    border-left: 3px solid var(--ar-rouge-brique) !important;
    background: #F4ECF2 !important;
    font-style: italic !important;
    font-size: 1.1rem !important;
}

.arx-blog-content .prose blockquote cite {
    display: block !important;
    margin-top: 0.75rem !important;
    font-style: normal !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    color: var(--ar-ink-soft) !important;
}

.arx-blog-content .prose hr {
    margin: 3rem 0 !important;
    border: none !important;
    border-top: 1px solid var(--ar-line) !important;
}

.arx-blog-content .prose strong {
    font-weight: 600 !important;
    color: var(--ar-violet-900) !important;
}

/* Piliers — lien discret vers A propos */
a.arx-piliers-link { color: rgba(244,238,249,0.55) !important; }
a.arx-piliers-link:hover { color: rgba(244,238,249,0.85) !important; }
