/* =============================================
   VARIABLES
   ============================================= */
:root {
    --rouge: #B40311;
    --rouge-hover: #950210;
    --rouge-clair: rgba(180, 3, 17, 0.08);
    --blanc: #FFFFFF;
    --noir: #29282C;
    --gris-clair: #F7F6F4;
    --gris-texte: #6B6A6E;
    --texte-doux: #4A4848;

    --font-titre: 'Cormorant Garamond', Georgia, serif;
    --font-corps: 'Jost', sans-serif;

    --transition: all 0.35s ease;
    --shadow: 0 4px 20px rgba(41, 40, 44, 0.08);
    --shadow-hover: 0 8px 30px rgba(41, 40, 44, 0.14);
    --radius: 10px;

    --header-h: 90px;
    --header-h-scrolled: 64px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-corps);
    color: var(--noir);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--blanc);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-titre);
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* =============================================
   BOUTONS GLOBAUX
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-corps);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--rouge);
    color: var(--blanc);
    border-color: var(--rouge);
}
.btn-primary:hover {
    background-color: var(--rouge-hover);
    border-color: var(--rouge-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(180, 3, 17, 0.35);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--blanc);
    border-color: rgba(255,255,255,0.6);
}
.btn-outline-light:hover {
    background-color: rgba(255,255,255,0.12);
    border-color: var(--blanc);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--rouge);
    border-color: var(--rouge);
}
.btn-secondary:hover {
    background-color: var(--rouge);
    color: var(--blanc);
    transform: translateY(-2px);
}

/* =============================================
   HEADER
   ============================================= */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

/* Transparent sur le hero */
#header.header-transparent {
    background-color: transparent;
}

/* Après scroll */
#header.header-scrolled {
    background-color: var(--blanc);
    box-shadow: 0 2px 20px rgba(41, 40, 44, 0.10);
}

/* Header masqué au scroll vers le bas */
#header.header-hidden {
    transform: translateY(-100%);
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    transition: height 0.4s ease;
}

#header.header-scrolled .header-wrapper {
    height: var(--header-h-scrolled);
}

/* Logo */
.logo img {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

#header.header-scrolled .logo img {
    height: 46px;
}

/* Nav desktop */
.navbar .nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
    position: relative;
    padding-bottom: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--blanc);
    transition: width 0.35s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--blanc);
}

/* Après scroll — couleur des liens */
#header.header-scrolled .nav-link {
    color: var(--texte-doux);
}

#header.header-scrolled .nav-link::after {
    background-color: var(--rouge);
}

#header.header-scrolled .nav-link:hover,
#header.header-scrolled .nav-link.active {
    color: var(--rouge);
}

/* CTA header */
.btn-header {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    font-family: var(--font-corps);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--radius);
    border: 1.5px solid rgba(255, 255, 255, 0.65);
    color: var(--blanc);
    transition: var(--transition);
}

.btn-header:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--blanc);
}

#header.header-scrolled .btn-header {
    border-color: var(--rouge);
    color: var(--rouge);
}

#header.header-scrolled .btn-header:hover {
    background-color: var(--rouge);
    color: var(--blanc);
}

/* ---- HAMBURGER ---- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.bar {
    display: block;
    width: 26px;
    height: 2px;
    background-color: var(--blanc);
    border-radius: 4px;
    transition: var(--transition);
}

#header.header-scrolled .bar {
    background-color: var(--noir);
}

.hamburger.active .bar {
    background-color: var(--noir);
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.active .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---- MENU MOBILE ---- */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 88vw);
    height: 100dvh;
    background-color: var(--blanc);
    z-index: 1100;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    transform: translateX(0);
}

/* Overlay sombre derrière le menu */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(41, 40, 44, 0.55);
    z-index: 1050;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s ease;
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 28px 32px 40px;
    overflow-y: auto;
}

.mobile-close {
    align-self: flex-end;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.3rem;
    color: var(--gris-texte);
    padding: 4px;
    transition: color 0.25s;
}

.mobile-close:hover {
    color: var(--rouge);
}

.mobile-nav-menu {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mobile-nav-link {
    display: block;
    font-size: 1.65rem;
    font-family: var(--font-titre);
    font-weight: 400;
    color: var(--noir);
    padding: 10px 0;
    border-bottom: 1px solid rgba(41, 40, 44, 0.08);
    transition: color 0.25s, padding-left 0.25s;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--rouge);
    padding-left: 8px;
}

.btn-mobile-cta {
    display: inline-block;
    margin-top: 32px;
    padding: 14px 28px;
    background-color: var(--rouge);
    color: var(--blanc) !important;
    font-family: var(--font-corps);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--radius);
    text-align: center;
    border: none;
    transition: background-color 0.25s, transform 0.25s;
}

.btn-mobile-cta:hover {
    background-color: var(--rouge-hover);
    transform: translateY(-2px);
    padding-left: 28px; /* reset du padding-left du hover générique */
}

.mobile-social {
    display: flex;
    gap: 18px;
    margin-top: auto;
    padding-top: 32px;
}

.mobile-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(41, 40, 44, 0.18);
    font-size: 0.9rem;
    color: var(--gris-texte);
    transition: var(--transition);
}

.mobile-social a:hover {
    border-color: var(--rouge);
    color: var(--rouge);
    background-color: var(--rouge-clair);
}

/* =============================================
   HERO
   ============================================= */
.hero {
    position: relative;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

/* Dégradé sombre pour la lisibilité */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(41, 40, 44, 0.72) 0%,
        rgba(41, 40, 44, 0.48) 55%,
        rgba(180, 3, 17, 0.18) 100%
    );
}

