/* ================================ */
/* --- DÉFINITIONS GLOBALES (DESIGN FINAL & OPTIMISÉ) --- */
/* ================================ */
:root {
    --vert-sauge: #A3B18A;
    --beige-rose: #F2E8DF;
    --creme: #FEFBF6;
    --gris-anthracite: #343A40;
    --dore: #B99470;
    --dore-clair: #d1b59a;
    --font-titre: 'Playfair Display', serif;
    --font-texte: 'Inter', sans-serif;
    --ease-out-cubic: cubic-bezier(0.215, 0.610, 0.355, 1);
    --shadow-soft: 0 1px 2px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.03);
    --shadow-medium: 0 1px 3px rgba(0,0,0,0.04), 0 6px 16px rgba(0,0,0,0.04), 0 12px 28px rgba(0,0,0,0.03);
    --shadow-large: 0 1px 3px rgba(0,0,0,0.03), 0 8px 20px rgba(0,0,0,0.05), 0 20px 50px rgba(0,0,0,0.06);
    --shadow-elevation: 0 2px 4px rgba(0,0,0,0.02), 0 8px 24px rgba(0,0,0,0.06), 0 24px 60px rgba(0,0,0,0.04);
    --shadow-glow-dore: 0 4px 15px rgba(185, 148, 112, 0.15), 0 12px 35px rgba(185, 148, 112, 0.08);
    --border-subtle: 1px solid rgba(0,0,0,0.06);
    --border-hover: 1px solid rgba(0,0,0,0.1);
}

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

html { 
    scroll-behavior: smooth; 
}

body { 
    font-family: var(--font-texte); 
    background-color: var(--creme); 
    color: var(--gris-anthracite); 
    line-height: 1.7; 
    overflow-x: hidden;
}

/* ================================ */
/* --- ÉLÉMENTS COMMUNS --- */
/* ================================ */
.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

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

section { 
    padding: 120px 0; 
    overflow: hidden; 
    position: relative; 
}

h2 { 
    font-family: var(--font-titre);
    font-weight: 700;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center; 
    margin-bottom: 20px; 
    line-height: 1.2; 
}

h3 { 
    font-family: var(--font-titre);
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    margin-bottom: 20px; 
}

.section-subtitle { 
    text-align: center; 
    max-width: 700px; 
    margin: 0 auto 80px auto; 
    font-size: 1.1rem; 
    font-weight: 300; 
}

.cta-button {
    display: inline-block;
    background-image: linear-gradient(135deg, var(--dore), var(--dore-clair));
    color: white;
    padding: 16px 36px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    transition: transform 0.4s var(--ease-out-cubic), box-shadow 0.4s var(--ease-out-cubic);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-glow-dore);
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(185, 148, 112, 0.25), 0 16px 45px rgba(185, 148, 112, 0.12);
}

.cta-button.loading {
    pointer-events: none;
}

.cta-button .button-text,
.cta-button .button-spinner {
    transition: all 0.3s ease;
}

.hidden {
    display: none !important;
}

.button-spinner {
    display: none;
}

.button-text {
    display: inline;
}

.fade-in { 
    opacity: 0; 
    transform: translateY(40px); 
    transition: opacity 1s var(--ease-out-cubic), transform 1s var(--ease-out-cubic); 
}

.fade-in.visible { 
    opacity: 1; 
    transform: translateY(0); 
}

/* ================================ */
/* --- HEADER & NAVIGATION --- */
/* ================================ */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background: transparent;
    transition:
        background 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        backdrop-filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-header.scrolled {
    background: rgba(254, 251, 246, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
    padding: 8px 0;
}

.main-header.hidden {
    transform: translateY(-110%);
    box-shadow: none;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    font-family: var(--font-titre);
    font-size: 1.4rem;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.4s ease;
    color: white;
}

.main-header.scrolled .logo {
    color: var(--gris-anthracite);
}

.logo img {
    height: var(--logo-height, 40px);
    width: auto;
    transition: all 0.4s ease;
}

.main-header:not(.scrolled) .logo img {
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.main-header.scrolled .logo img {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Nav links */
.main-nav {
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-nav > a,
.nav-dropdown-trigger {
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    padding: 8px 14px;
    border-radius: 6px;
    white-space: nowrap;
    transition: all 0.3s ease;
    color: rgba(255,255,255,0.85);
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-texte);
    position: relative;
}

.main-header.scrolled .main-nav > a,
.main-header.scrolled .nav-dropdown-trigger {
    color: var(--gris-anthracite);
}

.main-nav > a:hover,
.nav-dropdown-trigger:hover {
    color: white;
    background: rgba(255,255,255,0.12);
}

.main-header.scrolled .main-nav > a:hover,
.main-header.scrolled .nav-dropdown-trigger:hover {
    color: var(--dore);
    background: rgba(163, 177, 138, 0.1);
}

/* CTA button dans la nav */
.nav-cta {
    background: var(--dore) !important;
    color: white !important;
    padding: 10px 22px !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    font-size: 0.82rem !important;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 10px rgba(185, 148, 112, 0.3);
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(185, 148, 112, 0.4) !important;
    background: var(--dore-clair) !important;
}

/* Suppression de la barre sous les liens */
.main-nav > a::after { display: none; }

/* ================================ */
/* --- DROPDOWN MENUS --- */
/* ================================ */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger i {
    font-size: 0.6rem;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-trigger i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 240px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gris-anthracite) !important;
    text-decoration: none;
    transition: all 0.2s ease;
}

.nav-dropdown-menu a::after { display: none !important; }

.nav-dropdown-menu a i {
    color: var(--dore);
    font-size: 0.9rem;
    width: 20px;
    text-align: center;
}

.nav-dropdown-menu a:hover {
    background: var(--beige-rose) !important;
    color: var(--gris-anthracite) !important;
}

/* Flèche du dropdown */
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: white;
    border-top: 1px solid rgba(0,0,0,0.04);
    border-left: 1px solid rgba(0,0,0,0.04);
}

/* Zone invisible pour garder le hover entre trigger et menu */
.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 12px;
}

