﻿/* ===================================
   LINÉA PATRIMOINE - STYLESHEET
   Version 2.0 - Harmonisé et optimisé
   =================================== */

/* === VARIABLES CSS === */
:root {
    --pitch-black: #1E160B;
    --ivory: #FFFFF0;
    --tan: #D4B78E;
    --charcoal: #4F555B;
    --champagne-mist: #F7E7CE;
    --tan-subtle: rgba(212, 183, 142, 0.15);
    --glass-bg: rgba(255, 255, 240, 0.95);
    --glass-border: rgba(212, 183, 142, 0.3);
    
    /* Spacing & Layout */
    --desktop-side-padding: 8rem;
    --mobile-side-padding: 2rem;
    --section-vertical-padding: 8rem;
}

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--ivory);
    color: var(--charcoal);
    line-height: 1.75;
    font-weight: 300;
    /* MODIF: Taille de base augmentée pour meilleure lisibilité */
    font-size: 18px;
    overflow-x: hidden;
    max-width: 100vw;
}

/* Surlignage en couleur champagne */
::selection {
    background-color: var(--champagne-mist);
    color: var(--pitch-black);
}

::-moz-selection {
    background-color: var(--champagne-mist);
    color: var(--pitch-black);
}

/* === SIGNATURE LINE === */
.signature-line {
    position: fixed;
    left: 40px;
    top: 0;
    width: 2px;
    height: 100%;
    background: rgba(212, 183, 142, 0.2);
    z-index: 50;
}

.line-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: var(--tan);
}

.line-dot {
    position: fixed;
    left: 40px;
    top: 0;
    width: 14px;
    height: 14px;
    background: var(--tan);
    border: 3px solid var(--ivory);
    border-radius: 50%;
    transform: translate(-6px, -7px);
    z-index: 51;
    box-shadow: 0 0 20px rgba(212, 183, 142, 0.6);
}

/* === HEADER & NAVIGATION === */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.2rem 4rem 1.2rem 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
}

header.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(30, 22, 11, 0.08);
}

.logo-link {
    display: block;
    text-decoration: none;
}

.logo-img {
    height: 36px;
    width: auto;
    display: block;
}

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

.nav-links > li {
    position: relative;
    display: flex;
    align-items: center;
    padding-bottom: 0.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--ivory);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--tan);
    transition: width 0.3s ease;
}

header.scrolled .nav-links a {
    color: var(--charcoal);
}

.nav-links a:hover {
    color: var(--tan);
}

header.scrolled .nav-links a:hover {
    color: var(--pitch-black);
}

.nav-links > li > a:hover::after {
    width: 100%;
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    gap: 0.4rem;
}

.nav-dropdown > a svg {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover > a svg {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: -1rem;
    min-width: 220px;
    background: var(--ivory);
    border: 1px solid var(--glass-border);
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none;
    box-shadow: 0 10px 40px rgba(30, 22, 11, 0.15);
    white-space: nowrap;
    text-align: left;
}

.dropdown-menu-mega {
    min-width: 340px;
}

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

.dropdown-menu li a {
    display: block;
    padding: 0.55rem 1.5rem;
    font-size: 0.85rem;
    text-transform: none;
    letter-spacing: 0.03em;
    color: var(--charcoal);
    text-align: left;
    white-space: nowrap;
}

.dropdown-menu li a::after {
    display: none;
}

.dropdown-menu li a:hover {
    background: var(--tan-subtle);
    color: var(--pitch-black);
}

/* Dropdown menu links always use dropdown colors, not header scrolled colors */
header.scrolled .dropdown-menu li a {
    color: var(--charcoal);
}

header.scrolled .dropdown-menu li a:hover {
    background: var(--tan-subtle);
    color: var(--pitch-black);
}

header.scrolled .dropdown-category-label a.dropdown-category-link {
    color: var(--tan);
}

header.scrolled .dropdown-category-label a.dropdown-category-link:hover {
    color: var(--pitch-black);
}

/* Category labels in dropdown */
.dropdown-category-label {
    display: block;
    padding: 0.5rem 1.5rem 0.2rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--tan);
    pointer-events: none;
    text-align: left;
}

.dropdown-category-label a.dropdown-category-link {
    display: inline;
    padding: 0;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--tan);
    pointer-events: all;
    background: none;
}

.dropdown-category-label a.dropdown-category-link:hover {
    color: var(--pitch-black);
    background: none;
}

.dropdown-category-label:not(:first-child) {
    border-top: 1px solid rgba(212, 183, 142, 0.15);
    margin-top: 0.5rem;
    padding-top: 0.7rem;
}

/* Sub-items with subtle indent */
.dropdown-sub a {
    padding-left: 2.4rem !important;
    font-size: 0.82rem !important;
    color: var(--charcoal);
    opacity: 0.85;
    position: relative;
}

.dropdown-sub a::before {
    content: '';
    position: absolute;
    left: 1.5rem;
    top: 50%;
    width: 5px;
    height: 1px;
    background: var(--tan);
    opacity: 0.4;
}

.dropdown-sub a:hover {
    opacity: 1;
}

/* === BUTTONS === */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.btn-cta svg {
    width: 18px;
    height: 18px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-cta:hover {
    gap: 1.2rem;
}

.btn-cta:hover svg {
    transform: translateX(4px);
}

.btn-cta-primary {
    background: var(--tan);
    color: var(--pitch-black);
}

.btn-cta-primary:hover {
    background: var(--ivory);
}

.btn-cta-outline {
    background: transparent;
    color: var(--tan);
    border: 1px solid var(--tan);
    padding: 0.9rem 1.8rem;
}

.btn-cta-outline:hover {
    background: var(--tan);
    color: var(--pitch-black);
}

.nav-cta {
    padding: 0.85rem 2rem;
    background: var(--charcoal);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--charcoal);
}

.nav-cta:hover {
    background: var(--tan);
    color: #fff;
    border-color: var(--tan);
    padding: 0.85rem 2.6rem;
}

header.scrolled .nav-cta {
    background: var(--charcoal);
    color: #fff;
    border-color: var(--charcoal);
}

header.scrolled .nav-cta:hover {
    background: var(--tan);
    color: #fff;
    border-color: var(--tan);
    padding: 0.85rem 2.6rem;
}

/* === MOBILE MENU === */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 101;
}

.mobile-menu-btn span {
    width: 28px;
    height: 2px;
    background: var(--ivory);
    transition: all 0.3s ease;
}

header.scrolled .mobile-menu-btn span {
    background: var(--charcoal);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--ivory);
    z-index: 99;
    flex-direction: column;
    overflow: hidden;
}

.mobile-nav.active {
    display: flex;
}

/* Blocage du scroll body quand menu ouvert */
body.mobile-nav-open {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Zone scrollable interne au menu */
.mobile-nav-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 5rem 2rem 2.5rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    flex: 1;
}

/* Groupe accordéon */
.mobile-nav-group {
    width: 100%;
    max-width: 340px;
    border-bottom: 1px solid var(--glass-border);
}

/* Bouton toggle accordéon */
.mobile-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.9rem 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--charcoal);
}

.mobile-nav-chevron {
    width: 18px;
    height: 18px;
    color: var(--tan);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.mobile-nav-group.open .mobile-nav-chevron {
    transform: rotate(180deg);
}

/* Panneau déroulant */
.mobile-nav-panel {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 0 0 0.8rem;
}

.mobile-nav-group.open .mobile-nav-panel {
    max-height: 500px;
    padding: 0 0 0.8rem 0.8rem;
}

.mobile-nav-panel a {
    font-size: 0.85rem;
    text-decoration: none;
    color: var(--tan);
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.2rem 0;
    display: block;
}

.mobile-nav-panel a:active {
    color: var(--charcoal);
}

/* Liens directs (Le Journal, Espace Client) */
.mobile-nav-direct {
    font-size: 1rem;
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.9rem 0;
    width: 100%;
    max-width: 340px;
    border-bottom: 1px solid var(--glass-border);
    display: block;
    text-align: left;
}

.mobile-nav a {
    text-decoration: none;
}

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
    /* Même padding que les sections pour un alignement parfait */
    padding-left: 100px;
    padding-right: var(--desktop-side-padding);
    box-sizing: border-box;
}

.hero-video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    max-width: 100vw;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 22, 11, 0.65);
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 2rem;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--ivory);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    text-wrap: balance;
}

.hero h1.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: rgba(255, 255, 240, 0.85);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    text-wrap: balance;
}

.hero-subtitle.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero .btn-cta {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out, gap 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero .btn-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    /* Centré par rapport au contenu (même padding que les sections) */
    left: 100px;
    right: var(--desktop-side-padding);
    margin: 0 auto;
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 240, 0.6);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.8s ease-out;
    z-index: 2;
}

.hero-scroll.visible {
    opacity: 1;
}

.hero-scroll-line {
    width: 1px;
    height: 50px;
    background: rgba(212, 183, 142, 0.4);
    position: relative;
    overflow: hidden;
}

.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: -30px;
    width: 100%;
    height: 30px;
    background: var(--tan);
    animation: scrollDown 2s ease infinite;
}

@keyframes scrollDown {
    0% { top: -30px; }
    100% { top: 50px; }
}

/* === SECTIONS GÉNÉRALES === */
section {
    padding: var(--section-vertical-padding) var(--desktop-side-padding) var(--section-vertical-padding) 100px;
    position: relative;
    width: 100%;
}

/* Centrage pour les sections (sauf header/footer et contenu dans des cadres) */
.section-centered {
    max-width: 1400px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    /* MODIF: Label de section plus lisible */
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--tan);
    font-weight: 600;
    margin-bottom: 1.2rem;
    padding: 0.6rem 1.4rem;
    background: var(--tan-subtle);
    border-left: 3px solid var(--tan);
}

.section-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--pitch-black);
    max-width: 900px;
    text-wrap: balance;
}

.section-subtitle {
    /* MODIF: Sous-titres plus lisibles */
    font-size: 1.2rem;
    color: var(--charcoal);
    max-width: 750px;
    margin-bottom: 4rem;
    line-height: 1.85;
    text-wrap: balance;
}

/* Centrage des titres pour certaines sections */
.section-headers-centered {
    text-align: center;
}

.section-headers-centered .section-label,
.section-headers-centered .section-title,
.section-headers-centered .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* === ANIMATIONS === */
.anim {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.anim.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === ENGAGEMENT SECTION === */
.engagement {
    background: var(--charcoal);
    color: var(--ivory);
    padding: 7rem var(--desktop-side-padding) 7rem 100px;
}

.engagement .section-label {
    background: rgba(212, 183, 142, 0.15);
    border-color: var(--tan);
    color: var(--tan);
}

.engagement .section-title {
    color: var(--ivory);
    margin-bottom: 3rem;
}

.engagement-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.engagement-item {
    /* MODIF: Texte d'engagement plus lisible */
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 240, 0.9);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    text-align: center;
}

.engagement-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.engagement-item .highlight {
    color: rgba(255, 255, 240, 0.95);
    font-weight: 300;
    position: relative;
    display: inline;
}

.engagement-item .highlight .char {
    display: inline;
    font-weight: 300;
    color: rgba(255, 255, 240, 0.95);
    transition: font-weight 0.3s ease-out, color 0.3s ease-out;
}

/* MODIF: Animation en gras mais reste blanc (au lieu du doré) */
.engagement-item .highlight .char.bold {
    font-weight: 600;
    color: var(--ivory);
}

/* === SOCIAL PROOF SECTION === */
.social-proof {
    background: var(--ivory);
    padding: 5rem var(--desktop-side-padding) 5rem 100px;
    border-bottom: 1px solid var(--glass-border);
}

.social-proof-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.social-proof-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.stat-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-item:nth-child(1) {
    transition-delay: 0s;
}

.stat-item:nth-child(2) {
    transition-delay: 0s;
}

.stat-item:nth-child(3) {
    transition-delay: 0s;
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 200;
    color: var(--tan);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    /* MODIF: Label plus lisible */
    font-size: 1.02rem;
    color: var(--charcoal);
    line-height: 1.5;
}

/* Partners avec effet parallaxe et flou sur les bords */
.partners-track {
    padding-top: 3rem;
    border-top: 1px solid var(--glass-border);
    overflow: hidden;
    position: relative;
    margin: 0 -3rem;
}

/* Gradient flou sur les bords */
.partners-track::before,
.partners-track::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.partners-track::before {
    left: 0;
    background: linear-gradient(to right, var(--ivory) 0%, transparent 100%);
}

.partners-track::after {
    right: 0;
    background: linear-gradient(to left, var(--ivory) 0%, transparent 100%);
}

.partners-label {
    /* MODIF: Label plus lisible */
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--charcoal);
    opacity: 0.5;
    margin-bottom: 2rem;
    text-align: center;
}

.partners-scroll {
    display: flex;
    gap: 4rem;
    width: max-content;
    padding: 0 3rem;
    will-change: transform;
}