.hero .container {
    position: relative;
    z-index: 2;
    padding-top: var(--header-h);
}

.hero-content {
    max-width: 680px;
    padding: 60px 0;
}

.hero-eyebrow {
    display: block;
    font-family: var(--font-corps);
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeSlideUp 0.9s ease 0.2s forwards;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 300;
    color: var(--blanc);
    margin-bottom: 24px;
    line-height: 1.1;
    opacity: 0;
    animation: fadeSlideUp 0.9s ease 0.45s forwards;
}

.hero-title em {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

.hero-subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 44px;
    opacity: 0;
    animation: fadeSlideUp 0.9s ease 0.7s forwards;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    opacity: 0;
    animation: fadeSlideUp 0.9s ease 0.95s forwards;
}

/* Bouton scroll bas */
.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    animation: bounce 2.4s ease-in-out 2s infinite;
    transition: color 0.25s;
}

.hero-scroll:hover {
    color: var(--blanc);
}

.hero-scroll i {
    font-size: 0.8rem;
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .navbar,
    .btn-header {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 768px) {
    :root {
        --header-h: 70px;
        --header-h-scrolled: 56px;
    }

    .hero-content {
        padding: 40px 0;
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn {
        padding: 13px 26px;
        font-size: 0.82rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(2.4rem, 10vw, 3rem);
    }

    .mobile-menu-inner {
        padding: 24px 24px 36px;
    }
}

/* =============================================
   SECTIONS COMMUNES
   ============================================= */
.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rouge);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--noir);
    margin-bottom: 32px;
    line-height: 1.15;
}

section {
    padding: 100px 0;
}

/* =============================================
   À PROPOS
   ============================================= */
.about {
    background-color: var(--blanc);
    overflow: hidden;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

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

.about-image-frame {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.about-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.7s ease;
}

.about-image-frame:hover img {
    transform: scale(1.03);
}

/* Cadre décoratif décalé */
.about-image-deco {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 65%;
    height: 65%;
    border: 2px solid var(--rouge);
    border-radius: 2px;
    z-index: -1;
    opacity: 0.35;
}

/* Badge années d'expérience */
.about-badge {
    position: absolute;
    bottom: 28px;
    left: -24px;
    background-color: var(--rouge);
    color: var(--blanc);
    padding: 18px 22px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(180, 3, 17, 0.3);
}

.badge-number {
    display: block;
    font-family: var(--font-titre);
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 4px;
    opacity: 0.88;
}

/* -- Colonne contenu -- */
.about-tagline {
    border-left: 3px solid var(--rouge);
    padding-left: 18px;
    margin-bottom: 28px;
}

.about-tagline p {
    font-family: var(--font-titre);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--gris-texte);
    font-weight: 300;
}

.about-text {
    font-size: 0.97rem;
    color: var(--texte-doux);
    line-height: 1.85;
    margin-bottom: 18px;
}

.about-values {
    display: flex;
    gap: 28px;
    margin: 32px 0 40px;
    flex-wrap: wrap;
}

.about-value {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--noir);
}

.about-value i {
    color: var(--rouge);
    font-size: 0.9rem;
}

/* -- Responsive about -- */
@media (max-width: 900px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-image-col {
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }

    .about-badge {
        left: 16px;
    }
}

@media (max-width: 480px) {
    .about-badge {
        left: 8px;
        bottom: 16px;
        padding: 14px 16px;
    }

    .badge-number {
        font-size: 2rem;
    }

    .about-values {
        gap: 18px;
    }
}

/* =============================================
   DEUX VOIES
   ============================================= */
.deux-voies {
    background-color: var(--gris-clair);
    overflow: hidden;
}

.section-header-center {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 70px;
}

.section-header-center .section-title {
    margin-bottom: 20px;
}

.section-header-center .section-title em {
    font-style: italic;
    color: var(--rouge);
}

.section-intro {
    font-size: 1rem;
    color: var(--gris-texte);
    line-height: 1.8;
    font-weight: 300;
}

/* Grille */
.voies-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
}

/* Séparateur vertical */
.voies-separator {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 32px;
    gap: 12px;
}

.separator-line {
    flex: 1;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(180, 3, 17, 0.25), transparent);
    min-height: 60px;
}

.separator-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid rgba(180, 3, 17, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-titre);
    font-size: 1.2rem;
    color: var(--rouge);
    flex-shrink: 0;
    background-color: var(--blanc);
}

/* Carte voie */
.voie-card {
    background-color: var(--blanc);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.voie-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

/* Variante sombre */
.voie-card--dark {
    background-color: #1e0508;
}

/* Image */
.voie-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

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

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

.voie-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(41, 40, 44, 0.55) 100%);
}

.voie-card--dark .voie-image-overlay {
    background: linear-gradient(to bottom, transparent 40%, rgba(180, 3, 17, 0.35) 100%);
}

/* Corps */
.voie-body {
    padding: 36px 36px 40px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.voie-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: var(--rouge-clair);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.voie-icon i {
    color: var(--rouge);
    font-size: 1rem;
}

.voie-card--dark .voie-icon {
    background-color: rgba(255,255,255,0.1);
}

.voie-card--dark .voie-icon i {
    color: rgba(255,220,220,0.9);
}

.voie-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rouge);
    margin-bottom: 10px;
}

.voie-card--dark .voie-label {
    color: rgba(255,190,190,0.75);
}

.voie-title {
    font-size: 1.55rem;
    font-weight: 500;
    color: var(--noir);
    margin-bottom: 16px;
    line-height: 1.25;
}