/* Burger */
.burger-menu span {
    transition: all 0.3s ease;
}

.main-header:not(.scrolled) .burger-menu span {
    background: white;
}

.main-header.scrolled .burger-menu span {
    background: var(--gris-anthracite);
}

/* ================================ */
/* --- MOBILE NAV --- */
/* ================================ */
.mobile-nav-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--dore);
    margin: 20px 0 5px;
    font-weight: 600;
    font-family: var(--font-texte);
}

.mobile-nav-cta {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 35px !important;
    background: linear-gradient(45deg, var(--dore), var(--dore-clair));
    color: white !important;
    border-radius: 6px;
    font-size: 1rem !important;
    font-weight: 600;
    box-shadow: var(--shadow-medium);
}

/* ================================ */
/* --- SECTION HÉRO (ACCUEIL) --- */
/* ================================ */
#accueil {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom,
        rgba(30, 35, 40, 0.75) 0%,
        rgba(30, 35, 40, 0.45) 40%,
        rgba(30, 35, 40, 0.55) 70%,
        rgba(30, 35, 40, 0.8) 100%);
}

.hero-content {
    position: relative;
    max-width: 850px;
    z-index: 10;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 22px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
    animation: heroFadeUp 0.8s ease-out both;
}

.hero-content h1 {
    font-size: clamp(1.8rem, 4.5vw, 3.2rem);
    line-height: 1.35;
    margin-bottom: 25px;
    color: white;
    font-weight: 600;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    animation: heroFadeUp 0.8s ease-out 0.15s both;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    max-width: 620px;
    margin: 0 auto 40px auto;
    font-weight: 300;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    animation: heroFadeUp 0.8s ease-out 0.3s both;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    animation: heroFadeUp 0.8s ease-out 0.45s both;
}

.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 0.9rem;
}

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s var(--ease-out-cubic);
}

.hero-cta-secondary:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

.hero-cta-secondary i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.hero-cta-secondary:hover i {
    transform: translateX(4px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: rgba(255,255,255,0.4);
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.3s ease;
    animation: heroBounce 2s ease-in-out infinite;
}

.hero-scroll-indicator:hover {
    color: rgba(255,255,255,0.8);
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes heroBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* (styles navbar transparente intégrés dans le bloc HEADER ci-dessus) */

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .hero-cta-primary,
    .hero-cta-secondary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

/* ================================ */
/* --- SECTION "À PROPOS" (Éditorial) --- */
/* ================================ */
#a-propos {
    background-color: var(--creme);
    padding-top: 80px;
}

#pour-qui {
    background-color: var(--beige-rose);
}

#a-propos::before { display: none; }

/* En-tête éditorial */
.about-editorial-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Grille photo + contenu */
.about-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 80px;
    align-items: start;
}

/* Colonne photo */
.about-photo-col {
    position: relative;
}

.about-photo-frame {
    padding: 8px;
    background: white;
    border: var(--border-subtle);
    box-shadow: var(--shadow-elevation);
}

.about-photo-frame img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4/5;
    filter: grayscale(10%);
    transition: filter 0.4s var(--ease-out-cubic);
}

.about-photo-frame:hover img {
    filter: grayscale(0%);
}

.about-photo-caption {
    margin-top: 20px;
}

.about-photo-caption h3 {
    font-family: var(--font-titre);
    font-size: 1.2rem;
    color: var(--gris-anthracite);
    margin-bottom: 4px;
}

.about-photo-caption p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #999;
    margin: 0;
}

/* Colonne contenu */
.about-content-col {
    display: flex;
    flex-direction: column;
}

.about-intro {
    font-size: 1.15rem;
    color: #4A5568;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 35px;
}

.about-intro strong {
    font-weight: 400;
    color: var(--gris-anthracite);
    border-bottom: 1px solid rgba(163, 177, 138, 0.3);
    padding-bottom: 1px;
}

/* Onglets navigation */
.about-tabs-nav {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 30px;
    overflow-x: auto;
}

.about-tabs-nav::-webkit-scrollbar { display: none; }
.about-tabs-nav { -ms-overflow-style: none; scrollbar-width: none; }

.about-tab-btn {
    background: none;
    border: none;
    padding: 12px 0;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
    color: #aaa;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    font-family: var(--font-texte);
    transition: color 0.3s ease;
}

.about-tab-btn:hover {
    color: #666;
}

.about-tab-btn.active {
    color: var(--gris-anthracite);
}

.about-tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--vert-sauge);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out-cubic);
}

.about-tab-btn.active::after {
    transform: scaleX(1);
}

/* Contenu des onglets */
.about-tabs-content {
    position: relative;
    min-height: 280px;
}

.about-tab-pane {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(15px);
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.about-tab-pane.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
}

.about-tab-pane p {
    font-size: 1.1rem;
    color: #4A5568;
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-services-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.about-services-list li {
    display: flex;
    align-items: flex-start;
    padding: 8px 0;
    font-size: 1.05rem;
    color: #4A5568;
    font-weight: 300;
}

.about-dash {
    color: var(--vert-sauge);
    margin-right: 12px;
    flex-shrink: 0;
    font-weight: 400;
}

.about-services-list li strong {
    font-weight: 500;
    color: var(--gris-anthracite);
}

.about-location {
    padding-top: 25px;
    border-top: 1px solid #f0f0f0;
    margin-top: 10px;
}

.about-location p {
    font-size: 0.95rem;
    color: #999;
}

/* Responsive À Propos */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-photo-col {
        max-width: 400px;
        margin: 0 auto;
    }
    .about-editorial-header {
        margin-bottom: 35px;
    }
}

@media (max-width: 768px) {
    .about-photo-caption {
        text-align: center;
    }
}

/* ================================ */
/* --- SECTION "POUR QUI ?" & "BÉNÉFICES" --- */
/* ================================ */
#benefices {
    background-color: var(--beige-rose);
}

.grid-layout { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 30px; 
}