.partner-logo {
    width: 120px;
    height: 50px;
    opacity: 0.6;
    white-space: nowrap;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

/* === EXPERTISES SECTION === */
.expertises {
    background: linear-gradient(180deg, var(--ivory) 0%, var(--champagne-mist) 100%);
}

.expertises-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.expertise-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(40px);
    text-align: left;
}

.expertise-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.expertise-card:hover {
    box-shadow: 0 20px 50px rgba(30, 22, 11, 0.1);
    border-color: var(--tan);
}

.expertise-image {
    height: 180px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    position: relative;
}

.expertise-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expertise-number {
    display: flex;
    gap: 5px;
    align-items: center;
    height: 40px;
    margin-bottom: 1rem;
}

.expertise-bar {
    display: block;
    width: 3px;
    height: 32px;
    background: var(--tan);
    opacity: 0.5;
    border-radius: 1px;
}

.expertise-card h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--pitch-black);
}

.expertise-tagline {
    /* MODIF: Tagline plus lisible */
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--tan);
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.expertise-card p {
    color: var(--charcoal);
    /* MODIF: Texte de carte plus lisible */
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.expertise-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--pitch-black);
    text-decoration: none;
    /* MODIF: Lien plus lisible */
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.expertise-link:hover {
    gap: 1rem;
    color: var(--tan);
}

/* === ENJEUX SECTION === */
.enjeux {
    background: var(--ivory);
}

.enjeux-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.enjeux-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    margin: 0 auto;
    width: 100%;
    max-width: 1100px;
    min-height: 480px;
}

.enjeux-nav {
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--glass-border);
}

.enjeux-nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    cursor: pointer;
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    background: transparent;
    flex: 1;
}

.enjeux-nav-item:last-child {
    border-bottom: none;
}

.enjeux-nav-item:hover,
.enjeux-nav-item.active {
    background: var(--tan-subtle);
}

.enjeux-nav-item.active {
    border-left: 4px solid var(--tan);
    padding-left: calc(1.5rem - 4px);
}

.enjeux-nav-icon {
    width: 42px;
    height: 42px;
    background: var(--tan-subtle);
    border: 1px solid var(--tan);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.enjeux-nav-item.active .enjeux-nav-icon {
    background: var(--tan);
}

.enjeux-nav-icon svg {
    width: 20px;
    height: 20px;
    color: var(--tan);
}

.enjeux-nav-item.active .enjeux-nav-icon svg {
    color: var(--pitch-black);
}

.enjeux-nav-title {
    /* MODIF: Nav title plus lisible */
    font-size: 1rem;
    font-weight: 500;
    color: var(--pitch-black);
    line-height: 1.3;
}

.enjeux-content {
    position: relative;
    min-height: 450px;
}

.enjeux-panel {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    animation: fadeIn 0.4s ease;
}

.enjeux-panel.active {
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 1.5rem;
    align-items: stretch;
    min-height: 450px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.enjeux-panel-text {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
}

.enjeux-panel-image {
    width: 100%;
    height: 100%;
    min-height: 450px;
    overflow: hidden;
    flex-shrink: 0;
}

.enjeux-panel h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--pitch-black);
    margin-bottom: 0.4rem;
}

.enjeux-panel .enjeux-tagline {
    /* MODIF: Tagline plus lisible */
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--tan);
    font-weight: 600;
    margin-bottom: 1rem;
}

.enjeux-panel p {
    color: var(--charcoal);
    /* MODIF: Texte de panel plus lisible */
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.enjeux-panel .enjeu-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--pitch-black);
    text-decoration: none;
    /* MODIF: Lien plus lisible */
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.enjeux-panel .enjeu-link:hover {
    gap: 1rem;
    color: var(--tan);
}

.enjeux-panel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

.enjeux-timer {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--tan);
    width: 0%;
    transition: width 0.1s linear;
}

.enjeux-timer.paused {
    transition: none;
}

/* Indicateurs de pagination - masqués sur desktop */
.enjeux-dots {
    display: none;
}

/* === MÉTHODE SECTION === */
.methode {
    background: var(--charcoal);
    color: var(--ivory);
    padding: 7.5rem var(--desktop-side-padding) 7.5rem 100px;
}

.methode .section-label {
    background: rgba(212, 183, 142, 0.15);
    border-color: var(--tan);
    color: var(--tan);
}

.methode .section-title {
    color: var(--ivory);
}

.methode .section-subtitle {
    color: rgba(255, 255, 240, 0.7);
    margin-bottom: 3.5rem;
}

.methode-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.methode-timeline {
    position: relative;
}

.methode-timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(212, 183, 142, 0.2);
    transform: translateX(-50%);
}

.methode-timeline-progress {
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 0%;
    background: var(--tan);
    transform: translateX(-50%);
}

.methode-step {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.methode-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.methode-step:last-child {
    margin-bottom: 0;
}

.methode-step:nth-child(odd) {
    justify-content: flex-start;
}

.methode-step:nth-child(even) {
    justify-content: flex-end;
}

.step-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 58px;
    height: 58px;
    background: var(--charcoal);
    border: 2px solid rgba(212, 183, 142, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 500;
    color: rgba(212, 183, 142, 0.5);
    z-index: 2;
    transition: all 0.5s ease;
}

.methode-step.active .step-number {
    background: var(--tan);
    color: var(--pitch-black);
    border-color: var(--tan);
    box-shadow: 0 0 40px rgba(212, 183, 142, 0.5);
}

.step-content {
    width: 40%;
    padding: 1.5rem 1.8rem;
    background: rgba(255, 255, 240, 0.05);
    border: 1px solid rgba(212, 183, 142, 0.2);
    backdrop-filter: blur(5px);
    transition: all 0.5s ease;
    text-align: left;
}

.methode-step.active .step-content {
    border-color: var(--tan);
    background: rgba(255, 255, 240, 0.08);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.7rem;
}

.step-icon {
    width: 38px;
    height: 38px;
    background: rgba(212, 183, 142, 0.1);
    border: 1px solid rgba(212, 183, 142, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon svg {
    width: 19px;
    height: 19px;
    color: var(--tan);
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--ivory);
    transition: color 0.5s ease;
}

.methode-step.active .step-content h3 {
    color: var(--tan);
}

.step-content p {
    /* MODIF: Texte d'étape plus lisible */
    font-size: 0.95rem;
    color: rgba(255, 255, 240, 0.7);
    line-height: 1.7;
}

.methode-cta {
    margin-top: 4rem;
    text-align: center;
}

/* === CTA FINAL === */
/* === CTA FINAL === */
.cta-final {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem var(--desktop-side-padding) 8rem 100px;
    overflow: hidden;
    background: var(--pitch-black);
}

.cta-final-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.cta-final-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cta-final-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 22, 11, 0.65);
    z-index: 1;
}

.cta-final .section-label {
    background: rgba(212, 183, 142, 0.2);
    border-color: var(--tan);
    color: var(--tan);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}

.cta-final .section-title {
    color: var(--ivory);
    margin-bottom: 2rem;
}

.cta-final p {
    color: rgba(255, 255, 240, 0.8);
    /* MODIF: Texte CTA plus lisible */
    font-size: 1.15rem;
    line-height: 1.85;
    margin-bottom: 3rem;
    text-wrap: balance;
}

.cta-final .btn-cta {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out, gap 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === FOOTER === */
footer {
    background: var(--pitch-black);
    color: rgba(255, 255, 240, 0.7);
    padding: 5rem 4rem 2rem 100px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    max-width: 1400px;
    margin: 0 auto 4rem;
}

.footer-section h4 {
    color: var(--ivory);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 240, 0.6);
    /* MODIF: Texte footer plus lisible */
    font-size: 1rem;
    line-height: 1.8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--tan);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-brand p {
    margin-bottom: 0;
    line-height: 1.6;
}

.footer-orias {
    font-size: 0.95rem;
    color: rgba(255, 255, 240, 0.6);
    font-style: normal;
    line-height: 1.6;
}

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

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

.footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(212, 183, 142, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    border-color: var(--tan);
    background: var(--tan);
}

.footer-social svg {
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 240, 0.6);
}

.footer-social a:hover svg {
    color: var(--pitch-black);
}

.footer-bottom {
    border-top: 1px solid rgba(212, 183, 142, 0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 240, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--tan);
}

/* === RESPONSIVE DESIGN === */

