/* =========================
   VARIABLES CSS
   ========================= */
:root {
    /* Couleurs principales */
    --primary: #c6a189;
    --primary-hover: #c18a65;
    --secondary: #91a39d;
    --text-dark: #5f7380;
    --text-light: #f4f4f2;
    --bg-light: #f7f7f7;
    --bg-white: #fff;
    --error: #e74c3c;
    --success: #155724;
    
    /* Espacements */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 6rem;
    
    /* Bordures */
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
    
    /* Ombres */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 6px 25px rgba(0,0,0,0.12);
    
    /* Transitions */
    --transition: 0.3s ease;
    --transition-fast: 0.2s ease;
}

/* =========================
   BASE & TYPOGRAPHIE
   ========================= */
*, *::before, *::after { 
    box-sizing: border-box; 
}

html { 
    scroll-behavior: auto; 
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-weight: 300;
    background: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
    overflow-y: scroll;
    font-size: 1.1rem;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    margin: 0;
    line-height: 1.2;
}

h1 { 
    font-size: 4rem; 
    font-weight: 600; 
}

h2 { 
    font-size: 2.8rem; 
    margin-bottom: var(--spacing-sm); 
}

h3 { 
    font-size: 1.8rem; 
    margin-bottom: var(--spacing-sm); 
}

.subtitle { 
    font-size: 1.6rem; 
    font-weight: 500; 
    margin-bottom: var(--spacing-lg); 
}

p { 
    margin-bottom: var(--spacing-sm); 
}

/* =========================
   LAYOUT GENERAL
   ========================= */
.section {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--spacing-xxl) var(--spacing-md);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* =========================
   NAVIGATION (Desktop & Mobile)
   ========================= */
.navbar {
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    box-shadow: none;
    display: block !important;
}

.navbar-content {
    max-width: 80%;
    margin: 0 auto;
    padding: var(--spacing-xs) var(--spacing-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: var(--spacing-lg);
    margin: 0;
    padding: 0;
}

.navbar a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 300;
    transition: color var(--transition-fast);
    font-family: 'Outfit';
    position: relative;
}

.navbar a:hover,
.navbar a.active {
    color: var(--primary);
}

.navbar a.active {
    font-weight: 500;
}

/* Logo navbar */
.navbar .logo {
    display: flex;
    align-items: center;
}

.navbar .logo img {
    height: 55px;
    width: auto;
    padding: var(--spacing-xs);
}

.navbar .logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* Cacher le bouton menu-toggle sur desktop */
.menu-toggle {
    display: none;
}

/* Mobile Header & Menu */
.mobile-header {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--text-light);
    box-shadow: var(--shadow-sm);
    z-index: 2001;
    padding: var(--spacing-sm) var(--spacing-lg);
    justify-content: space-between;
    align-items: center;
    height: 75px;
}

.mobile-header .mobile-logo {
    display: flex;
    align-items: center;
}

.mobile-header .mobile-logo img {
    height: 40px;
    width: auto;
}

.mobile-header .mobile-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.mobile-header .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.mobile-header .mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-dark);
    transition: all var(--transition);
}

.mobile-header .mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-header .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-header .mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255,255,255,0.98);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu-content {
    padding-top: 80px;
    padding-bottom: var(--spacing-lg);
    height: 100%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-menu-content ul {
    list-style: none;
    padding: 0 var(--spacing-lg);
    margin: 0;
}

.mobile-menu-content ul li a,
.mobile-menu-content li a {
    display: block;
    padding: 1.2rem 0;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 500;
    transition: color var(--transition);
    opacity: 1;
}

.mobile-menu-content ul li a:hover,
.mobile-menu-content li a:hover {
    color: var(--primary);
}

.mobile-menu-content li {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    opacity: 1;
}

.mobile-menu-content li:last-child {
    border-bottom: none;
}

.mobile-contact-info {
    margin-top: auto;
    padding: var(--spacing-lg);
    border-top: 1px solid rgba(0,0,0,0.1);
    text-align: center;
}

.mobile-contact-info p {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: var(--spacing-sm);
}

.mobile-contact-info a {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--primary);
    border-radius: var(--border-radius);
    transition: all var(--transition);
}

.mobile-contact-info a:hover {
    background: var(--primary);
    color: var(--text-light);
}

/* =========================
   HERO (Accueil)
   ========================= */