.card {
    background: white;
    padding: 38px;
    border-radius: 3px;
    border: var(--border-subtle);
    box-shadow: var(--shadow-soft);
    transition: transform 0.5s var(--ease-out-cubic), box-shadow 0.5s var(--ease-out-cubic), border-color 0.5s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-elevation);
    border-color: rgba(185, 148, 112, 0.15);
}

.card h3 { 
    font-size: 1.3rem; 
    display: flex; 
    align-items: center; 
    gap: 10px; 
}

.card h3, .card p { 
    white-space: pre-wrap; 
}

#pour-qui h2, #pour-qui .section-subtitle { 
    white-space: pre-wrap; 
}

.card .icon {
    color: var(--dore);
    font-size: 1.3rem;
}

.benefit-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(185,148,112,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--dore);
    font-size: 1.5rem;
    transition: transform 0.4s ease;
}

.benefit-card:hover .benefit-icon-wrapper {
    transform: scale(1.08);
}

.benefit-card {
    text-align: center;
    padding: 40px 35px;
}

.benefit-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
}

.benefit-card p {
    color: #6b7280;
    font-weight: 300;
    line-height: 1.7;
}

/* Support HTML et sauts de ligne pour la section Bénéfices */
#benefices h2, #benefices .section-subtitle { 
    white-space: pre-wrap; 
}

.benefit-card h3, .benefit-card p {
    white-space: pre-wrap;
}

/* --- Cartes "Pour Qui" (style éditorial) --- */
.pourqui-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.pourqui-card {
    background: white;
    padding: 35px;
    border-radius: 3px;
    border: var(--border-subtle);
    box-shadow: var(--shadow-soft);
    transition: transform 0.5s var(--ease-out-cubic), box-shadow 0.5s var(--ease-out-cubic), border-color 0.5s ease;
    cursor: default;
}

.pourqui-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-elevation);
    border-color: rgba(185, 148, 112, 0.15);
}

.pourqui-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    font-size: 1.3rem;
    transition: transform 0.4s var(--ease-out-cubic);
}

.pourqui-card:hover .pourqui-icon-wrapper {
    transform: scale(1.1);
}

.pourqui-card h3 {
    font-family: var(--font-titre);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gris-anthracite);
    margin-bottom: 10px;
}

.pourqui-card p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 0.95rem;
    font-weight: 300;
}

@media (max-width: 768px) {
    .pourqui-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================ */
/* --- SECTION "LE BILAN" (Frise serpentin) --- */
/* ================================ */
#le-bilan {
    background-color: var(--creme);
}

.bilan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 40px;
    position: relative;
    margin-bottom: 60px;
}

.bilan-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 1;
}

/* Pilules numérotées */
.bilan-pill {
    height: 56px;
    padding: 0 28px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-titre);
    font-size: 1rem;
    font-weight: 700;
    box-shadow: var(--shadow-medium);
    z-index: 2;
    margin-bottom: 22px;
    transition: transform 0.4s var(--ease-out-cubic), box-shadow 0.4s var(--ease-out-cubic);
    white-space: nowrap;
}

.bilan-step:hover .bilan-pill {
    transform: translateY(-3px);
    box-shadow: var(--shadow-large);
}

.bilan-pill-filled {
    background: var(--dore);
    color: white;
}

.bilan-pill-light {
    background: var(--beige-rose);
    color: var(--gris-anthracite);
}

.bilan-pill-mobile { display: none; }
.bilan-pill-desktop { display: inline; }

/* Corps de l'étape */
.bilan-step-body {
    width: 100%;
}

.bilan-step-title-mobile {
    display: none;
}

.bilan-step-tagline {
    font-family: var(--font-titre);
    font-style: italic;
    color: var(--dore);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0;
}

.bilan-step-divider {
    width: 48px;
    height: 3px;
    border-top: 1px solid rgba(185, 148, 112, 0.3);
    border-bottom: 1px solid rgba(185, 148, 112, 0.3);
    margin: 12px auto 14px;
}

.bilan-step-desc {
    color: #6b7280;
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.7;
}

/* Lignes de connexion desktop */
.bilan-line-right::after {
    content: '';
    position: absolute;
    top: 28px;
    left: 50%;
    width: calc(100% + 40px);
    border-top: 3px dashed var(--dore-clair);
    z-index: 0;
}

.bilan-line-left::after {
    content: '';
    position: absolute;
    top: 28px;
    right: 50%;
    width: calc(100% + 40px);
    border-top: 3px dashed var(--dore-clair);
    z-index: 0;
}

.bilan-line-turn::after {
    content: '';
    position: absolute;
    top: 28px;
    left: 50%;
    width: calc(50% + 40px);
    height: calc(100% + 50px);
    border-top: 3px dashed var(--dore-clair);
    border-right: 3px dashed var(--dore-clair);
    border-bottom: 3px dashed var(--dore-clair);
    border-radius: 0 28px 28px 0;
    z-index: 0;
}

/* RESPONSIVE : vertical sur mobile */
@media (max-width: 900px) {
    .bilan-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .bilan-step {
        flex-direction: row;
        text-align: left;
        gap: 18px;
        padding-bottom: 35px;
        order: unset !important;
    }

    .bilan-pill {
        width: 48px;
        height: 48px;
        min-width: 48px;
        padding: 0;
        border-radius: 50%;
        font-size: 1.15rem;
        margin-bottom: 0;
    }

    .bilan-pill-mobile { display: inline; }
    .bilan-pill-desktop { display: none; }
    .bilan-step-title-mobile {
        display: block;
        font-family: var(--font-titre);
        font-size: 1.15rem;
        font-weight: 700;
        color: var(--gris-anthracite);
        margin-bottom: 4px;
    }

    .bilan-step-divider { margin: 10px 0 12px; }

    /* Ligne verticale mobile */
    .bilan-line-right::after,
    .bilan-line-left::after,
    .bilan-line-turn::after {
        content: '';
        position: absolute;
        top: 48px;
        left: 23px;
        width: 0;
        height: calc(100%);
        border-top: none;
        border-right: none;
        border-bottom: none;
        border-radius: 0;
        border-left: 3px dashed var(--dore-clair);
    }
}

/* ================================ */
/* --- SECTION "FAQ" --- */
/* ================================ */
#faq {
    background-color: var(--creme);
}