/* Tablettes */
@media (max-width: 1024px) {
    :root {
        --desktop-side-padding: 4rem;
    }
    
    section {
        padding: 6rem 4rem 6rem 80px;
    }
    
    .expertises-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .enjeux-container {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
    }
    
    .enjeux-panel-text {
        max-width: 100%;
        padding: 2rem;
    }
    
    .enjeux-nav {
        flex-direction: row;
        border-right: none;
        border-bottom: 1px solid var(--glass-border);
    }
    
    .enjeux-nav-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .enjeux-panel.active {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .enjeux-panel-image {
        width: 100%;
        height: 220px;
        min-height: 220px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-section:first-child {
        grid-column: 1 / -1;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --desktop-side-padding: 1rem;
    }
    
    html {
        overflow-x: hidden;
        width: 100%;
    }
    
    body {
        font-size: 16px;
        overflow-x: hidden;
        width: 100%;
    }
    
    /* Signature line plus discrète sur mobile */
    .signature-line {
        left: 15px;
        width: 1.5px;
    }
    
    .line-dot {
        left: 15px;
        width: 10px;
        height: 10px;
        transform: translate(-4px, -5px);
    }
    
    /* Header mobile */
    header {
        padding: 1rem 1rem 1rem 40px;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Hero mobile - hauteur réduite pour voir Découvrir */
    .hero {
        width: 100%;
        height: calc(100vh - 80px);
        min-height: calc(100vh - 80px);
        max-height: calc(100vh - 80px);
        padding-left: 40px;
        padding-right: 1rem;
        overflow: hidden;
    }
    
    .hero-content {
        padding: 1rem;
        max-width: 100%;
    }
    
    .hero h1 {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
    
    .hero-scroll {
        bottom: 1.5rem;
        left: 40px;
        right: 1rem;
    }
    
    .hero-scroll-line {
        height: 35px;
    }
    
    .nav-links,
    .nav-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    /* Sections - padding symétrique pour centrage parfait */
    section {
        padding: 5rem 1rem 5rem 40px !important;
        width: 100%;
        box-sizing: border-box;
    }
    
    .section-centered {
        max-width: 100%;
        width: 100%;
        padding: 0;
        margin: 0 auto;
    }
    
    .section-headers-centered {
        text-align: center;
        width: 100%;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
    
    .section-label {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    /* Engagement - centrage */
    .engagement {
        padding: 5rem 1rem 5rem 40px !important;
    }
    
    .engagement-list {
        padding: 0;
        width: 100%;
    }
    
    .engagement-item {
        text-align: center;
        /* MODIF: Engagement mobile plus lisible */
        font-size: 1.15rem;
    }
    
    /* Social proof */
    .social-proof {
        padding: 4rem 1rem 4rem 40px !important;
    }
    
    .social-proof-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    /* Expertises */
    .expertises-grid {
        padding: 0;
        max-width: 100%;
    }
    
    .expertise-card {
        max-width: 100%;
        padding: 1.5rem;
    }
    
    /* ========================================
       ENJEUX - CARROUSEL MOBILE AVEC DOTS
       ======================================== */
    .enjeux-wrapper {
        /* Pas de débordement - rester dans le flux normal */
        width: 100%;
        margin: 0;
        padding: 0;
        position: relative;
    }
    
    .enjeux-container {
        display: block;
        width: 100%;
        min-height: auto;
        border: none;
        background: transparent;
        /* Déborder à droite seulement pour le scroll */
        margin-right: -1rem;
    }
    
    /* Masquer la navigation avec icônes sur mobile */
    .enjeux-nav {
        display: none !important;
    }
    
    /* Masquer le timer sur mobile */
    .enjeux-timer {
        display: none !important;
    }
    
    /* Carrousel horizontal avec scroll snap très snappy */
    .enjeux-content {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 1rem;
        padding: 0 1rem 0 0;
        min-height: auto;
    }
    
    .enjeux-content::-webkit-scrollbar {
        display: none;
    }
    
    /* Tous les panels visibles en carrousel */
    .enjeux-panel {
        display: flex !important;
        flex-direction: column;
        flex: 0 0 calc(100% - 50px);
        min-width: calc(100% - 50px);
        scroll-snap-align: start;
        scroll-snap-stop: always;
        position: relative;
        opacity: 1;
        animation: none;
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
    }
    
    .enjeux-panel:first-child {
        margin-left: 0;
    }
    
    .enjeux-panel:last-of-type {
        margin-right: 1rem;
    }
    
    .enjeux-panel.active {
        display: flex !important;
        flex-direction: column;
        min-height: auto;
        position: relative;
    }
    
    .enjeux-panel-text {
        padding: 1.25rem;
        order: 1;
        flex: 1;
    }
    
    .enjeux-panel-image {
        width: 100%;
        height: 320px;
        min-height: 320px;
        order: 2;
        margin-top: auto;
    }
    
    .enjeux-panel-image img {
        object-position: center top;
    }
    
    .enjeux-panel h3 {
        font-size: 1.15rem;
    }
    
    .enjeux-panel .enjeux-tagline {
        /* MODIF: Tagline mobile plus lisible */
        font-size: 0.78rem;
    }
    
    .enjeux-panel p {
        /* MODIF: Texte mobile plus lisible */
        font-size: 0.92rem;
        line-height: 1.65;
    }
    
    /* Indicateurs de pagination (dots) */
    .enjeux-dots {
        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 0.75rem;
        margin-top: 1.5rem;
        padding: 0;
    }
    
    .enjeux-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        border: 2px solid var(--tan);
        background: transparent;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .enjeux-dot.active {
        background: var(--tan);
    }
    
    /* ========================================
       MÉTHODE - CERCLES CENTRÉS VERTICALEMENT
       ======================================== */
    .methode {
        padding: 6rem 1rem 6rem 40px !important;
    }
    
    .methode-wrapper {
        padding: 0;
        width: 100%;
    }
    
    .methode-timeline {
        position: relative;
        padding-left: 0;
    }
    
    .methode-timeline-line,
    .methode-timeline-progress {
        left: 25px;
        transform: translateX(-50%);
    }
    
    .methode-step {
        display: flex;
        flex-direction: row !important;
        justify-content: flex-start !important;
        align-items: center; /* Centrage vertical */
        margin-bottom: 2rem;
        position: relative;
        min-height: auto;
    }
    
    /* Forcer l'ordre : numéro à gauche, contenu à droite pour TOUTES les étapes */
    .methode-step .step-number {
        order: 1;
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
        flex-shrink: 0;
        z-index: 2;
        margin-right: 1rem;
    }
    
    .methode-step .step-content {
        order: 2;
        flex: 1;
        width: auto;
        margin-left: 0;
        padding: 1.25rem;
    }
    
    .step-content h3 {
        font-size: 1.15rem;
    }
    
    .step-content p {
        /* MODIF: Texte d'étape mobile plus lisible */
        font-size: 0.95rem;
    }
    
    .methode-cta {
        text-align: center;
        margin-top: 4rem;
        padding-left: 0;
    }
    
    /* CTA Final */
    .cta-final {
        padding: 5rem 1rem 5rem 40px !important;
    }
    
    .cta-content {
        width: 100%;
        padding: 0;
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    /* Footer */
    footer {
        padding: 3rem 1rem 2rem 40px !important;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-brand .footer-logo {
        height: 26px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    /* Boutons */
    .btn-cta {
        padding: 0.9rem 1.6rem;
        font-size: 0.8rem;
    }
}

/* Très petit mobile */
@media (max-width: 500px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
    }
    
    body {
        font-size: 15px;
    }
    
    .signature-line {
        left: 10px;
        width: 1px;
    }
    
    .line-dot {
        left: 10px;
        width: 8px;
        height: 8px;
        transform: translate(-3.5px, -4px);
    }
    
    header {
        padding: 0.8rem 1rem 0.8rem 28px;
    }
    
    .logo-img {
        height: 24px;
    }
    
    /* Hero */
    .hero {
        padding-left: 28px;
    }
    
    .hero-scroll {
        left: 28px;
    }
    
    .hero h1 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    /* Sections */
    section {
        padding: 4rem 1rem 4rem 28px !important;
    }
    
    .btn-cta {
        padding: 0.85rem 1.4rem;
        font-size: 0.75rem;
        gap: 0.6rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .section-label {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    
    .engagement-item {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .expertise-card {
        padding: 1.25rem;
    }
    
    .expertise-card h3 {
        font-size: 1.15rem;
    }
    
    .expertise-card p {
        font-size: 0.9rem;
    }
    
    /* Enjeux carrousel - ajustements très petit mobile */
    .enjeux-wrapper {
        width: 100vw;
        margin-left: -28px;
        margin-right: -1rem;
    }
    
    .enjeux-content {
        padding: 0 1rem 0 0;
    }
    
    .enjeux-panel {
        flex: 0 0 calc(100% - 40px);
        min-width: calc(100% - 40px);
    }
    
    .enjeux-panel:first-child {
        margin-left: 0;
    }
    
    .enjeux-panel-text {
        padding: 1rem;
        flex: 1;
    }
    
    .enjeux-panel h3 {
        font-size: 1.05rem;
    }
    
    .enjeux-panel p {
        font-size: 0.8rem;
    }
    
    .enjeux-panel-image {
        height: 280px;
        min-height: 280px;
        margin-top: auto;
    }
    
    .enjeux-dots {
        padding: 0;
        margin-top: 1.25rem;
        gap: 0.6rem;
    }
    
    .enjeux-dot {
        width: 8px;
        height: 8px;
    }
    
    /* Méthode - ajustements */
    .methode-step .step-number {
        width: 44px;
        height: 44px;
        font-size: 1rem;
        margin-right: 0.75rem;
    }
    
    .methode-step .step-content {
        padding: 1rem;
    }
    
    .step-content h3 {
        font-size: 1rem;
    }
    
    .step-content p {
        font-size: 0.85rem;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 0.95rem;
    }
    
    footer {
        padding: 2.5rem 1rem 1.5rem 28px !important;
    }
    
    .footer-brand .footer-logo {
        height: 22px;
    }
    
    .footer-section h4 {
        font-size: 0.85rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }
    
    .footer-legal a {
        font-size: 0.75rem;
    }
}
/* ===================================
   EXPERTISES PAGE - ADDITIONAL STYLES
   =================================== */

/* === EXPERTISES HERO === */
.expertises-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    padding: 120px 100px 80px 100px;
}

.expertises-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.expertises-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.expertises-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(30, 22, 11, 0.7) 0%, rgba(30, 22, 11, 0.5) 100%);
    z-index: 1;
}

.expertises-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    padding: 2rem;
}

.expertises-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--ivory);
    letter-spacing: -0.02em;
}

.expertises-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255, 255, 240, 0.85);
    max-width: 700px;
    margin: 0 auto;
}

/* === NOS MÉTIERS SECTION === */
.expertises-metiers {
    background: linear-gradient(180deg, var(--ivory) 0%, var(--champagne-mist) 50%, var(--ivory) 100%);
    padding: var(--section-vertical-padding) var(--desktop-side-padding) var(--section-vertical-padding) 100px;
}

/* Metier Block */
.metier-block {
    max-width: 1400px;
    margin: 0 auto 6rem;
    padding-top: 4rem;
    border-top: 1px solid var(--glass-border);
}

.metier-block:first-of-type {
    margin-top: 2rem;
}

.metier-block:last-of-type {
    margin-bottom: 0;
}

.metier-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: start;
}

.metier-block-reverse .metier-content {
    grid-template-columns: 400px 1fr;
}

.metier-block-reverse .metier-text {
    order: 2;
}

.metier-block-reverse .metier-image {
    order: 1;
}

.metier-text {
    padding-right: 2rem;
}

.metier-block-reverse .metier-text {
    padding-right: 0;
    padding-left: 2rem;
}

.metier-number {
    font-size: 4rem;
    font-weight: 200;
    color: var(--tan);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 1rem;
}

.metier-text h3 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 500;
    color: var(--pitch-black);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.metier-tagline {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--tan);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.metier-intro {
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--charcoal);
    margin-bottom: 2.5rem;
}

.metier-image {
    position: sticky;
    top: 120px;
    height: 500px;
    overflow: hidden;
}

.metier-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Domaines Grid */
.metier-domaines h4,
.metier-philosophie h4,
.metier-solutions h4,
.metier-missions h4 {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--pitch-black);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--tan);
    display: inline-block;
}

.domaines-grid,
.missions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.domaine-item,
.mission-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.domaine-item:hover,
.mission-item:hover {
    border-color: var(--tan);
    box-shadow: 0 10px 30px rgba(30, 22, 11, 0.08);
}

.domaine-icon,
.mission-icon {
    width: 48px;
    height: 48px;
    background: var(--tan-subtle);
    border: 1px solid var(--tan);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.domaine-icon svg,
.mission-icon svg {
    width: 24px;
    height: 24px;
    color: var(--tan);
}

.domaine-item h5,
.mission-item h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--pitch-black);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.domaine-item p,
.mission-item p {
    font-size: 0.9rem;
    color: var(--charcoal);
    line-height: 1.7;
}

/* Philosophie Items */
.philosophie-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.philosophie-item {
    padding: 1.25rem 1.5rem;
    background: var(--glass-bg);
    border-left: 3px solid var(--tan);
    transition: all 0.3s ease;
}

.philosophie-item:hover {
    background: var(--tan-subtle);
}

.philosophie-title {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--pitch-black);
    margin-bottom: 0.5rem;
}

.philosophie-item p {
    font-size: 0.95rem;
    color: var(--charcoal);
    line-height: 1.7;
    margin: 0;
}

/* Solutions Tags */
.metier-solutions {
    margin-top: 2.5rem;
}

.solutions-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.solution-tag {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    font-size: 0.85rem;
    color: var(--charcoal);
    transition: all 0.3s ease;
}

.solution-tag:hover {
    border-color: var(--tan);
    background: var(--tan-subtle);
    color: var(--pitch-black);
}

/* === VOS ENJEUX SECTION === */
/* === ENJEUX PAGE — Introduction & Navigation rapide === */
.enjeux-intro {
    background: var(--ivory);
    padding: var(--section-vertical-padding) var(--desktop-side-padding) var(--section-vertical-padding) 100px;
}

.enjeux-quick-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.enjeux-quick-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1.25rem;
    border: 1px solid rgba(212, 183, 142, 0.25);
    border-radius: 8px;
    text-decoration: none;
    color: var(--charcoal);
    transition: all 0.4s ease;
    min-width: 160px;
    flex: 1;
    max-width: 200px;
    text-align: center;
}

.enjeux-quick-link:hover {
    border-color: var(--tan);
    background: rgba(212, 183, 142, 0.06);
    transform: translateY(-3px);
}

