/* ============================================
   PAUL CARBONI — SITE STYLES v3
   ============================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --fond-principal: #F6F4EF;
    --texte-principal: #1A1A1A;
    --vert-expertise: #6F8F78;
    --vert-action: #476B53;
    --vert-action-hover: #3A5A44;
    --gris-structure: #D8D6D0;
    --fond-badge: #EEECE6;
    --hover-secondaire: rgba(79,111,90,0.06);
    --font-titres: 'DM Serif Display', serif;
    --font-texte: 'IBM Plex Sans', sans-serif;
    --line-height-titres: 1.15;
    --line-height-texte: 1.7;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-texte);
    background-color: var(--fond-principal);
    color: var(--texte-principal);
    font-size: 17px;
    line-height: var(--line-height-texte);
    font-weight: 400;
    overflow-x: hidden;
}

/* ============================================
   HEADER
   ============================================ */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--fond-principal);
    border-bottom: 1px solid var(--gris-structure);
    z-index: 1000;
    padding: 1.4rem 0;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-titres);
    font-size: 1.8rem;
    color: var(--texte-principal);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.01em;
    font-weight: 500;
}

.logo span { color: var(--vert-expertise); }

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    list-style: none;
}

.nav-links a {
    color: var(--texte-principal);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s;
    font-size: 1rem;
    position: relative;
}

.nav-links a:not(.cta-button)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--vert-expertise);
    transition: width 0.3s ease-in-out;
}

.nav-links a:not(.cta-button):hover::after { width: 100%; }
.nav-links a:hover { color: var(--vert-expertise); }

.dropdown { position: relative; cursor: pointer; }
.dropdown:hover > a { color: var(--vert-expertise); }

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--fond-principal);
    min-width: 240px;
    border: 1px solid var(--gris-structure);
    border-radius: 6px;
    padding: 0.5rem 0;
    padding-top: 1rem;
    z-index: 1001;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.dropdown:hover .dropdown-content { display: block; animation: fadeIn 0.2s ease; }

.dropdown-content a {
    display: block;
    padding: 0.8rem 1.5rem;
    text-align: left;
    color: var(--texte-principal);
}

.dropdown-content a:hover {
    background-color: var(--hover-secondaire);
    color: var(--vert-expertise);
}

.cta-button { color: var(--texte-principal); font-weight: 500; }

.nav-links .cta-button.cta-secondary {
    font-size: 0.95rem !important;
    padding: 0.6rem 1.4rem !important;
    border-color: var(--texte-principal);
    transition: all 0.25s ease;
}

.nav-links .cta-button.cta-secondary:hover {
    background-color: var(--vert-action);
    color: #FFFFFF;
    border-color: var(--vert-action);
}

.burger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--texte-principal);
}

/* ============================================
   HERO — 2 lignes équilibrées
   ============================================ */
.hero {
    margin-top: 80px;
    padding: 14rem 2rem 8rem;
    background-color: var(--fond-principal);
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-content {
    max-width: 70ch;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
}

.badge {
    display: inline-block;
    background-color: var(--fond-badge);
    color: var(--vert-expertise);
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
}

.hero h1 {
    font-family: var(--font-titres);
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--texte-principal);
    margin-bottom: 0.3rem;
    width: 100%;
    max-width: 650px;
    /* PAS de white-space: nowrap — retour à la ligne naturel et équilibré */
}

.hero-subtitle {
    font-family: var(--font-titres);
    font-size: 1.6rem;
    color: rgba(111, 143, 120, 0.9);
    font-style: italic;
    font-weight: 400;
    line-height: 1.2;
    width: 100%;
    margin-bottom: 1.8rem;
}

.hero-explainer {
    font-size: 1rem;
    color: #5A5A5A;
    max-width: 55ch;
    margin: 0 auto 2.5rem auto;
    font-weight: 400;
    line-height: 1.6;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
    50% { opacity: 1; transform: translateX(-50%) translateY(5px); }
}

/* ============================================
   BOUTONS
   ============================================ */
.cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.cta-primary {
    background-color: var(--vert-action);
    color: #FFFFFF;
    padding: 1.1rem 3.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(71,107,83,0.25);
}

.cta-primary:hover {
    background-color: var(--vert-action-hover);
    box-shadow: 0 4px 16px rgba(71,107,83,0.35);
    transform: translateY(-1px);
}

.cta-secondary {
    background-color: transparent;
    color: var(--texte-principal);
    padding: 1.1rem 3.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid var(--gris-structure);
    transition: all 0.25s ease;
}