.faq-accordion { 
    max-width: 800px; 
    margin: 0 auto; 
}

.faq-item {
    background: white;
    margin-bottom: 10px;
    border-radius: 2px;
    border: var(--border-subtle);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: box-shadow 0.4s ease;
}

.faq-question {
    padding: 22px 25px;
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--gris-anthracite);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after { 
    content: '\f078'; 
    font-family: 'Font Awesome 6 Free'; 
    font-weight: 900; 
    color: var(--dore); 
    transition: transform 0.3s ease; 
}

.faq-item.active {
    box-shadow: var(--shadow-medium);
    border-color: rgba(185, 148, 112, 0.12);
}

.faq-item.active .faq-question::after { 
    transform: rotate(180deg); 
}

.faq-answer { 
    max-height: 0; 
    overflow: hidden; 
    transition: max-height 0.5s var(--ease-out-cubic), padding 0.5s ease; 
}

.faq-answer p {
    padding: 0 25px 25px;
    color: #57534e;
    font-weight: 300;
    line-height: 1.8;
}

.faq-item.active .faq-answer { 
    max-height: 200px; 
}

/* Support HTML et sauts de ligne pour la section FAQ */
#faq h2, #faq .section-subtitle { 
    white-space: pre-line; 
}

.faq-question, .faq-answer p { 
    white-space: pre-line; 
}

/* ================================ */
/* --- SECTION "CONTACT" --- */
/* ================================ */
#contact {
    background-color: var(--beige-rose);
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 55px;
    border-radius: 3px;
    border: var(--border-subtle);
    box-shadow: var(--shadow-elevation);
    position: relative;
}

.form-group { 
    margin-bottom: 35px; 
    position: relative; 
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px 10px 10px 10px;
    border: none;
    border-bottom: 2px solid var(--beige-rose);
    font-family: var(--font-texte);
    font-size: 1rem;
    font-weight: 300;
    transition: border-color 0.3s ease;
    background-color: transparent;
}

.form-group textarea { 
    min-height: 100px; 
    resize: vertical; 
}

.form-group label { 
    position: absolute; 
    top: 15px; 
    left: 10px; 
    color: #999; 
    transition: all 0.3s ease; 
    pointer-events: none; 
}

.form-group input:focus, .form-group textarea:focus { 
    outline: none; 
    border-color: var(--dore); 
}

.form-group input:focus + label, 
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label, 
.form-group textarea:not(:placeholder-shown) + label { 
    top: -10px; 
    left: 5px; 
    font-size: 0.8rem; 
    color: var(--dore); 
}

/* Styles pour les champs invalides */
.form-group input:invalid:not(:placeholder-shown), 
.form-group textarea:invalid:not(:placeholder-shown) { 
    border-color: #ef4444; 
    animation: fieldShake 0.3s ease-in-out;
}

.form-group input:invalid:not(:placeholder-shown) + label, 
.form-group textarea:invalid:not(:placeholder-shown) + label { 
    color: #ef4444; 
}

/* Style pour les champs en erreur via JavaScript */
.form-group input.field-error, .form-group textarea.field-error {
    border-color: #ef4444 !important;
    animation: fieldShake 0.3s ease-in-out;
}

.form-group input.field-error + label, .form-group textarea.field-error + label {
    color: #ef4444 !important;
}

@keyframes fieldShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Nouveaux styles pour le formulaire amélioré */
.form-row { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 30px; 
    margin-bottom: 35px; 
}

.captcha-group { 
    margin-bottom: 35px; 
    text-align: center; 
}

.captcha-checkbox { 
    display: inline-flex; 
    align-items: center; 
    cursor: pointer; 
    user-select: none; 
}

.captcha-checkbox input[type="checkbox"] { 
    display: none; 
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--beige-rose);
    border-radius: 2px;
    margin-right: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.captcha-checkbox input[type="checkbox"]:checked + .checkmark {
    background-color: var(--dore);
    border-color: var(--dore);
}

.captcha-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.captcha-text { 
    color: #666; 
    font-size: 0.95rem; 
}

/* Animations pour les messages de succès et d'erreur */
.success-message, .error-message {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 3px;
    box-shadow: var(--shadow-large);
    animation: successSlideIn 0.8s ease-out;
}

.success-icon-container {
    animation: successBounce 1s ease-out;
}

.success-icon {
    animation: successPulse 2s infinite;
}

.success-title {
    animation: successFadeIn 0.8s ease-out 0.3s both;
}

.success-details {
    animation: successFadeIn 0.8s ease-out 0.6s both;
}

@keyframes successSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes successBounce {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 1;
    }
    100% {
        transform: scale(1) rotate(360deg);
        opacity: 1;
    }
}

@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes successFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.error-message {
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    border-left: 5px solid #ef4444;
}

/* Animations de chargement pour le formulaire */
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    z-index: 10;
}

.loading-content {
    text-align: center;
    animation: loadingFadeIn 0.3s ease-out;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--dore);
    border-radius: 50%;
    animation: loadingSpin 1s linear infinite;
    margin: 0 auto;
}

@keyframes loadingSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes loadingFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animations de transition pour le formulaire */
@keyframes formSlideOut {
    from {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateX(-50px) scale(0.95);
    }
}