.hero {
    background: url('images/background-hero.webp') center bottom / cover no-repeat fixed;
    color: var(--text-light);
    padding: 7rem var(--spacing-lg);
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    overflow-x: hidden;
    padding-left: 0;
    padding-right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 75vh;
    height: auto;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.hero h1 span {
    font-size: 3rem;
}

.hero p {
    margin-bottom: var(--spacing-lg);
}

.hero .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: var(--spacing-lg);
    background: var(--primary);
    color: var(--text-light);
    padding: 0.8rem var(--spacing-lg);
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 400;
    width: fit-content;
    text-align: center;
    transition: all 0.4s;
}

.hero .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(193,138,101,0.2);
    background-color: var(--primary-hover);
    transition: all 0.4s;
}

/* .hero .btn:active {
    transform: translateY(0);
} */

.hero .content-wrapper {
    max-width: 900px;
    margin-left: 10%;
    margin-right: 10%;
    height: auto;
    text-align: left;
    margin-top: 75px;
}

/* =========================
   À PROPOS & APPROCHE
   ========================= */
.about, .approche {
    background: var(--bg-light);
    padding: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    overflow: hidden;
}

.about-background-block, .approche-background-block {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 70%;
    background-color: var(--secondary);
    z-index: 0;
}
.about-background-block { right: 0; }
.approche-background-block { left: 0; }

.about-container, .approche-container {
    display: flex;
    align-items: center;
    margin: 0 auto;
    position: relative;
    flex-wrap: wrap;
    padding: var(--spacing-xxl) var(--spacing-xl);
    z-index: 1;
}

.about-image, .approche-image {
    flex: 0 0 50%;
    max-width: 50%;
    z-index: 2;
}

.about-image img, .approche-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.about-content-block, .approche-content-block {
    flex: 0 0 50%;
    max-width: 50%;
    color: var(--text-light);
    padding: var(--spacing-sm) var(--spacing-xl);
    box-sizing: border-box;
    text-align: left;
}

.about-content-block h2, .approche-content-block h2 {
    color: var(--text-light);
    font-size: 2.8rem;
    margin-top: 0;
    margin-bottom: var(--spacing-sm);
}

.about-content-block .subtitle, .approche-content-block .subtitle {
    margin-bottom: var(--spacing-lg);
}

.about-content-block p, .approche-content-block p {
    line-height: 1.6;
}

/* =========================
   ACCOMPAGNEMENTS
   ========================= */
.accompagnements .cards {
    display: flex;
    justify-content: center;
    margin-top: var(--spacing-xl);
    max-width: 1400px;
    column-gap: 6rem;
}

.accompagnements .card {
    background: var(--text-light);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition), box-shadow var(--transition);
    text-align: left;
    width: 400px;
}