.enjeux-quick-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 183, 142, 0.1);
    border: 1px solid rgba(212, 183, 142, 0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.enjeux-quick-link:hover .enjeux-quick-icon {
    background: rgba(212, 183, 142, 0.2);
    border-color: var(--tan);
}

.enjeux-quick-icon svg {
    width: 22px;
    height: 22px;
    color: var(--tan);
}

.enjeux-quick-link span {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.4;
}

/* Responsive — enjeux-intro */
@media (max-width: 1024px) {
    .enjeux-intro {
        padding: 6rem 4rem 6rem 80px;
    }
    .enjeux-quick-nav {
        gap: 1rem;
    }
    .enjeux-quick-link {
        min-width: 140px;
        padding: 1.25rem 1rem;
    }
}

@media (max-width: 768px) {
    .enjeux-intro {
        padding: 5rem 1rem 5rem 40px;
    }
    .enjeux-quick-nav {
        gap: 0.75rem;
    }
    .enjeux-quick-link {
        min-width: 120px;
        max-width: none;
        flex: 1 1 calc(50% - 0.75rem);
        padding: 1rem 0.75rem;
    }
    .enjeux-quick-link span {
        font-size: 0.7rem;
    }
    .enjeux-quick-icon {
        width: 40px;
        height: 40px;
    }
    .enjeux-quick-icon svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 500px) {
    .enjeux-intro {
        padding: 4rem 1rem 4rem 28px;
    }
    .enjeux-quick-link {
        flex: 1 1 calc(50% - 0.5rem);
    }
}

.expertises-enjeux {
    background: var(--charcoal);
    padding: var(--section-vertical-padding) var(--desktop-side-padding) var(--section-vertical-padding) 100px;
}

.expertises-enjeux .section-label {
    background: rgba(212, 183, 142, 0.15);
    border-color: var(--tan);
    color: var(--tan);
}

.expertises-enjeux .section-title {
    color: var(--ivory);
}

.expertises-enjeux .section-subtitle {
    color: rgba(255, 255, 240, 0.7);
}

/* Profile Cards */
.enjeux-profiles {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.profile-card {
    display: grid;
    grid-template-columns: 450px 1fr;
    background: rgba(255, 255, 240, 0.03);
    border: 1px solid rgba(212, 183, 142, 0.2);
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out, border-color 0.3s ease;
}

.profile-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.profile-card:hover {
    border-color: var(--tan);
}

.profile-card-reverse {
    grid-template-columns: 1fr 450px;
}

.profile-card-reverse .profile-image {
    order: 2;
}

.profile-card-reverse .profile-content {
    order: 1;
}

.profile-image {
    height: 100%;
    min-height: 500px;
    overflow: hidden;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.profile-card:hover .profile-image img {
    transform: scale(1.03);
}

.profile-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.profile-icon {
    width: 56px;
    height: 56px;
    background: rgba(212, 183, 142, 0.1);
    border: 1px solid rgba(212, 183, 142, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.profile-icon svg {
    width: 28px;
    height: 28px;
    color: var(--tan);
}

.profile-content h3 {
    font-size: clamp(1.5rem, 2.5vw, 1.8rem);
    font-weight: 500;
    color: var(--ivory);
    margin-bottom: 0.4rem;
    line-height: 1.2;
}

.profile-tagline {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--tan);
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.profile-content > p {
    font-size: 1rem;
    color: rgba(255, 255, 240, 0.8);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.profile-problematiques,
.profile-approche {
    margin-bottom: 1.5rem;
}

.profile-problematiques h4,
.profile-approche h4 {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--tan);
    margin-bottom: 1rem;
}

.profile-problematiques ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.profile-problematiques li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 240, 0.75);
    line-height: 1.6;
}

.profile-problematiques li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    background: var(--tan);
}

.profile-approche p {
    font-size: 0.95rem;
    color: rgba(255, 255, 240, 0.8);
    line-height: 1.75;
    margin: 0;
}

.profile-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 1.5rem;
    color: var(--tan);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.profile-cta svg {
    width: 18px;
    height: 18px;
    transition: transform 0.4s ease;
}

.profile-cta:hover {
    color: var(--ivory);
    gap: 1.2rem;
}

.profile-cta:hover svg {
    transform: translateX(4px);
}

/* === RESPONSIVE - EXPERTISES PAGE === */
@media (max-width: 1200px) {
    .metier-content {
        grid-template-columns: 1fr 350px;
        gap: 3rem;
    }
    
    .metier-block-reverse .metier-content {
        grid-template-columns: 350px 1fr;
    }
    
    .profile-card {
        grid-template-columns: 380px 1fr;
    }
    
    .profile-card-reverse {
        grid-template-columns: 1fr 380px;
    }
}

@media (max-width: 1024px) {
    .expertises-hero {
        padding: 100px 4rem 60px 80px;
        min-height: 60vh;
    }
    
    .expertises-metiers {
        padding: 6rem 4rem 6rem 80px;
    }
    
    .metier-content,
    .metier-block-reverse .metier-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .metier-block-reverse .metier-text {
        order: unset;
    }

    .metier-block-reverse .metier-image {
        order: -1;
    }
    
    .metier-text,
    .metier-block-reverse .metier-text {
        padding: 0;
    }
    
    .metier-image {
        position: relative;
        top: 0;
        height: 350px;
        order: -1;
    }
    
    .domaines-grid,
    .missions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .expertises-enjeux {
        padding: 6rem 4rem 6rem 80px;
    }
    
    .profile-card,
    .profile-card-reverse {
        grid-template-columns: 1fr;
    }
    
    .profile-card-reverse .profile-image,
    .profile-card-reverse .profile-content {
        order: unset;
    }
    
    .profile-image {
        min-height: 350px;
    }
    
    .profile-content {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .expertises-hero {
        padding: 90px 1rem 50px 40px;
        min-height: 50vh;
    }
    
    .expertises-hero h1 {
        font-size: 1.8rem;
    }
    
    .expertises-hero-subtitle {
        font-size: 1rem;
    }
    
    .expertises-metiers {
        padding: 5rem 1rem 5rem 40px;
    }
    
    .metier-block {
        margin-bottom: 4rem;
        padding-top: 3rem;
    }
    
    .metier-number {
        font-size: 3rem;
    }
    
    .metier-text h3 {
        font-size: 1.5rem;
    }
    
    .metier-intro {
        font-size: 1rem;
    }
    
    .metier-image {
        height: 280px;
    }
    
    .domaine-item,
    .mission-item {
        padding: 1.25rem;
    }
    
    .philosophie-item {
        padding: 1rem 1.25rem;
    }
    
    .expertises-enjeux {
        padding: 5rem 1rem 5rem 40px;
    }
    
    .enjeux-profiles {
        gap: 3rem;
    }
    
    .profile-image {
        min-height: 280px;
    }
    
    .profile-content {
        padding: 2rem;
    }
    
    .profile-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 500px) {
    .expertises-hero {
        padding: 80px 1rem 40px 28px;
        min-height: 45vh;
    }
    
    .expertises-hero h1 {
        font-size: 1.5rem;
    }
    
    .expertises-hero-subtitle {
        font-size: 0.95rem;
    }
    
    .expertises-metiers {
        padding: 4rem 1rem 4rem 28px;
    }
    
    .metier-block {
        margin-bottom: 3rem;
        padding-top: 2rem;
    }
    
    .metier-number {
        font-size: 2.5rem;
    }
    
    .metier-text h3 {
        font-size: 1.3rem;
    }
    
    .metier-tagline {
        font-size: 0.75rem;
    }
    
    .metier-intro {
        font-size: 0.95rem;
    }
    
    .metier-image {
        height: 220px;
    }
    
    .domaines-grid,
    .missions-grid {
        gap: 1rem;
    }
    
    .domaine-item,
    .mission-item {
        padding: 1rem;
    }
    
    .domaine-icon,
    .mission-icon {
        width: 40px;
        height: 40px;
    }
    
    .domaine-icon svg,
    .mission-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .domaine-item h5,
    .mission-item h5 {
        font-size: 0.9rem;
    }
    
    .domaine-item p,
    .mission-item p {
        font-size: 0.85rem;
    }
    
    .solution-tag {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .expertises-enjeux {
        padding: 4rem 1rem 4rem 28px;
    }
    
    .enjeux-profiles {
        gap: 2rem;
    }
    
    .profile-image {
        min-height: 220px;
    }
    
    .profile-content {
        padding: 1.5rem;
    }
    
    .profile-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
    }
    
    .profile-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .profile-content h3 {
        font-size: 1.15rem;
    }
    
    .profile-tagline {
        font-size: 0.75rem;
    }
    
    .profile-content > p {
        font-size: 0.9rem;
    }
    
    .profile-problematiques h4,
    .profile-approche h4 {
        font-size: 0.75rem;
    }
    
    .profile-problematiques li {
        font-size: 0.85rem;
        padding-left: 1.25rem;
    }
    
    .profile-problematiques li::before {
        width: 5px;
        height: 5px;
    }
    
    .profile-approche p {
        font-size: 0.85rem;
    }
    
    .profile-cta {
        font-size: 0.8rem;
    }
}

/* ===================================
   LINÉA PATRIMOINE - ADDITIONAL PAGES CSS
   =================================== */

/* === PAGE HERO (Shared) === */
.page-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 100px 80px 100px;
}

.page-hero-small { min-height: 50vh; }

.page-hero-background {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
}

.page-hero-background img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(30, 22, 11, 0.7) 0%, rgba(30, 22, 11, 0.5) 100%);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    padding: 2rem;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--ivory);
}

.page-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255, 255, 240, 0.85);
    max-width: 700px;
    margin: 0 auto;
}

/* === CABINET PAGE === */
.cabinet-vision {
    background: var(--ivory);
    padding: var(--section-vertical-padding) var(--desktop-side-padding) var(--section-vertical-padding) 100px;
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.vision-text .section-label { margin-bottom: 1rem; }
.vision-text .section-title { margin-bottom: 2rem; }

.vision-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--pitch-black);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.vision-text p {
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 1.5rem;
}

.vision-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--tan-subtle);
    border: 1px solid var(--glass-border);
}

.value-icon {
    width: 56px; height: 56px;
    margin: 0 auto 1rem;
    background: var(--ivory);
    border: 1px solid var(--tan);
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    width: 28px; height: 28px;
    color: var(--tan);
}

.value-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--pitch-black);
    margin-bottom: 0.5rem;
}

.value-item p {
    font-size: 0.9rem;
    color: var(--charcoal);
    margin: 0;
}

.vision-image {
    position: sticky;
    top: 120px;
    height: 600px;
    overflow: hidden;
}

.vision-image img {
    width: 100%; height: 100%;
    object-fit: cover;
}

/* Fondateur Block */
.cabinet-equipe {
    background: var(--charcoal);
    padding: var(--section-vertical-padding) var(--desktop-side-padding) var(--section-vertical-padding) 100px;
}

.cabinet-equipe .section-label {
    background: rgba(212, 183, 142, 0.15);
    border-color: var(--tan);
    color: var(--tan);
}

.cabinet-equipe .section-title { color: var(--ivory); }
.cabinet-equipe .section-subtitle { color: rgba(255, 255, 240, 0.7); }

.fondateur-block {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 240, 0.03);
    border: 1px solid rgba(212, 183, 142, 0.2);
    overflow: hidden;
}

.fondateur-image {
    height: 100%;
    min-height: 500px;
}

.fondateur-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
}

.fondateur-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fondateur-role {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--tan);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.fondateur-name {
    font-size: 2rem;
    font-weight: 500;
    color: var(--ivory);
    margin-bottom: 1.5rem;
}

.fondateur-intro {
    font-size: 1.1rem;
    color: rgba(255, 255, 240, 0.9);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.fondateur-content p {
    color: rgba(255, 255, 240, 0.75);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.fondateur-credentials {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(212, 183, 142, 0.2);
    border-bottom: 1px solid rgba(212, 183, 142, 0.2);
}

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

.credential-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 200;
    color: var(--tan);
    line-height: 1;
}

.credential-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 240, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Méthode Section */
.cabinet-methode {
    background: var(--charcoal);
    padding: 6rem var(--desktop-side-padding) 10rem 100px;
}

.cabinet-methode .section-label {
    background: rgba(212, 183, 142, 0.15);
    border-color: var(--tan);
    color: var(--tan);
}

.cabinet-methode .section-title { color: var(--ivory); }
.cabinet-methode .section-subtitle { color: rgba(255, 255, 240, 0.7); }

/* Engagements */
.cabinet-engagements {
    background: var(--ivory);
    padding: var(--section-vertical-padding) var(--desktop-side-padding) var(--section-vertical-padding) 100px;
}

.engagements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.engagement-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.engagement-card:hover {
    border-color: var(--tan);
    box-shadow: 0 15px 40px rgba(30, 22, 11, 0.1);
}

.engagement-icon {
    width: 64px; height: 64px;
    margin: 0 auto 1.5rem;
    background: var(--tan-subtle);
    border: 1px solid var(--tan);
    display: flex;
    align-items: center;
    justify-content: center;
}

.engagement-icon svg {
    width: 32px; height: 32px;
    color: var(--tan);
}

.engagement-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--pitch-black);
    margin-bottom: 1rem;
}

.engagement-card p {
    font-size: 0.9rem;
    color: var(--charcoal);
    line-height: 1.7;
}

/* === JOURNAL PAGE === */
.journal-articles {
    background: var(--ivory);
    padding: var(--section-vertical-padding) var(--desktop-side-padding) var(--section-vertical-padding) 100px;
}

.journal-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--charcoal);
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--tan);
    border-color: var(--tan);
    color: var(--pitch-black);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.article-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.article-card:hover {
    border-color: var(--tan);
    box-shadow: 0 15px 40px rgba(30, 22, 11, 0.1);
}

.article-featured {
    grid-column: span 2;
    flex-direction: row;
}

.article-featured .article-image {
    width: 50%;
    height: auto;
    min-height: 350px;
}

.article-featured .article-content {
    width: 50%;
}

.article-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.article-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-category {
    position: absolute;
    top: 1rem; left: 1rem;
    padding: 0.4rem 0.8rem;
    background: var(--tan);
    color: var(--pitch-black);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.article-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: var(--charcoal);
    opacity: 0.7;
}

.article-card h2,
.article-card h3 {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--pitch-black);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.article-featured h2 {
    font-size: 1.5rem;
}

.article-card p {
    font-size: 0.9rem;
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.article-link {
    color: var(--pitch-black);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: auto;
}

.article-link:hover {
    color: var(--tan);
}

.journal-pagination {
    text-align: center;
    margin-top: 4rem;
}

.pagination-info {
    display: block;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
    font-size: 0.9rem;
}

/* Newsletter */
.journal-newsletter {
    background: var(--charcoal);
    padding: 6rem var(--desktop-side-padding) 6rem 100px;
}

.journal-newsletter .section-label {
    background: rgba(212, 183, 142, 0.15);
    border-color: var(--tan);
    color: var(--tan);
}

.journal-newsletter .section-title { color: var(--ivory); }
.journal-newsletter .section-subtitle { color: rgba(255, 255, 240, 0.7); margin-bottom: 2rem; }

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-input-group {
    display: flex;
    gap: 1rem;
}

.newsletter-input-group input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 240, 0.05);
    border: 1px solid rgba(212, 183, 142, 0.3);
    color: var(--ivory);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
}

.newsletter-input-group input::placeholder {
    color: rgba(255, 255, 240, 0.5);
}

.newsletter-input-group input:focus {
    outline: none;
    border-color: var(--tan);
}