@keyframes formSlideIn {
    from {
        opacity: 0;
        transform: translateX(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* Animation de succès super cool */
.success-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.success-animation.show {
    opacity: 1;
    transform: scale(1);
}

.success-animation-content {
    text-align: center;
    padding: 3rem;
    max-width: 400px;
}

.success-icon-animated {
    font-size: 5rem;
    color: #22c55e;
    margin-bottom: 1.5rem;
    animation: successIconBounce 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.3s both;
}

.success-title-animated {
    font-size: 2.5rem;
    font-weight: bold;
    color: #22c55e;
    margin-bottom: 1rem;
    animation: successSlideUp 0.6s ease-out 0.5s both;
}

.success-text-animated {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    animation: successSlideUp 0.6s ease-out 0.7s both;
}

.success-details-animated {
    color: #9ca3af;
    animation: successSlideUp 0.6s ease-out 0.9s both;
}

@keyframes successIconBounce {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(-90deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes successSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Confettis animés */
.confetti-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
    animation: confettiFall 3s linear infinite;
}

.confetti:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    background: #ff6b6b;
}

.confetti:nth-child(2) {
    left: 30%;
    animation-delay: 0.5s;
    background: #4ecdc4;
}

.confetti:nth-child(3) {
    left: 50%;
    animation-delay: 1s;
    background: #45b7d1;
}

.confetti:nth-child(4) {
    left: 70%;
    animation-delay: 1.5s;
    background: #96ceb4;
}

.confetti:nth-child(5) {
    left: 90%;
    animation-delay: 2s;
    background: #feca57;
}

@keyframes confettiFall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

/* ======================= ANIMATION SUCCÈS DANS LE FORMULAIRE ======================= */
.success-animation-form {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.95) 0%, rgba(16, 185, 129, 0.95) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.success-animation-form.show {
    opacity: 1;
    transform: scale(1);
}

.success-animation-form.fade-out {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.5s ease-in-out;
}

.success-animation-form .success-animation-content {
    text-align: center;
    padding: 2rem;
    max-width: 350px;
    color: white;
}

.success-animation-form .success-icon-animated {
    font-size: 4rem;
    color: white;
    margin-bottom: 1rem;
    animation: successIconBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s both;
}

.success-animation-form .success-title-animated {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.8rem;
    animation: successSlideUp 0.5s ease-out 0.4s both;
}

.success-animation-form .success-text-animated {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    animation: successSlideUp 0.5s ease-out 0.6s both;
}

.success-animation-form .confetti {
    width: 8px;
    height: 8px;
}

.success-animation-form .confetti:nth-child(6) {
    left: 15%;
    animation-delay: 0.2s;
    background: #fbbf24;
}

.success-animation-form .confetti:nth-child(7) {
    left: 25%;
    animation-delay: 0.7s;
    background: #ec4899;
}

.success-animation-form .confetti:nth-child(8) {
    left: 85%;
    animation-delay: 1.2s;
    background: #8b5cf6;
}

/* Animation de retour au formulaire */
@keyframes formReappear {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.form-reappear {
    animation: formReappear 0.6s ease-out;
}

/* ================================ */
/* --- FOOTER --- */
/* ================================ */
.main-footer {
    background-color: var(--gris-anthracite);
    color: var(--creme);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-top {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-top .logo {
    font-size: 1.6rem;
    color: white;
    margin-bottom: 10px;
    display: block;
    text-decoration: none;
}

.footer-top .logo img {
    margin: 0 auto;
}

.footer-tagline {
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin-top: 10px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    font-family: var(--font-titre);
    color: white;
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col a {
    color: rgba(255,255,255,0.5);
    font-weight: 300;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--dore);
}

.footer-col p {
    color: rgba(255,255,255,0.5);
    font-weight: 300;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: rgba(255,255,255,0.5);
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.social-icons a:hover {
    background: var(--dore);
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.35);
    font-weight: 300;
}

.footer-bottom a {
    color: rgba(255,255,255,0.5);
    text-decoration: underline;
}

.footer-bottom a:hover {
    color: var(--dore);
}

/* Support HTML et sauts de ligne pour le footer */
.footer-col h4, .footer-col p, .footer-col a, .footer-bottom {
    white-space: pre-line;
}

/* ================================ */
/* --- RESPONSIVE & MENU BURGER --- */
/* ================================ */
.burger-menu { 
    display: none; 
    width: 30px; 
    height: 22px; 
    position: relative; 
    cursor: pointer; 
    z-index: 1002; 
}

.burger-menu span { 
    display: block; 
    position: absolute; 
    height: 3px; 
    width: 100%; 
    background: var(--gris-anthracite); 
    border-radius: 3px; 
    left: 0; 
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out; 
}

.burger-menu span:nth-child(1) { top: 0px; } 
.burger-menu span:nth-child(2) { top: 9px; } 
.burger-menu span:nth-child(3) { top: 18px; }

.mobile-nav-open .burger-menu span:nth-child(1) { top: 9px; transform: rotate(135deg); }
.mobile-nav-open .burger-menu span:nth-child(2) { opacity: 0; transform: translateX(-20px); }
.mobile-nav-open .burger-menu span:nth-child(3) { top: 9px; transform: rotate(-135deg); }

.mobile-nav { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background-color: var(--creme); 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    transform: translateX(100%); 
    transition: transform 0.5s var(--ease-out-cubic); 
    z-index: 1001; 
}

.mobile-nav-open .mobile-nav { 
    transform: translateX(0); 
}

.mobile-nav a { 
    font-size: 1.5rem; 
    font-family: var(--font-titre); 
    color: var(--gris-anthracite); 
    text-decoration: none; 
    margin: 15px 0; 
    opacity: 0; 
    transform: translateY(20px); 
}

.mobile-nav-open .mobile-nav a { 
    animation: mobileLinkFade 0.5s var(--ease-out-cubic) forwards; 
}

.mobile-nav a:nth-child(1) { animation-delay: 0.2s; } 
.mobile-nav a:nth-child(2) { animation-delay: 0.25s; } 
.mobile-nav a:nth-child(3) { animation-delay: 0.3s; } 
.mobile-nav a:nth-child(4) { animation-delay: 0.35s; } 
.mobile-nav a:nth-child(5) { animation-delay: 0.4s; } 
.mobile-nav a:nth-child(6) { animation-delay: 0.45s; } 
.mobile-nav a:nth-child(7) { animation-delay: 0.5s; }

@keyframes mobileLinkFade { 
    to { 
        opacity: 1; 
        transform: translateY(0); 
    } 
}

/* Lien vers l'administration */
.admin-link {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--dore);
    color: white;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    z-index: 999;
    font-size: 0.85rem;
}

.admin-link:hover {
    transform: scale(1.05);
}

/* ================================ */
/* --- RESPONSIVE BREAKPOINTS --- */
/* ================================ */
@media (max-width: 1024px) {
    .main-nav { 
        display: none; 
    }
    
    .burger-menu { 
        display: block; 
    }
    
    #a-propos .container { 
        flex-direction: column; 
    }
}

@media (max-width: 768px) {
    h2 { 
        font-size: 2.2rem; 
    }
    
    section { 
        padding: 80px 0; 
    }
    
    .hero-content h1 { 
        font-size: 2.8rem; 
    }
    
    #a-propos::before { 
        display: none; 
    }
    
    /* (ancien timeline vertical supprimé — remplacé par bilan-grid) */

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        text-align: center;
    }

    .footer-col {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================ */
/* --- SECTION "COACHING" --- */
/* ================================ */
#coaching {
    background-color: var(--creme);
}

.coaching-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    margin-bottom: 40px;
}

.coaching-col {
    background: white;
    padding: 50px;
    border-radius: 3px;
    border: var(--border-subtle);
    box-shadow: 0 8px 30px rgba(0,0,0,0.03);
    transition: box-shadow 0.5s var(--ease-out-cubic);
}

.coaching-col:hover {
    box-shadow: 0 8px 40px rgba(0,0,0,0.07);
}

.coaching-col-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 8px;
}

.coaching-col-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(185, 148, 112, 0.1);
    color: var(--dore);
    font-size: 1.4rem;
    flex-shrink: 0;
}