.voie-card--dark .voie-title {
    color: #fff5f5;
}

.voie-text {
    font-size: 0.93rem;
    color: var(--texte-doux);
    line-height: 1.8;
    margin-bottom: 24px;
    font-weight: 300;
}

.voie-card--dark .voie-text {
    color: rgba(255,230,230,0.72);
}

/* Liste */
.voie-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 36px;
    flex: 1;
}

.voie-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--texte-doux);
}

.voie-list li i {
    color: var(--rouge);
    font-size: 0.72rem;
    flex-shrink: 0;
}

.voie-card--dark .voie-list li {
    color: rgba(255,230,230,0.75);
}

.voie-card--dark .voie-list li i {
    color: rgba(255,160,160,0.75);
}

/* CTA */
.voie-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--rouge);
    text-transform: uppercase;
    padding-bottom: 3px;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
    align-self: flex-start;
}

.voie-cta:hover {
    border-bottom-color: var(--rouge);
    gap: 14px;
}

.voie-cta i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

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

.voie-card--dark .voie-cta {
    color: rgba(255,200,200,0.85);
}

.voie-card--dark .voie-cta:hover {
    color: #fff5f5;
    border-bottom-color: rgba(255,190,190,0.5);
}

/* Responsive */
@media (max-width: 960px) {
    .voies-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .voies-separator {
        flex-direction: row;
        padding: 0;
        gap: 16px;
    }

    .separator-line {
        flex: 1;
        height: 1px;
        width: auto;
        min-height: unset;
        background: linear-gradient(to right, transparent, rgba(180, 3, 17, 0.25), transparent);
    }
}

@media (max-width: 480px) {
    .voie-body {
        padding: 28px 24px 32px;
    }

    .voie-image {
        height: 200px;
    }
}

/* =============================================
   CHIFFRES CLÉS
   ============================================= */
.stats {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
}

/* Fond sombre avec texture subtile */
.stats-bg {
    position: absolute;
    inset: 0;
    background-color: #180306;
    background-image:
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(180, 3, 17, 0.18) 0%, transparent 65%),
        radial-gradient(ellipse 60% 80% at 80% 30%, rgba(180, 3, 17, 0.1) 0%, transparent 60%);
    z-index: 0;
}

.stats .container {
    position: relative;
    z-index: 1;
}

.stats .section-header-center {
    margin-bottom: 64px;
}

.stats .section-label {
    color: rgba(255,255,255,0.45);
}

.stats .section-title em {
    font-style: italic;
    color: rgba(255,255,255,0.55);
}

/* Grille 3 colonnes */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background-color: rgba(255,255,255,0.06);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.06);
}

.stat-item {
    background-color: rgba(255,255,255,0.03);
    padding: 48px 36px 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: background-color 0.35s ease;
    cursor: default;
}

.stat-item:hover {
    background-color: rgba(180, 3, 17, 0.08);
}

/* Icône */
.stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(180, 3, 17, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: border-color 0.35s ease, background-color 0.35s ease;
}

.stat-item:hover .stat-icon {
    border-color: var(--rouge);
    background-color: rgba(180, 3, 17, 0.12);
}

.stat-icon i {
    color: var(--rouge);
    font-size: 1.1rem;
}

/* Nombre animé */
.stat-number {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    line-height: 1;
    margin-bottom: 16px;
}

.countup {
    font-family: var(--font-titre);
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--blanc);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-titre);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 300;
    color: var(--rouge);
    padding-bottom: 4px;
}

/* Séparateur */
.stat-divider {
    width: 28px;
    height: 1px;
    background-color: rgba(180, 3, 17, 0.5);
    margin-bottom: 14px;
    transition: width 0.35s ease;
}

.stat-item:hover .stat-divider {
    width: 44px;
}

/* Label */
.stat-label {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
    max-width: 180px;
}

/* Responsive */
@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1px;
    }

    .stat-item {
        padding: 36px 24px;
    }
}

/* =============================================
   LIVRE & YOUTUBE
   ============================================= */
.media-section {
    background-color: var(--blanc);
    padding: 110px 0;
    overflow: hidden;
}

/* Block générique */
.media-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.media-block--youtube {
    flex-direction: row-reverse;
}

/* Séparateur central */
.media-divider {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 80px 0;
    color: rgba(41,40,44,0.15);
}

.media-divider span {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(41,40,44,0.12), transparent);
}

.media-divider i {
    font-size: 0.4rem;
    color: var(--rouge);
    opacity: 0.5;
}

/* ---- LIVRE ---- */
.livre-cover-wrap {
    position: relative;
    display: flex;
    justify-content: center;
}

.livre-cover-wrap img {
    width: 100%;
    max-width: 320px;
    border-radius: 8px;
    box-shadow:
        0 20px 60px rgba(41, 40, 44, 0.18),
        0 6px 20px rgba(41, 40, 44, 0.12);
    transform: rotate(-2deg);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    position: relative;
    z-index: 1;
}

.livre-cover-wrap:hover img {
    transform: rotate(0deg) scale(1.02);
    box-shadow:
        0 28px 70px rgba(41, 40, 44, 0.22),
        0 8px 24px rgba(41, 40, 44, 0.14);
}

.livre-cover-shadow {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 55%;
    height: 30px;
    background: radial-gradient(ellipse, rgba(41,40,44,0.25) 0%, transparent 70%);
    filter: blur(8px);
    z-index: 0;
}

/* ---- CONTENU MEDIA ---- */
.media-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 400;
    color: var(--noir);
    margin-bottom: 8px;
    line-height: 1.15;
}

.media-title em {
    font-style: italic;
    color: var(--rouge);
}