.newsletter-legal {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 240, 0.5);
    text-align: center;
}

.newsletter-legal a {
    color: var(--tan);
    text-decoration: underline;
}

/* === CONTACT PAGE === */
.contact-main {
    background: var(--ivory);
    padding: 140px var(--desktop-side-padding) var(--section-vertical-padding) 100px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info .section-label { margin-bottom: 1rem; }

.contact-info h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 500;
    color: var(--pitch-black);
    margin-bottom: 1.5rem;
}

.contact-intro {
    font-size: 1.1rem;
    color: var(--charcoal);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 48px; height: 48px;
    background: var(--tan-subtle);
    border: 1px solid var(--tan);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px; height: 22px;
    color: var(--tan);
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--charcoal);
    opacity: 0.7;
    margin-bottom: 0.25rem;
}

.contact-text a,
.contact-text span {
    color: var(--pitch-black);
    font-size: 1rem;
    text-decoration: none;
}

.contact-text a:hover {
    color: var(--tan);
}

.contact-reassurance {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.reassurance-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--charcoal);
}

.reassurance-item svg {
    width: 18px; height: 18px;
    color: var(--tan);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
}

.contact-form h2 {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--pitch-black);
    margin-bottom: 2rem;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--pitch-black);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    background: var(--ivory);
    border: 1px solid var(--glass-border);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: var(--pitch-black);
    transition: border-color 0.3s ease;
}

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

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-checkbox input {
    width: auto;
    margin-top: 0.25rem;
}

.form-checkbox label {
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.5;
}

.form-checkbox a {
    color: var(--tan);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--charcoal);
    opacity: 0.7;
    text-align: center;
}

/* FAQ Section */
.contact-faq {
    background: var(--champagne-mist);
    padding: var(--section-vertical-padding) var(--desktop-side-padding) var(--section-vertical-padding) 100px;
}

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

.faq-item {
    border-bottom: 1px solid var(--glass-border);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--pitch-black);
}

.faq-question svg {
    width: 20px; height: 20px;
    color: var(--tan);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

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

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--charcoal);
    line-height: 1.75;
}

/* === ESPACE CLIENT === */
.espace-client-main {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--pitch-black) 100%);
    min-height: 100vh;
    padding: 140px var(--desktop-side-padding) var(--section-vertical-padding) 100px;
}

.espace-client-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.login-box {
    background: var(--ivory);
    padding: 3rem;
    max-width: 480px;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-icon {
    width: 72px; height: 72px;
    margin: 0 auto 1.5rem;
    background: var(--tan-subtle);
    border: 2px solid var(--tan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-icon svg {
    width: 36px; height: 36px;
    color: var(--tan);
}

.login-header h1 {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--pitch-black);
    margin-bottom: 0.5rem;
}

.login-header p {
    color: var(--charcoal);
    font-size: 0.95rem;
}

.login-form .form-group {
    margin-bottom: 1.25rem;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--charcoal);
    cursor: pointer;
}

.forgot-password {
    font-size: 0.85rem;
    color: var(--tan);
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

.login-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.login-footer p {
    font-size: 0.85rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.login-footer a {
    color: var(--tan);
}

/* Espace Features */
.espace-features {
    color: var(--ivory);
}

.espace-features h2 {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem;
    background: rgba(255, 255, 240, 0.03);
    border: 1px solid rgba(212, 183, 142, 0.15);
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: rgba(212, 183, 142, 0.4);
}

.feature-icon {
    width: 48px; height: 48px;
    background: rgba(212, 183, 142, 0.1);
    border: 1px solid rgba(212, 183, 142, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px; height: 24px;
    color: var(--tan);
}

.feature-content h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.feature-content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 240, 0.7);
    line-height: 1.5;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 183, 142, 0.2);
    font-size: 0.85rem;
    color: rgba(255, 255, 240, 0.6);
}

.security-badge svg {
    width: 20px; height: 20px;
    color: var(--tan);
}

/* === LEGAL PAGES === */
.legal-page {
    background: var(--ivory);
    padding: 140px var(--desktop-side-padding) var(--section-vertical-padding) 100px;
}

.legal-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.legal-header h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 500;
    color: var(--pitch-black);
    margin-bottom: 1rem;
}

.legal-updated {
    font-size: 0.9rem;
    color: var(--charcoal);
    opacity: 0.7;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--pitch-black);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--tan);
}

.legal-section h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--pitch-black);
    margin: 1.5rem 0 1rem;
}

.legal-section p {
    color: var(--charcoal);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section a {
    color: var(--tan);
}

.legal-info-block {
    background: var(--tan-subtle);
    border-left: 3px solid var(--tan);
    padding: 1.25rem 1.5rem;
    margin: 1rem 0;
}

.legal-info-block p {
    margin-bottom: 0.25rem;
}

.legal-info-block p:last-child {
    margin-bottom: 0;
}

.legal-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.legal-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
    line-height: 1.7;
}

.legal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    background: var(--tan);
}

/* Cookie Table */
.cookie-table {
    margin: 1.5rem 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border: 1px solid var(--glass-border);
}

.cookie-table th {
    background: var(--tan-subtle);
    font-weight: 600;
    color: var(--pitch-black);
    font-size: 0.85rem;
}

.cookie-table td {
    font-size: 0.9rem;
    color: var(--charcoal);
}

/* Reclamations Steps */
.reclamation-steps {
    margin: 2rem 0;
}

.reclamation-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.step-number-small {
    width: 40px; height: 40px;
    background: var(--tan);
    color: var(--pitch-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content-small h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--pitch-black);
    margin-bottom: 0.5rem;
}

.step-content-small p {
    margin: 0;
    font-size: 0.9rem;
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
    .vision-content { grid-template-columns: 1fr 380px; gap: 3rem; }
    .fondateur-block { grid-template-columns: 350px 1fr; gap: 3rem; }
    .engagements-grid { grid-template-columns: repeat(2, 1fr); }
    .articles-grid { grid-template-columns: 1fr 1fr; }
    .article-featured { grid-column: span 2; }
}

@media (max-width: 1024px) {
    .page-hero { padding: 100px 4rem 60px 80px; min-height: 50vh; }
    .expertises-hero { padding: 100px 4rem 60px 80px; }
    
    .vision-content { grid-template-columns: 1fr; }
    .vision-image { position: relative; top: 0; height: 400px; order: -1; }
    .vision-values { grid-template-columns: 1fr 1fr 1fr; }
    
    .cabinet-equipe,
    .cabinet-methode,
    .cabinet-engagements { padding: 6rem 4rem 6rem 80px; }
    
    .fondateur-block { grid-template-columns: 1fr; }
    .fondateur-image { min-height: 400px; }
    
    .engagements-grid { grid-template-columns: repeat(2, 1fr); }
    
    .journal-articles,
    .journal-newsletter { padding: 6rem 4rem 6rem 80px; }
    
    .articles-grid { grid-template-columns: 1fr; }
    .article-featured { grid-column: span 1; flex-direction: column; }
    .article-featured .article-image,
    .article-featured .article-content { width: 100%; }
    
    .contact-main { padding: 120px 4rem 6rem 80px; }
    .contact-container { grid-template-columns: 1fr; gap: 3rem; }
    
    .contact-faq { padding: 6rem 4rem 6rem 80px; }
    
    .espace-client-main { padding: 120px 4rem 6rem 80px; }
    .espace-client-container { grid-template-columns: 1fr; gap: 3rem; }
    .login-box { max-width: 100%; margin: 0 auto; }
    
    .legal-page { padding: 120px 4rem 6rem 80px; }
}

@media (max-width: 768px) {
    .page-hero { padding: 90px 1rem 50px 40px; min-height: 45vh; }
    .page-hero h1 { font-size: 1.8rem; }
    .expertises-hero { padding: 90px 1rem 50px 40px; }
    .expertises-hero h1 { font-size: 1.8rem; }
    
    .cabinet-vision { padding: 5rem 1rem 5rem 40px; }
    .vision-values { grid-template-columns: 1fr; gap: 1rem; }
    .vision-image { height: 300px; }
    
    .cabinet-equipe,
    .cabinet-methode { padding: 5rem 1rem 5rem 40px; }
    .fondateur-content { padding: 2rem; }
    .fondateur-name { font-size: 1.5rem; }
    .fondateur-credentials { flex-wrap: wrap; gap: 1.5rem; }
    
    .cabinet-engagements { padding: 5rem 1rem 5rem 40px; }
    .engagements-grid { grid-template-columns: 1fr; }
    
    .journal-articles,
    .journal-newsletter { padding: 5rem 1rem 5rem 40px; }
    .journal-filters { gap: 0.5rem; }
    .filter-btn { padding: 0.5rem 1rem; font-size: 0.75rem; }
    
    .newsletter-input-group { flex-direction: column; }
    
    .contact-main { padding: 100px 1rem 5rem 40px; }
    .contact-info h1 { font-size: 1.8rem; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 1.5rem; }
    
    .contact-faq { padding: 5rem 1rem 5rem 40px; }
    .faq-question span { font-size: 1rem; }
    
    .espace-client-main { padding: 100px 1rem 5rem 40px; }
    .login-box { padding: 2rem; }
    .login-header h1 { font-size: 1.5rem; }
    .form-options { flex-direction: column; align-items: flex-start; gap: 1rem; }
    
    .legal-page { padding: 100px 1rem 5rem 40px; }
    .legal-header h1 { font-size: 1.8rem; }
    .legal-section h2 { font-size: 1.2rem; }
    
    .reclamation-step { flex-direction: column; gap: 1rem; }
}

@media (max-width: 500px) {
    .page-hero { padding: 80px 1rem 40px 28px; }
    .page-hero h1 { font-size: 1.5rem; }
    .expertises-hero { padding: 80px 1rem 40px 28px; }
    .expertises-hero h1 { font-size: 1.5rem; }
    
    .cabinet-vision,
    .cabinet-equipe,
    .cabinet-methode,
    .cabinet-engagements { padding: 4rem 1rem 4rem 28px; }
    
    .fondateur-image { min-height: 300px; }
    .fondateur-content { padding: 1.5rem; }
    
    .journal-articles,
    .journal-newsletter { padding: 4rem 1rem 4rem 28px; }
    
    .contact-main { padding: 90px 1rem 4rem 28px; }
    .contact-faq { padding: 4rem 1rem 4rem 28px; }
    
    .espace-client-main { padding: 90px 1rem 4rem 28px; }
    .login-box { padding: 1.5rem; }
    
    .legal-page { padding: 90px 1rem 4rem 28px; }
    .legal-header { margin-bottom: 3rem; }
    .legal-section { margin-bottom: 2rem; }
    
    .cookie-table th,
    .cookie-table td { padding: 0.5rem; font-size: 0.8rem; }
}

/* ===================================
   NOUVEAU CSS — Cabinet V2 Updates
   =================================== */

/* === VISION SECTION V2 — Nouvelle mise en page dynamique === */
.vision-header-row {
    margin-bottom: 3rem;
}

.vision-content-v2 {
    max-width: 1400px;
    margin: 0 auto;
}

.vision-main-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.vision-statement .vision-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--pitch-black);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.vision-statement p {
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

.vision-image-v2 {
    height: 450px;
    overflow: hidden;
    position: relative;
}

.vision-image-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vision-solutions-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    padding-top: 3rem;
    border-top: 1px solid var(--glass-border);
}

.vision-solutions-text h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--pitch-black);
    margin-bottom: 1.5rem;
}

.vision-solutions-text p {
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

.vision-solutions-text .btn-cta {
    margin-top: 0.5rem;
}

.vision-values-v2 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-item-v2 {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--tan-subtle);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.value-item-v2:hover {
    border-color: var(--tan);
}

.value-icon-v2 {
    width: 52px;
    height: 52px;
    background: var(--ivory);
    border: 1px solid var(--tan);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon-v2 svg {
    width: 26px;
    height: 26px;
    color: var(--tan);
}

.value-item-v2 h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--pitch-black);
    margin-bottom: 0.3rem;
}

.value-item-v2 p {
    font-size: 0.9rem;
    color: var(--charcoal);
    line-height: 1.6;
    margin: 0;
}

/* === CREDENTIAL LABEL COMPACT (réduction interligne desktop) === */
.credential-label-compact {
    line-height: 1.2;
    display: block;
    margin-top: 0.35rem;
}

/* === ENGAGEMENTS V2 — Modernisé et dynamique === */
.cabinet-engagements-v2 {
    background: var(--ivory);
    padding: var(--section-vertical-padding) var(--desktop-side-padding) var(--section-vertical-padding) 100px;
}

.engagements-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.engagement-card-v2 {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.engagement-card-v2.visible {
    opacity: 1;
    transform: translateY(0);
}

.engagement-card-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--tan);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.engagement-card-v2:hover::before {
    transform: scaleX(1);
}

.engagement-card-v2:hover {
    border-color: var(--tan);
    box-shadow: 0 20px 50px rgba(30, 22, 11, 0.1);
    transform: translateY(-4px);
}