.coaching-col-header h3 {
    font-family: var(--font-titre);
    font-size: clamp(1.4rem, 2.5vw, 1.7rem);
}

.coaching-col-tagline {
    font-family: var(--font-titre);
    font-style: italic;
    color: var(--dore);
    margin-bottom: 30px;
    font-size: 1.15rem;
}

.coaching-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.coaching-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    line-height: 1.7;
    color: #57534e;
    font-size: 1.05rem;
    font-weight: 300;
}

.coaching-list li::before {
    display: none;
}

.coaching-check {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    background: rgba(185, 148, 112, 0.1);
    color: var(--dore);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    margin-top: 3px;
}

.coaching-note {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: var(--border-subtle);
    border-left: none;
    padding: 28px 35px;
    border-radius: 3px;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.coaching-note::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--dore);
}

.coaching-note-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: rgba(185, 148, 112, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dore);
    font-size: 1.2rem;
}

.coaching-note p {
    color: #57534e;
    font-size: 1rem;
    line-height: 1.7;
}

.coaching-note strong {
    font-weight: 600;
    color: var(--gris-anthracite);
    border-bottom: 2px solid rgba(185, 148, 112, 0.3);
    padding-bottom: 1px;
}

@media (max-width: 768px) {
    .coaching-columns {
        grid-template-columns: 1fr;
    }
    .coaching-col {
        padding: 35px;
    }
    .coaching-note {
        flex-direction: column;
        text-align: center;
    }
}

/* ================================ */
/* --- SECTION "POINT D'EQUILIBRE" --- */
/* ================================ */
#point-equilibre {
    background-color: var(--beige-rose);
}

.equilibre-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 50px;
}

.equilibre-badge {
    display: inline-block;
    background: var(--dore);
    color: white;
    padding: 6px 18px;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 3px;
    margin-bottom: 20px;
}

.equilibre-text h2 {
    text-align: left;
    margin-bottom: 20px;
}

.equilibre-intro {
    font-size: 1.05rem;
    font-weight: 300;
    color: #57534e;
    line-height: 1.8;
    margin-bottom: 15px;
}

.equilibre-desc {
    font-size: 1.05rem;
    font-weight: 300;
    color: #78716c;
    line-height: 1.8;
}

.equilibre-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.equilibre-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    padding: 22px 25px;
    border-radius: 3px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: all 0.4s ease;
}

.equilibre-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    border-color: rgba(185,148,112,0.15);
}

.equilibre-item-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: rgba(185,148,112,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dore);
    font-size: 1.1rem;
}

.equilibre-item p {
    font-weight: 300;
    color: #57534e;
    line-height: 1.7;
}

.equilibre-bottom {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.equilibre-sessions {
    background: white;
    padding: 30px;
    border-radius: 3px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    margin-bottom: 25px;
}

.equilibre-sessions p {
    font-weight: 400;
    color: var(--gris-anthracite);
    line-height: 1.7;
}

.equilibre-closing {
    color: #6b7280;
    font-weight: 300;
    font-size: 1.05rem;
}

/* ================================ */
/* --- BLOC FINANCEMENT (dans #le-bilan) --- */
/* ================================ */
.financing-block {
    margin-top: 60px;
    background: white;
    padding: 40px;
    border-radius: 3px;
    border: var(--border-subtle);
    box-shadow: var(--shadow-medium);
}

.financing-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.financing-icon {
    color: var(--dore);
    font-size: 2rem;
}

.financing-benefits {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-top: 25px;
}

.financing-benefit-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background-color: var(--beige-rose);
    border-radius: 3px;
    gap: 10px;
    transition: transform 0.3s var(--ease-out-cubic);
}

.financing-benefit-item:hover {
    transform: translateY(-3px);
}

.financing-benefit-item i {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(185,148,112,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dore);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ================================ */
/* --- SECTION "CADRE & MODALITES" --- */
/* ================================ */
#cadre-modalites {
    background-color: var(--creme);
}

.cadre-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.8;
}

.cadre-engagement-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.cadre-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    background: white;
    border-radius: 3px;
    border: var(--border-subtle);
    box-shadow: var(--shadow-soft);
    transition: transform 0.5s var(--ease-out-cubic), box-shadow 0.5s var(--ease-out-cubic), border-color 0.5s ease;
}

.cadre-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-large);
    border-color: rgba(185, 148, 112, 0.12);
}

.cadre-icon-wrap {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: rgba(185,148,112,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dore);
    font-size: 1rem;
}

.cadre-item p {
    font-weight: 300;
    color: #57534e;
    line-height: 1.7;
}

.modalites-title {
    text-align: center;
    margin-bottom: 50px;
    font-family: var(--font-titre);
}