.media-subtitle {
    font-family: var(--font-corps);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--gris-texte);
    letter-spacing: 0.02em;
    margin-bottom: 24px;
    font-style: italic;
}

.media-text {
    font-size: 0.97rem;
    color: var(--texte-doux);
    line-height: 1.85;
    margin-bottom: 36px;
    font-weight: 300;
}

/* ---- YOUTUBE ---- */
.youtube-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 36px;
}

.youtube-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--texte-doux);
    font-weight: 300;
}

.youtube-tag i {
    color: #14786c;
    font-size: 0.65rem;
}

/* Bouton YouTube */
.btn-youtube {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background-color: #14786c;
    color: var(--blanc);
    font-family: var(--font-corps);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--radius);
    border: 2px solid #14786c;
    transition: var(--transition);
}

.btn-youtube:hover {
    background-color: #0f5e54;
    border-color: #0f5e54;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 120, 108, 0.35);
}

/* Carte YouTube décorative */
.youtube-card {
    position: relative;
    border-radius: 12px;
    padding: 3px;
    box-shadow: 0 20px 60px rgba(41,40,44,0.25);
    overflow: hidden;
}

.youtube-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    z-index: 0;
}

.youtube-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(20,120,108,0.82) 0%, rgba(10,30,28,0.88) 100%);
    border-radius: 12px;
    z-index: 1;
}

.youtube-card-inner {
    position: relative;
    z-index: 2;
    border-radius: 10px;
    padding: 52px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.youtube-logo-wrap {
    width: 72px;
    height: 72px;
    background-color: #14786c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.youtube-logo-wrap i {
    font-size: 1.8rem;
    color: var(--blanc);
}

.youtube-channel-name {
    font-family: var(--font-titre);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--blanc);
    font-style: italic;
}

.youtube-handle {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.08em;
}

.youtube-subscribe {
    display: inline-block;
    margin-top: 8px;
    padding: 10px 28px;
    background-color: #14786c;
    color: var(--blanc);
    font-family: var(--font-corps);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 6px;
    transition: background-color 0.25s, transform 0.25s;
}

.youtube-subscribe:hover {
    background-color: #0f5e54;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {
    .media-block {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .media-block--youtube .media-content-col {
        order: 1;
    }

    .media-block--youtube .media-image-col {
        order: 2;
    }

    .livre-cover-wrap img {
        max-width: 260px;
    }

    .youtube-card-inner {
        padding: 40px 28px;
    }
}

@media (max-width: 480px) {
    .media-divider {
        margin: 56px 0;
    }
}

/* =============================================
   TÉMOIGNAGES
   ============================================= */
.temoignages {
    background-color: var(--gris-clair);
    padding: 110px 0 80px;
    overflow: hidden;
}

.temoignages .section-header-center {
    margin-bottom: 56px;
}

.temoignages .section-title em {
    color: var(--rouge);
    font-style: italic;
}

/* Swiper container */
.temoignages-swiper {
    padding: 16px 0 40px !important;
    width: 100%;
    overflow: hidden;
}

/* Largeur fixe par slide = effet marquee propre */
.temoignages-swiper .swiper-slide {
    width: 360px;
}

@media (max-width: 480px) {
    .temoignages-swiper .swiper-slide {
        width: 300px;
    }
}

/* Carte — hauteur fixe uniforme */
.temoignage-card {
    background-color: var(--blanc);
    border-radius: 14px;
    padding: 36px 32px 32px;
    height: 280px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 16px rgba(41,40,44,0.06);
    border-top: 3px solid transparent;
    transition: border-top-color 0.3s ease, box-shadow 0.3s ease;
}

.temoignage-card:hover {
    box-shadow: 0 8px 32px rgba(41,40,44,0.11);
    border-top-color: var(--rouge);
}

/* Guillemet */
.temo-quote i {
    font-size: 1.5rem;
    color: var(--rouge);
    opacity: 0.35;
}

/* Texte */
.temo-text {
    font-size: 0.93rem;
    color: var(--texte-doux);
    line-height: 1.8;
    font-weight: 300;
    font-style: italic;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

/* Footer */
.temo-footer {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(41,40,44,0.07);
}

.temo-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--rouge);
    color: var(--blanc);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-titre);
    font-size: 1.1rem;
    font-weight: 600;
    flex-shrink: 0;
}

.temo-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.temo-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--noir);
}

.temo-context {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--gris-texte);
    letter-spacing: 0.03em;
}

/* Pagination dots */
.temoignages-pagination {
    bottom: 16px !important;
}

.temoignages-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background-color: rgba(41,40,44,0.25);
    opacity: 1;
    transition: all 0.3s ease;
}

.temoignages-pagination .swiper-pagination-bullet-active {
    background-color: var(--rouge);
    width: 22px;
    border-radius: 6px;
}

@media (max-width: 600px) {
    .temoignage-card {
        padding: 28px 24px 24px;
    }
}

/* =============================================
   CTA FINAL
   ============================================= */
.cta-final {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    text-align: center;
}

.cta-final-bg {
    position: absolute;
    inset: 0;
    background-color: var(--rouge);
    background-image:
        radial-gradient(ellipse 70% 80% at 15% 50%, rgba(255,255,255,0.06) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 85% 20%, rgba(0,0,0,0.12) 0%, transparent 55%);
}

.cta-final .container {
    position: relative;
    z-index: 1;
}

.cta-final-inner {
    max-width: 680px;
    margin: 0 auto;
}

.cta-final-eyebrow {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
}

.cta-final-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 300;
    color: var(--blanc);
    line-height: 1.15;
    margin-bottom: 24px;
}