.accompagnements .card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.accompagnements .card h3 {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.accompagnements .card .card-intro {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.accompagnements .card .card-subtitle {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
}

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

.accompagnements .card li {
    margin-bottom: var(--spacing-sm);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.accompagnements .card li::before {
    content: "•";
    color: var(--primary);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.accompagnements .card.professional {
    border-top: 4px solid var(--secondary);
    margin-right: var(--spacing-lg);
}

.accompagnements .card.personal {
    border-top: 4px solid var(--primary);
    margin-left: var(--spacing-lg);
}

/* =========================
   SECTION CITATION (Quote)
   ========================= */
.quote-section {
    background: #f7f7f7; color: #5f7380; font-size: 1.6rem; padding: 4rem 1.5rem; text-align: center; position: relative;
}
.quote-section .quote-text { font-style: italic; }
.quote-section .quote-text .quote-highlight { font-weight: 400; }
.quote-section .quote-author { font-style: normal; margin-top: 1rem; display: block; font-size: 1rem; font-weight: 500; }
.quote-section .content-wrapper { margin: 0 auto; padding: 0 1rem; position: relative; }
.quote-section .content-wrapper::before, .quote-section .content-wrapper::after {
    content: ''; position: absolute; left: 50%; transform: translateX(-50%); width: 60%; height: 2px; background-color: #e0e0e0;
}
.quote-section .content-wrapper::before { top: -2rem; }
.quote-section .content-wrapper::after { bottom: -2rem; }

/* =========================
   TÉMOIGNAGES (Confiance)
   ========================= */
.confiance .testimonials {
    display: flex; gap: 2rem; flex-wrap: wrap; justify-content: space-evenly; margin-top: 2rem;
}
.confiance .testimonial {
    background: #f4f4f2; border-radius: 16px; box-shadow: var(--shadow-md); padding: 1.5rem;
    min-width: 400px; max-width: 30%; box-sizing: border-box; font-size: 1rem; text-align: center; width: 300px;
}
.confiance .testimonial .stars { color: #c6a189; font-size: 1.2rem; margin-bottom: 0.5rem; }
.confiance .testimonial .author { font-weight: bold; margin-top: 1rem; }

/* =========================
   FAQ
   ========================= */
.faq-items { max-width: 800px; margin: 2rem auto; text-align: left; }
.faq-item {
    background: #f4f4f2;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    overflow: visible;
}
.faq-question {
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    font-size: inherit;
    transition: background 0.2s;
    color: var(--text-dark);
    margin: 2px 0;
}
.faq-question:focus:not(:focus-visible) {
    outline: none;
    box-shadow: none;
}
.faq-question:focus-visible {
    outline: 2px solid var(--primary-hover) !important;
    outline-offset: 2px;
    border-radius: 4px;
    box-shadow: 0 0 0 4px rgba(193, 138, 101, 0.15);
}
.faq-question .toggle-icon,
.faq-question .toggle-icon .horizontal-line,
.faq-question .toggle-icon .vertical-line {
    color: var(--primary);
    stroke: var(--primary);
}
.faq-answer {
    overflow: hidden; background: #f4f4f2; font-size: 0.95rem; line-height: 1.5; color: var(--text-dark); will-change: height;
}
.faq-answer .faq-content { padding: 1rem 1.5rem 1.5rem 1.5rem; }

/* =========================
   CONTACT
   ========================= */
.contact-cta {
    padding: 6rem 1.5rem; position: relative; z-index: 1; margin-bottom: 0;
}
.contact-cta-content-wrapper {
    display: flex; justify-content: space-between; align-items: flex-start; max-width: 1400px; margin: 0 auto;
    position: relative; padding-bottom: 10rem;
}
.contact-cta-left-text {
    flex: 1; text-align: left; padding-right: 2rem; max-width: 50%; font-size: 1.2rem; line-height: 1.6; padding-top: 2rem; color: #5f7380;
}
.contact-cta-left-text .highlight-text { color: #c6a189; font-weight: 600; }
.contact-cta-right-form {
    position: absolute; right: 5%; bottom: -20rem; width: 500px; z-index: 2; text-align: left;
}
.contact-form {
    display: flex; flex-direction: column; gap: 1.5rem; max-width: 600px; margin: 0; background: rgba(245, 245, 245, 0.4);
    padding: 3rem; border-radius: 16px; border: solid 1px #f4f4f2; box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.contact-form h2 {
    margin-top: 0; margin-bottom: 1.5rem; color: #5f7380; font-size: 1.8rem; font-weight: 600;
}

/* Conteneurs de formulaire */
.contact-form .form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.contact-form input, .contact-form textarea {
    padding: 0.8rem 1rem; border-radius: 8px; border: 2px solid #e0e0e0; font-size: 0.9rem; font-family: "Inter", sans-serif;
    transition: all 0.3s ease; background: #f7f7f7; color: #5f7380; width: 100%; box-sizing: border-box;
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: none; border-color: #91a39d; background: #f4f4f2; box-shadow: 0 0 0 4px rgba(145,163,157,0.1);
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #91a39d; opacity: 0.7; }
.contact-form textarea { min-height: 150px; resize: vertical; }
.contact-form button {
    background: #c6a189; color: #f4f4f2; border: none; padding: 1rem 2rem; border-radius: 8px; font-weight: 400; font-size: 1.1rem;
    cursor: pointer; margin-top: 1rem; letter-spacing: 1px; transition: all 0.4s;
}
.contact-form button:hover {  
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(193,138,101,0.2);
    background-color: var(--primary-hover);
    transition: all 0.4s; }
.contact-form button:active { transform: translateY(0); }

/* Messages d'erreur et de succès */
.field-error {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.3rem;
    font-weight: 400;
    animation: fadeIn 0.3s ease;
}

.form-message {
    animation: slideIn 0.3s ease;
}

.form-message.success div {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #c3e6cb;
    margin-top: 1rem;
    text-align: center;
    font-weight: 500;
}

.form-message.error div {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #f5c6cb;
    margin-top: 1rem;
    text-align: center;
    font-weight: 500;
}

/* Animations pour les messages */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

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

/* État désactivé du bouton */
.contact-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

/* Case à cocher de consentement - version propre et cohérente */
.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.consent-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.consent-checkbox .checkbox-custom {
    position: relative;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    border: 1px solid #f4f4f2;
    border-radius: 3px;
    background: #c6a189;
    cursor: pointer;
    transition: all 0.25s ease;
}

/* États hover */
.consent-checkbox .checkbox-custom:hover {
    border-color: #f4f4f2;
    background: #c6a189;
    transform: scale(1.05);
}

.consent-checkbox input[type="checkbox"]:checked + .checkbox-custom {
    background: #c6a189;
    border-color: #f4f4f2;
    transform: scale(1.1);
}

.consent-checkbox input[type="checkbox"]:checked + .checkbox-custom:hover {
    background: #c6a189;
}

/* Icône de validation (checkmark) */
.consent-checkbox input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 4px;
    height: 9px;
    border: solid #f4f4f2;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    animation: checkScale 0.2s ease-out;
}

@keyframes checkScale {
    0% { transform: rotate(45deg) scale(0); }
    50% { transform: rotate(45deg) scale(1.2); }
    100% { transform: rotate(45deg) scale(1); }
}

/* Focus pour l'accessibilité : visible uniquement au clavier */
.consent-checkbox input[type="checkbox"]:focus {
    outline: none;
    box-shadow: none;
}
.consent-checkbox input[type="checkbox"]:focus-visible + .checkbox-custom {
    outline: 2px solid #c6a189;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(198, 161, 137, 0.2);
}

.consent-text {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #5f7380;
    user-select: none;
    flex: 1;
}

.consent-text a {
    color: #5f7380;
    text-decoration: underline;
    transition: color 0.2s ease;
}
.consent-text a:hover {
    font-weight: 200;
}

/* =========================
   FOOTER
   ========================= */
.footer {
    background: #5f7380; color: #f4f4f2; text-align: center; padding: 2rem 0; position: relative; z-index: 0;
}
.footer-content {
    max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-start;
    padding: 1rem 1.5rem; padding-top: 2rem; flex-wrap: wrap;
}
.footer-main-section {
    display: flex; flex-direction: column; align-items: flex-start; gap: 0.8rem; flex: 1; text-align: left;
}
.footer .logo { font-weight: bold; font-size: 1.5rem; color: #f4f4f2; }
.footer .logo span { color: #c6a189; }
.footer .logo img {
    height: 50px;
    width: auto;
}
.footer .contact-info p { margin: 0.2rem 0; font-size: 0.9rem; color: #f4f4f2; }
.footer .contact-info a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}
.footer .contact-info a:hover {
    color: var(--primary);
}
.footer .social-links { display: flex; gap: 1rem; margin-top: 0.5rem; }
.footer .social-links a { color: #f4f4f2; text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer .social-links a:hover { color: #c6a189; }
.footer-legal-links {
    display: flex; justify-content: center; gap: 2rem; margin-top: 1.5rem; flex-basis: 100%; text-align: center; padding-top: 1rem;
}
.footer-legal-links a { color: #ccc; text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-legal-links a:hover { color: #f4f4f2; }
#current-year { font-weight: bold; }

/* =========================
   PAGES LÉGALES
   ========================= */
.legal-content {
    padding-top: 24px;
    min-height: 100vh;
    background: #f7f7f7;
}

/* Header simplifié pour les pages légales */
.legal-header {
    background: #5f7380;
    padding: 1rem 0;
}

.legal-header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.legal-header .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.legal-header .logo img {
    height: 55px;
    width: auto;
    transition: height var(--transition);
}

.legal-header .logo a {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 600px) {
    .legal-header .logo img {
        height: 40px;
    }
}

.legal-content .content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.legal-content h1 {
    color: #5f7380;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 3px solid #c6a189;
    padding-bottom: 1rem;
}

.legal-content h2 {
    color: #5f7380;
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-content h3 {
    color: #5f7380;
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.legal-content section {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}

.legal-content p {
    color: #5f7380;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-content li {
    color: #5f7380;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.legal-content a:not(.btn) {
    color: #c6a189;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:not(.btn):hover {
    color: #91a39d;
    text-decoration: underline;
}

/* Bouton Retour à l'accueil des pages légales */
.legal-content .back-link {
    text-align: center;
}
.legal-content .back-link .btn {
    background: #c6a189;
    color: #f4f4f2;
    border-radius: 8px;
    padding: 0.8rem 2rem;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: fit-content;
    text-align: center;
    box-shadow: none;
    border: none;
    margin-left: 0;
    margin-right: 0;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.legal-content .back-link .btn:hover {
    background: #c18a65;
    color: #fff;
    box-shadow: 0 4px 12px rgba(193,138,101,0.2);
}

/* =========================
   MEDIA QUERIES
   ========================= */
@media (max-width: 1200px) {
    .hero h1 { font-size: 4rem; }
    .hero h1 span { font-size: 3rem; }
    h2 { font-size: 2.5rem; }
    h3 { font-size: 1.6rem; }
    .subtitle { font-size: 1.4rem; }
}
@media (max-width: 1024px) {
    .navbar { display: none !important; }
    .mobile-header { display: flex !important; background-color: #f4f4f2; height: 75px; }
    .mobile-header .mobile-menu-toggle span { background-color: #222; }
    .mobile-menu { opacity: 0; visibility: hidden; transform: translateY(-100%); transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease; }
    .mobile-menu.active { opacity: 1; visibility: visible; transform: translateY(0); }
    
    /* Pages légales : afficher le header mobile mais masquer le bouton menu */
    body.legal-page .mobile-header { display: flex !important; }
    body.legal-page .mobile-header .mobile-menu-toggle { display: none !important; }
    
    .hero { background-image: url('images/background-hero-tablet.webp'); }
    .hero h1 { font-size: 3.2rem; }
    .hero h1 span { font-size: 2.5rem; }
    h2 { font-size: 2.3rem; }
    h3 { font-size: 1.5rem; }
    .subtitle { font-size: 1.3rem; }
    body { font-size: 1rem; }
    .quote-section { font-size: 1.4rem; padding: 3rem 1rem; }
    
    /* Layout responsive pour about et approche */
    .about, .approche { overflow: visible; }
    .about-background-block, .approche-background-block { width: 100%; }
    .about-container, .approche-container {
        flex-direction: column; align-items: center; padding: 4rem 2rem; margin-top: 200px;
    }
    .about-image, .approche-image {
        width: 100%; max-width: 500px; margin-top: -200px; margin-bottom: 2rem; order: 1;
    }
    .about-content-block, .approche-content-block {
        width: 100%; max-width: 800px; text-align: center; padding: 2rem 1rem; order: 2;
    }
    .about-content-block h2, .approche-content-block h2 { font-size: 2.4rem; }
    .about-content-block .subtitle, .approche-content-block .subtitle { font-size: 1.4rem; }
    .about-content-block p, .approche-content-block p { font-size: 1rem; }
    
    /* Layout responsive pour les accompagnements */
    .accompagnements .cards { flex-wrap: wrap; justify-content: center; gap: 2rem; }
    .accompagnements .card { max-width: 100%; margin-left: 0; margin-right: 0; }
    .accompagnements .card.professional, .accompagnements .card.personal {
         margin: 1rem;
    }
    
    /* Layout responsive pour le contact */
    .contact-cta-content-wrapper { flex-direction: column; align-items: center; padding-bottom: 0; }
    .contact-cta-left-text { width: 100%; padding-right: 0; text-align: center; margin-bottom: 2rem; padding-top: 0; }
    .contact-cta-right-form { position: static; width: 100%; padding: 42px; margin: 0; bottom: auto; right: auto; top: auto; }
    .contact-cta { padding: 0; }
    .contact-form { 
        padding: 2rem; 
        width: 100%; 
        max-width: none; 
        margin: 0;
        margin-bottom: -300px;
        border: none;
    }
    .footer { margin-top: 0; }
    .footer-content {   
        margin-top: 16rem;
    }
    .footer-main-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    body.legal-page .footer-content {
        margin-top: 0;
    }
}
@media (max-width: 768px) {
    .hero { 
        min-height: 60vh;
        background-image: url('images/background-hero-mobile.webp');
        background-attachment: scroll;
    }
    .hero h1 { font-size: 1.6rem; }
    .hero h1 span { font-size: 2rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.4rem; }
    .subtitle { font-size: 1.2rem; }
    body { font-size: 0.95rem; }
    .accompagnements {    padding: 6rem 0rem;}
    .accompagnements .card h3 { font-size: 1.6rem; }
    .accompagnements .card .card-intro { font-size: 1.1rem; }
    .accompagnements .card .card-subtitle { font-size: 1rem; }
    .confiance .testimonial { font-size: 0.9rem; padding: 1rem; min-width: 200px; width: 100%; max-width: 100%; }
    .confiance .testimonial .stars { font-size: 1rem; }
    .faq-question { padding: 0.8rem 1rem; font-size: 0.95rem; }
    .faq-answer { font-size: 0.85rem; }
    .faq-answer .faq-content { padding: 0.8rem 1rem 1rem 1rem; }
    .contact-cta-left-text { font-size: 1rem; padding-right: 0; }
    .contact-cta-right-form {        padding: 16px;
    }
    .contact-form h2 { font-size: 1.5rem; }
    .contact-form input, .contact-form textarea { font-size: 0.9rem; padding: 0.8rem 1rem; }
    .contact-form button { font-size: 1rem; padding: 0.8rem 1.5rem; }
    .footer .logo { font-size: 1.3rem; }
    .footer .contact-info p { font-size: 0.8rem; }
    .footer .social-links a { font-size: 0.8rem; }
    .footer-legal-links a { font-size: 0.75rem; }
    .about-content-block h2, .approche-content-block h2 { font-size: 2.2rem; }
    .about-content-block .subtitle, .approche-content-block .subtitle { font-size: 1.2rem; }
    .about-content-block p, .approche-content-block p { font-size: 0.95rem; }
    .mobile-menu-content ul li a { font-size: 1.2rem; }
    .mobile-contact-info p { font-size: 0.9rem; }
    .mobile-contact-info a { font-size: 1rem; }
    .quote-section { font-size: 1.1rem; padding: 2rem 0.5rem; }
    .quote-section .quote-author { font-size: 0.85rem; }
    .accompagnements .card.professional, .accompagnements .card.personal {
        margin-left: 0; margin-right: 0; max-width: 100%;
    }
    
    /* Pages légales responsive */
    .legal-content .content-wrapper {
        padding: 1.5rem 0.8rem;
        margin: 1rem;
    }
    .legal-content h1 { font-size: 2rem; }
    .legal-content h2 { font-size: 1.5rem; }
    .legal-content h3 { font-size: 1.2rem; }
    .legal-content p, .legal-content li { font-size: 0.9rem; }
    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        font-size: 16px !important;
    }
}
@media (max-width: 480px) {
    .hero { 
        min-height: 50vh;
        padding: 3rem 0.5rem;
    }
    .hero h1 { font-size: 1.3rem; }
    .hero h1 span { font-size: 1.8rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.3rem; }
    .subtitle { font-size: 1.1rem; }
    body { font-size: 0.9rem; }
    .accompagnements .card h3 { font-size: 1.4rem; }
    .accompagnements .card .card-intro { font-size: 1rem; }
    .accompagnements .card .card-subtitle { font-size: 0.95rem; }
    .confiance .testimonial { font-size: 0.85rem; padding: 0.8rem; }
    .confiance .testimonial .stars { font-size: 0.9rem; }
    .faq-question { padding: 0.6rem 0.8rem; font-size: 0.9rem; }
    .faq-answer { font-size: 0.8rem; }
    .faq-answer .faq-content { padding: 0.6rem 0.8rem 0.8rem 0.8rem; }
    .contact-cta-left-text { font-size: 0.9rem; }
    .contact-form { padding: 1rem; }
    .contact-form h2 { font-size: 1.3rem; }
    .contact-form input, .contact-form textarea { font-size: 0.85rem; padding: 0.7rem 0.8rem; }
    .contact-form button { font-size: 0.9rem; padding: 0.7rem 1.2rem; }
    .footer .logo { font-size: 1.2rem; }
    .footer .contact-info p { font-size: 0.75rem; }
    .footer .social-links a { font-size: 0.75rem; }
    .footer-legal-links a { font-size: 0.7rem; }
    .about-content-block h2, .approche-content-block h2 { font-size: 1.8rem; }
    .about-content-block .subtitle, .approche-content-block .subtitle { font-size: 1.1rem; }
    .about-content-block p, .approche-content-block p { font-size: 0.95rem; }
    .mobile-menu-content ul li a { font-size: 1.1rem; }
    .mobile-contact-info p { font-size: 0.85rem; }
    .mobile-contact-info a { font-size: 1rem; }
    .quote-section { font-size: 1.1rem; padding: 2rem 0.5rem; }
    .quote-section .quote-author { font-size: 0.85rem; }
    .accompagnements .card.professional, .accompagnements .card.personal {
        width: 100%;
    }
    
    /* Pages légales responsive */
    .legal-content .content-wrapper {
        padding: 1.2rem 0.6rem;
        margin: 0.8rem;
    }
    .legal-content h1 { font-size: 1.8rem; }
    .legal-content h2 { font-size: 1.4rem; }
    .legal-content h3 { font-size: 1.1rem; }
    .legal-content p, .legal-content li { font-size: 0.85rem; }
}

/* Media query pour les très petits écrans */
@media (max-width: 360px) {
    .hero { 
        min-height: 45vh;
        padding: 2rem 0.5rem;
    }
    .hero h1 { font-size: 1.2rem; }
    .hero h1 span { font-size: 1.6rem; }
    .hero p { font-size: 0.9rem; }
}

/* Media query pour l'orientation paysage sur mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero { 
        min-height: 100vh;
        padding: 2rem 1rem;
    }
    .hero h1 { font-size: 2.5rem; }
    .hero h1 span { font-size: 2rem; }
    .hero p { font-size: 1rem; }
}

/* =========================
   ACCESSIBILITÉ (A11Y)
   ========================= */
/* Masquer visuellement mais garder accessible aux lecteurs d'écran */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Navigation au clavier pour la FAQ */
.faq-question:focus {
    background-color: #f5f5f5;
    outline: 2px solid #c6a189;
    outline-offset: 2px;
}

/* Indicateurs visuels pour les états */
.faq-question[aria-expanded="true"] {
    background-color: #f0f0f0;
}

/* Améliorer la lisibilité des textes */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* =========================
   FOCUS ACCESSIBLE & VISUEL (UNIVERSEL)
   ========================= */

/* Supprime tout focus par défaut */
*:focus {
    outline: none;
}

/* Focus visible au clavier avec :focus-visible */
*:focus-visible {
    outline: 2px solid var(--primary-hover);
    outline-offset: 2px;
    border-radius: 4px;
    box-shadow: 0 0 0 4px rgba(193, 138, 101, 0.15);
}

/* Fallback pour les navigateurs sans :focus-visible */
.using-keyboard *:focus {
    outline: 2px solid var(--primary-hover);
    outline-offset: 2px;
    border-radius: 4px;
    box-shadow: 0 0 0 4px rgba(193, 138, 101, 0.15);
}

/* =========================
   SECTION MON RÔLE
   ========================= */
.role-section {
    color: #5f7380;
    padding: 3rem 1.5rem;
    text-align: center;
    margin: 0 auto 2rem auto;
    max-width: 900px;
}
.role-section h2 {
    font-size: 2rem;
    font-weight: 300;
    margin: 0;
    letter-spacing: 0.01em;
}
.role-section .role-strong {
    font-weight: 800;
    letter-spacing: 0.01em;
}

.breadcrumb {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: left;
}
.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}
.breadcrumb a:hover {
    text-decoration: underline;
    color: var(--primary-hover);
}
.breadcrumb span {
    color: var(--text-dark);
    font-weight: 500;
}

/* =========================
   BANNIÈRE COOKIES
   ========================= */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(245, 245, 245, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    z-index: 9999;
    max-width: 400px;
    width: calc(100% - 4rem);
    display: none;
    animation: slideUp 0.5s ease forwards;
}

.cookie-banner.show {
    display: block;
}

.cookie-banner p {
    margin: 0 0 1.2rem 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-dark);
}

.cookie-banner .cookie-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cookie-banner .cookie-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-weight: 500;
}

.cookie-banner .accept-cookies {
    background: var(--primary);
    color: var(--text-light);
}

.cookie-banner .accept-cookies:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.cookie-banner .reject-cookies {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--text-dark);
}

.cookie-banner .reject-cookies:hover {
    background: rgba(95, 115, 128, 0.1);
    transform: translateY(-2px);
}

.cookie-banner .cookie-settings {
    color: var(--primary);
    text-decoration: underline;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: inline-block;
    cursor: pointer;
}

.cookie-banner .cookie-settings:hover {
    color: var(--primary-hover);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        bottom: 1rem;
        width: calc(100% - 2rem);
        padding: 1rem;
    }
    
    .cookie-banner .cookie-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cookie-banner .cookie-btn {
        width: 100%;
        text-align: center;
    }
}

/* Empêche le zoom automatique sur les champs de formulaire sur iOS */
input, textarea, select {
    font-size: 16px;
}

.footer-main-section p {
  font-size: 0.75rem;
}

.footer-copyright {
  width: 100%;
  font-size: 0.75rem;
  color: #f4f4f2;
  text-align: center;
  margin: 1rem 0 0 0;
  display: block;
}

.consent-checkbox input[type="checkbox"].error-checkbox + .checkbox-custom {
  border-color: #e74c3c ;
  box-shadow: 0 0 0 2px #e74c3c33;
}

body.legal-page .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
}
body.legal-page .footer-main-section {
    align-items: center;
    text-align: center;
}
body.legal-page .footer .contact-info {
    align-items: center;
    text-align: center;
    display: flex;
    flex-direction: column;
}
body.legal-page .footer .social-links {
    justify-content: center;
}
body.legal-page .footer-legal-links {
    justify-content: center;
    text-align: center;
}
body.legal-page .footer-copyright {
    text-align: center;
    width: 100%;
}

/* NOUVELLES RÈGLES D'IMAGE HERO (EXPLICITES) */
@media (max-width: 768px) {
    .hero {
        background-image: url('images/background-hero-mobile.webp');
    }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .hero {
        background-image: url('images/background-hero-tablet.webp');
        background-attachment: fixed;
    }
}
@media (min-width: 1025px) {
    .hero {
        background-image: url('images/background-hero.webp');
        background-attachment: fixed;
    }
}


/* =========================
   SECTION TARIF
   ========================= */
.tarif {
    background: var(--bg-light);
    padding: var(--spacing-xxl) var(--spacing-md);
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
}
.tarif strong {
  color: var(--primary);color: var(--primary);
  font-weight: 600;
}

.tarif-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tarif-section .subtitle strong{
    color: var(--primary);
    font-weight: 600;
}

.tarif-cards-section {
    padding: 0;
    margin: 0;
}

.tarif-cards-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.tarif-card {
    background: #f4f4f2;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    flex: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #c6a189;
}

.tarif-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem auto;
    background: linear-gradient(135deg, #c6a189, #c18a65);
    border-radius: 50%;
    color: #f4f4f2;
    box-shadow: 0 4px 12px rgba(198, 161, 137, 0.3);
}

.tarif-card h3 {
    font-family: "Outfit", sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #5f7380;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.tarif-card p {
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: #5f7380;
    margin: 0;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tarif-cards-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .tarif-card {
        padding: 1.5rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .card-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .tarif-card h3 {
        font-size: 1.2rem;
    }
    
    .tarif-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .tarif-card {
        padding: 1.2rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
    }
    
    .card-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .tarif-card h3 {
        font-size: 1.1rem;
    }
    
    .tarif-card p {
        font-size: 0.85rem;
    }
}



/* Responsive Design */
@media (max-width: 768px) {
    .tarif-section {
        padding: var(--spacing-xl) var(--spacing-sm);
    }
    
    .tarif-section h2 {
        font-size: 2.2rem;
    }
    
    .tarif-section .subtitle {
        font-size: 1.3rem;
    }
    
    .tarif-intro,
    .tarif-details {
        padding: var(--spacing-md);
    }
    
    .tarif-intro p {
        font-size: 1.1rem;
    }
}


@media (max-width: 480px) {
    .tarif-section h2 {
        font-size: 1.8rem;
    }
    
    .tarif-section .subtitle {
        font-size: 1.2rem;
    }
    
    .tarif-intro p {
        font-size: 1rem;
    }
}


/* === Section Prix Adaptée aux variables globales === */
.prix-section {
    background: var(--primary);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(0,0,0,0.05);
    padding: var(--spacing-lg) var(--spacing-lg);
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
    height: 300px; /* Hauteur fixe nécessaire */
}

.prix-container {
    height: 100%;
}

/* Badge promotion */
.prix-badge {
    display: inline-block;
    background: var(--bg-light);
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0,0,0,0.05);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Titre */
.prix-title {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    font-family: "Outfit", sans-serif;
}

/* Bloc prix */
.prix-block {
    margin: var(--spacing-md) 0;
}

/* Ancien prix */
.prix-old {
    font-size: 1.2rem;
    color: #e0e0e0;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

/* Nouveau prix */
.prix-current {
    font-size: 4rem;
    font-weight: 600;
    color: var(--bg-light);
    line-height: 1;
}

/* Sous-titre */
.prix-subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    opacity: 0.8;
    margin-top: var(--spacing-sm);
}

/* Responsive */
@media (max-width: 480px) {
   .prix-current {
        font-size: 3.5rem;
    }
    .prix-title {
        font-size: 1rem;
    }
}