.modalites-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.modalite-block {
    background: white;
    padding: 35px;
    border-radius: 3px;
    border: var(--border-subtle);
    border-top: 3px solid var(--dore);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: transform 0.5s var(--ease-out-cubic), box-shadow 0.5s var(--ease-out-cubic), border-color 0.5s ease;
}

.modalite-block:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-elevation);
    border-color: rgba(185, 148, 112, 0.12);
    border-top-color: var(--dore);
}

.modalite-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(185,148,112,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dore);
    font-size: 1.3rem;
    margin: 0 auto 18px;
}

.modalite-block h4 {
    font-family: var(--font-titre);
    margin-bottom: 15px;
    font-size: 1.15rem;
}

.modalite-block p {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #57534e;
    font-weight: 300;
}

/* ================================ */
/* --- SECTION "TEMOIGNAGES" --- */
/* ================================ */
#temoignages {
    background-color: var(--beige-rose);
}

.testimonials-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 3px;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s var(--ease-out-cubic);
}

.testimonial-card {
    min-width: 100%;
    padding: 55px 50px;
    background: white;
    border-radius: 3px;
    border: var(--border-subtle);
    box-shadow: var(--shadow-elevation);
    text-align: center;
    box-sizing: border-box;
}

.testimonial-stars {
    color: var(--dore);
    font-size: 1.3rem;
    margin-bottom: 30px;
    letter-spacing: 6px;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 2;
    font-style: italic;
    font-weight: 300;
    color: #57534e;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-name {
    font-weight: 600;
    font-size: 1.1rem;
}

.testimonial-source {
    font-size: 0.9rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
}

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.testimonial-prev,
.testimonial-next {
    width: 48px;
    height: 48px;
    border-radius: 4px;
    background: rgba(185,148,112,0.08);
    border: none;
    color: var(--dore);
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s var(--ease-out-cubic), color 0.3s var(--ease-out-cubic), transform 0.3s var(--ease-out-cubic);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--dore);
    color: white;
    transform: scale(1.05);
}

.testimonials-dots {
    display: flex;
    gap: 10px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--beige-rose);
    border: 2px solid var(--dore);
    cursor: pointer;
    transition: background-color 0.3s var(--ease-out-cubic), transform 0.3s var(--ease-out-cubic);
}

.testimonial-dot:hover {
    transform: scale(1.2);
}

.testimonial-dot.active {
    background-color: var(--dore);
}

/* ================================ */
/* --- SECTION "ENTREPRISE" (DARK) --- */
/* ================================ */
#entreprise {
    background-color: var(--gris-anthracite);
    color: var(--creme);
}

#entreprise h2 {
    color: white;
}

#entreprise .section-subtitle {
    color: var(--beige-rose);
}

.entreprise-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    line-height: 1.8;
}

.entreprise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.entreprise-card {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.05);
    transition: all 0.5s var(--ease-out-cubic);
}

.entreprise-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.08);
    border-color: rgba(185, 148, 112, 0.2);
}