.cta-final-title em {
    font-style: italic;
    color: rgba(255,255,255,0.85);
}

.cta-final-text {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 48px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.cta-final-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Bouton primaire blanc sur fond rouge */
.cta-final .btn-primary {
    background-color: var(--blanc);
    color: var(--rouge);
    border-color: var(--blanc);
}

.cta-final .btn-primary:hover {
    background-color: rgba(255,255,255,0.9);
    border-color: rgba(255,255,255,0.9);
    box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background-color: var(--blanc);
    color: var(--texte-doux);
    border-top: 1px solid rgba(41,40,44,0.08);
}

.footer-top {
    padding: 80px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 48px;
}

/* Colonne brand */
.footer-col--brand {
    padding-right: 24px;
}

.footer-logo img {
    height: 52px;
    width: auto;
    margin-bottom: 20px;
}

.footer-baseline {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--gris-texte);
    margin-bottom: 24px;
}

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

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(41,40,44,0.15);
    color: var(--gris-texte);
    font-size: 0.82rem;
    transition: var(--transition);
}

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

/* Newsletter footer */
.footer-newsletter {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(41,40,44,0.08);
}

.footer-newsletter-label {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gris-texte);
    margin-bottom: 10px;
}

.footer-newsletter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--blanc);
    background-color: var(--rouge);
    padding: 9px 18px;
    border-radius: 20px;
    transition: background-color 0.25s, transform 0.2s;
}

.footer-newsletter-btn:hover {
    background-color: #970210;
    transform: translateY(-1px);
}

/* Colonnes nav */
.footer-heading {
    font-family: var(--font-corps);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--noir);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--gris-texte);
    transition: color 0.25s, padding-left 0.25s;
}

.footer-links a:hover {
    color: var(--rouge);
    padding-left: 4px;
}

/* Contact */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact-list i {
    color: var(--rouge);
    font-size: 0.82rem;
    width: 14px;
    flex-shrink: 0;
}

.footer-contact-list a {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--gris-texte);
    transition: color 0.25s;
}

.footer-contact-list a:hover {
    color: var(--rouge);
}

/* Barre du bas */
.footer-bottom {
    border-top: 1px solid rgba(41,40,44,0.08);
    padding: 20px 0;
}

.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(41,40,44,0.35);
}

.footer-mentions {
    font-size: 0.8rem;
    color: rgba(41,40,44,0.35);
    transition: color 0.25s;
}

.footer-mentions:hover {
    color: var(--rouge);
}

/* Responsive footer */
@media (max-width: 960px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-col--brand {
        grid-column: 1 / -1;
        padding-right: 0;
    }
}

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

    .cta-final {
        padding: 80px 0;
    }

    .cta-final-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-final-actions .btn {
        text-align: center;
        justify-content: center;
    }
}

/* =============================================
   HERO-2 (pages secondaires)
   ============================================= */
.hero-2 {
    position: relative;
    height: 55vh;
    min-height: 380px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-2-img {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-2-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(41, 40, 44, 0.70) 0%,
        rgba(41, 40, 44, 0.45) 60%,
        rgba(180, 3, 17, 0.15) 100%
    );
}

.hero-2 .container {
    position: relative;
    z-index: 2;
    padding-top: var(--header-h);
}

.hero-2-content {
    max-width: 700px;
    padding: 20px 0 32px;
}

.hero-2-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 400;
    color: rgba(255,255,255,0.55);
    margin-bottom: 20px;
    letter-spacing: 0.03em;
}

.hero-2-breadcrumb a {
    color: rgba(255,255,255,0.55);
    transition: color 0.25s;
}

.hero-2-breadcrumb a:hover {
    color: var(--blanc);
}

.hero-2-breadcrumb i {
    font-size: 0.55rem;
    color: rgba(255,255,255,0.3);
}

.hero-2-title {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--blanc);
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero-2-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background-color: var(--rouge);
    margin-top: 18px;
}

.hero-2-subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    max-width: 560px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .hero-2 {
        height: auto;
        min-height: 320px;
    }

    .hero-2 .container {
        padding-top: var(--header-h);
        padding-bottom: 40px;
    }
}

/* =============================================
   PONT
   ============================================= */
.pont {
    background-color: var(--blanc);
    padding: 100px 0;
}

.pont-intro {
    max-width: 760px;
    margin: 0 auto 72px;
    text-align: center;
}

.pont-text {
    font-size: 1.08rem;
    font-weight: 300;
    color: var(--texte-doux);
    line-height: 1.9;
}

.pont-text em {
    font-style: italic;
    color: var(--rouge);
    font-family: var(--font-titre);
    font-size: 1.15rem;
}

/* Grille pont */
.pont-cards {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: center;
}

/* Séparateur & */
.pont-et {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.pont-et span {
    font-family: var(--font-titre);
    font-size: 3rem;
    font-weight: 300;
    font-style: italic;
    color: rgba(180,3,17,0.2);
    line-height: 1;
}

/* Carte pont */
.pont-card {
    display: flex;
    flex-direction: column;
    gap: 0;
    background-color: var(--gris-clair);
    border-radius: 14px;
    padding: 44px 40px;
    text-decoration: none;
    border: 1.5px solid transparent;
    transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
    cursor: pointer;
}

.pont-card:hover {
    border-color: var(--rouge);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.pont-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--rouge-clair);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: background-color 0.35s ease;
}

.pont-card-icon i {
    color: var(--rouge);
    font-size: 1rem;
}

.pont-card:hover .pont-card-icon {
    background-color: var(--rouge);
}