.engagement-card-v2-number {
    font-size: 2.5rem;
    font-weight: 200;
    color: var(--tan);
    opacity: 0.35;
    line-height: 1;
    margin-bottom: 1rem;
}

.engagement-icon-v2 {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: var(--tan-subtle);
    border: 1px solid var(--tan);
    display: flex;
    align-items: center;
    justify-content: center;
}

.engagement-icon-v2 svg {
    width: 30px;
    height: 30px;
    color: var(--tan);
}

.engagement-card-v2 h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--pitch-black);
    margin-bottom: 1rem;
}

.engagement-card-v2 p {
    font-size: 0.9rem;
    color: var(--charcoal);
    line-height: 1.7;
}

/* === EXPERTISE SOLUTIONS CTA (index page) === */
.expertise-solutions-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--tan);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.4s ease;
    margin-bottom: 1rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(212, 183, 142, 0.3);
}

.expertise-solutions-cta:hover {
    color: var(--pitch-black);
    border-bottom-color: var(--pitch-black);
}

/* === RESPONSIVE — Cabinet V2 === */
@media (max-width: 1200px) {
    .vision-main-block { gap: 3rem; }
    .vision-solutions-block { gap: 3rem; }
    .engagements-grid-v2 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
    .vision-main-block { grid-template-columns: 1fr; }
    .vision-image-v2 { height: 350px; order: -1; }
    .vision-solutions-block { grid-template-columns: 1fr; }
    .engagements-grid-v2 { grid-template-columns: repeat(2, 1fr); }
    .cabinet-engagements-v2 { padding: 6rem 4rem 6rem 80px; }
}

@media (max-width: 768px) {
    .vision-image-v2 { height: 280px; }
    .vision-solutions-block { gap: 2rem; padding-top: 2rem; }
    .vision-solutions-text h3 { font-size: 1.3rem; }
    .engagements-grid-v2 { grid-template-columns: 1fr; }
    .cabinet-engagements-v2 { padding: 5rem 1rem 5rem 40px; }
}

@media (max-width: 500px) {
    .cabinet-engagements-v2 { padding: 4rem 1rem 4rem 28px; }
    .engagement-card-v2 { padding: 2rem 1.5rem 1.5rem; }
}

/* ===================================
   ENJEUX PAGE STYLES
   =================================== */

/* Sticky Navigation for Enjeux */
.enjeux-sticky-nav {
    position: sticky;
    top: 0;
    z-index: 90;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.enjeux-sticky-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    white-space: nowrap;
}

.enjeux-sticky-link {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--charcoal);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.enjeux-sticky-link:hover {
    color: var(--pitch-black);
    border-color: var(--glass-border);
}

.enjeux-sticky-link.active {
    background: var(--tan);
    color: var(--pitch-black);
    border-color: var(--tan);
}

/* Enjeux Section Blocks */
.enjeux-section {
    padding: var(--section-vertical-padding) var(--desktop-side-padding) var(--section-vertical-padding) 100px;
    background: var(--ivory);
}

.enjeux-section-dark {
    background: var(--charcoal);
}

.enjeux-section-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 4rem;
    align-items: start;
}

.enjeux-section-reverse .enjeux-section-inner {
    grid-template-columns: 500px 1fr;
}

.enjeux-section-reverse .enjeux-section-text {
    order: 2;
}

.enjeux-section-reverse .enjeux-section-image {
    order: 1;
}

.enjeux-section-icon {
    width: 56px;
    height: 56px;
    background: var(--tan-subtle);
    border: 1px solid rgba(212, 183, 142, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.enjeux-section-icon svg {
    width: 28px;
    height: 28px;
    color: var(--tan);
}

.enjeux-section-dark .enjeux-section-icon {
    background: rgba(212, 183, 142, 0.1);
}

.enjeux-section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--tan);
    background: var(--tan-subtle);
    border: 1px solid rgba(212, 183, 142, 0.3);
    padding: 0.35rem 1rem;
    margin-bottom: 1.5rem;
}

.enjeux-section h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 500;
    color: var(--pitch-black);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.enjeux-section-dark h2 {
    color: var(--ivory);
}

.enjeux-section-tagline {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--tan);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.enjeux-section-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 2rem;
}

.enjeux-section-dark .enjeux-section-intro {
    color: rgba(255, 255, 240, 0.8);
}

.enjeux-problematiques {
    margin-bottom: 2rem;
}

.enjeux-problematiques h3,
.enjeux-solutions h3,
.enjeux-cas-client h3 {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--tan);
    margin-bottom: 1rem;
}

.enjeux-problematiques ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.enjeux-problematiques li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    color: var(--charcoal);
    line-height: 1.6;
}

.enjeux-section-dark .enjeux-problematiques li {
    color: rgba(255, 255, 240, 0.75);
}

.enjeux-problematiques li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    background: var(--tan);
}

.enjeux-solutions {
    margin-bottom: 2rem;
}

.enjeux-solutions-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.solution-tag-link {
    display: inline-block;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-decoration: none;
    background: var(--tan-subtle);
    color: var(--pitch-black);
    border: 1px solid rgba(212, 183, 142, 0.3);
    transition: all 0.3s ease;
}

.solution-tag-link:hover {
    background: var(--tan);
    color: var(--pitch-black);
    border-color: var(--tan);
}

.enjeux-section-dark .solution-tag-link {
    background: rgba(212, 183, 142, 0.1);
    color: var(--ivory);
    border-color: rgba(212, 183, 142, 0.3);
}

.enjeux-section-dark .solution-tag-link:hover {
    background: var(--tan);
    color: var(--pitch-black);
}

.enjeux-cas-client {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(212, 183, 142, 0.08);
    border-left: 3px solid var(--tan);
}

.enjeux-cas-client p {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--charcoal);
    font-style: italic;
}

.enjeux-section-dark .enjeux-cas-client {
    background: rgba(212, 183, 142, 0.05);
}

.enjeux-section-dark .enjeux-cas-client p {
    color: rgba(255, 255, 240, 0.75);
}

.enjeux-section-image {
    position: sticky;
    top: 120px;
}

.enjeux-section-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

/* Enjeux Other Section */
.enjeux-other {
    padding: var(--section-vertical-padding) var(--desktop-side-padding);
    background: var(--ivory);
    text-align: center;
}

/* ===================================
   SOLUTIONS PAGE STYLES
   =================================== */

/* Sticky Nav Solutions */
.solutions-sticky-nav {
    position: sticky;
    top: 0;
    z-index: 90;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.solutions-sticky-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    white-space: nowrap;
}

.solutions-sticky-link {
    padding: 0.5rem 1rem;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--charcoal);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.solutions-sticky-link:hover {
    color: var(--pitch-black);
    border-color: var(--glass-border);
}

.solutions-sticky-link.active {
    background: var(--tan);
    color: var(--pitch-black);
    border-color: var(--tan);
}

.solutions-sticky-sep {
    color: var(--glass-border);
    font-weight: 200;
    padding: 0 0.3rem;
}

/* Solutions Category Header */
.solutions-category-header {
    padding: 5rem var(--desktop-side-padding) 3rem 100px;
    background: var(--ivory);
    text-align: center;
}

.solutions-category-header-dark {
    background: var(--charcoal);
}

.solutions-category-header-dark .section-title {
    color: var(--ivory);
}

.solutions-category-header-dark .section-subtitle {
    color: rgba(255, 255, 240, 0.7);
}

.solutions-cat-number {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--tan);
    background: var(--tan-subtle);
    border: 1px solid rgba(212, 183, 142, 0.3);
    padding: 0.35rem 1rem;
    margin-bottom: 1.5rem;
}

.solutions-category-header-dark .solutions-cat-number {
    background: rgba(212, 183, 142, 0.1);
}

/* Solution Block */
.solution-block {
    padding: 4rem var(--desktop-side-padding) 4rem 100px;
    background: var(--ivory);
    border-bottom: 1px solid var(--glass-border);
}

.solution-block-alt {
    background: rgba(247, 231, 206, 0.15);
}

.solution-block-inner {
    max-width: 900px;
    margin: 0 auto;
}

.solution-block-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.solution-block-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.solution-icon {
    width: 56px;
    height: 56px;
    background: var(--tan-subtle);
    border: 1px solid rgba(212, 183, 142, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.solution-icon svg {
    width: 28px;
    height: 28px;
    color: var(--tan);
}

.solution-block h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 500;
    color: var(--pitch-black);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.solution-tagline {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--tan);
    font-weight: 600;
    margin-bottom: 2rem;
}

.solution-objectif,
.solution-approche {
    margin-bottom: 2rem;
}

.solution-objectif h4,
.solution-approche h4,
.solution-vehicules h4 {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--tan);
    margin-bottom: 0.75rem;
}

.solution-objectif p,
.solution-approche p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--charcoal);
}

.solution-vehicules {
    margin-bottom: 2.5rem;
}

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

.vehicule-item {
    padding: 1.5rem;
    background: rgba(212, 183, 142, 0.08);
    border: 1px solid rgba(212, 183, 142, 0.15);
    transition: border-color 0.3s ease;
}

.vehicule-item:hover {
    border-color: var(--tan);
}

.vehicule-name {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--pitch-black);
    margin-bottom: 0.5rem;
}

.vehicule-item p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--charcoal);
    margin: 0;
}

/* ===================================
   RESPONSIVE - ENJEUX & SOLUTIONS
   =================================== */

@media (max-width: 1200px) {
    .enjeux-section-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .enjeux-section-reverse .enjeux-section-inner {
        grid-template-columns: 1fr;
    }
    
    .enjeux-section-reverse .enjeux-section-text,
    .enjeux-section-reverse .enjeux-section-image {
        order: unset;
    }
    
    .enjeux-section-image {
        position: relative;
        top: auto;
    }
    
    .enjeux-section-image img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .enjeux-section {
        padding: 4rem var(--mobile-side-padding);
    }
    
    .enjeux-sticky-inner {
        justify-content: flex-start;
        gap: 0.25rem;
        padding: 0.8rem 1rem;
    }
    
    .enjeux-sticky-link {
        padding: 0.5rem 0.8rem;
        font-size: 0.7rem;
    }
    
    .enjeux-section-image img {
        height: 280px;
    }
    
    .vehicules-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-block {
        padding: 3rem var(--mobile-side-padding);
    }
    
    .solutions-category-header {
        padding: 3rem var(--mobile-side-padding) 2rem;
    }
    
    .solutions-sticky-inner {
        justify-content: flex-start;
        gap: 0.2rem;
        padding: 0.8rem 1rem;
    }
    
    .solutions-sticky-link {
        padding: 0.4rem 0.7rem;
        font-size: 0.7rem;
    }
    
    .enjeux-other {
        padding: 4rem var(--mobile-side-padding);
    }
}

/* ===================================
   TÉMOIGNAGES SECTION (Index)
   =================================== */

.temoignages {
    background: var(--charcoal);
    padding: var(--section-vertical-padding) var(--desktop-side-padding) var(--section-vertical-padding) 100px;
}

.temoignages .section-label {
    background: rgba(212, 183, 142, 0.15);
    border-color: var(--tan);
    color: var(--tan);
}

.temoignages .section-title {
    color: var(--ivory);
}

.temoignages .section-subtitle {
    color: rgba(255, 255, 240, 0.7);
}

.temoignages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.temoignage-card {
    background: rgba(255, 255, 240, 0.04);
    border: 1px solid rgba(212, 183, 142, 0.15);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out, border-color 0.3s ease;
}

.temoignage-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.temoignage-card:hover {
    border-color: var(--tan);
}

.temoignage-stars {
    color: var(--tan);
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}

.temoignage-text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 240, 0.85);
    font-style: italic;
    flex: 1;
    margin-bottom: 2rem;
}

.temoignage-author {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    border-top: 1px solid rgba(212, 183, 142, 0.15);
    padding-top: 1.25rem;
}

.temoignage-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ivory);
}

.temoignage-role {
    font-size: 0.8rem;
    color: var(--tan);
    letter-spacing: 0.05em;
}

/* Enjeux CTA on index page */
.enjeux-cta {
    text-align: center;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .temoignages {
        padding: 4rem var(--mobile-side-padding);
    }
    
    .temoignages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .temoignage-card {
        padding: 1.5rem;
    }
}

/* ===================================
   CORRECTIONS INDEX — Demande Ro
   =================================== */

/* Dropdown menus — auto-width so items fit on one line */

/* Footer — second h4 in same column */
.footer-section h4 + h4 {
    margin-top: 1.5rem;
}

/* ===================================
   WIDGET RGPD / COOKIES
   =================================== */