.cta-secondary:hover {
    background-color: var(--hover-secondaire);
    border-color: var(--vert-expertise);
}

/* ============================================
   SECTION OFFRES (fusionné parcours + cartes)
   ============================================ */
.services {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem 6rem;
    border-top: 1px solid var(--gris-structure);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-titres);
    font-size: 2.4rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--texte-principal);
    letter-spacing: -0.01em;
    line-height: var(--line-height-titres);
}

.section-subtitle { color: #5A5A5A; max-width: 600px; margin: 0 auto; }

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: stretch;
}

@media (min-width: 700px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1050px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

/* Carte standard */
.service-card {
    background-color: var(--fond-principal);
    border: 1px solid #B8B6B0;
    border-radius: 8px;
    padding: 3rem 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
}

.service-card:hover {
    border-color: var(--vert-expertise);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

/* Carte Diagnostic dominante */
.service-card.card-featured {
    background-color: #FFFFFF;
    border: 2px solid var(--vert-expertise);
    box-shadow: 0 8px 30px rgba(111,143,120,0.12);
    padding: 3.5rem 2.2rem;
    transform: scale(1.02);
}

.service-card.card-featured:hover {
    transform: scale(1.02) translateY(-4px);
    box-shadow: 0 12px 40px rgba(111,143,120,0.18);
}

.recommended-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--vert-action);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(71,107,83,0.2);
    letter-spacing: 0.3px;
}

/* Numéro d'étape dans la carte */
.card-step-number {
    font-family: var(--font-titres);
    font-size: 2.5rem;
    color: var(--gris-structure);
    margin-bottom: 1rem;
    line-height: 1;
    transition: color 0.3s ease;
}

.service-card:hover .card-step-number {
    color: var(--vert-expertise);
}

.service-icon {
    font-size: 2rem;
    color: var(--vert-expertise);
    margin-bottom: 1.5rem;
    background-color: var(--fond-badge);
    width: 60px; height: 60px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 8px;
}

.service-card h3 {
    font-family: var(--font-titres);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--texte-principal);
    font-weight: 500;
    letter-spacing: -0.01em;
}

.service-card p {
    font-size: 1rem;
    color: #4A4A4A;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-meta {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gris-structure);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.service-price {
    font-weight: 600;
    color: var(--texte-principal);
    font-size: 1rem;
    white-space: nowrap;
}

.card-link {
    color: var(--vert-expertise);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}
.card-link:hover { border-bottom-color: var(--vert-expertise); }

/* ============================================
   BLOC CONFIANCE (accueil)
   ============================================ */
.trust-block {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem 6rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    border-top: 1px solid var(--gris-structure);
}

.trust-text h2 {
    font-family: var(--font-titres);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--texte-principal);
    font-weight: 500;
    line-height: var(--line-height-titres);
}

.trust-text p {
    font-size: 1.05rem;
    color: #4A4A4A;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.trust-list {
    list-style: none;
}

.trust-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: var(--texte-principal);
    font-size: 1rem;
}

.trust-list li i {
    color: var(--vert-expertise);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.trust-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    border: 1px solid var(--gris-structure);
}

.trust-map iframe {
    display: block;
    width: 100%;
    height: 320px;
    border: none;
}

@media (max-width: 900px) {
    .trust-block {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .trust-map iframe {
        height: 250px;
    }
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 8rem 2rem 6rem;
}

.faq-section h2 {
    font-family: var(--font-titres);
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--texte-principal);
    font-weight: 500;
    text-align: center;
}

.faq-item {
    border-bottom: 1px solid var(--gris-structure);
    padding: 1.5rem 0;
}

.faq-item:first-of-type {
    border-top: 1px solid var(--gris-structure);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 1rem;
}

.faq-question h3 {
    font-family: var(--font-texte);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--texte-principal);
    line-height: 1.4;
}

.faq-question i {
    color: var(--vert-expertise);
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-top: 1rem;
}

.faq-answer p {
    font-size: 1rem;
    color: #4A4A4A;
    line-height: 1.7;
}

/* ============================================
   BLOC CTA VERT
   ============================================ */
.cta-block {
    background-color: var(--vert-action);
    padding: 5rem 2rem;
    text-align: center;
    color: #FFFFFF;
}

.cta-block-inner {
    max-width: 700px;
    margin: 0 auto;
}