.pont-card:hover .pont-card-icon i {
    color: var(--blanc);
}

.pont-card-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rouge);
    margin-bottom: 10px;
}

.pont-card-title {
    font-size: 1.45rem;
    font-weight: 500;
    color: var(--noir);
    margin-bottom: 14px;
    line-height: 1.25;
}

.pont-card-text {
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--gris-texte);
    line-height: 1.75;
    margin-bottom: 28px;
}

.pont-card-arrow {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--rouge);
    transition: gap 0.3s ease;
}

.pont-card-arrow i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.pont-card:hover .pont-card-arrow i {
    transform: translateY(4px);
}

/* Responsive */
@media (max-width: 860px) {
    .pont-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pont-et {
        padding: 0;
        justify-content: flex-start;
    }

    .pont-et span {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .pont-card {
        padding: 32px 28px;
    }
}

/* =============================================
   SECTION OFFRE (perso & marque)
   ============================================= */
.offre {
    background-color: var(--blanc);
    padding-bottom: 100px;
}

/* Header de section avec image */
.offre-header {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    margin-bottom: 80px;
}

.offre-header--perso {
    background-image: url('./images/voie-perso.jpg');
    background-size: cover;
    background-position: center 50%;
}

.offre-header--marque {
    background-image: url('./images/coaching-identite-marque.jpg');
    background-size: cover;
    background-position: center 40%;
}

.offre-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(41,40,44,0.78) 0%,
        rgba(41,40,44,0.55) 50%,
        rgba(180,3,17,0.2) 100%
    );
}

.offre-header .container {
    position: relative;
    z-index: 1;
}

.offre-header-content {
    max-width: 680px;
}

.offre-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    background-color: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.offre-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    color: var(--blanc);
    line-height: 1.15;
    margin-bottom: 20px;
}

.offre-title em {
    font-style: italic;
    color: rgba(255,255,255,0.8);
}

.offre-headline {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    max-width: 580px;
}

/* Pour qui */
.offre-pour-qui {
    margin-bottom: 72px;
}

.offre-pour-qui .section-label {
    margin-bottom: 28px;
}

.pour-qui-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px 32px;
}

.pour-qui-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--texte-doux);
    font-weight: 300;
}

.pour-qui-item i {
    color: var(--rouge);
    font-size: 0.55rem;
    flex-shrink: 0;
}

/* Prestations grid */
.offre-prestations {
    padding-bottom: 0;
}

.offre-prestations .section-label {
    margin-bottom: 36px;
}

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

/* Carte prestation */
.prestation-card {
    background-color: var(--gris-clair);
    border-radius: 16px;
    padding: 36px 32px 32px;
    display: flex;
    flex-direction: column;
    border: 1.5px solid transparent;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.prestation-card:hover {
    border-color: rgba(180,3,17,0.2);
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

/* Carte mise en avant */
.prestation-card--featured {
    background-color: #f7f0ee;
    border-color: rgba(180,3,17,0.15);
}

.prestation-card--featured:hover {
    border-color: rgba(180,3,17,0.35);
}

.prestation-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.prestation-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--rouge-clair);
    display: flex;
    align-items: center;
    justify-content: center;
}

.prestation-icon i {
    color: var(--rouge);
    font-size: 1rem;
}

.prestation-card--featured .prestation-icon {
    background-color: rgba(180,3,17,0.1);
}

.prestation-type {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gris-texte);
    background-color: rgba(41,40,44,0.06);
    padding: 4px 12px;
    border-radius: 20px;
}

.prestation-card--featured .prestation-type {
    color: rgba(180,3,17,0.7);
    background-color: rgba(180,3,17,0.08);
}

.prestation-title {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--noir);
    margin-bottom: 12px;
    line-height: 1.3;
}

.prestation-card--featured .prestation-title {
    color: var(--noir);
}

.prestation-desc {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--gris-texte);
    line-height: 1.75;
    margin-bottom: 20px;
    flex: 1;
}

.prestation-card--featured .prestation-desc {
    color: var(--gris-texte);
}

.prestation-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 28px;
}

.prestation-details li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.84rem;
    color: var(--texte-doux);
    font-weight: 400;
}

.prestation-details li i {
    color: var(--rouge);
    width: 14px;
    font-size: 0.82rem;
    flex-shrink: 0;
}

.prestation-card--featured .prestation-details li {
    color: var(--texte-doux);
}

.prestation-cta {
    align-self: flex-start;
    padding: 11px 24px;
    font-size: 0.82rem;
}

/* Responsive */
@media (max-width: 860px) {
    .pour-qui-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 560px) {
    .pour-qui-grid {
        grid-template-columns: 1fr;
    }

    .offre-header {
        padding: 60px 0;
        margin-bottom: 56px;
    }

    .prestation-card {
        padding: 28px 24px;
    }
}

/* =============================================
   PILIERS IDENTITÉ DE MARQUE
   ============================================= */
.marque-piliers {
    margin-bottom: 72px;
}

.marque-piliers .section-label {
    margin-bottom: 36px;
}

.piliers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background-color: rgba(41,40,44,0.06);
    border-radius: 14px;
    overflow: hidden;
}

.pilier-item {
    background-color: var(--blanc);
    padding: 36px 28px;
    transition: background-color 0.3s ease;
}

.pilier-item:hover {
    background-color: var(--gris-clair);
}

.pilier-num {
    font-family: var(--font-titre);
    font-size: 2.4rem;
    font-weight: 300;
    color: rgba(180,3,17,0.18);
    line-height: 1;
    margin-bottom: 16px;
}

.pilier-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--noir);
    margin-bottom: 10px;
    line-height: 1.3;
}

