/* --- VARIABLES & BASE --- */
:root {
    --rose-soft: #fcf4f2;
    --rose: #FADBE1;
    --beige: #F7F1EB;
    --text: #4A4A4A;
    --accent: #d8a7b1;
    --accent-dark: #a6737d;
    --white: #ffffff;
}

* { box-sizing: border-box; }

body {
    margin: 0; font-family: 'Montserrat', sans-serif; color: var(--text);
    line-height: 1.8; background-color: var(--white); scroll-behavior: smooth;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 400; margin: 0; }

/* --- NAVIGATION CORRIGÉE --- */
header { 
    padding: 0; 
    background: #fff; 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    border-bottom: 1px solid #f9f9f9; 
}

nav { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 10px 20px; /* Réduit la hauteur de la barre */
}

.logo-link { 
    display: flex; 
    align-items: center; 
    text-decoration: none; 
    color: inherit; 
    gap: 15px; 
}

.logo-img { 
    height: 45px; 
    width: auto; 
}

/* SUPPRESSION DU SYMBOLE (POINT) */
.nav-links { 
    display: flex; 
    gap: 25px; 
    list-style: none !important; /* Supprime le point noir */
    margin: 0; 
    padding: 0; 
}

.nav-links li {
    list-style: none !important;
    margin: 0;
    padding: 0;
}

.nav-links a { 
    text-decoration: none; 
    color: var(--text); 
    font-size: 0.85rem; 
    font-weight: 600; 
    text-transform: uppercase; 
}

/* BOUTON MOBILE */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.bar {
    width: 25px;
    height: 2px;
    background-color: var(--text);
    transition: 0.3s;
}