.rgpd-banner {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    max-width: 360px;
    background: var(--ivory);
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 40px rgba(30, 22, 11, 0.15);
    padding: 1.25rem 1.5rem;
    z-index: 9999;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.rgpd-banner.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.rgpd-banner p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.rgpd-banner a {
    color: var(--pitch-black);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.rgpd-banner a:hover {
    color: var(--tan);
}

.rgpd-btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: var(--tan);
    color: var(--pitch-black);
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.rgpd-btn:hover {
    background: var(--charcoal);
    color: var(--ivory);
}

@media (max-width: 500px) {
    .rgpd-banner {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        max-width: none;
    }
}

.footer-article-link {
    font-size: 0.8rem !important;
    opacity: 0.7;
    line-height: 1.5 !important;
}

/* Section titles — prevent orphan words */
.section-title {
    text-wrap: balance;
}

.section-subtitle {
    text-wrap: balance;
}

/* Expertise solutions CTA line removal */
.expertise-solutions-cta {
    display: none;
}

/* ===================================
   HEADER UPDATES — Merged Cabinet + New CTA
   =================================== */

/* Mobile nav category labels */
.mobile-nav-cat {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--charcoal);
    padding: 0.5rem 0 0.1rem;
    display: block;
    opacity: 0.5;
}

.mobile-nav-espace {
    opacity: 0.5;
}

.mobile-nav-cta {
    display: block;
    background: var(--tan);
    color: var(--pitch-black) !important;
    padding: 0.8rem 2rem !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    margin-top: 0.8rem;
    width: 100%;
    max-width: 340px;
}

/* ===================================
   SOLUTIONS SHOWCASE SECTION (Index)
   =================================== */

.solutions-showcase {
    background: var(--charcoal);
    padding: var(--section-vertical-padding) var(--desktop-side-padding) var(--section-vertical-padding) 100px;
}

.solutions-showcase .section-label {
    background: rgba(212, 183, 142, 0.15);
    border-color: var(--tan);
    color: var(--tan);
}

.solutions-showcase .section-title {
    color: var(--ivory);
}

.solutions-showcase .section-subtitle {
    color: rgba(255, 255, 240, 0.7);
}

.solutions-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.solutions-showcase-category {
    border: 1px solid rgba(212, 183, 142, 0.12);
    padding: 2rem 2rem 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, border-color 0.3s ease;
}

.solutions-showcase-category.visible {
    opacity: 1;
    transform: translateY(0);
}

.solutions-showcase-category:hover {
    border-color: rgba(212, 183, 142, 0.35);
}

.showcase-cat-header {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(212, 183, 142, 0.1);
}

.showcase-cat-bar {
    display: block;
    width: 3px;
    height: 24px;
    background: var(--tan);
    opacity: 0.5;
    border-radius: 1px;
}

.showcase-cat-header h3 {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--ivory);
    letter-spacing: 0.05em;
    margin-left: 0.8rem;
}

.showcase-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Solution item — interactive hover reveal */
.showcase-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    text-decoration: none;
    color: rgba(255, 255, 240, 0.75);
    border: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.showcase-item:hover {
    color: var(--ivory);
    border-color: rgba(212, 183, 142, 0.2);
    background: rgba(212, 183, 142, 0.06);
    padding-bottom: 1rem;
}

.showcase-item svg {
    width: 22px;
    height: 22px;
    min-width: 22px;
    margin-top: 1px;
    color: var(--tan);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.showcase-item:hover svg {
    opacity: 1;
}

.showcase-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.showcase-item-title {
    font-size: 0.88rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    transition: color 0.3s ease;
}

.showcase-item:hover .showcase-item-title {
    color: var(--ivory);
}

.showcase-item-desc {
    font-size: 0.78rem;
    line-height: 1.6;
    color: rgba(255, 255, 240, 0.45);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.4s ease-out 0.1s,
                margin-top 0.4s ease;
}

.showcase-item:hover .showcase-item-desc {
    max-height: 80px;
    opacity: 1;
    margin-top: 0.5rem;
}

.showcase-item-arrow {
    font-size: 0.85rem;
    color: var(--tan);
    opacity: 0;
    transform: translateX(-5px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    margin-top: 2px;
}

.showcase-item:hover .showcase-item-arrow {
    opacity: 1;
    transform: translateX(0);
}

.solutions-showcase-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* Stagger animation for categories */
.solutions-showcase-category[data-cat="0"] { transition-delay: 0s; }
.solutions-showcase-category[data-cat="1"] { transition-delay: 0.15s; }
.solutions-showcase-category[data-cat="2"] { transition-delay: 0.3s; }

/* ===================================
   SECTION TRANSITION (Solutions → Méthode)
   =================================== */

.section-transition {
    background: var(--ivory);
    display: flex;
    justify-content: center;
    padding: 0;
    position: relative;
}

.transition-line {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, var(--charcoal), var(--tan) 40%, var(--tan) 60%, transparent);
    opacity: 0.4;
}

@media (max-width: 768px) {
    .solutions-showcase {
        padding: 4rem 1rem 4rem 40px;
    }
    
    .solutions-showcase-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .solutions-showcase-category {
        padding: 1.5rem;
    }
    
    .showcase-item-desc {
        max-height: none;
        opacity: 1;
        margin-top: 0.4rem;
    }
    
    .showcase-item-arrow {
        opacity: 1;
        transform: translateX(0);
    }
    
    .transition-line {
        height: 50px;
    }
}


/* ==========================================
   STYLES MIGRES DEPUIS CABINET
   ========================================== */
/* === VISION — 6 blocs graphiques en layout organique === */
        .cabinet-vision-compact {
            background: var(--ivory);
            padding: var(--section-vertical-padding) var(--desktop-side-padding) var(--section-vertical-padding) 100px;
        }

        .vision-compact-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .vision-compact-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .vision-compact-header .section-title {
            margin-bottom: 1.5rem;
        }

        .vision-compact-intro {
            font-size: 1.05rem;
            line-height: 1.8;
            color: var(--charcoal);
            max-width: 800px;
            margin: 0 auto 3.5rem;
            text-align: center;
        }

        /* MODIF: Grille 4 blocs — layout 2×2, cartes carrées avec flip 3D */
        .vision-engagement-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.8rem;
            max-width: 1100px;
            margin: 0 auto;
        }

        /* Conteneur flip — perspective 3D */
        .vision-flip-card {
            perspective: 800px;
            aspect-ratio: 1 / 1;
        }

        .vision-flip-inner {
            position: relative;
            width: 100%;
            height: 100%;
            transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
            transform-style: preserve-3d;
        }

        .vision-flip-card:hover .vision-flip-inner {
            transform: rotateY(180deg);
        }

        /* Faces avant / arrière */
        .vision-flip-front,
        .vision-flip-back {
            position: absolute;
            inset: 0;
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(212, 183, 142, 0.2);
            border-radius: 12px;
            padding: 2rem 1.5rem;
            transition: border-color 0.3s ease;
        }

        .vision-flip-card:hover .vision-flip-front,
        .vision-flip-card:hover .vision-flip-back {
            border-color: var(--tan);
        }

        /* Face avant — icône + titre */
        .vision-flip-front {
            background: var(--ivory);
        }

        .vision-flip-front .vision-value-icon {
            width: 48px;
            height: 48px;
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .vision-flip-front .vision-value-icon svg {
            width: 36px;
            height: 36px;
            color: var(--tan);
            stroke-width: 1.3;
        }

        .vision-flip-front h3 {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--pitch-black);
            text-align: center;
            letter-spacing: 0.02em;
            line-height: 1.4;
        }

        /* Face arrière — description */
        .vision-flip-back {
            background: var(--charcoal);
            transform: rotateY(180deg);
            padding: 1.8rem 1.6rem;
        }

        .vision-flip-back p {
            font-size: 0.88rem;
            color: rgba(255, 255, 240, 0.85);
            line-height: 1.7;
            text-align: center;
        }


        /* === BANDEAU PARTENAIRES === */
        .cabinet-partenaires {
            background: var(--ivory);
            padding: 5rem var(--desktop-side-padding) 6.5rem 100px;
            border-top: 1px solid var(--glass-border);
            border-bottom: 1px solid var(--glass-border);
        }

        .cabinet-partenaires .section-label { margin-bottom: 0.5rem; }

        .partenaires-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 3rem;
            font-size: 1.05rem;
            color: var(--charcoal);
            line-height: 1.8;
        }

        /* === TYPES DE PARTENAIRES — Tags minimalistes === */
        .partenaires-types {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
            max-width: 900px;
            margin: 0 auto 1.5rem;
        }

        .partenaire-type {
            font-size: 0.78rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--charcoal);
            font-weight: 400;
            padding: 0.5rem 1.3rem;
            border: 1px solid rgba(212, 183, 142, 0.3);
            border-radius: 100px;
            white-space: nowrap;
            transition: all 0.3s ease;
        }

        .partenaire-type:hover {
            border-color: var(--tan);
            background: rgba(212, 183, 142, 0.06);
            color: var(--pitch-black);
        }


        /* === BANDEAU LOGOS (+30% espace vertical) === */
        .partenaires-track-cabinet {
            overflow: hidden;
            position: relative;
            margin: 5.4rem -3rem; /* MODIF: +20% (4.5rem → 5.4rem) */
        }

        .partenaires-track-cabinet::before,
        .partenaires-track-cabinet::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 150px;
            z-index: 2;
            pointer-events: none;
        }

        .partenaires-track-cabinet::before {
            left: 0;
            background: linear-gradient(to right, var(--ivory) 0%, transparent 100%);
        }

        .partenaires-track-cabinet::after {
            right: 0;
            background: linear-gradient(to left, var(--ivory) 0%, transparent 100%);
        }

        .partenaires-scroll-cabinet {
            display: flex;
            gap: 4rem;
            width: max-content;
            padding: 0 3rem;
            animation: scroll-partenaires 40s linear infinite;
        }

        @keyframes scroll-partenaires {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .partenaires-scroll-cabinet:hover {
            animation-play-state: paused;
        }

        .partenaire-logo-item {
            width: 120px;
            height: 50px;
            opacity: 0.6;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .partenaire-logo-item img {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease, opacity 0.3s ease;
        }

        .partenaire-logo-item:hover { opacity: 1; }
        .partenaire-logo-item:hover img { filter: grayscale(0%); }

        .partenaires-cta {
            text-align: center;
            margin-top: 4.5rem; /* MODIF: +50% (3rem → 4.5rem) */
            margin-bottom: 1.2rem; /* MODIF: +20% espace en dessous */
        }

        /* === CTA ÉQUIPE === */
        .equipe-cta {
            text-align: center;
            margin-top: 3rem;
        }

        .equipe-cta .btn-cta {
            display: inline-flex;
            width: auto;
        }


        /* === FONDATEUR — CREDENTIALS & IMAGE === */
        .fondateur-credentials {
            border-bottom: none !important; /* MODIF: Supprimer la ligne du bas */
            margin-bottom: 0 !important;
            padding-bottom: 0.5rem !important; /* MODIF: Réduire l'espace intérieur bas */
        }

        .fondateur-credentials .credential-item {
            line-height: 1.2;
        }

        .fondateur-credentials .credential-number {
            margin-bottom: 0.25rem;
        }

        .fondateur-credentials .credential-label {
            line-height: 1.3;
        }

        /* MODIF: Photo portrait 300px * 1.2 = 360px, hauteur auto pour coller au contenu */
        .fondateur-block {
            grid-template-columns: 360px 1fr;
        }

        .fondateur-image {
            min-height: auto;
            height: auto;
            align-self: stretch;
        }

        .fondateur-content {
            padding-bottom: 2rem !important;
        }

        /* === LIGNE DE SÉPARATION === */
        .section-separator {
            width: 100%;
            height: 1px;
            background: var(--glass-border);
            border: none;
            margin: 0;
        }

        /* === MÉTHODE — Texte plus grand + espacement aéré === */
        .cabinet-methode .step-content p {
            font-size: 1.05rem;
        }

        /* +10% d'espace entre les étapes (3rem → 3.3rem) */
        .cabinet-methode .methode-step {
            margin-bottom: 3.3rem;
        }

        .cabinet-methode .methode-step:last-child {
            margin-bottom: 0;
        }


        /* === RESPONSIVE === */
        @media (max-width: 1200px) {
            .cabinet-partenaires { padding: 4rem 4rem 5rem 80px; }
            .cabinet-vision-compact { padding: 6rem 4rem 6rem 80px; }
            .fondateur-block { grid-template-columns: 300px 1fr; }
        }

        @media (max-width: 768px) {
            .cabinet-partenaires { padding: 4rem 1rem 4rem 40px; }
            .cabinet-vision-compact { padding: 5rem 1rem 5rem 40px; }
            .vision-engagement-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
            .fondateur-block { grid-template-columns: 1fr; }
            .fondateur-image { min-height: 300px; height: 300px; }
            .partenaires-track-cabinet { margin: 3rem -2rem; }
            .partenaires-types { gap: 0.6rem; }
            .partenaire-type { font-size: 0.68rem; padding: 0.4rem 1rem; }
        }

        @media (max-width: 480px) {
            .cabinet-partenaires { padding: 4rem 1rem 4rem 28px; }
            .cabinet-vision-compact { padding: 4rem 1rem 4rem 28px; }
            .vision-engagement-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
        }

        /* ===================================
           SCROLL ANCHOR OFFSET — Header fixe
           Compense le header fixe (~100px) pour ancrage correct
           =================================== */
        #partenaires {
            scroll-margin-top: 50px; /* 5rem padding → +50px pour égaler vision-valeurs */
        }
        
        #methode {
            scroll-margin-top: 30px; /* 6rem padding → +30px pour égaler vision-valeurs */
        }