.cta-block-subtitle {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cta-block h2 {
    font-family: var(--font-titres);
    font-size: 2.4rem;
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: var(--line-height-titres);
}

.cta-block .cta-white {
    display: inline-block;
    background-color: #FFFFFF;
    color: var(--vert-action);
    padding: 1.1rem 3.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.cta-block .cta-white:hover {
    background-color: var(--fond-principal);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.cta-block-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ============================================
   PAGES OFFRES (détail)
   ============================================ */
.offer-hero {
    margin-top: 80px;
    padding: 8rem 2rem 4rem;
    background-color: var(--fond-principal);
}

.offer-hero-inner {
    max-width: 800px;
    margin: 0 auto;
}

.offer-badge {
    display: inline-block;
    background-color: var(--vert-expertise);
    color: #fff;
    padding: 0.4rem 1.2rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.offer-hero .offer-price {
    font-family: var(--font-titres);
    font-size: 4rem;
    font-weight: 500;
    color: var(--texte-principal);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.offer-hero .offer-price-detail {
    font-size: 1rem;
    color: #4A4A4A;
    font-weight: 500;
    margin-bottom: 1rem;
}

.offer-hero .offer-meta {
    font-size: 0.95rem;
    color: #6A6A6A;
    margin-bottom: 2rem;
}

.offer-hero .offer-intro {
    font-size: 1.15rem;
    color: #333;
    line-height: 1.7;
    max-width: 65ch;
}

/* Bloc résultats */
.offer-results {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.results-card {
    background-color: #FFFFFF;
    border-left: 4px solid var(--vert-expertise);
    border-radius: 0 8px 8px 0;
    padding: 2.5rem 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.results-card h3 {
    font-family: var(--font-titres);
    font-size: 1.5rem;
    color: var(--vert-expertise);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.results-list { list-style: none; }

.results-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: #333;
    line-height: 1.5;
}

.results-list li::before {
    content: '\2192';
    color: var(--vert-expertise);
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Déroulé (étapes) */
.offer-process {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.offer-process h2 {
    font-family: var(--font-titres);
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--texte-principal);
    font-weight: 500;
}

.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem 0;
    border-bottom: 1px solid var(--gris-structure);
}

.process-step:last-child { border-bottom: none; }

.process-step-number {
    font-family: var(--font-titres);
    font-size: 2.5rem;
    color: var(--vert-expertise);
    line-height: 1;
    flex-shrink: 0;
    width: 50px;
    text-align: center;
}

.process-step-content h3 {
    font-family: var(--font-titres);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--texte-principal);
    font-weight: 500;
}

.process-step-content p {
    font-size: 1rem;
    color: #4A4A4A;
    line-height: 1.6;
}

/* Note de bas de section */
.offer-note {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
    text-align: center;
}

.offer-note-card {
    background-color: var(--fond-badge);
    border-radius: 8px;
    padding: 1.5rem 2rem;
    font-size: 1rem;
    color: #4A4A4A;
    line-height: 1.6;
}

.offer-note-card strong { color: var(--texte-principal); }

/* Exemples cas traités */
.offer-examples {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.offer-examples h3 {
    font-family: var(--font-titres);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--texte-principal);
    font-weight: 500;
}

.offer-examples p {
    font-size: 1rem;
    color: #4A4A4A;
    line-height: 1.6;
    font-style: italic;
}

/* ============================================
   PAGE À PROPOS
   ============================================ */
.about-hero {
    margin-top: 80px;
    padding: 8rem 2rem 4rem;
    background-color: var(--fond-principal);
}

.about-hero-inner {
    max-width: 800px;
    margin: 0 auto;
}

.about-hero h1 {
    font-family: var(--font-titres);
    font-size: 2.8rem;
    margin-bottom: 2rem;
    line-height: var(--line-height-titres);
    color: var(--texte-principal);
    font-weight: 500;
}

.about-hero p {
    font-size: 1.15rem;
    color: #4A4A4A;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 65ch;
}

.about-section-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.about-section-page h2 {
    font-family: var(--font-titres);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--texte-principal);
    font-weight: 500;
}

.about-section-page p {
    font-size: 1.05rem;
    color: #4A4A4A;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.check-list { list-style: none; margin-bottom: 2rem; }
.check-list li { margin-bottom: 1rem; display: flex; align-items: center; gap: 15px; font-weight: 500; color: var(--texte-principal); }
.check-list i { color: var(--vert-expertise); font-size: 1rem; }

/* Carte certifié (utilisée dans about) */
.about-card-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.about-card {
    background: #FFFFFF;
    padding: 2.5rem 2rem;
    border-radius: 4px;
    border-top: 3px solid var(--vert-expertise);
    box-shadow: 0 8px 20px rgba(0,0,0,0.03);
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.about-card:hover { transform: translateY(-3px); }

.about-card i {
    font-size: 2rem;
    color: var(--vert-expertise);
    margin-bottom: 1.2rem;
    opacity: 0.8;
}

.about-card h3 {
    font-family: var(--font-titres);
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--texte-principal);
    font-weight: 500;
}

.about-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #5A5A5A;
    font-weight: 400;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background-color: var(--texte-principal);
    color: #D8D6D0;
    padding: 6rem 2rem 3rem;
    font-size: 0.95rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-family: var(--font-titres);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.footer-col a {
    color: #E5E3DD;
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    transition: color 0.3s;
    cursor: pointer;
}
.footer-col a:hover { color: var(--vert-expertise); }

.footer-contact p { margin-bottom: 0.8rem; display: flex; align-items: center; gap: 10px; }
.footer-contact i { color: var(--vert-expertise); width: 16px; }

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .hero h1 { font-size: 2.4rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .service-card.card-featured { transform: none; }
    .service-card.card-featured:hover { transform: translateY(-4px); }
}

@media (max-width: 768px) {
    .hero { padding-top: 10rem; padding-bottom: 4rem; }
    .hero h1 { font-size: 2rem; }
    .burger { display: block; z-index: 1002; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        height: 100vh;
        background-color: var(--fond-principal);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        border-left: 1px solid var(--gris-structure);
        z-index: 1001;
    }

    .nav-links.active { right: 0; }
    .nav-links li { margin: 1.5rem 0; width: 100%; text-align: center; }
    .nav-links a { font-size: 1.3rem; font-family: var(--font-titres); }

    .dropdown-content {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        background: rgba(0,0,0,0.03);
        margin-top: 15px;
        display: none;
        text-align: center;
    }
    .dropdown.open .dropdown-content { display: block; }

    .cta-group { flex-direction: column; width: 100%; }
    .cta-primary, .cta-secondary { width: 100%; text-align: center; }

    .services { padding: 6rem 2rem 4rem; }

    .service-card h3 { white-space: normal; }

    .offer-hero .offer-price { font-size: 3rem; }
    .process-step { flex-direction: column; gap: 1rem; }
    .process-step-number { width: auto; text-align: left; }

    .cta-block h2 { font-size: 1.8rem; }
    .cta-block { padding: 4rem 1.5rem; }
}

@media (min-width: 769px) {
    .nav-links { display: flex !important; position: static; background: transparent; flex-direction: row; box-shadow: none; width: auto; height: auto; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px) translateX(-50%); }
    to { opacity: 1; transform: translateY(0) translateX(-50%); }
}

/* ============================================
   FORMATION HOME BANNER
   ============================================ */
.formation-home-banner { margin-top: 3rem; }
.formation-home-card { display: grid; grid-template-columns: 1fr 280px; background-color: #FFFFFF; border: 2px solid var(--vert-expertise); border-radius: 10px; overflow: hidden; box-shadow: 0 8px 30px rgba(111,143,120,0.10); transition: all 0.3s ease; }
.formation-home-card:hover { box-shadow: 0 12px 40px rgba(111,143,120,0.16); transform: translateY(-3px); }
.formation-home-left { padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.formation-home-badge { display: inline-block; background-color: var(--fond-badge); color: var(--vert-expertise); padding: 0.25rem 0.8rem; border-radius: 4px; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.8rem; width: fit-content; }
.formation-home-left h3 { font-family: var(--font-titres); font-size: 1.6rem; color: var(--texte-principal); font-weight: 500; margin-bottom: 0.6rem; letter-spacing: -0.01em; }
.formation-home-left p { font-size: 1rem; color: #4A4A4A; line-height: 1.6; margin-bottom: 1.2rem; max-width: 55ch; }
.formation-home-meta { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.formation-home-meta span { font-size: 0.88rem; color: #6A6A6A; display: flex; align-items: center; gap: 6px; }
.formation-home-meta span i { color: var(--vert-expertise); font-size: 0.8rem; }
.formation-home-right { background-color: var(--vert-action); color: #FFFFFF; padding: 2.5rem 2rem; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; gap: 0.2rem; }
.formation-home-price-label { font-size: 0.78rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; opacity: 0.85; }
.formation-home-price { font-family: var(--font-titres); font-size: 2.8rem; font-weight: 500; line-height: 1; }
.formation-home-price-detail { font-size: 0.85rem; opacity: 0.75; margin-bottom: 0.8rem; }
.formation-home-cta { display: inline-flex; align-items: center; gap: 6px; background-color: #FFFFFF; color: var(--vert-action); padding: 0.6rem 1.5rem; border-radius: 6px; text-decoration: none; font-weight: 600; font-size: 0.88rem; transition: all 0.25s ease; }
.formation-home-cta:hover { background-color: var(--fond-principal); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
/* Séparateur dans le dropdown Zones */
.dropdown-separator {
    display: block;
    height: 1px;
    background-color: var(--gris-structure);
    margin: 0.5rem 1.5rem;
}

/* ============================================
   CARROUSEL CONFIANCE — LOGOS CLIENTS
   ============================================ */
.confiance-section { padding: 0 0 4rem; overflow: hidden; }
.confiance-label { font-size: 0.85rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; color: var(--vert-expertise); margin-bottom: 1.5rem; text-align: center; }
.carousel-track { display: flex; align-items: center; gap: 4rem; animation: scroll-logos 40s linear infinite; width: max-content; }
.carousel-track:hover { animation-play-state: paused; }
.carousel-item { flex-shrink: 0; display: flex; align-items: center; justify-content: center; height: 55px; opacity: 0.7; transition: opacity 0.3s ease; filter: grayscale(30%); }
.carousel-item:hover { opacity: 1; filter: grayscale(0%); }
.carousel-item img { max-height: 55px; width: auto; object-fit: contain; }

@keyframes scroll-logos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.33%); }
}

@media (max-width: 768px) {
    .carousel-item { height: 40px; }
    .carousel-item img { max-height: 40px; }
    .carousel-track { gap: 2.5rem; }
}

/* ============================================
   CLASSES UTILITAIRES — Remplacement CSS inline
   ============================================ */

/* --- Navigation : chevron dropdown --- */
.nav-chevron {
    font-size: 0.7em;
    margin-left: 5px;
}

/* --- Navigation : bouton CTA header RDV --- */
/* (déjà géré par .nav-links .cta-button.cta-secondary) */

/* --- Footer : mentions légales (SIREN, TVA) --- */
.footer-legal {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #777;
}

.footer-legal + .footer-legal {
    margin-top: 0;
}

/* --- Footer : lien Nova Santona --- */
.footer-credit-link {
    color: var(--vert-expertise);
    text-decoration: none;
}

.footer-credit-link:hover {
    text-decoration: underline;
}

/* --- Liens internes contextuels (vert + gras) --- */
.link-internal {
    color: var(--vert-expertise);
    font-weight: 500;
    text-decoration: none;
}

.link-internal:visited {
    color: var(--vert-expertise);
}

.link-internal:hover {
    text-decoration: underline;
}

/* --- Icône attestation (certificat) --- */
.attestation i {
    margin-right: 5px;
}

/* --- Pages formation : sous-titre hero (formateur) --- */
.formation-hero .hero-formateur {
    font-size: 0.95rem;
    color: #6A6A6A;
    margin-top: 1rem;
}

/* --- Pages formation : intro objectifs --- */
.formation-section .objectifs-intro {
    font-size: 1rem;
    color: #4A4A4A;
    margin-bottom: 1.5rem;
}

/* --- Pages formation : note post-objectifs --- */
.formation-section .objectifs-note {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #4A4A4A;
}

/* --- Index : scroll indicator hero --- */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gris-structure);
    font-size: 0.75rem;
    animation: scrollPulse 2s infinite;
}

.scroll-indicator i {
    font-size: 0.9rem;
}

/* --- Index : phrase italique accompagnement --- */
.trust-personal-note {
    font-size: 1rem;
    color: var(--texte-principal);
    font-weight: 500;
    font-style: italic;
}

/* --- Index : lien avis Google --- */
.google-review-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 1.5rem;
    color: var(--vert-expertise);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.google-review-link:hover {
    color: var(--vert-action);
}

.google-review-link i {
    font-size: 1.1rem;
}

/* --- Supervision : suffixe prix /mois --- */
.price-suffix {
    font-family: var(--font-texte);
    font-size: 1.5rem;
    font-weight: 400;
    color: #4A4A4A;
}

/* --- À propos : phrase italique accompagnement --- */
.about-personal-note {
    font-weight: 500;
    color: var(--texte-principal);
    font-style: italic;
}

/* ============================================
   PAGES FORMATION — STYLES SPÉCIFIQUES
   (externalisés depuis les balises <style>)
   ============================================ */
.formation-hero {
    margin-top: 80px;
    padding: 8rem 2rem 4rem;
    background-color: var(--fond-principal);
}

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

.formation-hero h1 {
    font-family: var(--font-titres);
    font-size: 2.8rem;
    margin-bottom: 0.6rem;
    line-height: var(--line-height-titres);
    color: var(--texte-principal);
    font-weight: 500;
}

.formation-hero h1 em {
    color: var(--vert-expertise);
    font-style: normal;
}

.formation-hero .hero-sub {
    font-size: 1.05rem;
    color: #6A6A6A;
    margin-bottom: 2rem;
    font-weight: 400;
}

.formation-banner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.formation-card {
    background-color: #FFFFFF;
    border: 2px solid var(--vert-expertise);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(111,143,120,0.10);
}

.formation-card-top {
    display: grid;
    grid-template-columns: 280px 1fr;
}

.formation-card-price {
    background-color: var(--vert-action);
    color: #FFFFFF;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 0.3rem;
}

.formation-card-price .price-label {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.85;
}

.formation-card-price .price-amount {
    font-family: var(--font-titres);
    font-size: 3rem;
    font-weight: 500;
    line-height: 1;
}

.formation-card-price .price-detail {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 0.3rem;
}

.formation-card-price .price-sub {
    font-size: 0.78rem;
    opacity: 0.65;
    margin-top: 0.2rem;
}

.formation-card-price .price-cta {
    display: inline-block;
    margin-top: 1.2rem;
    background-color: #FFFFFF;
    color: var(--vert-action);
    padding: 0.7rem 1.8rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.25s ease;
}

.formation-card-price .price-cta:hover {
    background-color: var(--fond-principal);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.formation-card-details {
    padding: 2rem 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem 3rem;
    align-content: center;
    align-items: center;
}

.formation-detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--texte-principal);
    padding: 0.5rem 0;
}

.formation-detail-item i {
    color: var(--vert-expertise);
    font-size: 1rem;
    width: 22px;
    min-width: 22px;
    text-align: center;
    line-height: 1;
}

.formation-detail-item strong {
    font-weight: 600;
}

.formation-detail-item .detail-secondary {
    color: #6A6A6A;
    font-size: 0.85rem;
}

.formation-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.formation-section h2 {
    font-family: var(--font-titres);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--texte-principal);
    font-weight: 500;
}

.objectifs-list {
    list-style: none;
    padding: 0;
}

.objectifs-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 0.6rem 0;
    font-size: 1.05rem;
    color: #333;
    line-height: 1.5;
}

.objectifs-list li::before {
    content: '\2192';
    color: var(--vert-expertise);
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 1px;
}

.programme-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.programme-block {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 2rem;
    border: 1px solid var(--gris-structure);
    transition: all 0.3s ease;
}

.programme-block:hover {
    border-color: var(--vert-expertise);
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.programme-block-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gris-structure);
}

.programme-block-time {
    background-color: var(--fond-badge);
    color: var(--vert-expertise);
    padding: 0.25rem 0.7rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.programme-block-title {
    font-family: var(--font-titres);
    font-size: 1.2rem;
    color: var(--texte-principal);
    font-weight: 500;
}

.programme-block ul {
    list-style: none;
    padding: 0;
}

.programme-block ul li {
    font-size: 0.95rem;
    color: #4A4A4A;
    padding: 0.35rem 0;
    padding-left: 1.2rem;
    position: relative;
    line-height: 1.5;
}

.programme-block ul li::before {
    content: '\2192';
    position: absolute;
    left: 0;
    color: var(--vert-expertise);
    font-weight: 600;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.info-card {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 2rem;
    border: 1px solid var(--gris-structure);
}

.info-card h3 {
    font-family: var(--font-titres);
    font-size: 1.3rem;
    color: var(--texte-principal);
    font-weight: 500;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card h3 i {
    color: var(--vert-expertise);
    font-size: 1rem;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card ul li {
    font-size: 0.95rem;
    color: #4A4A4A;
    padding: 0.4rem 0;
    padding-left: 1.2rem;
    position: relative;
    line-height: 1.5;
}

.info-card ul li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--vert-expertise);
    font-weight: 600;
}

.methodes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
}

.methode-card {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 1.8rem;
    border: 1px solid var(--gris-structure);
    transition: all 0.3s ease;
}

.methode-card:hover {
    border-color: var(--vert-expertise);
}

.methode-card h3 {
    font-family: var(--font-titres);
    font-size: 1.1rem;
    color: var(--texte-principal);
    font-weight: 500;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.methode-card h3 i {
    color: var(--vert-expertise);
    font-size: 1rem;
}

.methode-card ul {
    list-style: none;
    padding: 0;
}

.methode-card ul li {
    font-size: 0.9rem;
    color: #4A4A4A;
    padding: 0.3rem 0;
    padding-left: 1rem;
    position: relative;
    line-height: 1.5;
}

.methode-card ul li::before {
    content: '\2192';
    position: absolute;
    left: 0;
    color: var(--vert-expertise);
    font-size: 0.85rem;
}

.methode-card .attestation {
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px solid var(--gris-structure);
    font-size: 0.88rem;
    color: var(--vert-expertise);
    font-weight: 500;
    font-style: italic;
}

.lieux-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
}

.lieu-card {
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--gris-structure);
    background-color: #FFFFFF;
    text-align: center;
    transition: all 0.3s ease;
}

.lieu-card:hover {
    border-color: var(--vert-expertise);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.lieu-card i {
    font-size: 1.5rem;
    color: var(--vert-expertise);
    margin-bottom: 0.8rem;
}

.lieu-card h4 {
    font-family: var(--font-titres);
    font-size: 1.1rem;
    color: var(--texte-principal);
    font-weight: 500;
    margin-bottom: 0.4rem;
}

.lieu-card p {
    font-size: 0.88rem;
    color: #6A6A6A;
    line-height: 1.5;
}

.accessibilite-note {
    background-color: var(--fond-badge);
    border-radius: 10px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.95rem;
    color: #4A4A4A;
    line-height: 1.6;
}

.accessibilite-note i {
    color: var(--vert-expertise);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.formation-zones {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.formation-zones p {
    font-size: 1rem;
    color: #4A4A4A;
    line-height: 1.7;
}

.formation-zones a {
    color: var(--vert-expertise);
    text-decoration: none;
    font-weight: 500;
}

.formation-zones a:hover {
    text-decoration: underline;
}

/* --- Pages formation : responsive --- */
@media (max-width: 900px) {
    .formation-card-top { grid-template-columns: 1fr; }
    .formation-card-details { grid-template-columns: 1fr; gap: 0.5rem; }
    .programme-grid { grid-template-columns: 1fr; }
    .info-grid { grid-template-columns: 1fr; }
    .methodes-grid { grid-template-columns: 1fr; }
    .lieux-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .formation-hero h1 { font-size: 2rem; }
    .formation-card-price .price-amount { font-size: 2.5rem; }
    .formation-card-details { padding: 1.5rem; }
}

/* ============================================
   PAGE CONSULTANT IA — STYLES SPÉCIFIQUES
   ============================================ */
.consultant-hero {
    margin-top: 80px;
    padding: 8rem 2rem 4rem;
    background-color: var(--fond-principal);
}

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

.consultant-hero h1 {
    font-family: var(--font-titres);
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    line-height: var(--line-height-titres);
    color: var(--texte-principal);
    font-weight: 500;
}

.consultant-hero h1 em {
    color: var(--vert-expertise);
    font-style: normal;
}

.hero-seo {
    font-size: 1rem;
    color: #6A6A6A;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 750px;
}

.consultant-hero .hero-sub {
    font-size: 1.1rem;
    color: #4A4A4A;
    margin-bottom: 1rem;
    font-weight: 400;
    line-height: 1.7;
    max-width: 700px;
}

.consultant-hero .hero-cta {
    display: inline-block;
    margin-top: 1.5rem;
    background-color: var(--vert-action);
    color: #FFFFFF;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.25s ease;
}

.consultant-hero .hero-cta:hover {
    background-color: var(--vert-action-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.hero-cta-note {
    margin-top: 0.6rem;
    font-size: 0.85rem;
    color: #6A6A6A;
}

/* --- Consultant : sections standard --- */
.consultant-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.consultant-section h2 {
    font-family: var(--font-titres);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--texte-principal);
    font-weight: 500;
}

.consultant-section p {
    font-size: 1.05rem;
    color: #4A4A4A;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* --- Consultant : situations grid --- */
.situations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
}

.situation-card {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 2rem;
    border: 1px solid var(--gris-structure);
    transition: all 0.3s ease;
}

.situation-card:hover {
    border-color: var(--vert-expertise);
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.situation-card h3 {
    font-family: var(--font-titres);
    font-size: 1.15rem;
    color: var(--texte-principal);
    font-weight: 500;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.situation-card h3 i {
    color: var(--vert-expertise);
    font-size: 1rem;
}

.situation-card p {
    font-size: 0.95rem;
    color: #4A4A4A;
    line-height: 1.6;
    margin-bottom: 0;
}

/* --- Consultant : approche & parcours --- */
.approche-intro {
    font-size: 1.05rem;
    color: #4A4A4A;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.parcours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
}

.parcours-card {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 1.8rem;
    border: 1px solid var(--gris-structure);
    text-align: center;
    transition: all 0.3s ease;
}

.parcours-card:hover {
    border-color: var(--vert-expertise);
}

.parcours-card .parcours-icon {
    font-size: 1.5rem;
    color: var(--vert-expertise);
    margin-bottom: 0.8rem;
}

.parcours-card h3 {
    font-family: var(--font-titres);
    font-size: 1.1rem;
    color: var(--texte-principal);
    font-weight: 500;
    margin-bottom: 0.6rem;
}

.parcours-card p {
    font-size: 0.9rem;
    color: #4A4A4A;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.parcours-card a {
    color: var(--vert-expertise);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.88rem;
}

.parcours-card a:hover {
    text-decoration: underline;
}

.approche-note {
    background-color: var(--fond-badge);
    border-radius: 10px;
    padding: 1.5rem 2rem;
    margin-top: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 0.95rem;
    color: #4A4A4A;
    line-height: 1.6;
}

.approche-note i {
    color: var(--vert-expertise);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.approche-note p {
    margin-bottom: 0;
}

/* --- Consultant : profil --- */
.profil-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
}

.profil-card {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 1.8rem;
    border: 1px solid var(--gris-structure);
}

.profil-card h3 {
    font-family: var(--font-titres);
    font-size: 1.15rem;
    color: var(--texte-principal);
    font-weight: 500;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.profil-card h3 i {
    color: var(--vert-expertise);
    font-size: 1rem;
}

.profil-card p {
    font-size: 0.95rem;
    color: #4A4A4A;
    line-height: 1.6;
    margin-bottom: 0;
}

/* --- Consultant : FAQ (variante simple) --- */
.faq-list {
    margin-top: 1rem;
}

/* --- Consultant : zones --- */
.consultant-zones {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.consultant-zones p {
    font-size: 1rem;
    color: #4A4A4A;
    line-height: 1.7;
}

.consultant-zones a {
    color: var(--vert-expertise);
    text-decoration: none;
    font-weight: 500;
}

.consultant-zones a:hover {
    text-decoration: underline;
}

/* --- Consultant : responsive --- */
@media (max-width: 900px) {
    .situations-grid { grid-template-columns: 1fr; }
    .parcours-grid { grid-template-columns: 1fr; }
    .profil-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .consultant-hero h1 { font-size: 2rem; }
}
/* ============================================
   BLOC MAILLAGE INTERNE SEO
   ============================================ */
.seo-local-block {
    background-color: var(--fond-badge);
    border-top: 1px solid var(--gris-structure);
    padding: 4rem 2rem;
}

.seo-local-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.seo-local-inner h2 {
    font-family: var(--font-titres);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--texte-principal);
    margin-bottom: 1.2rem;
    letter-spacing: -0.01em;
}

.seo-local-inner p {
    font-size: 0.95rem;
    color: #5A5A5A;
    line-height: 1.7;
}

.seo-local-inner a {
    color: var(--vert-expertise);
    text-decoration: none;
    font-weight: 500;
}

.seo-local-inner a:hover {
    text-decoration: underline;
}

/* --- Micro-CTA fin de FAQ --- */
.faq-cta-text {
    text-align: center;
    font-size: 0.95rem;
    color: #5A5A5A;
    margin-top: 2rem;
    padding-top: 1.5rem;
}

/* ============================================
   PAGE À PROPOS : PHOTO PORTRAIT
   ============================================ */
.about-hero-with-photo {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.about-hero-text {
    flex: 1;
}

.about-hero-photo {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.about-hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .about-hero-with-photo {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
    }
    .about-hero-photo {
        width: 160px;
        height: 160px;
    }
    .about-hero-text p {
        max-width: 100%;
    }
}

/* --- Page À propos : bloc offres --- */
.about-offres-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
}

.about-offre-link {
    display: block;
    text-align: center;
    padding: 1.5rem 1rem;
    background: #fff;
    border: 1px solid var(--gris-structure);
    border-radius: 8px;
    text-decoration: none;
    color: var(--texte-principal);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.about-offre-link:hover {
    border-color: var(--vert-expertise);
    color: var(--vert-expertise);
    transform: translateY(-2px);
}

.about-offre-link i {
    display: block;
    font-size: 1.3rem;
    color: var(--vert-expertise);
    margin-bottom: 0.6rem;
}

@media (max-width: 768px) {
    .about-offres-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