@media (max-width: 991px) {
    .menu-toggle { display: flex; }

    .nav-links {
        position: fixed;
        top: 65px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 65px);
        background: #fff;
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: 0.4s;
    }

    .nav-links.active { right: 0; }
}
/* --- HERO --- */
.hero { padding: 80px 0; }
.hero-container { display: flex; align-items: flex-start; gap: 50px; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.hero-text { flex: 1.2; }
.hero-title { font-size: 3rem; line-height: 1.1; margin-bottom: 25px; }
.hero-title span { display: block; }
.t-line-2 { font-style: italic; color: var(--accent); }
.hero-subtitle { font-size: 1.1rem; color: #666; margin-bottom: 35px; max-width: 500px; }
.hero-image { flex: 0.8; }
.img-portrait { width: 100%; max-width: 400px; border-radius: 15px; box-shadow: 20px 20px var(--rose); display: block; }

.btn-round { 
    display: inline-block; background: var(--text); color: var(--white); padding: 18px 45px; border-radius: 50px; 
    text-decoration: none; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; transition: 0.3s; border: 2px solid var(--text);
}

/* Modification ici : Application du rose vif au survol */
.btn-round:hover { 
    background: #FF6B81 !important; 
    border-color: #FF6B81 !important; 
    transform: translateY(-3px); 
    box-shadow: 0 6px 15px rgba(255, 107, 129, 0.3);
}
/* --- SECTION À PROPOS --- */
.about-section { padding: 120px 0; background-color: var(--beige); }
.container-editorial { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.img-about { width: 100%; border-radius: 5px; position: relative; z-index: 2; display: block; }
.dropcap::first-letter { font-family: 'Playfair Display', serif; font-size: 5rem; float: left; margin-right: 15px; line-height: 0.8; color: var(--accent); }

/* --- SECTION CIBLE (Image à Droite) --- */
.target-section { padding: 120px 0; background-color: #fff; overflow: hidden; }
.container-large { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.target-grid-modern { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

/* Montage Photo */
.target-visuals { position: relative; height: 500px; }
.img-stack { position: relative; width: 100%; height: 100%; }
.img-target-1 { 
    position: absolute; width: 75%; height: 350px; object-fit: cover; 
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 2; top: 0; right: 0; border: 8px solid #fff; box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.img-target-2 { 
    position: absolute; width: 60%; height: 300px; object-fit: cover; 
    border-radius: 50%; z-index: 3; bottom: 0; left: 0;
    border: 8px solid #fff; box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.deco-blob {
    position: absolute; width: 300px; height: 300px; background: var(--rose-soft);
    border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 1;
}

/* Texte */
.target-content-side { padding-right: 20px; }
.target-description { font-size: 1rem; color: #777; margin: 20px 0 40px 0; }
.subtitle { display: block; text-transform: uppercase; letter-spacing: 4px; font-size: 0.75rem; color: var(--accent); font-weight: 600; margin-bottom: 10px; }

.target-list-modern { display: flex; flex-direction: column; gap: 30px; }
.target-item { display: flex; gap: 20px; align-items: flex-start; }
.item-number { 
    font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--accent); 
    border-bottom: 2px solid var(--accent); line-height: 1; padding-bottom: 5px;
}
.item-text h4 { font-size: 1.1rem; margin-bottom: 5px; font-weight: 600; }
.item-text p { font-size: 0.85rem; color: #666; margin: 0; }

.target-header {
    margin-bottom: 60px;
}
/* --- STYLE DU BOUTON ET MENTION --- */
.target-cta {
    margin-top: 45px;
}

.btn-round-vif {
    display: inline-block;
    background: #FF6B81;
    color: #ffffff !important;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 129, 0.3);
}

.btn-round-vif:hover {
    background: #4A4A4A;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.cta-note {
    display: block;
    margin-top: 12px;
    font-size: 0.75rem;
    color: #888;
    font-style: italic;
    opacity: 0.8;
}

/* --- SECTION PILIERS --- */
.piliers-section { padding: 100px 0; background-color: #fafafa; }
.container-grid { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.piliers-header { text-align: center; margin-bottom: 60px; }
.piliers-grid-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.pilier-card { background: #fff; padding: 35px; border-radius: 15px; border: 1px solid #f2f2f2; display: flex; flex-direction: column; align-items: center; text-align: center; }
.pilier-img-vignette { width: 130px; height: 130px; margin-bottom: 20px; position: relative; }
.pilier-img-vignette img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; border: 4px solid var(--beige); }
.pilier-num { position: absolute; top: 0; right: 0; background: var(--accent); color: #fff; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; }

/* --- SECTION SERVICES --- */
.services-section { 
    position: relative;
    padding: 120px 0; 
    background-color: var(--beige);
    background-image: url("bg-services.jpg");
    background-attachment: fixed;
    background-size: cover;
}

.services-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.45); z-index: 1;
}

.container-services { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.services-grid-new { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
    align-items: stretch;
}

.card-inspi {
    background: #ffffff;
    border-radius: 20px; 
    padding: 45px 35px; 
    text-align: center;
    display: flex; 
    flex-direction: column; 
    position: relative; 
    transition: 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.card-inspi.primary-inspi {
    border: 2px solid var(--accent);
    box-shadow: 0 20px 40px rgba(166, 115, 125, 0.1);
    transform: scale(1.05);
    z-index: 10;
    padding-top: 55px; 
}

/* 1. Icônes : Marge réduite */
.service-icon-main {
    height: 80px; 
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px; /* Réduit de 20px à 10px */
}
.service-icon-main img { 
    max-height: 80px; 
    width: auto; 
}

/* 2. Groupe Header : Hauteur réduite pour remonter le texte */
.card-header-group {
    min-height: 85px; /* Réduit de 110px à 85px pour supprimer le vide */
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Aligné vers le haut */
}

.service-category {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-dark);
    font-weight: 600;
    margin-bottom: 2px; /* Réduit au strict minimum */
}

.card-title-inspi { 
    font-size: 1.5rem; 
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    margin: 0;
}

/* 3. Intro */
.card-intro-inspi { 
    font-size: 0.9rem; 
    color: #777; 
    margin-bottom: 25px; 
    min-height: 60px; 
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 4. Liste */
.card-list-inspi { 
    list-style: none; padding: 0; margin: 0 0 35px 0; text-align: left; 
    flex-grow: 1; 
}
.card-list-inspi li { font-size: 0.85rem; margin-bottom: 10px; color: #555; position: relative; padding-left: 25px; }
.card-list-inspi li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: bold; }

/* 5. Footer */
.card-footer-inspi {
    padding-top: 20px;
    border-top: 1px solid #f5f5f5;
}

.badge-tag {
    position: absolute; top: 15px; left: 50%; transform: translateX(-50%);
    background: var(--accent-dark); color: #fff; font-size: 0.65rem; padding: 5px 15px;
    border-radius: 50px; letter-spacing: 2px; font-weight: 600;
}

.price-val { font-size: 1.6rem; color: var(--text); margin-bottom: 12px; }
.price-val.highlight { color: var(--accent); font-size: 2.4rem; font-weight: 600; margin-bottom: 0; }
.price-sub { font-size: 0.7rem; color: #aaa; margin-bottom: 15px; }

.btn-round-full, .btn-inspi-outline {
    text-decoration: none; padding: 16px 20px; border-radius: 50px; font-size: 0.75rem;
    font-weight: 600; text-transform: uppercase; transition: 0.3s; display: block; width: 100%;
}
.btn-round-full { background: var(--text); color: #fff; }
.btn-inspi-outline { border: 1px solid #ccc; color: var(--text); }
.btn-round-full:hover, .btn-inspi-outline:hover { background: var(--accent); color: white; border-color: var(--accent); }

/* --- TITRES --- */
.subtitle-centered { display: block; text-transform: uppercase; letter-spacing: 6px; font-size: 0.7rem; color: var(--accent); margin-bottom: 15px; text-align: center; }
.section-title-alt { font-size: 2.6rem; text-align: center; margin-bottom: 60px; }
.section-title-alt span { font-style: italic; color: var(--accent); }

/* --- FOOTER SITE --- */
footer { padding: 60px 20px; text-align: center; font-size: 0.8rem; opacity: 0.6; }

/* --- RESPONSIVE --- */
@media (max-width: 1050px) {
    .services-grid-new { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .card-inspi.primary-inspi { transform: scale(1); }
    .card-header-group, .card-intro-inspi { min-height: auto; }
}
/* --- CORRECTIF STRUCTUREL CARROUSEL --- */
.carousel-container {
    position: relative;
    overflow: hidden; /* Coupe ce qui dépasse */
    max-width: 800px; /* Un peu plus large pour respirer */
    margin: 0 auto;
    padding: 0 60px; /* Zone de sécurité pour les flèches */
}

.carousel-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
    align-items: flex-start; /* Aligne le haut des commentaires */
}

.testimonial-card {
    min-width: 100%;    
    flex-shrink: 0;     
    padding: 20px 20px 40px 20px; /* Espace interne */
    text-align: center;
    box-sizing: border-box; 
    display: flex;
    flex-direction: column;
    align-items: center; /* Centre tout le contenu (nom, texte, quote) */
}

.testimonial-text {
    width: 100%;
    max-width: 600px; /* Empêche le texte de toucher les flèches */
    margin: 0 auto 25px auto;
}

.author-name {
    display: inline-block; /* Permet le centrage réel */
    margin: 0 auto;
    font-weight: 700;
    color: #FF6B81;
    background: #fff0f2; /* Rose très pâle pour le fond du nom */
    padding: 8px 20px;
    border-radius: 30px;
}

/* Positionnement des flèches à l'extérieur du texte */
.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    background: white;
    border: 2px solid #FF6B81;
    color: #FF6B81;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
}

.carousel-prev { left: 5px; }
.carousel-next { right: 5px; }

/* --- STYLE TEXTE --- */
.quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    background: linear-gradient(135deg, #FF6B81, #d8a7b1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: -10px;
}

.testimonial-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 25px;
}

.author-name {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FF6B81;
    padding: 5px 15px;
}

/* --- DOTS NAVIGATION --- */
.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.nav-dot {
    width: 20px;
    height: 6px;
    border-radius: 10px;
    background: #eee;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: #FF6B81;
    width: 40px;
}

@media (max-width: 768px) {
    .testimonial-card { padding: 40px 40px; }
    .carousel-prev, .carousel-next { width: 35px; height: 35px; }
    .carousel-prev { left: 0; }
    .carousel-next { right: 0; }
}
/* --- SECTION FAQ PLUS ROSÉE ET CONTRASTÉE --- */
.faq-section {
    padding: 100px 0;
    /* Un rose plus "vif" et froid pour contraster avec le blanc des cartes */
    background-color: #FDEEF1; 
}

.faq-container {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    margin-bottom: 15px;
    border-radius: 12px;
    /* Bordure légèrement plus sombre pour le contraste */
    border: 1px solid #FADBE1; 
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 107, 129, 0.05);
}

.faq-question {
    width: 100%;
    padding: 22px 30px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--text);
    text-align: left;
    font-weight: 600;
}

.faq-question span {
    color: #FF6B81; 
    font-size: 1.4rem;
    font-weight: bold;
    transition: 0.3s;
}

.faq-question.active {
    color: #FF6B81;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer p {
    padding: 0 30px 25px 30px;
    margin: 0;
    font-size: 0.95rem;
    color: #555; /* Texte un peu plus sombre pour la lisibilité */
    line-height: 1.7;
}

.faq-item:hover {
    border-color: #FF6B81;
    box-shadow: 0 10px 25px rgba(255, 107, 129, 0.12);
    transform: translateY(-2px);
}
/* --- SECTION IMPACT FINAL (ANTHRACITE) --- */
.final-impact-section {
    padding: 120px 0;
    background-color: #2d2d2d; /* Anthracite profond */
    color: #ffffff;
    text-align: center;
}

/* Grille de réassurance */
.reassurance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.reassurance-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin: 15px 0;
    color: #ffffff;
}

.reassurance-item p {
    font-size: 0.95rem;
    color: #cccccc; /* Gris clair pour la lecture */
    line-height: 1.6;
}

.reassurance-icon {
    font-size: 2.5rem;
    color: #FF6B81; /* Ton rose vif */
    margin-bottom: 10px;
}

/* Séparateur discret */
.separator-light {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
    margin: 60px 0;
}

/* Contenu CTA */
.cta-subtitle {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.85rem;
    color: #FF6B81;
    font-weight: 700;
    display: block;
    margin-bottom: 25px;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 25px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
}

.cta-title span {
    color: #FF6B81;
    font-style: italic;
}

.cta-text {
    font-size: 1.2rem;
    color: #eeeeee;
    margin-bottom: 45px;
    font-weight: 300;
}

.cta-note-white {
    display: block;
    margin-top: 20px;
    font-size: 0.8rem;
    color: #999;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .final-impact-section { padding: 80px 20px; }
    .reassurance-grid { grid-template-columns: 1fr; gap: 40px; }
    .cta-title { font-size: 2rem; }
}
/* --- FOOTER --- */
.main-footer {
    padding: 80px 0 30px;
    background-color: #ffffff;
    border-top: 1px solid #f0f0f0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-logo span {
    color: #FF6B81;
}

.footer-brand p {
    font-size: 0.9rem;
    color: #777;
    max-width: 300px;
    line-height: 1.6;
}

.footer-socials {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.footer-socials a {
    text-decoration: none;
    color: #2d2d2d;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 8px 12px;
    border: 1px solid #eee;
    border-radius: 5px;
    transition: 0.3s;
}

.footer-socials a:hover {
    border-color: #FF6B81;
    color: #FF6B81;
}

.footer-links h4, .footer-contact h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: #2d2d2d;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    text-decoration: none;
    color: #777;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: #FF6B81;
    padding-left: 5px;
}

.footer-email {
    text-decoration: none;
    color: #FF6B81;
    font-weight: 600;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid #eee;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: #999;
}

/* --- FOOTER CLAIR ET AFFIRMÉ --- */
.main-footer {
    padding: 100px 0 40px;
    background-color: #ffffff; /* Fond blanc pour contraster avec le CTA anthracite */
    color: #2d2d2d;
    border-top: 1px solid #eee;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

/* Centrage du bloc logo + tagline */
.footer-brand-centered {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centre le logo par rapport au texte */
    text-align: center;
}

.logo-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-img-logo {
    height: 50px;
    width: auto;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #2d2d2d;
}

.logo-text span {
    color: #FF6B81;
    font-style: italic;
}

.footer-tagline {
    font-size: 1rem;
    color: #555; /* Gris foncé pour être bien lisible sur fond blanc */
    max-width: 400px;
    line-height: 1.7;
    margin-bottom: 30px;
    font-weight: 400;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    text-decoration: none;
    color: #2d2d2d;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 12px 22px;
    border: 2px solid #2d2d2d; /* Bordure épaisse pour mettre en avant */
    border-radius: 50px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-socials a:hover {
    background-color: #FF6B81;
    border-color: #FF6B81;
    color: #fff;
    transform: translateY(-3px);
}

/* Colonnes Titres et Liens */
.footer-links h4, .footer-contact h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: #2d2d2d;
    font-weight: 700;
    border-bottom: 2px solid #FF6B81; /* Souligné rose pour le rappel couleur */
    display: inline-block;
    padding-bottom: 5px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    text-decoration: none;
    color: #666;
    font-size: 1rem;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: #FF6B81;
    padding-left: 5px;
}

.footer-contact p {
    color: #666;
    margin: 20px 0 10px;
}

.footer-email {
    text-decoration: none;
    color: #FF6B81;
    font-weight: 700;
    font-size: 1.1rem;
    transition: 0.3s;
}

.footer-email:hover {
    color: #2d2d2d;
}

.footer-bottom {
    border-top: 1px solid #eee;
    padding-top: 40px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #aaa;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    .footer-brand-centered { align-items: center; }
    .footer-socials { justify-content: center; }
}/* --- SECTION FLÈCHES CORRIGÉE (ROSE & ESPACEMENT) --- */
.carousel-container {
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto; /* Remplace "40px auto" par "0 auto" */
    padding: 0 60px;
}

.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 2px solid #ffb6c1; /* Rose clair */
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    color: #ffb6c1; /* Texte rose */
    transition: all 0.3s ease;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Effet au survol : fond rose et texte blanc */
.carousel-prev:hover, .carousel-next:hover {
    background: #ffb6c1; 
    color: white;
}

/* Positionnement bien à l'extérieur du texte */
.carousel-prev { left: 5px; }
.carousel-next { right: 5px; }

/* Adaptation mobile */
@media (max-width: 768px) {
    .carousel-container { padding: 0 40px; }
    .carousel-prev, .carousel-next {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}/* --- VARIABLES & BASE --- */
:root {
    --rose-soft: #fcf4f2;
    --rose-pale: #FADBE1; /* L'ancien --rose */
    --rose-vif: #FF6B81;  /* TA COULEUR PHARE UNIFIÉE */
    --beige: #F7F1EB;
    --text: #4A4A4A;
    --accent: #d8a7b1;
    --accent-dark: #a6737d;
    --white: #ffffff;
}

* { box-sizing: border-box; }

body {
    margin: 0; font-family: 'Montserrat', sans-serif; color: var(--text);
    line-height: 1.8; background-color: var(--white); scroll-behavior: smooth;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 400; margin: 0; }

/* --- NAVIGATION --- */
header { padding: 15px 5%; background: #fff; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #f9f9f9; }
nav { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }
.logo-link { display: flex; align-items: center; text-decoration: none; color: inherit; gap: 15px; }
.logo-img { height: 50px; width: auto; }
.logo-text { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.1rem; text-transform: uppercase; line-height: 1; }
.logo-text span { display: block; font-family: 'Montserrat', sans-serif; font-size: 0.55rem; letter-spacing: 3px; color: var(--accent); margin-top: 2px; }
nav ul { display: flex; list-style: none; gap: 25px; margin: 0; padding: 0; }
nav ul li a { text-decoration: none; color: var(--text); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; }

/* --- HERO --- */
.hero { padding: 80px 0; }
.hero-container { display: flex; align-items: flex-start; gap: 50px; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.hero-text { flex: 1.2; }
.hero-title { font-size: 3rem; line-height: 1.1; margin-bottom: 25px; }
.hero-title span { display: block; }
.t-line-2 { font-style: italic; color: var(--accent); }
.hero-subtitle { font-size: 1.1rem; color: #666; margin-bottom: 35px; max-width: 500px; }
.hero-image { flex: 0.8; }
.img-portrait { width: 100%; max-width: 400px; border-radius: 15px; box-shadow: 20px 20px var(--rose-pale); display: block; }

/* Bouton Hero */
.btn-round { 
    display: inline-block; background: var(--text); color: var(--white); padding: 18px 45px; border-radius: 50px; 
    text-decoration: none; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; transition: 0.3s; border: 2px solid var(--text);
}
.btn-round:hover { 
    background: var(--rose-vif) !important; 
    border-color: var(--rose-vif) !important; 
    transform: translateY(-3px); 
    box-shadow: 0 6px 15px rgba(255, 107, 129, 0.3);
}

/* --- SECTION CIBLE --- */
.btn-round-vif {
    display: inline-block;
    background: var(--rose-vif); /* Unifié */
    color: #ffffff !important;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 129, 0.3);
}

.btn-round-vif:hover {
    background: var(--text);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* --- SECTION SERVICES --- */
/* Harmonisation des boutons dans les cartes */
.btn-round-full { 
    background: var(--text); 
    color: #fff; 
    border: 2px solid var(--text);
}
.btn-round-full:hover { 
    background: var(--rose-vif) !important; 
    border-color: var(--rose-vif) !important; 
}

.btn-inspi-outline:hover { 
    background: var(--rose-vif) !important; 
    color: white !important; 
    border-color: var(--rose-vif) !important; 
}

/* --- CARROUSEL : FLÈCHES HARMONISÉES --- */
.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 2px solid var(--rose-vif); /* Unifié avec le rose vif */
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    color: var(--rose-vif); /* Texte unifié */
    transition: all 0.3s ease;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.carousel-prev:hover, .carousel-next:hover {
    background: var(--rose-vif); 
    color: white;
}

/* --- FAQ & IMPACT FINAL --- */
.faq-question span, 
.faq-question.active,
.reassurance-icon,
.cta-subtitle,
.cta-title span {
    color: var(--rose-vif) !important;
}

.nav-dot.active {
    background: var(--rose-vif);

}.testimonials-section {
    padding: 120px 0; /* Crée l'espace nécessaire au-dessus du titre */
    background-color: var(--white);
}
/* --- CORRECTIF MOBILE GLOBAL --- */
@media (max-width: 768px) {
    /* 1. Ajustement des titres pour qu'ils ne sortent pas de l'écran */
    .hero-title { font-size: 2.2rem !important; }
    .section-title-alt { font-size: 1.8rem !important; }
    .cta-title { font-size: 1.6rem !important; }

    /* 2. Passage des grilles (2 ou 3 colonnes) en 1 seule colonne */
    .hero-container, 
    .about-grid, 
    .target-grid-modern, 
    .piliers-grid-layout, 
    .reassurance-grid, 
    .footer-grid {
        flex-direction: column !important;
        display: flex !important;
        gap: 30px !important;
        padding: 0 20px !important;
    }

    /* 3. Ajustement des images pour qu'elles ne dépassent pas */
    .hero-image, .hero-text, .target-visuals, .target-content-side {
        width: 100% !important;
        flex: none !important;
    }

    .img-portrait, .img-about, .img-target-1 {
        max-width: 100% !important;
        height: auto !important;
        box-shadow: 10px 10px var(--rose) !important; /* Réduction de l'ombre sur mobile */
    }

    /* 4. Gestion de la section Cible (les bulles d'images) */
    .target-visuals {
        height: 300px !important; /* On réduit la hauteur du conteneur */
        margin-bottom: 40px;
    }
    .img-target-1 { position: relative !important; width: 100% !important; height: 250px !important; }
    .img-target-2, .deco-blob { display: none; } /* On cache les éléments complexes qui surchargent le mobile */

    /* 5. Carrousel Témoignages */
    .carousel-container {
        padding: 0 20px !important;
    }
    .carousel-prev, .carousel-next {
        display: none; /* On cache les flèches sur mobile pour privilégier le balayage au doigt */
    }
    .testimonial-text {
        font-size: 1rem !important;
    }

    /* 6. Navigation (Menu simple) */
    nav {
        flex-direction: column;
        gap: 15px;
    }
    nav ul {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* 7. Espacements des sections */
    .hero, .about-section, .target-section, .piliers-section, .services-section, .testimonials-section, .faq-section, .final-impact-section {
        padding: 60px 0 !important;
    }
}/* --- COMPLÉMENT NAVIGATION (ORDINATEUR) --- */
.menu-toggle {
    display: none; /* Caché sur ordinateur */
}

/* --- VERSION MOBILE (768px et moins) --- */
@media (max-width: 768px) {
    /* 1. Navigation : Logo à droite, Burger à gauche */
    nav {
        display: flex !important;
        flex-direction: row-reverse !important; /* Inverse l'ordre visuel */
        justify-content: space-between !important;
        align-items: center !important;
        padding: 15px 20px !important;
        width: 100%;
        box-sizing: border-box;
    }

    /* 2. Le bouton Burger (Conteneur) */
    .menu-toggle {
        display: flex !important; /* Assure l'affichage */
        flex-direction: column !important;
        justify-content: center;
        gap: 5px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 5px;
        z-index: 2000;
        order: 1; /* Côté gauche grâce au row-reverse du nav */
    }

    /* 3. Les barres du burger (Crucial pour la visibilité) */
    .menu-toggle .bar {
        display: block;
        width: 25px;
        height: 3px;
        background-color: #333; /* Couleur anthracite par défaut, change si besoin */
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .logo-wrapper {
        order: 2; /* Côté droit */
    }

    .logo-img {
        max-height: 40px; /* Ajuste selon ton logo */
    }

    /* 4. Menu latéral : Ouverture par la DROITE */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; /* Caché à droite */
        left: auto;
        height: 100vh;
        width: 75%;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 1500;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav-links.active {
        right: 0; /* Apparaît */
    }

    /* 5. Centrage du Hero et du bouton */
    .hero-container {
        display: flex !important;
        flex-direction: column !important;
        text-align: center !important;
        align-items: center !important;
        padding: 40px 20px !important;
    }

    .hero-text {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .hero-title {
        font-size: 1.8rem !important;
        line-height: 1.3;
    }

    .btn-round {
        display: inline-block !important;
        margin: 30px auto 0 auto !important;
        float: none !important;
        width: fit-content !important;
    }

    /* 6. Effets tactiles (:active) */
    .btn-round:active, 
    .btn-round-vif:active, 
    .btn-round-full:active,
    .btn-inspi-outline:active {
        transform: scale(0.92) !important;
        filter: brightness(0.9);
        transition: transform 0.1s ease;
    }

    /* 7. Portrait Hero */
    .hero-image {
        width: 100% !important;
        margin-top: 40px;
        position: static !important;
        opacity: 1 !important;
        display: block !important;
    }

    .img-portrait {
        max-width: 100% !important;
        height: auto !important;
        border-radius: 20px !important;
    }
}@media (max-width: 768px) {
    /* 1. On force le Header à être au-dessus du voile */
    header {
        position: relative;
        z-index: 10001 !important; /* Plus haut que l'overlay */
        background: #fff; /* Assure-toi qu'il a un fond blanc pour ne pas voir le voile derrière */
    }

    /* 2. Le voile sombre (Overlay) */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7) !important;
        z-index: 9000 !important; /* Plus bas que le header */
        display: none;
    }

    .menu-overlay.active {
        display: block !important;
    }

    /* 3. Le menu latéral */
    .nav-links {
        position: fixed !important;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: #ffffff !important; /* BLANC PUR */
        z-index: 10002 !important; /* Encore plus haut */
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: 0.4s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.2);
    }

    .nav-links.active {
        right: 0 !important;
    }

    /* 4. Le bouton Burger */
    .menu-toggle {
        position: relative;
        z-index: 10003 !important;
        display: flex !important;
    }

    /* --- TES CORRECTIONS D'ESPACES --- */
    .hero { padding-top: 10px !important; margin-top: 0 !important; }
    #cible { padding-bottom: 0 !important; }
    #piliers { padding-top: 0 !important; margin-top: -10px !important; }
}@media (max-width: 768px) {
    /* --- AJUSTEMENT DES ESPACES --- */

    /* On laisse un peu d'espace sous la section précédente (Tartine/Cible) */
    #cible {
        padding-bottom: 20px !important; 
        margin-bottom: 0 !important;
    }

    /* On redonne de l'importance au titre "Ma Philosophie" */
    #piliers {
        padding-top: 60px !important; /* Augmente cette valeur pour plus d'espace */
        margin-top: 0 !important; /* On retire la marge négative qui collait les blocs */
    }

    .piliers-header {
        margin-bottom: 30px !important; /* Espace entre le titre et les 4 piliers */
    }

    /* Optionnel : si tes piliers (les 4 blocs) sont trop serrés entre eux */
    .piliers-grid {
        gap: 20px !important;
        padding: 0 15px !important;
    }
@media (max-width: 768px) {
    /* --- SECTION CIBLE (TARTINES) FORMAT IMPACTANT --- */
    
    #cible {
        padding-top: 40px !important;
        padding-bottom: 20px !important;
    }

    .img-stack {
        display: flex !important;
        flex-direction: column !important; /* On empile verticalement */
        align-items: center !important;
        height: auto !important;
        margin: 20px auto !important;
        width: 100% !important;
        position: relative !important;
    }

    .img-target-1 {
        position: relative !important;
        width: 85% !important; /* Image presque pleine largeur */
        max-width: 320px !important;
        height: auto !important;
        z-index: 1;
        border-radius: 20px !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
        margin-left: -10% !important; /* Décalée un peu à gauche */
    }

    .img-target-2 {
        position: relative !important;
        width: 85% !important; /* Même taille */
        max-width: 320px !important;
        height: auto !important;
        z-index: 2;
        border-radius: 20px !important;
        box-shadow: 0 15px 40px rgba(0,0,0,0.15) !important;
        margin-top: -60px !important; /* ELLE MONTE sur la première pour l'effet de profondeur */
        margin-right: -10% !important; /* Décalée un peu à droite */
        border: 6px solid #fff !important; /* Gros bord blanc pour le style "photo" */
    }

    /* --- AJUSTEMENT ESPACE PHILOSOPHIE --- */
    #piliers {
        padding-top: 80px !important; /* On augmente l'espace car les images sont grandes */
        margin-top: 0 !important;
    }
@media (max-width: 768px) {
    /* --- CENTRAGE RADICAL DU BOUTON --- */
    
    /* 1. On cible le conteneur du bouton (souvent .target-text ou .target-content) */
    .target-text, .target-content, .target-section {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important; /* Aligne les enfants au centre horizontalement */
        width: 100% !important;
        text-align: center !important;
    }

    /* 2. On force le bouton à se comporter comme un élément flexible centré */
    #cible .btn-round, 
    #cible .btn-round-vif, 
    .target-text a.btn-round {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        
        /* Marges pour le positionnement */
        margin: 30px auto !important; 
        
        /* On s'assure qu'il n'est pas étiré */
        width: fit-content !important;
        min-width: 200px !important; /* Optionnel : pour qu'il ait une belle taille sous le pouce */
        
        /* Sécurités anti-décalage */
        float: none !important;
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
    }
}/* ==========================================
   SECTION HERO - VERSION MOBILE (OPTIMISÉE)
   ========================================== */

/* 1. La section Hero devient un conteneur plein écran */
.hero {
    position: relative;
    min-height: 100vh; /* Prend toute la hauteur */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    background-color: #F7F1EB; /* Ton beige par défaut */
}

/* 2. L'image en arrière-plan uniquement sur mobile */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('portrait-hero.jpg'); /* Ton image */
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* 3. Le voile sombre pour la lisibilité */
.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Opacité pour détacher le texte */
    z-index: 2;
}

/* 4. Le contenu (texte + bouton) */
.hero-container {
    position: relative;
    z-index: 3;
    width: 90%;
    text-align: center;
    color: #ffffff;
}

/* 5. SOLUTION AU DOUBLON : On cache l'image HTML sur mobile */
.hero-image {
    display: none !important; /* Supprime l'image normale pour ne garder que le fond */
}

.hero-title {
    font-family: 'Playfair Display', serif; /* */
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif; /* */
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 30px;
}

/* Ton bouton avec ton rose vif #FF6B81 */
.btn-round {
    display: inline-block;
    background-color: #FF6B81; /* Ton rose vif officiel */
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

/* ==========================================
   VERSION DESKTOP (ORDINATEUR)
   ========================================== */

@media (min-width: 992px) {
    .hero {
        min-height: 80vh;
        background: #F7F1EB; /* Retour au beige propre */
    }

    /* On retire les effets mobiles */
    .hero::before, .hero::after {
        display: none;
    }

    /* On remet l'affichage côte à côte */
    .hero-container {
        display: flex;
        flex-direction: row;
        text-align: left;
        align-items: center;
        justify-content: space-between;
        max-width: 1200px;
        color: #4A4A4A; /* Retour au texte sombre */
    }

    .hero-text {
        width: 55%;
    }

    /* ON RÉAFFICHE L'IMAGE SUR ORDINATEUR */
    .hero-image {
        display: block !important;
        width: 40%;
    }

    .img-portrait {
        width: 100%;
        border-radius: 15px;
    }
}/* ==========================================
   OPTIMISATION DE LA LISIBILITÉ (MOBILE)
   ========================================== */

/* On renforce légèrement le voile pour que le blanc ressorte mieux */
.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Passé de 0.4 à 0.5 pour plus de contraste */
    z-index: 2;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3); /* Ombre discrète pour le titre */
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 400; /* Passé de 300 à 400 pour épaissir un peu les lettres */
    margin-bottom: 30px;
    color: #ffffff; /* Blanc pur */
    line-height: 1.6;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    /* L'astuce magique pour la lisibilité sur photo : */
    text-shadow: 0 1px 3px rgba(0,0,0,0.5); 
}

/* On s'assure que le bouton reste bien visible avec ton rose vif enregistré */
.btn-round {
    display: inline-block;
    background-color: #FF6B81; /* Ton rose vif enregistré */
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}/* ==========================================
   FORCE L'INVERSION MON PARCOURS (MOBILE)
   ========================================== */

@media (max-width: 991px) {
    /* On force le conteneur à ignorer la grille pour utiliser le flex */
    .about-grid {
        display: flex !important;
        flex-direction: column !important; /* On aligne verticalement */
        gap: 30px !important;
    }

    /* On donne l'ordre 1 au texte (en haut) */
    .about-text-side {
        order: 1 !important;
    }

    /* On donne l'ordre 2 à l'image (en bas) */
    .about-image-side {
        order: 2 !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
    }

    .img-about {
        max-width: 100% !important;
        height: auto !important;
    }
}

/* ==========================================
   RÉTABLISSEMENT POUR ORDINATEUR (DESKTOP)
   ========================================== */
@media (min-width: 992px) {
    .about-grid {
        display: grid !important; /* On remet la grille initiale */
        grid-template-columns: 1fr 1.2fr !important; 
        align-items: center !important;
    }

    .about-image-side {
        order: 1 !important; /* L'image reprend sa place à gauche */
    }

    .about-text-side {
        order: 2 !important; /* Le texte reprend sa place à droite */
    }
}