.entreprise-card i {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(185,148,112,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dore);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.entreprise-card p {
    font-weight: 300;
}

.entreprise-posture {
    text-align: center;
    font-style: italic;
    color: var(--beige-rose);
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.entreprise-offers {
    max-width: 700px;
    margin: 0 auto 40px;
}

.entreprise-offer {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.entreprise-offer:hover {
    background: rgba(255, 255, 255, 0.05);
}

.entreprise-offer:last-child {
    border-bottom: none;
}

.entreprise-offer i {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(185,148,112,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dore);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.entreprise-offer span {
    font-weight: 300;
}

.entreprise-locations {
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.8;
}

.entreprise-cta {
    text-align: center;
}

/* ================================ */
/* --- BLOC CALENDLY (dans Contact) --- */
/* ================================ */
.calendly-block {
    max-width: 700px;
    margin: 0 auto 40px;
}

.calendly-inner {
    display: flex;
    align-items: center;
    gap: 25px;
    background: white;
    padding: 30px 35px;
    border-radius: 3px;
    border: 1px solid rgba(0,0,0,0.06);
    border-left: 4px solid var(--dore);
    box-shadow: var(--shadow-medium);
    transition: transform 0.5s var(--ease-out-cubic), box-shadow 0.5s var(--ease-out-cubic);
}

.calendly-inner:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.calendly-inner > i {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(185,148,112,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--dore);
    flex-shrink: 0;
}

.calendly-inner div {
    flex: 1;
}

.calendly-inner div strong {
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

.calendly-inner div p {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
}

.calendly-btn {
    display: inline-block;
    background-image: linear-gradient(135deg, var(--dore), var(--dore-clair));
    color: white;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: var(--shadow-glow-dore);
    transition: transform 0.4s var(--ease-out-cubic), box-shadow 0.4s var(--ease-out-cubic);
}

.calendly-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(185, 148, 112, 0.25), 0 16px 45px rgba(185, 148, 112, 0.12);
}

/* ================================ */
/* --- MOBILE NAV : LIENS ADDITIONNELS --- */
/* ================================ */
.mobile-nav a:nth-child(8) { animation-delay: 0.55s; }
.mobile-nav a:nth-child(9) { animation-delay: 0.6s; }
.mobile-nav a:nth-child(10) { animation-delay: 0.65s; }

/* Navigation desktop - 6 liens */

/* ================================ */
/* --- RESPONSIVE NOUVELLES SECTIONS --- */
/* ================================ */
@media (max-width: 768px) {
    .coaching-columns {
        flex-direction: column;
    }

    .equilibre-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .equilibre-text h2 {
        text-align: center;
    }

    .financing-benefits {
        flex-direction: column;
    }

    .cadre-engagement-grid {
        grid-template-columns: 1fr;
    }

    .modalites-grid {
        grid-template-columns: 1fr;
    }

    .entreprise-grid {
        grid-template-columns: 1fr;
    }

    .calendly-inner {
        flex-direction: column;
        text-align: center;
    }

    .calendly-btn {
        width: 100%;
        text-align: center;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .testimonial-text {
        font-size: 1.05rem;
    }
}

/* =====================================================================
   RESPONSIVE FIX – overrides en fin de cascade (ajouté après audit)
   - Corrige le hero gris sur mobile (bug iOS/Android background-attachment)
   - Harmonise les tailles aux breakpoints (tablette/mobile/petit mobile)
   - Réduit les paddings excessifs sur petits écrans
   ===================================================================== */

/* ---------- A. Hero : fond visible sur tous les mobiles ---------- */
/* Le bug du fond gris vient de "background-attachment: fixed" qui ne fonctionne
   pas correctement sur Safari iOS, Chrome Android, Firefox mobile. On force scroll
   sur tablette + mobile, et on garde "fixed" sur desktop pour l'effet parallaxe. */
@media (max-width: 1024px) {
    #accueil {
        background-attachment: scroll;
    }
}
/* Filet de sécurité : sur tout appareil tactile (téléphones/tablettes) on force scroll */
@media (hover: none) and (pointer: coarse) {
    #accueil {
        background-attachment: scroll !important;
    }
}

/* ---------- B. Tablette (≤ 1024px) ---------- */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }
    section {
        padding: 90px 0;
    }
    .equilibre-layout {
        gap: 50px;
    }
    .about-photo-col {
        max-width: 360px;
    }
}

/* ---------- C. Mobile (≤ 768px) ---------- */
@media (max-width: 768px) {
    .container {
        padding: 0 18px;
    }
    section {
        padding: 64px 0;
    }
    /* Hero : on remet une taille raisonnable (le bloc 1990 fixait 2.8rem,
       trop gros sur petit écran) */
    .hero-content h1 {
        font-size: clamp(1.9rem, 7.5vw, 2.6rem) !important;
        line-height: 1.25 !important;
    }
    .hero-content {
        padding: 0 16px;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-badge {
        margin-bottom: 22px;
        font-size: 0.7rem;
        padding: 6px 16px;
    }
    /* Titres section moins agressifs */
    h2 {
        font-size: clamp(1.6rem, 5.5vw, 2rem) !important;
    }
    .section-subtitle {
        font-size: 0.95rem;
    }
    /* Photo about : recentrée, taille plafonnée */
    .about-photo-col {
        max-width: 320px;
        margin: 0 auto;
    }
    /* Cards moins étouffantes */
    .card,
    .pourqui-card,
    .benefit-card {
        padding: 28px 22px;
    }
    .coaching-col {
        padding: 32px 24px;
    }
    /* Header : moins de hauteur quand scrolled */
    .main-header {
        padding: 14px 0;
    }
    .main-header.scrolled {
        padding: 8px 0;
    }
    /* Footer : 2 cols, déjà géré ailleurs — on ajuste les paddings */
    .footer-grid {
        gap: 30px 20px;
    }
}

/* ---------- D. Petit mobile (≤ 480px) ---------- */
@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }
    section {
        padding: 48px 0;
    }
    .hero-content h1 {
        font-size: clamp(1.7rem, 8.5vw, 2.1rem) !important;
        line-height: 1.22 !important;
    }
    .hero-subtitle {
        font-size: 0.92rem;
        margin-bottom: 28px;
    }
    .hero-cta-primary,
    .hero-cta-secondary {
        padding: 13px 22px;
        font-size: 0.85rem;
        max-width: 100%;
    }
    /* Cards encore plus compactes */
    .card,
    .pourqui-card,
    .benefit-card {
        padding: 24px 18px;
    }
    .coaching-col {
        padding: 26px 20px;
    }
    .equilibre-layout {
        gap: 32px;
    }
    /* About photo encore plus petite */
    .about-photo-col {
        max-width: 280px;
    }
    .about-photo-caption h3 {
        font-size: 1.1rem;
    }
    /* Tabs about : on autorise le wrap pour pas déborder */
    .about-tabs-nav {
        flex-wrap: wrap;
        gap: 6px;
    }
    .about-tab-btn {
        font-size: 0.85rem;
        padding: 8px 12px;
    }
    /* Mobile-nav : link size un peu plus petit pour tenir sur 1 écran */
    .mobile-nav a {
        font-size: 1.25rem;
        margin: 10px 0;
    }
    /* Bouton admin float : plus discret */
    .admin-link {
        width: 36px;
        height: 36px;
        bottom: 14px;
        right: 14px;
    }
}

/* ---------- E. Très petits écrans (≤ 360px – iPhone SE 1ère gen) ---------- */
@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 1.55rem !important;
    }
    h2 {
        font-size: 1.4rem !important;
    }
    .hero-badge {
        letter-spacing: 1.5px;
        font-size: 0.65rem;
    }
}

/* ---------- F. Anti-débordement horizontal (utile sur mobile) ---------- */
html, body {
    overflow-x: hidden;
}
img, video {
    max-width: 100%;
    height: auto;
}

/* ---------- Footer : colonne Coordonnées plus compacte ---------- */
/* Sans toucher aux autres règles : on resserre verticalement <p> et <a>
   qui se mélangent dans la colonne contact (adresse + email + téléphone).
   line-height 1.35 colle les deux lignes de l'adresse (rue + code postal). */
.footer-col p {
    margin: 0 0 4px;
    line-height: 1.35;
}
.footer-col a {
    margin-bottom: 4px;
    line-height: 1.4;
}

/* ---------- Alternance dynamique des fonds (calculée en PHP) ---------- */
/* !important justifié : on doit overrider les sélecteurs ID (#a-propos, etc.) */
section.alt-bg-creme { background-color: var(--creme) !important; }
section.alt-bg-beige { background-color: var(--beige-rose) !important; }

/* ---------- Logo masqué : nav centrée pour un rendu équilibré ---------- */
.main-header.logo-hidden .container {
    justify-content: center;
}
.main-header.logo-hidden .logo-placeholder {
    display: none;
}
/* Le bouton burger (mobile) reste accessible côté droit */
@media (max-width: 1024px) {
    .main-header.logo-hidden .container {
        justify-content: flex-end;
    }
}
/* Footer : on cache le bloc logo + tagline quand le logo est masqué */
.footer-logo-hidden .footer-top {
    display: none;
}

/* ---------- G. Reduce motion : respecte les préférences système ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