.pilier-text {
    font-size: 0.87rem;
    font-weight: 300;
    color: var(--gris-texte);
    line-height: 1.7;
}

/* Responsive piliers */
@media (max-width: 900px) {
    .piliers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .pilier-item {
        padding: 28px 24px;
    }
}

/* Section marque fond légèrement différent */
.offre--marque {
    background-color: var(--gris-clair);
}

/* =============================================
   OUTILS & APPROCHE
   ============================================= */
.outils {
    background-color: #faf8f6;
    padding: 100px 0;
    overflow: hidden;
}

.outils-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Intro */
.outils-intro .section-label {
    color: var(--rouge);
}

.outils-intro .section-title {
    color: var(--noir);
}

.outils-intro .section-title em {
    font-style: italic;
    color: var(--rouge);
}

.outils-text {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--texte-doux);
    line-height: 1.85;
}

/* Grille outils */
.outils-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background-color: rgba(41,40,44,0.07);
    border-radius: 16px;
    overflow: hidden;
}

.outil-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 22px;
    background-color: #fff;
    transition: background-color 0.25s ease;
    cursor: default;
}

.outil-item:hover {
    background-color: #fdf0f1;
}

.outil-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(180,3,17,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.25s, background-color 0.25s;
}

.outil-icon i {
    font-size: 0.72rem;
    color: var(--rouge);
}

.outil-item:hover .outil-icon {
    border-color: var(--rouge);
    background-color: rgba(180,3,17,0.08);
}

.outil-item span {
    font-size: 0.87rem;
    font-weight: 400;
    color: var(--texte-doux);
    line-height: 1.4;
    transition: color 0.25s;
}

.outil-item:hover span {
    color: var(--noir);
}

/* Responsive */
@media (max-width: 900px) {
    .outils-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

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

    .outil-item {
        padding: 16px 18px;
    }
}

/* =============================================
   FAQ
   ============================================= */
.faq {
    background-color: var(--blanc);
    padding: 100px 0;
}

.faq-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
}

.faq-intro {
    position: sticky;
    top: calc(var(--header-h-scrolled) + 32px);
}

.faq-intro .section-title em {
    font-style: italic;
    color: var(--rouge);
}

/* Liste */
.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid rgba(41,40,44,0.1);
}

.faq-item:first-child {
    border-top: 1px solid rgba(41,40,44,0.1);
}

/* Question */
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    font-family: var(--font-titre);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--noir);
    line-height: 1.3;
    transition: color 0.25s;
}

.faq-question:hover span,
.faq-item.active .faq-question span {
    color: var(--rouge);
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid rgba(41,40,44,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.25s, background-color 0.25s, transform 0.35s ease;
}

.faq-icon i {
    font-size: 0.65rem;
    color: var(--gris-texte);
    transition: color 0.25s, transform 0.35s ease;
}

.faq-item.active .faq-icon {
    border-color: var(--rouge);
    background-color: var(--rouge);
}

.faq-item.active .faq-icon i {
    color: var(--blanc);
    transform: rotate(45deg);
}

/* Réponse */
.faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer p {
    padding-bottom: 24px;
    font-size: 0.93rem;
    font-weight: 300;
    color: var(--gris-texte);
    line-height: 1.85;
}

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

/* Responsive */
@media (max-width: 860px) {
    .faq-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .faq-intro {
        position: static;
    }
}

@media (max-width: 480px) {
    .faq-question span {
        font-size: 1rem;
    }
}

/* =============================================
   PAGE CONTACT
   ============================================= */
.contact-section {
    background-color: var(--blanc);
    padding: 100px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}

/* ---- Colonne infos ---- */
.contact-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 400;
    color: var(--noir);
    line-height: 1.15;
    margin-bottom: 20px;
}

.contact-title em {
    font-style: italic;
    color: var(--rouge);
}

.contact-intro {
    font-size: 0.93rem;
    font-weight: 300;
    color: var(--gris-texte);
    line-height: 1.85;
    margin-bottom: 40px;
}

/* Coordonnées */
.contact-coordonnees {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 48px;
}

.contact-coordonnees li {
    display: flex;
    align-items: center;
    gap: 16px;
}

.coord-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--rouge-clair);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.coord-icon i {
    color: var(--rouge);
    font-size: 0.9rem;
}

.coord-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.coord-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gris-texte);
}

.coord-value {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--noir);
    transition: color 0.25s;
}

.coord-value:hover {
    color: var(--rouge);
}

/* Réseaux sociaux */
.contact-reseaux-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gris-texte);
    margin-bottom: 16px;
}

.contact-reseaux-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.reseau-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-radius: 4px;
    border: 1px solid rgba(41,40,44,0.08);
    transition: border-color 0.25s, background-color 0.25s;
}

.reseau-item:hover {
    border-color: rgba(180,3,17,0.25);
    background-color: var(--rouge-clair);
}