/* ==========================================
   STYLES MIGRES DEPUIS CONTACT
   ========================================== */
/* ===================================
           CONTACT PAGE — Overrides & Additions
           =================================== */

        /* --- Mini Hero compact --- */
        .contact-hero {
            position: relative;
            min-height: 35vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            padding: 120px 100px 40px 100px;
        }

        .contact-hero .page-hero-background {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            z-index: 0;
        }

        .contact-hero .page-hero-background img {
            width: 100%; height: 100%;
            object-fit: cover;
        }

        .contact-hero .page-hero-overlay {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: linear-gradient(180deg, rgba(30, 22, 11, 0.75) 0%, rgba(30, 22, 11, 0.55) 100%);
            z-index: 1;
        }

        .contact-hero .page-hero-content {
            position: relative;
            z-index: 2;
            max-width: 700px;
            text-align: center;
            padding: 1rem 2rem;
        }

        .contact-hero h1 {
            font-size: clamp(1.8rem, 4vw, 2.6rem);
            font-weight: 500;
            margin-bottom: 0.8rem;
            color: var(--ivory);
            line-height: 1.2;
        }

        .contact-hero .page-hero-subtitle {
            font-size: clamp(0.9rem, 1.5vw, 1.1rem);
            font-weight: 300;
            line-height: 1.7;
            color: rgba(255, 255, 240, 0.8);
            max-width: 550px;
            margin: 0 auto;
        }

        /* --- Section principale compacte --- */
        .contact-main {
            padding: 3rem var(--desktop-side-padding) 4rem 100px;
        }

        /* --- Partie gauche : infos améliorées --- */
        .contact-info-header {
            margin-bottom: 2rem;
        }

        .contact-info-header h2 {
            font-size: 1.6rem;
            font-weight: 500;
            color: var(--pitch-black);
            margin-bottom: 0.8rem;
            line-height: 1.3;
        }

        .contact-info-header p {
            font-size: 1rem;
            color: var(--charcoal);
            line-height: 1.75;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            margin-bottom: 0;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .contact-icon {
            width: 44px; height: 44px;
            background: var(--tan-subtle);
            border: 1px solid rgba(212, 183, 142, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            border-radius: 0;
        }

        .contact-icon svg {
            width: 20px; height: 20px;
            color: var(--tan);
        }

        .contact-text {
            display: flex;
            flex-direction: column;
        }

        .contact-label {
            font-size: 0.7rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--charcoal);
            opacity: 0.6;
            margin-bottom: 0.15rem;
        }

        .contact-text a,
        .contact-text span {
            color: var(--pitch-black);
            font-size: 0.95rem;
            text-decoration: none;
            font-weight: 400;
        }

        .contact-text a:hover {
            color: var(--tan);
        }

        /* --- Formulaire --- */
        .contact-form h2 {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
        }

        .form-group {
            margin-bottom: 1.2rem;
        }

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

        /* --- Reassurance badges sous le bouton --- */
        .form-reassurance {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 1.5rem;
            flex-wrap: wrap;
        }

        .form-reassurance-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.8rem;
            color: var(--charcoal);
            opacity: 0.8;
        }

        .form-reassurance-item svg {
            width: 16px; height: 16px;
            color: var(--tan);
            flex-shrink: 0;
        }

        /* --- FAQ sur fond charcoal --- */
        .contact-faq {
            background: var(--charcoal);
            padding: var(--section-vertical-padding) var(--desktop-side-padding) var(--section-vertical-padding) 100px;
        }

        .contact-faq .section-label {
            background: rgba(212, 183, 142, 0.15);
            border-color: var(--tan);
            color: var(--tan);
        }

        .contact-faq .section-title {
            color: var(--ivory);
        }

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

        .faq-item {
            border-bottom: 1px solid rgba(212, 183, 142, 0.15);
        }

        .faq-question span {
            color: var(--ivory);
        }

        .faq-question svg {
            color: var(--tan);
        }

        /* MODIF: Réponses FAQ alignées à gauche */
        .faq-answer p {
            color: rgba(255, 255, 240, 0.75);
            text-align: left;
            line-height: 1.8;
        }

        /* --- Responsive overrides --- */
        @media (max-width: 1024px) {
            .contact-hero {
                padding: 100px 4rem 30px 80px;
                min-height: 30vh;
            }
            .contact-main {
                padding: 2.5rem 4rem 4rem 80px;
            }
            .contact-faq {
                padding: 6rem 4rem 6rem 80px;
            }
        }

        @media (max-width: 768px) {
            .contact-hero {
                padding: 90px 1rem 25px 40px;
                min-height: 28vh;
            }
            .contact-main {
                padding: 2rem 1rem 3rem 40px;
            }
            .contact-faq {
                padding: 5rem 1rem 5rem 40px;
            }
            .form-reassurance {
                flex-direction: column;
                align-items: center;
                gap: 0.8rem;
            }
        }

        @media (max-width: 500px) {
            .contact-hero {
                padding: 80px 1rem 20px 28px;
                min-height: 25vh;
            }
            .contact-main {
                padding: 1.5rem 1rem 3rem 28px;
            }
            .contact-faq {
                padding: 4rem 1rem 4rem 28px;
            }
        }

/* ==========================================
   STYLES MIGRES DEPUIS ENJEUX
   ========================================== */
/* ===================================
           SCROLL ANCHOR OFFSET — Header fixe
           Compense le header fixe (~100px) pour ancrage correct
           =================================== */
        #dirigeants-entrepreneurs,
        #cadres-hauts-revenus,
        #familles-transition,
        #professions-liberales,
        #sportifs-artistes {
            scroll-margin-top: 140px;
        }

/* ==========================================
   UTILITAIRES - TAILLES ICONES
   ========================================== */
.icon-sm { width: 16px; height: 16px; flex-shrink: 0; }
.icon-md { width: 24px; height: 24px; flex-shrink: 0; }
.icon-lg { width: 48px; height: 48px; flex-shrink: 0; }

/* ==========================================
   SOCIAL PROOF - SOUS-LABEL STAT
   ========================================== */
.stat-sub {
    font-size: 0.7rem;
    color: var(--charcoal);
    opacity: 0.65;
    font-weight: 300;
    margin-top: 0.2rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ==========================================
   STYLES MIGRES DEPUIS ARTICLES
   ========================================== */
/* === ARTICLE PAGE STYLES === */
        .article-hero {
            position: relative;
            min-height: 60vh;
            display: flex;
            align-items: flex-end;
            overflow: hidden;
            padding: 0;
        }

        .article-hero-background {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            z-index: 0;
        }

        .article-hero-background img {
            width: 100%; height: 100%;
            object-fit: cover;
        }

        .article-hero-overlay {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: linear-gradient(180deg, rgba(30, 22, 11, 0.3) 0%, rgba(30, 22, 11, 0.85) 100%);
            z-index: 1;
        }

        .article-hero-content {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 850px;
            padding: 0 var(--desktop-side-padding) 4rem 100px;
        }

        .article-hero-category {
            display: inline-block;
            padding: 0.4rem 1rem;
            background: var(--tan);
            color: var(--pitch-black);
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
        }

        .article-hero-content h1 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 500;
            line-height: 1.2;
            color: var(--ivory);
            margin-bottom: 1.5rem;
            text-wrap: balance;
        }

        .article-hero-meta {
            display: flex;
            gap: 2rem;
            align-items: center;
            color: rgba(255, 255, 240, 0.7);
            font-size: 0.9rem;
        }

        .article-hero-meta span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .article-hero-meta svg {
            width: 16px; height: 16px;
            color: var(--tan);
        }

        /* Article Body */
        .article-body {
            background: var(--ivory);
            padding: 5rem var(--desktop-side-padding) var(--section-vertical-padding) 100px;
        }

        .article-body-inner {
            max-width: 780px;
            margin: 0 auto;
        }

        .article-intro {
            font-size: 1.2rem;
            line-height: 1.9;
            color: var(--pitch-black);
            font-weight: 400;
            margin-bottom: 3rem;
            padding-bottom: 3rem;
            border-bottom: 1px solid var(--glass-border);
        }

        .article-section {
            margin-bottom: 3rem;
        }

        .article-section h2 {
            font-size: 1.5rem;
            font-weight: 500;
            color: var(--pitch-black);
            margin-bottom: 1.5rem;
            line-height: 1.3;
            padding-left: 1.2rem;
            border-left: 3px solid var(--tan);
        }

        .article-section p {
            font-size: 1.05rem;
            line-height: 1.9;
            color: var(--charcoal);
            margin-bottom: 1.25rem;
        }

        /* Back link */
        .article-back {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            color: var(--charcoal);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            transition: color 0.3s ease;
            margin-bottom: 3rem;
        }

        .article-back:hover {
            color: var(--tan);
        }

        .article-back svg {
            width: 18px; height: 18px;
            transition: transform 0.3s ease;
        }

        .article-back:hover svg {
            transform: translateX(-4px);
        }

        /* Author block */
        .article-author {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            padding: 2rem;
            background: var(--tan-subtle);
            border: 1px solid var(--glass-border);
            margin-top: 4rem;
        }

        .article-author-avatar {
            width: 64px; height: 64px;
            background: var(--tan);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .article-author-avatar svg {
            width: 32px; height: 32px;
            color: var(--pitch-black);
        }

        .article-author-info {
            flex: 1;
        }

        .article-author-name {
            font-size: 1rem;
            font-weight: 600;
            color: var(--pitch-black);
            margin-bottom: 0.25rem;
        }

        .article-author-role {
            font-size: 0.85rem;
            color: var(--charcoal);
            line-height: 1.5;
        }

        /* Related articles */
        .article-related {
            background: var(--ivory);
            padding: 0 var(--desktop-side-padding) var(--section-vertical-padding) 100px;
        }

        .article-related-inner {
            max-width: 780px;
            margin: 0 auto;
            padding-top: 4rem;
            border-top: 1px solid var(--glass-border);
        }

        .article-related h3 {
            font-size: 0.85rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--tan);
            font-weight: 600;
            margin-bottom: 2rem;
        }

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

        .related-card {
            display: flex;
            flex-direction: column;
            padding: 1.5rem;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .related-card:hover {
            border-color: var(--tan);
            box-shadow: 0 10px 30px rgba(30, 22, 11, 0.08);
        }

        .related-category {
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--tan);
            margin-bottom: 0.75rem;
        }

        .related-card h4 {
            font-size: 1.05rem;
            font-weight: 500;
            color: var(--pitch-black);
            line-height: 1.4;
            margin-bottom: 1rem;
            flex-grow: 1;
        }

        .related-link {
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: var(--pitch-black);
            transition: color 0.3s ease;
        }

        .related-card:hover .related-link {
            color: var(--tan);
        }

        /* Share bar */
        .article-share {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid var(--glass-border);
        }

        .article-share span {
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--charcoal);
        }

        .share-btn {
            width: 40px; height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--tan-subtle);
            border: 1px solid var(--glass-border);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .share-btn:hover {
            background: var(--tan);
            border-color: var(--tan);
        }

        .share-btn svg {
            width: 18px; height: 18px;
            color: var(--pitch-black);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .article-hero-content { padding: 0 4rem 3rem 80px; }
            .article-body { padding: 4rem 4rem 6rem 80px; }
            .article-related { padding: 0 4rem 6rem 80px; }
        }

        @media (max-width: 768px) {
            .article-hero { min-height: 50vh; }
            .article-hero-content { padding: 0 1rem 2.5rem 40px; }
            .article-hero-content h1 { font-size: 1.6rem; }
            .article-hero-meta { gap: 1rem; font-size: 0.8rem; }
            .article-body { padding: 3rem 1rem 5rem 40px; }
            .article-intro { font-size: 1.05rem; }
            .article-section h2 { font-size: 1.25rem; }
            .article-section p { font-size: 0.95rem; }
            .article-related { padding: 0 1rem 5rem 40px; }
            .related-grid { grid-template-columns: 1fr; }
            .article-author { flex-direction: column; text-align: center; }
        }

        @media (max-width: 500px) {
            .article-hero-content { padding: 0 1rem 2rem 28px; }
            .article-hero-content h1 { font-size: 1.4rem; }
            .article-body { padding: 2.5rem 1rem 4rem 28px; }
            .article-related { padding: 0 1rem 4rem 28px; }
        }