.reseau-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(180,3,17,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reseau-icon i {
    font-size: 0.85rem;
    color: var(--rouge);
}

.reseau-icon--yt { background-color: rgba(20,120,108,0.1); }
.reseau-icon--yt i { color: #14786c; }
.reseau-icon--li { background-color: rgba(10,102,194,0.1); }
.reseau-icon--li i { color: #0a66c2; }
.reseau-icon--fb { background-color: rgba(24,119,242,0.1); }
.reseau-icon--fb i { color: #1877f2; }

.reseau-body {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.reseau-name {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--noir);
}

.reseau-handle {
    font-size: 0.78rem;
    color: var(--gris-texte);
    font-weight: 300;
}

/* ---- Formulaire ---- */
.contact-form-col {
    background-color: var(--gris-clair);
    border-radius: 16px;
    padding: 48px 44px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--texte-doux);
}

.required {
    color: var(--rouge);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-corps);
    font-size: 0.93rem;
    font-weight: 300;
    color: var(--noir);
    background-color: var(--blanc);
    border: 1.5px solid rgba(41,40,44,0.12);
    border-radius: var(--radius);
    padding: 13px 16px;
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s;
    width: 100%;
    appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(41,40,44,0.3);
    font-weight: 300;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--rouge);
    box-shadow: 0 0 0 3px rgba(180,3,17,0.08);
}

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

/* Select custom */
.select-wrap {
    position: relative;
}

.select-wrap select {
    padding-right: 40px;
    cursor: pointer;
}

.select-wrap > i {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.65rem;
    color: var(--gris-texte);
    pointer-events: none;
}

/* RGPD checkbox */
.form-rgpd {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

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

.checkbox-custom {
    width: 18px;
    height: 18px;
    border: 1.5px solid rgba(41,40,44,0.25);
    border-radius: 6px;
    background-color: var(--blanc);
    flex-shrink: 0;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.25s, background-color 0.25s;
}

.checkbox-label input:checked + .checkbox-custom {
    background-color: var(--rouge);
    border-color: var(--rouge);
}

.checkbox-label input:checked + .checkbox-custom::after {
    content: '';
    width: 9px;
    height: 5px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(-45deg) translateY(-1px);
}

.checkbox-text {
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--gris-texte);
    line-height: 1.6;
}

.checkbox-text a {
    color: var(--rouge);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Bouton submit */
.form-submit {
    width: 100%;
    justify-content: center;
    gap: 12px;
    padding: 15px 32px;
}

/* Feedback */
.form-feedback {
    font-size: 0.88rem;
    font-weight: 400;
    line-height: 1.5;
    min-height: 24px;
    text-align: center;
}

.form-feedback.success {
    color: #2a7a4b;
}

.form-feedback.error {
    color: var(--rouge);
}

/* Responsive */
@media (max-width: 960px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 56px;
    }
}

@media (max-width: 560px) {
    .contact-form-col {
        padding: 32px 24px;
    }

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

/* =============================================
   BILAN OFFERT
   ============================================= */
.bilan-offert {
    display: flex;
    align-items: center;
    gap: 24px;
    background: linear-gradient(135deg, #fff5f5 0%, #fef0f0 100%);
    border: 1.5px solid rgba(180,3,17,0.15);
    border-radius: 16px;
    padding: 32px 36px;
    margin: 48px 0 16px;
}

.bilan-offert--marque {
    background: linear-gradient(135deg, #f5f0ff 0%, #f0eeff 100%);
    border-color: rgba(180,3,17,0.12);
}

.bilan-offert-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: rgba(180,3,17,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bilan-offert-icon i {
    color: var(--rouge);
    font-size: 1.3rem;
}

.bilan-offert-body {
    flex: 1;
}

.bilan-offert-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rouge);
    margin-bottom: 4px;
}

.bilan-offert-title {
    font-family: var(--font-titre);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--noir);
    margin-bottom: 6px;
    line-height: 1.3;
}

.bilan-offert-text {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--texte-doux);
    line-height: 1.7;
}

.bilan-offert-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    font-size: 0.83rem;
    font-weight: 500;
    color: var(--blanc);
    background-color: var(--rouge);
    padding: 12px 22px;
    border-radius: 30px;
    transition: background-color 0.25s, transform 0.2s;
    flex-shrink: 0;
}

.bilan-offert-btn:hover {
    background-color: #970210;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .bilan-offert {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        padding: 28px 24px;
    }

    .bilan-offert-btn {
        align-self: stretch;
        justify-content: center;
    }
}

/* =============================================
   IMMERSION PRÉSENTIELLE
   ============================================= */
.immersion-section {
    background-color: var(--blanc);
    padding: 90px 0;
    border-top: 1px solid rgba(41,40,44,0.07);
}

.immersion-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.immersion-title {
    font-family: var(--font-titre);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 400;
    color: var(--noir);
    line-height: 1.2;
}

.immersion-title em {
    font-style: italic;
    color: var(--rouge);
}

.immersion-text {
    font-size: 1rem;
    font-weight: 300;
    color: var(--texte-doux);
    line-height: 1.85;
    max-width: 620px;
}

.immersion-sub {
    font-size: 0.88rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--gris-texte);
    font-style: italic;
}

/* =============================================
   MENTIONS LÉGALES
   ============================================= */
.mentions-section {
    background-color: var(--blanc);
    padding: 90px 0 110px;
}

.mentions-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 52px;
}

.mention-block h2 {
    font-family: var(--font-titre);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--noir);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(41,40,44,0.08);
}

.mention-block p {
    font-size: 0.93rem;
    font-weight: 300;
    color: var(--texte-doux);
    line-height: 1.85;
    margin-bottom: 12px;
}

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

.mention-block p em {
    color: var(--gris-texte);
    font-style: italic;
}

.mention-block ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.mention-block ul li {
    font-size: 0.93rem;
    font-weight: 300;
    color: var(--texte-doux);
    line-height: 1.7;
    padding-left: 16px;
    position: relative;
}

.mention-block ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--rouge);
    font-size: 0.7rem;
    top: 6px;
}

.mention-block a {
    color: var(--rouge);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: opacity 0.2s;
}

.mention-block a:hover {
    opacity: 0.75;
}

.mention-block strong {
    font-weight: 500;
    color: var(--noir);
}
