/* ============================================================================
   DALIA NETTOYAGE SERVICES - CSS v3.6
   ============================================================================
   
   v3.6 : Correction scroll-padding (compensation trust-bar pour ancres)
   v3.5 : Suppression logique 15%, documentation breakpoints complète
   v3.4 : Menu hamburger uniquement sur smartphones (< 500px)
   
   ============================================================================
   RÉFÉRENTIEL BREAKPOINTS — Bible_Viewport v2.5
   ============================================================================
   [B] = Bible standard | [C] = Custom (hors Bible)
   
   DESKTOP (≥1729px) :
   [B] 2560px : QHD / Studio Display / iMac 27"
   [B] 2240px : iMac 24" M1/M3
   [B] 1920px : Full HD / Desktop standard
   
   LAPTOP :
   [B] 1728px : MacBook Pro 16" M1-M4
   [B] 1710px : MacBook Air 15" M2-M4
   [B] 1512px : MacBook Pro 14" M1-M4
   [B] 1470px : MacBook Air 13" M2-M4
   [B] 1366px : Windows Budget 15"
   
   TABLETTES :
   [B] 1032px : iPad Pro 13" M4
   [B] 1024px : iPad Pro 12.9" / Air 13"
   [B] 834px  : iPad Pro 11"
   [B] 820px  : iPad 10th / Air 11" / Air 10.9"
   [B] 810px  : iPad 9th
   [C] 800px  : Samsung Galaxy Tab A9+ (hors Bible, DPR 1.5)
   [B] 744px  : iPad Mini 6/7
   [B] 616px  : Galaxy Tab S9 Ultra
   [B] 584px  : Galaxy Tab S9+
   [B] 534px  : Galaxy Tab S9
   
   SMARTPHONES :
   [C] 500px  : Zone tampon smartphone/tablette (max phone=440, min tab=534)
   [B] 440px  : iPhone 16 Pro Max
   [B] 430px  : iPhone 16+/15+/15 Pro Max/14 Pro Max
   [B] 412px  : Pixel 9/8/7, Galaxy S21/S20 Ultra, OnePlus
   [C] 400px  : Très petits écrans (ajustement bouton menu)
   [B] 402px  : iPhone 16 Pro
   [B] 393px  : iPhone 16/15/15 Pro/14 Pro, Pixel 5
   [B] 390px  : iPhone 16e/14/13/12
   [B] 384px  : Galaxy S24/S23/S22 Ultra/+
   [B] 375px  : iPhone SE, iPhone 13/12 Mini
   [B] 360px  : Galaxy S24/S23/S22, A55/A54, Xiaomi, Huawei
   
   ORIENTATIONS :
   [C] 850px landscape  : Paysage smartphones/petites tablettes
   [B] 744px landscape  : iPad Mini paysage
   [B] 820px landscape  : iPad Air/10th paysage
   
   ============================================================================
   SOMMAIRE:
   1. Variables & Configuration
   2. Reset & Base
   3. Typographie
   4. Layout & Utilities
   5. Boutons
   6. Header & Navigation
   7. Hero
   8. Trust Bar
   9. Section Header (commun)
   10. Services
   11. Valorisation (Pain Points)
   12. Témoignages (Why Us)
   13. FAQ
   14. Contact
   15. Footer
   16. Utilitaires Touch/Hover
   17. Print
   
   ============================================================================ */


/* ============================================================================
   1. VARIABLES & CONFIGURATION
   ============================================================================ */
:root {
    /* Palette */
    --color-primary: #1a5f6a;
    --color-primary-dark: #12444d;
    --color-primary-light: #e6f2f4;
    --color-accent: #d4af37;
    --color-accent-hover: #bfa030;
    
    /* Backgrounds */
    --bg-body: #fdfbf9;
    --bg-white: #ffffff;
    --bg-dark: #111111;
    --bg-light-gray: #f9f9f9;
    
    /* Textes */
    --text-main: #2d3436;
    --text-muted: #636e72;
    --text-light: #ffffff;
    --border-color: #ececec;

    /* Dimensions */
    --container-width: 1200px;
    --header-height: 80px;
    --trust-bar-height: 52px;
    
    /* Sections */
    --section-padding-top: calc(var(--header-height) + 20px);
    --section-padding-bottom: 40px;
    
    /* Scroll - compense header + trust bar pour ancres */
    --scroll-padding: calc(var(--header-height) + var(--trust-bar-height) + 20px);
    
    /* Grilles */
    --grid-gap: 30px;
    
    /* Radius & Shadows */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --shadow-soft: 0 10px 40px rgba(26, 95, 106, 0.08);
    --shadow-button: 0 4px 15px rgba(26, 95, 106, 0.3);
    --shadow-card: 0 4px 20px rgba(0,0,0,0.05);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: var(--scroll-padding);
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overscroll-behavior-y: none;
}

@media (max-width: 744px) and (orientation: portrait) {
    body { padding-bottom: env(safe-area-inset-bottom); }
}

/* Safe area — paysage (notch/Dynamic Island sur les côtés) */
@media (orientation: landscape) {
    body {
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }
}

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

ul { list-style: none; }

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

:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============================================================================
   3. TYPOGRAPHIE
   ============================================================================ */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--color-primary);
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: 1rem;
}

.text-gold {
    color: var(--color-accent);
    font-style: italic;
}

.text-accent {
    color: #c44569;
    font-weight: 600;
}

/* Variantes texte - Base (Desktop) */
.logo-text--short,
.h1-text--short,
.trust-text--short { display: none; }

.logo-text--long,
.h1-text--long,
.trust-text--long { display: inline; }

/* Variantes texte - Mobile Portrait */
@media (max-width: 744px) and (orientation: portrait) {
    .logo-text--long,
    .trust-text--long { display: none; }
    
    .logo-text--short,
    .trust-text--short { display: inline; }
    
    /* h1 reste long sur mobile */
    .h1-text--long { display: inline; }
    .h1-text--short { display: none; }
}

/* ============================================================================
   4. LAYOUT & UTILITIES
   ============================================================================ */

/* --- Container --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 1729px) and (max-width: 1920px) {
    .container { max-width: 1500px; }
}

/* --- QHD / Studio Display (2560px viewport) --- */
@media (min-width: 2241px) and (max-width: 2560px) {
    .container { max-width: 2000px; }
}

/* --- iMac 24" (2240px viewport) --- */
@media (min-width: 1921px) and (max-width: 2240px) {
    .container { max-width: 1800px; }
}

/* [B] 1728px : MacBook Pro 16" M1-M4 */
@media (max-width: 1728px) {
    .container { max-width: 1350px; }
}

/* [B] 1710px : MacBook Air 15" M2-M4 */
@media (max-width: 1710px) {
    .container { max-width: 1320px; }
}

/* [B] 1512px : MacBook Pro 14" M1-M4 */
@media (max-width: 1512px) {
    .container { max-width: 1200px; }
}

/* [B] 1470px : MacBook Air 13" M2-M4 */
@media (max-width: 1470px) {
    .container { max-width: 1150px; }
}

/* [B] 1366px : Windows Budget 15" */
@media (max-width: 1366px) {
    .container { max-width: 1100px; }
}

@media (max-width: 744px) and (orientation: portrait) {
    .container { padding: 0 10px; }
}

/* --- Section Padding --- */
.section-padding {
    padding-bottom: 30px;
    min-height: calc(100vh - var(--header-height));
}

@media (max-width: 744px) and (orientation: portrait) {
    .section-padding {
        padding: 20px 0;
        min-height: calc(100vh - var(--header-height));
        min-height: calc(100dvh - var(--header-height));
    }
}

@media (max-width: 744px) and (orientation: landscape) {
    .section-padding {
        min-height: auto;
        padding: 20px 0;
    }
}

/* --- Full Page Section --- */
.full-page-section {
    min-height: 85vh;
    padding-top: var(--section-padding-top);
    padding-bottom: var(--section-padding-bottom);
    overflow: visible;
}

.full-page-section .container { width: 100%; }

@media (max-width: 744px) and (orientation: portrait) {
    .full-page-section {
        min-height: 85vh;
        min-height: 85dvh;
        padding-top: calc(var(--header-height) + 15px);
        padding-bottom: 20px;
    }
}

@media (max-width: 744px) and (orientation: landscape) {
    .full-page-section {
        min-height: auto;
        padding: 20px 0;
    }
}

/* --- Section Logo --- */
.section-with-logo { position: relative; }

.section-logo {
    position: absolute;
    top: 70px;
    left: 50%;
    margin-left: 420px;
    width: 115px;
    height: 115px;
    object-fit: contain;
    opacity: 1;
    z-index: 10;
    pointer-events: none;
}

/* Section logo - Breakpoints proportionnels (+15% appliqué) */
@media (max-width: 1512px) {
    .section-logo {
        width: 105px;
        height: 105px;
        top: 65px;
        margin-left: 380px;
    }
}

@media (max-width: 1470px) {
    .section-logo {
        width: 100px;
        height: 100px;
        top: 60px;
        margin-left: 350px;
    }
}

/* [B] 1032px : iPads — repositionnement coin droit */
@media (max-width: 1032px) {
    .section-logo {
        width: 70px;
        height: 70px;
        top: 10px;
        right: 10px;
        left: auto;
        margin-left: 0;
    }
}

/* [B] 834px : iPads moyens (Pro 11", 10th, Air 11", 9th) */
@media (max-width: 834px) {
    .section-logo {
        width: 58px;
        height: 58px;
    }
}

/* [B] 744px portrait : Mobiles */
@media (max-width: 744px) and (orientation: portrait) {
    .section-logo {
        width: 48px;
        height: 48px;
        top: 8px;
    }
}

/* ============================================================================
   5. BOUTONS
   ============================================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 38px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    white-space: nowrap;
}

@media (max-width: 744px) and (orientation: portrait) {
    .btn {
        min-height: 44px;
        padding: 12px 18px;
        font-size: 0.9rem;
    }
}

/* --- Primary --- */
.btn-primary {
    background-color: var(--color-primary);
    color: var(--text-light);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-button);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 95, 106, 0.4);
}

/* --- Gold --- */
.btn-gold {
    background-color: var(--color-accent);
    color: var(--text-light);
    border-color: var(--color-accent);
}

.btn-gold:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
}

/* --- Outline --- */
.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--text-light);
}

/* --- Copy --- */
.btn-copy {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    background: rgba(255,255,255,0.15);
    color: var(--text-light);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    margin-top: 8px;
}

.btn-copy:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.5);
}

.btn-copy.copied {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.btn-mailto {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    background: var(--color-accent);
    color: var(--text-light);
    border: 1px solid var(--color-accent);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    margin-top: 8px;
    text-decoration: none;
}

.btn-mailto:hover {
    background: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    transform: translateY(-2px);
}

@media (max-width: 744px) and (orientation: portrait) {
    .btn-copy {
        font-size: 0.75rem;
        padding: 10px 14px;
        margin-top: 8px;
        min-height: 44px;
    }
    .btn-mailto {
        font-size: 0.75rem;
        padding: 10px 14px;
        margin-top: 8px;
        min-height: 44px;
    }
}

/* ============================================================================
   6. HEADER & NAVIGATION
   ============================================================================ */
header {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

@supports (backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px)) {
    header {
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
}

@media (max-width: 820px) {
    :root { 
        --trust-bar-height: 48px;
    }
}

@media (max-width: 744px) and (orientation: portrait) {
    :root { 
        --header-height: 64px; 
        --trust-bar-height: 44px;
    }
    html { scroll-padding-top: var(--scroll-padding); }
}

/* --- Nav Container --- */
.nav-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    max-width: 100%;
    padding: 0 55px 0 15px;
}

@media (max-width: 744px) and (orientation: portrait) {
    .nav-container { padding: 0 12px; }
}

/* --- Logo --- */
.logo {
    position: absolute;
    left: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.logo img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

/* Logo header adaptatif selon le header height */

@media (max-width: 820px) {
    .logo {
        font-size: 1rem;
        left: 10px;
    }
    /* iPad Air : header 80px → logo 65px */
    .logo img { width: 65px; height: 65px; }
}

@media (max-width: 744px) and (orientation: portrait) {
    .logo {
        left: 12px;
        gap: 8px;
        font-size: 0.95rem;
        max-width: 180px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    /* iPad Mini + smartphones : header 64px → logo 55px */
    .logo img { width: 55px; height: 55px; }
}

@media (max-width: 500px) and (orientation: portrait) {
    .logo {
        max-width: 150px;
    }
    /* Smartphones uniquement : logo légèrement plus petit */
    .logo img { width: 50px; height: 50px; }
}

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

.nav-links::before {
    content: '';
    width: 140px;
    order: -1;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    white-space: nowrap;
    padding: 8px 0;
}

.nav-links .btn {
    padding: 10px 20px;
    font-size: 0.75rem;
    margin-left: 40px;
    border-radius: var(--radius-sm);
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: 0.3s;
}

.nav-links a:not(.btn):hover::after { width: 100%; }

@media (max-width: 1032px) {
    .nav-links { gap: 20px; }
    .nav-links .btn { margin-left: 30px; font-size: 0.75rem; padding: 8px 16px; }
    .nav-links::before { width: 110px; }
}

/* Adaptation menu pour tablettes moyennes en paysage (820px-744px) */
@media (max-width: 820px) and (orientation: landscape) {
    .nav-links { gap: 15px; }
    .nav-links a { font-size: 0.8rem; }
    .nav-links .btn { margin-left: 20px; font-size: 0.75rem; padding: 7px 14px; }
    .nav-links::before { width: 90px; }
}

/* ============================================================
   MENU HAMBURGER : Mobile + Tablette (≤ 820px)
   Comportement standard : hamburger sur tous appareils ≤ 820px
   ============================================================ */

/* Menu hamburger sur mobile/tablette + mobiles paysage (écrans larges) */
@media (max-width: 820px), (orientation: landscape) and (any-pointer: coarse) and (max-height: 500px) {
    .nav-links {
        --menu-width: 50vw;
        --menu-height: 25dvh;
        display: none;
        position: absolute;
        top: calc(var(--header-height) + 6px);
        left: 50%;
        width: var(--menu-width);
        height: var(--menu-height);
        max-height: var(--menu-height);
        transform: translate(-50%, -10%);
        background: var(--bg-white);
        border: 1px solid rgba(13, 63, 78, 0.16);
        border-radius: 12px;
        padding: clamp(6px, 1.3vh, 12px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        margin-left: 0;
        display: none;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, minmax(0, 1fr));
        gap: clamp(2px, 0.6vh, 6px);
        align-items: stretch;
        justify-items: stretch;
        overflow: hidden;
        z-index: 1010;
    }
    .nav-links::before { display: none; }
    .nav-links.active { display: grid; }
    .nav-links a {
        font-size: clamp(0.5rem, 1.15vw, 0.82rem);
        padding: 0 2px;
        min-height: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        white-space: nowrap;
        line-height: 1;
        text-transform: none;
        letter-spacing: 0.2px;
        border-radius: 8px;
        font-weight: 600;
        background: rgba(13, 63, 78, 0.08);
        border: 1px solid rgba(13, 63, 78, 0.22);
        color: var(--color-primary);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 1px 2px rgba(0, 0, 0, 0.06);
    }
    .nav-links a:not(.btn)::after { display: none; }
    .nav-links .btn {
        margin: 0;
        width: 100%;
        min-height: 0;
        padding: 0 2px;
        font-size: clamp(0.5rem, 1.15vw, 0.8rem);
        letter-spacing: 0.2px;
        border-radius: 8px;
        text-transform: none;
        line-height: 1;
        font-weight: 600;
        background: var(--color-primary);
        color: var(--text-light);
        border: 1px solid rgba(13, 63, 78, 0.9);
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
    }
}

/* Paysage mobile : menu compact 25% x 30% */
@media (orientation: landscape) and (any-pointer: coarse) and (max-height: 500px) {
    .nav-links {
        --menu-width: 25vw;
        --menu-height: 50dvh;
    }
}

/* Portrait tactile : menu compact 50% x 25% */
@media (orientation: portrait) and (any-pointer: coarse) and (max-width: 1032px) {
    .nav-links {
        --menu-width: 50vw;
        --menu-height: 25dvh;
    }
}

@media (orientation: portrait) and (any-pointer: coarse) and (max-width: 360px) {
    .nav-links a,
    .nav-links .btn {
        font-size: 0.48rem;
        letter-spacing: 0.08px;
    }
}

@media (orientation: landscape) and (any-pointer: coarse) and (max-height: 500px) and (max-width: 600px) {
    .nav-links a,
    .nav-links .btn {
        font-size: 0.46rem;
        letter-spacing: 0.06px;
    }
}

/* --- Mobile Toggle (Menu Hamburger) --- */
.mobile-toggle {
    display: none;
    position: absolute;
    top: 50%;
    width: 44px;
    height: 44px;
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--color-primary);
    cursor: pointer;
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-sm);
    background: var(--bg-white);
    padding: 0;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.mobile-toggle:hover,
.mobile-toggle:focus {
    background: var(--color-primary);
    color: var(--text-light);
}

.mobile-toggle:active {
    transform: translateY(-50%) scale(0.95);
}

/* Hamburger visible sur mobile/tablette + mobiles paysage (écrans larges) */
@media (max-width: 820px), (orientation: landscape) and (any-pointer: coarse) and (max-height: 500px) {
    .mobile-toggle { 
        display: flex;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
    .mobile-toggle:active {
        transform: translate(-50%, -50%) scale(0.95);
    }
}

/* Ajustements smartphones */
@media (max-width: 500px) {
    .mobile-toggle { 
        width: 46px;
        height: 46px;
        font-size: 1.5rem;
    }
}

/* [C] 400px : Très petits smartphones - ajustement bouton menu */
@media (max-width: 400px) {
    .mobile-toggle { 
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
        border-width: 2px;
    }
}

/* --- Header Social Icon (Facebook) --- */
.header-social {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1877F2 !important;
    border-radius: 50%;
    transition: all 0.25s ease;
    z-index: 10;
    overflow: visible;
}

.header-social:hover {
    color: #0d5bbf !important;
    transform: translateY(-50%) scale(1.12);
}

.header-social svg {
    display: block;
    width: 49px;
    height: 49px;
}

/* Tablette / Mobile (≤ 820px) — header: 64px */
@media (max-width: 820px) {
    .header-social {
        right: 15px;
        min-width: 44px;
        min-height: 44px;
    }
    .header-social svg {
        width: 38px;
        height: 38px;
    }
}

/* Smartphones (≤ 500px) */
@media (max-width: 500px) {
    .header-social {
        right: 12px;
        min-width: 44px;
        min-height: 44px;
    }
    .header-social svg {
        width: 34px;
        height: 34px;
    }
}

/* Très petits smartphones (≤ 400px) */
@media (max-width: 400px) {
    .header-social {
        right: 8px;
        min-width: 44px;
        min-height: 44px;
    }
    .header-social svg {
        width: 30px;
        height: 30px;
    }
}

/* Paysage smartphones — décalage safe-area pour notch/Dynamic Island */
/* max-height: 500px cible les smartphones en paysage (430px max) sans toucher les desktops */
@media (max-height: 500px) and (orientation: landscape) {
    .header-social {
        right: max(15px, env(safe-area-inset-right));
    }
}

/* ============================================================================
   7. HERO
   ============================================================================ */
.hero {
    position: relative;
    height: calc(100vh - 52px);
    min-height: 700px;
    display: flex;
    align-items: flex-start;
    padding-top: calc(var(--header-height) + 15px);
    background: url('images/logo-accueil.webp') center/cover no-repeat;
}

@media (max-width: 744px) and (orientation: portrait) {
    .hero {
        min-height: calc(100vh - 40px - var(--header-height));
        min-height: calc(100dvh - 40px - var(--header-height));
        padding-top: calc(var(--header-height) + 15px);
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }
}

@media (max-width: 850px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        height: auto;
        padding: 80px 0 20px;
    }
}

/* --- Hero Content --- */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 950px;
    text-align: center;
    margin: 0 auto;
}

@media (max-width: 744px) and (orientation: portrait) {
    .hero-content { width: 100%; text-align: center; }
}

/* --- Hero Box --- */
.hero-box {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius-sm);
    padding: 15px 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    display: inline-block;
    max-width: 750px;
}

.hero-box h1 {
    color: var(--color-primary);
    margin-bottom: 20px;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    white-space: nowrap;
}

.hero-box p {
    font-size: 1.1rem;
    margin-bottom: 0;
    font-weight: 500;
    color: var(--text-main);
    line-height: 1.7;
    text-align: center;
}

@media (max-width: 820px) {
    h1 { font-size: 2.2rem; }
}

@media (max-width: 744px) and (orientation: portrait) {
    .hero-box {
        padding: 12px 16px;
        max-width: 100%;
        text-align: center;
        margin: 15px auto 0;
        display: inline-block;
    }
    .hero-box h1 {
        white-space: normal;
        font-size: 1.3rem;
        line-height: 1.2;
        margin-bottom: 12px;
        text-align: center;
    }
    .hero-box p { font-size: 0.95rem; line-height: 1.5; text-align: center; }
}

/* --- Hero Logo --- */
.hero-logo {
    position: absolute;
    bottom: clamp(14px, 8vh, 120px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    pointer-events: none;
}

.hero-logo img {
    width: clamp(180px, 17vw, 280px);
    height: clamp(180px, 17vw, 280px);
    object-fit: contain;
}

@media (max-width: 1512px) {
    .hero-logo img {
        width: clamp(175px, 17vw, 250px);
        height: clamp(175px, 17vw, 250px);
    }
}

@media (max-width: 1470px) {
    .hero-logo img {
        width: clamp(170px, 16vw, 240px);
        height: clamp(170px, 16vw, 240px);
    }
}

@media (max-width: 1032px) {
    .hero-logo img {
        width: clamp(180px, 30vw, 260px);
        height: clamp(180px, 30vw, 260px);
    }
}

@media (max-width: 820px) {
    .hero-logo img {
        width: clamp(165px, 28vw, 240px);
        height: clamp(165px, 28vw, 240px);
    }
}

/* [C] 850px landscape : Paysage smartphones/petites tablettes (hors Bible) */
@media (max-width: 850px) and (orientation: landscape) {
    .hero-logo {
        bottom: 10px;
    }
    .hero-logo img {
        width: 110px;
        height: 110px;
    }
}

/* Portrait (tablettes + mobiles) : tailles du logo */
@media (max-width: 1032px) and (orientation: portrait) {
    .hero-logo img {
        width: clamp(165px, 30vw, 250px);
        height: clamp(165px, 30vw, 250px);
    }
}

@media (max-width: 744px) and (orientation: portrait) {
    .hero-logo img {
        width: clamp(145px, 36vw, 205px);
        height: clamp(145px, 36vw, 205px);
    }
}

@media (max-width: 500px) and (orientation: portrait) {
    .hero-logo img {
        width: clamp(125px, 40vw, 165px);
        height: clamp(125px, 40vw, 165px);
    }
}

@media (max-width: 430px) and (max-height: 760px) and (orientation: portrait) {
    .hero-logo img {
        width: clamp(118px, 34vw, 148px);
        height: clamp(118px, 34vw, 148px);
    }
}

@media (max-width: 390px) and (max-height: 700px) and (orientation: portrait) {
    .hero-logo img {
        width: 120px;
        height: 120px;
    }
}

/* ============================================================================
   8. TRUST BAR
   ============================================================================ */
.trust-bar {
    background: var(--color-primary);
    color: var(--text-light);
    padding: 13px 0;
    position: relative;
    z-index: 5;
    height: 52px;
    display: flex;
    align-items: center;
}

@media (max-width: 820px) {
    .trust-bar { padding: 10px 0; height: auto; }
}

@media (max-width: 744px) and (orientation: portrait) {
    .trust-bar { padding: 8px 0; height: auto; min-height: 44px; }
}

/* --- Trust Grid --- */
.trust-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

@media (max-width: 820px) {
    .trust-grid {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 20px;
        flex-wrap: nowrap;
    }
}

@media (max-width: 744px) and (orientation: portrait) {
    .trust-grid {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 10px;
        flex-wrap: nowrap;
    }
}

/* --- Trust Item --- */
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.3rem;
    font-weight: 500;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.5px;
}

@media (max-width: 1032px) {
    .trust-item { justify-content: center; font-size: 1.1rem; white-space: nowrap; }
}

@media (max-width: 820px) {
    .trust-item { justify-content: center; font-size: 0.95rem; white-space: nowrap; }
}

@media (max-width: 744px) and (orientation: portrait) {
    .trust-item { font-size: 0.75rem; gap: 4px; justify-content: center; white-space: nowrap; }
}

@media (max-width: 393px) and (orientation: portrait) {
    .trust-item { font-size: 0.75rem; gap: 3px; }
}

@media (max-width: 360px) and (orientation: portrait) {
    .trust-item { font-size: 0.75rem; gap: 3px; }
}

/* --- Icon Star --- */
.icon-star {
    font-size: 1em;
    line-height: 1;
    vertical-align: middle;
}

@media (max-width: 744px) and (orientation: portrait) {
    .icon-star { font-size: 1em; }
}

/* ============================================================================
   9. SECTION HEADER (Commun)
   ============================================================================ */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.section-header span {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-accent);
    margin-bottom: 8px;
    font-weight: 600;
}

.section-header h2 {
    margin-bottom: 8px;
    font-size: 1.6rem;
}

.section-subtitle {
    color: var(--text-main);
    font-size: 0.9rem;
    margin-top: 5px;
}

@media (max-width: 1728px) {
    .section-header h2 { font-size: 1.6rem; margin-bottom: 8px; }
}

@media (max-width: 1512px) {
    .section-header { margin: 0 auto 30px; }
    .section-header h2 { font-size: 1.5rem; margin-bottom: 7px; }
}

@media (max-width: 1470px) {
    .section-header { margin: 0 auto 28px; }
    .section-header h2 { font-size: 1.45rem; margin-bottom: 6px; }
}

@media (max-width: 1032px) {
    .section-header { margin: 0 auto 25px; }
    .section-header h2 { font-size: 1.5rem; }
}

@media (max-width: 744px) and (orientation: portrait) {
    .section-header {
        display: block;
        text-align: center;
        margin: 0 auto 20px;
        padding: 0 10px;
        max-width: 100%;
    }
    .section-header span { font-size: 0.75rem; letter-spacing: 1.2px; margin-bottom: 6px; }
    .section-header h2 { font-size: 1.15rem; line-height: 1.25; margin-bottom: 8px; }
    .section-subtitle { font-size: 0.85rem; line-height: 1.4; }
}

/* ============================================================================
   10. SERVICES
   ============================================================================ */
.services { background: var(--bg-white); }

@media (max-width: 744px) and (orientation: portrait) {
    .services {
        min-height: auto;
        padding-top: 30px;
        padding-bottom: 30px;
        display: flex;
        flex-direction: column;
    }
    .services .container {
        display: flex;
        flex-direction: column;
    }
    .services .section-header { flex-shrink: 0; margin-top: 0; margin-bottom: 15px; text-align: center; }
    .services .section-header span { font-size: 0.75rem; margin-bottom: 4px; }
    .services .section-header h2 { font-size: 1.1rem; margin-bottom: 5px; }
    .services .section-subtitle { font-size: 0.78rem; line-height: 1.3; }
}

/* --- Services Grid --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

@media (max-width: 1512px) {
    .services-grid { gap: 25px; }
}

@media (max-width: 1470px) {
    .services-grid { gap: 22px; }
}

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

@media (max-width: 744px) and (orientation: portrait) {
    .services-grid {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
}

/* --- Service Card --- */
.service-card {
    position: relative;
    background: var(--bg-body);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    text-align: center;
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-soft);
}

@media (max-width: 744px) and (orientation: portrait) {
    .service-card {
        flex: 0 0 auto;
        padding: 12px 14px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* --- Service Icon --- */
.service-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.service-icon img {
    width: 85px;
    height: 85px;
}

@media (max-width: 744px) and (orientation: portrait) {
    .service-icon { margin-bottom: 3px; flex-shrink: 0; }
    .service-icon img { width: 30px; height: 30px; }
}

/* --- Service Card H3 (SR-Only) --- */
.service-card h3 {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* --- Service Price --- */
.service-price {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    display: block;
    font-weight: 700;
    line-height: 1.4;
}

@media (max-width: 744px) and (orientation: portrait) {
    .service-price { font-size: 0.75rem; font-weight: 700; margin-bottom: 4px; line-height: 1.2; flex-shrink: 0; }
}

/* --- Check List --- */
.check-list {
    text-align: center;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    flex-grow: 1;
}

.check-list li {
    font-size: 0.92rem;
    line-height: 1.5;
    margin-bottom: 10px;
    font-weight: 400;
    color: var(--text-main);
}

@media (max-width: 744px) and (orientation: portrait) {
    .check-list {
        text-align: left;
        display: flex;
        flex-direction: column;
        gap: 2px;
    }
    .check-list li {
        font-size: 0.75rem;
        margin-bottom: 0;
        line-height: 1.2;
        padding-left: 14px;
        position: relative;
        flex-shrink: 0;
    }
    .check-list li::before { width: 9px; height: 9px; font-size: 0.4rem; left: 0; top: 2px; }
}

/* ============================================================================
   11. VALORISATION (PAIN POINTS)
   ============================================================================ */
.pain-points { background: var(--bg-body); }

.pain-points .section-header h2 { white-space: nowrap; }

@media (max-width: 820px) {
    .pain-points { padding-top: var(--header-height); }
    .pain-points .container { display: flex; flex-direction: column; }
    .pain-points .section-header h2 { white-space: normal; }
    .pain-points .section-header span { font-size: 0.9rem; }
    .pain-points .section-header h2 { font-size: 1.4rem; }
    .pain-points .section-subtitle { font-size: 1rem; }
}

@media (max-width: 744px) and (orientation: portrait) {
    .pain-points,
    .pain-points.full-page-section,
    .pain-points.section-padding {
        min-height: calc(100vh - var(--header-height));
        min-height: calc(100dvh - var(--header-height));
        padding-top: 30px;
        padding-bottom: 30px;
        display: flex;
        flex-direction: column;
    }
    .pain-points .container {
        flex: 1;
        display: flex;
        flex-direction: column;
        padding-top: 0;
        margin-top: 0;
    }
    .pain-points .section-header {
        flex-shrink: 0;
        margin-top: 0;
        padding-top: 0;
        margin-bottom: 6px;
        text-align: center;
    }
    .pain-points .section-header span { font-size: 0.75rem; margin-bottom: 3px; }
    .pain-points .section-header h2 { font-size: 1.15rem; margin-bottom: 4px; }
    .pain-points .section-subtitle { font-size: 0.85rem; line-height: 1.25; }
}

/* --- Pain Grid --- */
.pain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

@media (max-width: 820px) {
    .pain-grid {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 744px) and (orientation: portrait) {
    .pain-grid { flex: 1; display: flex; flex-direction: column; gap: 15px; min-height: 0; }
}

/* --- Pain Text & Gain List --- */
.pain-text ul.gain-list { list-style: none; }

.pain-text ul.gain-list li {
    margin-bottom: 18px;
    padding-left: 35px;
    position: relative;
    line-height: 1.7;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.pain-text ul.gain-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: var(--color-primary);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
}

.pain-text ul.gain-list li strong {
    color: var(--color-primary);
    font-weight: 600;
}

@media (max-width: 820px) {
    .pain-text ul.gain-list li { font-size: 1rem; line-height: 1.5; margin-bottom: 12px; }
}

@media (max-width: 744px) and (orientation: portrait) {
    .pain-text { flex: 1; display: flex; flex-direction: column; justify-content: flex-start; min-height: 0; overflow: hidden; }
    .pain-text ul.gain-list { display: flex; flex-direction: column; gap: 12px; }
    .pain-text ul.gain-list li { font-size: 0.82rem; line-height: 1.35; margin-bottom: 0; padding-left: 26px; }
    .pain-text ul.gain-list li::before { width: 16px; height: 16px; font-size: 0.45rem; }
}

/* --- Image Reveal --- */
.image-reveal {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.image-reveal img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

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

@media (max-width: 820px) {
    .image-reveal { order: -1; min-height: 250px; }
    .image-reveal img { height: 250px; width: 100%; object-fit: cover; }
}

@media (max-width: 744px) and (orientation: portrait) {
    .image-reveal { order: -1; flex-shrink: 0; min-height: 220px; }
    .image-reveal img { height: 220px; width: 100%; object-fit: cover; border-radius: 10px; }
}

/* ============================================================================
   12. TÉMOIGNAGES (WHY US)
   ============================================================================ */
.why-us { background: var(--bg-white); }

@media (max-width: 744px) and (orientation: portrait) {
    .why-us,
    .why-us.full-page-section,
    .why-us.section-padding {
        min-height: calc(100vh - var(--header-height));
        min-height: calc(100dvh - var(--header-height));
        padding-top: 0;
        padding-bottom: 0;
        display: flex;
        flex-direction: column;
    }
    .why-us .container {
        width: 100%;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    .why-us .section-header {
        flex-shrink: 0;
        margin-top: 20px;
        padding-top: 0;
        margin-bottom: 1px;
        text-align: center;
    }
    .why-us .section-header span { font-size: 0.75rem; margin-bottom: 0; }
    .why-us .section-header h2 { font-size: 0.92rem; margin-bottom: 0; }
}

/* --- Testimonials Grid --- */
.testimonials { background: var(--bg-body); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--grid-gap);
    margin-top: 80px;
}

@media (max-width: 1728px) {
    .testimonials-grid { gap: 22px; margin-top: 0; }
}

@media (max-width: 1512px) {
    .testimonials-grid { gap: 20px; margin-top: 35px; }
}

@media (max-width: 1470px) {
    .testimonials-grid { gap: 18px; margin-top: 30px; }
}

@media (max-width: 1032px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 30px auto 0;
        gap: 18px;
    }
}

@media (max-width: 744px) and (orientation: portrait) {
    .testimonials-grid {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        gap: 0;
        margin-top: 0;
    }
}

/* --- Testimonial Card --- */
.testimonial-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(26, 95, 106, 0.15);
    transition: var(--transition);
}

@media (max-width: 1728px) {
    .testimonial-card { padding: 22px; }
}

@media (max-width: 744px) and (orientation: portrait) {
    .testimonial-card {
        flex: 1;
        padding: 3px 6px;
        display: flex;
        flex-direction: column;
        gap: 2px;
        min-height: 0;
    }
}

/* --- Testimonial Avatar --- */
.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--color-primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.1rem;
}

@media (max-width: 1728px) {
    .testimonial-avatar { width: 44px; height: 44px; font-size: 0.98rem; }
}

@media (max-width: 1512px) {
    .testimonial-avatar { width: 44px; height: 44px; font-size: 0.95rem; }
}

@media (max-width: 1470px) {
    .testimonial-avatar { width: 42px; height: 42px; font-size: 0.92rem; }
}

@media (max-width: 744px) and (orientation: portrait) {
    .testimonial-avatar { width: 22px; height: 22px; font-size: 0.5rem; }
}

/* --- Testimonial Info --- */
.testimonial-info h4 {
    margin-bottom: 4px;
    font-weight: 600;
    color: var(--color-primary);
    font-size: 1rem;
}

.testimonial-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

@media (max-width: 1728px) {
    .testimonial-info h4 { font-size: 0.92rem; }
    .testimonial-info span { font-size: 0.78rem; }
}

@media (max-width: 1512px) {
    .testimonial-info h4 { font-size: 0.9rem; }
    .testimonial-info span { font-size: 0.75rem; }
}

@media (max-width: 1470px) {
    .testimonial-info h4 { font-size: 0.88rem; }
    .testimonial-info span { font-size: 0.75rem; }
}

@media (max-width: 744px) and (orientation: portrait) {
    .testimonial-author {
        flex-shrink: 0;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 5px;
        justify-content: flex-start;
    }
    .testimonial-info { text-align: left; }
    .testimonial-info h4 { font-size: 0.75rem; margin-bottom: 0; font-weight: 700; }
    .testimonial-info span { font-size: 0.75rem; }
}

/* --- Testimonial Content --- */
.testimonial-content {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-main);
    font-style: italic;
}

@media (max-width: 1728px) {
    .testimonial-content { font-size: 0.85rem; line-height: 1.52; }
}

@media (max-width: 1512px) {
    .testimonial-content { font-size: 0.82rem; line-height: 1.5; }
}

@media (max-width: 1470px) {
    .testimonial-content { font-size: 0.8rem; line-height: 1.48; }
}

@media (max-width: 744px) and (orientation: portrait) {
    .testimonial-content {
        font-size: 0.75rem;
        line-height: 1.2;
        margin-bottom: 0;
    }
}

/* --- Testimonial Stars --- */
.testimonial-stars {
    color: var(--color-accent);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

@media (max-width: 1728px) {
    .testimonial-stars { font-size: 0.98rem; margin-bottom: 11px; }
}

@media (max-width: 1512px) {
    .testimonial-stars { font-size: 0.95rem; margin-bottom: 10px; }
}

@media (max-width: 1470px) {
    .testimonial-stars { font-size: 0.92rem; margin-bottom: 9px; }
}

@media (max-width: 744px) and (orientation: portrait) {
    .testimonial-stars {
        font-size: 0.75rem;
        margin-bottom: 0;
        text-align: left;
    }
}

/* --- Google Reviews Link --- */
.google-reviews-link {
    text-align: center;
    margin-top: 50px;
}

.google-reviews-link a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.google-reviews-link a:hover { color: var(--color-accent); }

@media (max-width: 1728px) {
    .google-reviews-link { margin-top: 25px; }
}

@media (max-width: 1512px) {
    .google-reviews-link { margin-top: 35px; }
}

@media (max-width: 1470px) {
    .google-reviews-link { margin-top: 32px; }
}

@media (max-width: 1032px) {
    .google-reviews-link { margin-top: 30px; }
}

@media (max-width: 744px) and (orientation: portrait) {
    .google-reviews-link { display: none; }
}

/* ============================================================================
   13. FAQ
   ============================================================================ */
.faq-section {
    background: var(--bg-white);
    text-align: center;
}

/* --- FAQ plein écran sur TOUS les formats --- */
/* IMPORTANT: Utilise calc() pour soustraire la hauteur du header */
.faq-section.full-page-section {
    min-height: calc(100vh - var(--header-height));
    min-height: calc(100dvh - var(--header-height));
    margin-top: var(--header-height);
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
}

.faq-section.full-page-section .container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 24px;
}

.faq-section.full-page-section .faq {
    margin-top: auto;
    margin-bottom: auto;
}

/* Desktop large (> 1366px) */
@media (min-width: 1367px) {
    .faq-section.full-page-section .container {
        justify-content: flex-start;
        padding: 30px 24px;
    }
}

/* Desktop moyen (1024px - 1366px) */
@media (min-width: 1024px) and (max-width: 1366px) {
    .faq-section.full-page-section .container {
        justify-content: flex-start;
        padding: 25px 24px;
    }
}

/* Tablettes grandes (744px - 1024px) */
@media (min-width: 744px) and (max-width: 1023px) {
    .faq-section.full-page-section .container {
        justify-content: flex-start;
        padding: 20px 24px;
    }
}

/* [C] 500-743px : Zone tampon grands smartphones / petites tablettes */
@media (min-width: 500px) and (max-width: 743px) {
    .faq-section.full-page-section .container {
        justify-content: flex-start;
        padding: 15px 16px;
    }
}

/* [C] <500px : Smartphones uniquement (max iPhone=440px, zone tampon avant tablettes) */
@media (max-width: 499px) {
    .faq-section.full-page-section {
        padding: 0;
    }
    .faq-section.full-page-section .container { 
        flex: 1; 
        justify-content: flex-start;
        padding: 10px 10px;
    }
    .faq-section .section-header { flex-shrink: 0; margin-bottom: 8px; text-align: center; }
    .faq-section .section-header span { font-size: 0.75rem; margin-bottom: 1px; }
    .faq-section .section-header h2 { font-size: 1.05rem; margin-bottom: 0; }
}

/* Smartphones paysage */
@media (max-width: 850px) and (orientation: landscape) {
    .faq-section.full-page-section {
        height: auto;
        min-height: calc(100vh - var(--header-height));
        max-height: none;
        margin-top: var(--header-height);
    }
}

/* --- FAQ Container --- */
.faq {
    max-width: 800px;
    margin: 30px auto 0;
    text-align: left;
}

/* Centrage vertical du conteneur FAQ sur tous écrans */
@media (min-width: 744px) {
    .faq {
        margin: 0 auto;
    }
}

@media (max-width: 744px) and (orientation: portrait) {
    .faq { display: flex; flex-direction: column; gap: 8px; max-width: 100%; justify-content: center; margin-top: 0; }
}

/* --- FAQ Item --- */
.faq-item {
    background: var(--bg-body);
    border-radius: var(--radius-sm);
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

@media (max-width: 744px) and (orientation: portrait) {
    .faq-item { margin-bottom: 0; }
}

/* --- FAQ Question --- */
.faq-question {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-primary);
    background: var(--bg-light-gray);
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.faq-question:hover { background: #f0f0f0; }

.faq-question span {
    font-size: 1.4rem;
    font-weight: 400;
    transition: transform 0.3s ease;
    min-width: 20px;
    text-align: center;
}

.faq-item.active .faq-question span { transform: rotate(45deg); }

@media (max-width: 744px) and (orientation: portrait) {
    .faq-question { padding: 15px 14px; font-size: 0.75rem; min-height: 44px; }
    .faq-question span { font-size: 0.9rem; }
}

/* --- FAQ Answer --- */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
    border-top: 1px solid transparent;
    transition: max-height 0.3s ease, padding 0.3s ease;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px;
    border-top-color: #eee;
}

@media (max-width: 744px) and (orientation: portrait) {
    .faq-answer { font-size: 0.75rem; line-height: 1.4; }
    .faq-item.active .faq-answer { padding: 12px 14px; }
}

/* ============================================================================
   14. CONTACT
   ============================================================================ */

/* --- Section Contact : PLEINE PAGE (viewport - header) --- */
.contact.full-page-section { 
    background: var(--bg-body);
    min-height: calc(100vh - var(--header-height));
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* Mobile portrait - dvh pour barre d'URL */
@media (max-width: 744px) and (orientation: portrait) {
    .contact.full-page-section {
        min-height: calc(100dvh - var(--header-height));
    }
}

/* Mobile paysage - hauteur auto car espace limité */
@media (max-width: 850px) and (orientation: landscape) {
    .contact.full-page-section {
        height: auto;
        min-height: auto;
        padding: 15px 0;
    }
}

/* --- Contact Card : Remplit tout l'espace disponible --- */
.contact-card {
    background: var(--color-primary);
    color: var(--text-light);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: 60px 40px 80px 40px; /* Plus d'espace en bas avant le footer */
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Contenu en haut */
}

@media (max-width: 1032px) {
    .contact-card { 
        padding: 50px 30px 70px 30px;
        border-radius: var(--radius-md) var(--radius-md) 0 0;
    }
}

@media (max-width: 820px) {
    .contact-card { 
        padding: 40px 20px 60px 20px; 
    }
}

@media (max-width: 744px) and (orientation: portrait) {
    .contact-card { 
        padding: 25px 14px 50px 14px;
    }
}

/* Très petits écrans (iPhone SE, etc.) */
@media (max-width: 744px) and (orientation: portrait) and (max-height: 700px) {
    .contact-card { 
        padding: 15px 12px 35px 12px;
    }
}

@media (max-width: 850px) and (orientation: landscape) {
    .contact-card { 
        flex: none;
        padding: 25px 20px 40px 20px;
        border-radius: var(--radius-md);
        overflow: visible;
    }
}

/* --- Contact Content --- */
.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.contact-content h2 {
    color: var(--text-light);
    margin-bottom: 12px;
}

.contact-content > p {
    opacity: 0.9;
    margin-bottom: 15px;
    font-size: 1rem;
}

@media (max-width: 1032px) {
    .contact-content h2 { margin-bottom: 10px; }
    .contact-content > p { margin-bottom: 12px; font-size: 0.95rem; }
}

@media (max-width: 744px) and (orientation: portrait) {
    .contact-content h2 { font-size: 1.05rem; margin-bottom: 6px; }
    .contact-content > p { font-size: 0.75rem; margin-bottom: 8px; }
}

@media (max-width: 500px) and (orientation: portrait) {
    .contact-content h2 { font-size: 1rem; margin-bottom: 5px; }
    .contact-content > p { font-size: 0.75rem; margin-bottom: 6px; }
}

/* Très petits écrans en hauteur (iPhone SE, etc.) */
@media (max-width: 744px) and (orientation: portrait) and (max-height: 700px) {
    .contact-content h2 { font-size: 0.95rem; margin-bottom: 4px; }
    .contact-content > p { font-size: 0.75rem; margin-bottom: 5px; }
}

/* --- Disponibilité (bandeau compact) --- */
.contact-availability {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-sm);
    padding: 8px 20px;
    margin-bottom: 15px;
}

.availability-icon {
    font-size: 1rem;
}

.availability-text {
    color: var(--text-light);
    font-size: 0.82rem;
}

.availability-text strong {
    color: var(--color-accent);
}

@media (max-width: 1032px) {
    .contact-availability {
        padding: 7px 15px;
        margin-bottom: 12px;
    }
}

@media (max-width: 744px) and (orientation: portrait) {
    .contact-availability {
        padding: 6px 12px;
        margin-bottom: 10px;
        gap: 8px;
    }
    .availability-icon {
        font-size: 0.9rem;
    }
    .availability-text {
        font-size: 0.75rem;
    }
}

/* Très petits écrans (iPhone SE) */
@media (max-width: 744px) and (orientation: portrait) and (max-height: 700px) {
    .contact-availability {
        padding: 5px 10px;
        margin-bottom: 8px;
    }
    .availability-icon {
        font-size: 0.8rem;
    }
    .availability-text {
        font-size: 0.75rem;
    }
}

/* --- Contact Layout (formulaire + téléphone) --- */
.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (max-width: 744px) and (orientation: portrait) {
    .contact-layout {
        gap: 10px;
    }
}

@media (max-width: 744px) and (orientation: portrait) and (max-height: 700px) {
    .contact-layout {
        gap: 8px;
    }
}

/* --- Formulaire de contact --- */
.contact-form-wrapper {
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    padding: 18px;
    border: 1px solid rgba(255,255,255,0.15);
}

@media (max-width: 744px) and (orientation: portrait) {
    .contact-form-wrapper {
        padding: 12px;
    }
}

/* Très petits écrans (iPhone SE) */
@media (max-width: 744px) and (orientation: portrait) and (max-height: 700px) {
    .contact-form-wrapper {
        padding: 10px;
    }
}

.contact-form-wrapper h3 {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 12px;
    font-weight: 600;
    text-align: center;
}

@media (max-width: 744px) and (orientation: portrait) {
    .contact-form-wrapper h3 {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
}

@media (max-width: 744px) and (orientation: portrait) and (max-height: 700px) {
    .contact-form-wrapper h3 {
        font-size: 0.78rem;
        margin-bottom: 8px;
    }
}

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

@media (max-width: 744px) and (orientation: portrait) {
    .contact-form {
        gap: 6px;
    }
}

@media (max-width: 744px) and (orientation: portrait) and (max-height: 700px) {
    .contact-form {
        gap: 4px;
    }
}

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

@media (max-width: 744px) and (orientation: portrait) {
    .form-row {
        gap: 8px;
    }
}

@media (max-width: 744px) and (orientation: portrait) and (max-height: 700px) {
    .form-row {
        gap: 6px;
    }
}

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

@media (max-width: 744px) and (orientation: portrait) and (max-height: 700px) {
    .form-group {
        gap: 2px;
    }
}

.form-group label {
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.9;
}

@media (max-width: 744px) and (orientation: portrait) {
    .form-group label {
        font-size: 0.75rem;
    }
}

@media (max-width: 744px) and (orientation: portrait) and (max-height: 700px) {
    .form-group label {
        font-size: 0.75rem;
    }
}

.form-group label .required {
    color: var(--color-accent);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 9px 11px;
    font-size: 0.83rem;
    font-family: 'Montserrat', sans-serif;
    background: rgba(255,255,255,0.95);
    border: 2px solid transparent;
    border-radius: 6px;
    color: var(--text-main);
    transition: var(--transition);
}

@media (max-width: 744px) and (orientation: portrait) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 8px 10px;
        font-size: 0.78rem;
    }
}

@media (max-width: 744px) and (orientation: portrait) and (max-height: 700px) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 7px 9px;
        font-size: 0.75rem;
    }
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    font-size: 0.78rem;
}

.form-group select {
    cursor: pointer;
}

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

@media (max-width: 744px) and (orientation: portrait) {
    .form-group textarea {
        min-height: 40px;
    }
}

@media (max-width: 744px) and (orientation: portrait) and (max-height: 700px) {
    .form-group textarea {
        min-height: 44px;
    }
}

.btn-submit {
    margin-top: 6px;
    padding: 11px 22px;
    font-size: 0.85rem;
    width: 100%;
}

@media (max-width: 744px) and (orientation: portrait) {
    .btn-submit {
        padding: 10px 20px;
        font-size: 0.8rem;
        margin-top: 4px;
    }
}

@media (max-width: 744px) and (orientation: portrait) and (max-height: 700px) {
    .btn-submit {
        padding: 8px 18px;
        font-size: 0.75rem;
        margin-top: 3px;
    }
}

/* Messages de statut du formulaire */
.form-message {
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(46, 204, 113, 0.2);
    border: 1px solid rgba(46, 204, 113, 0.5);
    color: #2ecc71;
}

.form-message.error {
    display: block;
    background: rgba(231, 76, 60, 0.2);
    border: 1px solid rgba(231, 76, 60, 0.5);
    color: #e74c3c;
}

/* --- Téléphone (secondaire, compact) --- */
.contact-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 12px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 744px) and (orientation: portrait) {
    .contact-phone {
        padding: 10px;
        gap: 8px;
    }
}

@media (max-width: 744px) and (orientation: portrait) and (max-height: 700px) {
    .contact-phone {
        padding: 8px;
        gap: 6px;
    }
}

.phone-label {
    color: var(--text-light);
    font-size: 0.75rem;
    opacity: 0.7;
}

@media (max-width: 744px) and (orientation: portrait) {
    .phone-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 744px) and (orientation: portrait) and (max-height: 700px) {
    .phone-label {
        font-size: 0.75rem;
    }
}

.phone-number {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

@media (max-width: 744px) and (orientation: portrait) {
    .phone-number {
        font-size: 0.8rem;
    }
}

@media (max-width: 744px) and (orientation: portrait) and (max-height: 700px) {
    .phone-number {
        font-size: 0.75rem;
    }
}

.phone-number:hover {
    color: var(--color-accent);
}

.btn-copy-small {
    padding: 10px 14px;
    font-size: 0.75rem;
    font-weight: 500;
    min-height: 44px;
    background: rgba(255,255,255,0.15);
    color: var(--text-light);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-copy-small:hover {
    background: rgba(255,255,255,0.25);
}

.btn-copy-small.copied {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

/* --- Mobile : formulaire optimisé --- */
@media (max-width: 744px) and (orientation: portrait) {
    .contact-form-wrapper {
        padding: 18px 15px;
    }
    .contact-form-wrapper h3 {
        font-size: 0.9rem;
        margin-bottom: 14px;
    }
    .contact-form {
        gap: 10px;
    }
    .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .form-group label {
        font-size: 0.75rem;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 9px 10px;
        font-size: 0.8rem;
    }
    .form-group input::placeholder,
    .form-group textarea::placeholder {
        font-size: 0.75rem;
    }
    .form-group textarea {
        min-height: 50px;
    }
    .btn-submit {
        padding: 11px 20px;
        font-size: 0.85rem;
    }
    
    /* Téléphone encore plus compact sur mobile */
    .contact-phone {
        padding: 12px;
        gap: 8px;
    }
    .phone-label {
        font-size: 0.75rem;
        width: 100%;
        text-align: center;
    }
    .phone-number {
        font-size: 0.85rem;
    }
    .btn-copy-small {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
}

/* [C] 800px : Samsung Galaxy Tab A9+ (hors Bible, viewport 800×1280, DPR 1.5) */
@media (max-width: 800px) and (orientation: portrait) {
    .hero-box h1 {
        font-size: 1.4rem;
    }
    .hero-box p {
        font-size: 0.98rem;
    }
    .section-header h2 {
        font-size: 1.16rem;
    }
    .service-card h3 {
        font-size: 0.88rem;
    }
    .testimonial-content {
        font-size: 0.75rem;
    }
    .faq-question {
        font-size: 0.76rem;
    }
    .contact-form-wrapper h3 {
        font-size: 0.9rem;
    }
    .form-group label {
        font-size: 0.75rem;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 9px 10px;
        font-size: 0.81rem;
    }
}

/* [B] 616px : Petites tablettes (Galaxy Tab S9 Ultra/S9+) */
/* Regroupe 616/584px — valeurs quasi identiques */
@media (max-width: 616px) and (orientation: portrait) {
    .hero-box h1 {
        font-size: 1.35rem;
    }
    .hero-box p {
        font-size: 0.94rem;
    }
    .section-header h2 {
        font-size: 1.12rem;
    }
    .service-card h3 {
        font-size: 0.85rem;
    }
    .testimonial-content {
        font-size: 0.75rem;
    }
    .faq-question {
        font-size: 0.75rem;
    }
    .contact-form-wrapper h3 {
        font-size: 0.88rem;
    }
    .form-group label {
        font-size: 0.75rem;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 8px 10px;
        font-size: 0.8rem;
    }
}

/* [B] 534px : Galaxy Tab S9 */
@media (max-width: 534px) and (orientation: portrait) {
    .hero-box h1 {
        font-size: 1.3rem;
    }
    .hero-box p {
        font-size: 0.92rem;
    }
    .section-header h2 {
        font-size: 1.1rem;
    }
    .service-card h3 {
        font-size: 0.83rem;
    }
    .testimonial-content {
        font-size: 0.75rem;
    }
    .faq-question {
        font-size: 0.75rem;
    }
    .contact-form-wrapper h3 {
        font-size: 0.86rem;
    }
    .form-group label {
        font-size: 0.75rem;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 8px 9px;
        font-size: 0.78rem;
    }
}

/* [B] 440px : Smartphones (iPhone 16 Pro Max → iPhone 16 Pro) */
/* Regroupe 440/430/412/402/393px — mêmes valeurs sauf hero h1/p */
@media (max-width: 440px) and (orientation: portrait) {
    .hero-box h1 {
        font-size: 1.28rem;
    }
    .hero-box p {
        font-size: 0.9rem;
    }
    .section-header h2 {
        font-size: 1.1rem;
    }
    .service-card h3 {
        font-size: 0.82rem;
    }
    .testimonial-content {
        font-size: 0.75rem;
    }
    .faq-question {
        font-size: 0.75rem;
    }
    .contact-form-wrapper h3 {
        font-size: 0.85rem;
    }
    .form-group label {
        font-size: 0.75rem;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 8px 9px;
        font-size: 0.78rem;
    }
}

/* [B] 393px : iPhone 16/15/15 Pro/14 Pro, Pixel 5 — faq-question padding réduit */
@media (max-width: 393px) and (orientation: portrait) {
    .hero-box h1 {
        font-size: 1.25rem;
    }
    .faq-question {
        padding: 11px 12px;
    }
}

/* [B] 390px : iPhone 16e/14/13/12 */
@media (max-width: 390px) and (orientation: portrait) {
    .hero-box h1 {
        font-size: 1.24rem;
    }
    .hero-box p {
        font-size: 0.89rem;
    }
    .section-header h2 {
        font-size: 1.08rem;
    }
    .service-card h3 {
        font-size: 0.81rem;
    }
    .testimonial-content {
        font-size: 0.75rem;
    }
    .faq-question {
        font-size: 0.75rem;
        padding: 11px 12px;
    }
    .contact-form-wrapper h3 {
        font-size: 0.84rem;
    }
    .form-group label {
        font-size: 0.75rem;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 8px 9px;
        font-size: 0.77rem;
    }
}

/* [B] 384px : Galaxy S24/S23/S22 Ultra/+ */
@media (max-width: 384px) and (orientation: portrait) {
    .hero-box h1 {
        font-size: 1.22rem;
    }
    .hero-box p {
        font-size: 0.87rem;
    }
    .section-header h2 {
        font-size: 1.07rem;
    }
    .service-card h3 {
        font-size: 0.81rem;
    }
    .testimonial-content {
        font-size: 0.75rem;
    }
    .faq-question {
        font-size: 0.75rem;
        padding: 10px 11px;
    }
    .contact-form-wrapper h3 {
        font-size: 0.83rem;
    }
    .form-group label {
        font-size: 0.75rem;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 7px 8px;
        font-size: 0.76rem;
    }
}

/* [B] 375px : iPhone SE, iPhone 13/12 Mini */
@media (max-width: 375px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .contact-form-wrapper {
        padding: 15px 12px;
    }
}

/* [B] 360px : Galaxy S24/S23/S22, A55/A54, Xiaomi, Huawei */
@media (max-width: 360px) and (orientation: portrait) {
    .hero-box h1 {
        font-size: 1.2rem;
    }
    .hero-box p {
        font-size: 0.85rem;
    }
    .section-header h2 {
        font-size: 1.05rem;
    }
    .service-card h3 {
        font-size: 0.8rem;
    }
    .testimonial-content {
        font-size: 0.75rem;
    }
    .faq-question {
        font-size: 0.75rem;
        padding: 10px 11px;
    }
    .contact-form-wrapper h3 {
        font-size: 0.82rem;
    }
    .form-group label {
        font-size: 0.75rem;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 7px 8px;
        font-size: 0.75rem;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .contact-form-wrapper {
        padding: 14px 10px;
    }
}


/* ============================================================================
   15. FOOTER
   ============================================================================ */
footer {
    background: var(--bg-dark);
    color: #888;
    padding: 14px 0;
    padding-bottom: max(14px, env(safe-area-inset-bottom));
    font-size: 0.85rem;
}

footer h4 {
    color: var(--text-light);
    margin-bottom: 4px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.8px;
}

footer a:hover { color: var(--color-accent); }

@media (max-width: 744px) and (orientation: portrait) {
    footer { padding: 12px 0; padding-bottom: max(12px, env(safe-area-inset-bottom)); }
    footer h4 { font-size: 0.75rem; margin-bottom: 3px; }
    footer a { font-size: 0.78rem; display: inline-flex; min-height: 32px; line-height: 1.2; }
}

.footer-compact {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
}

.footer-compact p {
    color: #a0a0a0;
    font-size: 0.8rem;
    line-height: 1.25;
    margin: 0;
}

.footer-facebook {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #ffffff;
    font-weight: 500;
}

.footer-facebook svg {
    color: #1877F2;
    width: 18px;
    height: 18px;
}

.footer-facebook svg path {
    fill: #1877F2;
}

@media (max-width: 744px) and (orientation: portrait) {
    footer .container {
        display: flex;
        justify-content: center;
    }

    .footer-compact { gap: 3px; }
    .footer-compact {
        width: 100%;
        align-items: center;
        text-align: center;
    }
    .footer-compact h4,
    .footer-compact p,
    .footer-facebook {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .footer-compact p {
        font-size: clamp(0.52rem, 2vw, 0.62rem);
        line-height: 1.1;
        white-space: nowrap;
    }
    .footer-facebook {
        color: #ffffff;
        font-size: 0.75rem;
    }
    .footer-facebook svg {
        width: 16px;
        height: 16px;
        color: #1877F2;
    }
}

/* ============================================================================
   16. UTILITAIRES TOUCH/HOVER
   ============================================================================ */
@media (max-width: 1032px), (hover: none) {
    * { -webkit-tap-highlight-color: transparent; }
    
    .service-card,
    .testimonial-card,
    .image-reveal,
    .image-reveal img,
    .faq-question,
    .btn,
    a {
        transition: none;
        animation: none;
    }
    
    .service-card:hover,
    .service-card:active,
    .testimonial-card:hover,
    .testimonial-card:active,
    .faq-question:hover,
    .faq-question:active {
        transform: none;
        box-shadow: var(--shadow-card);
        background: inherit;
    }
    
    .image-reveal:hover img,
    .image-reveal:active img { transform: none; }
    
    .btn-primary:hover,
    .btn-primary:active,
    .btn-gold:hover,
    .btn-gold:active,
    .btn-outline:hover,
    .btn-outline:active,
    .btn-copy:hover,
    .btn-copy:active,
    .btn-mailto:hover,
    .btn-mailto:active { transform: none; }
    
    html { overscroll-behavior-y: none; }
}

/* ============================================================================
   17. PRINT
   ============================================================================ */
@media print {
    header, .mobile-toggle, .btn, .contact-card button, .btn-copy, .btn-mailto { display: none; }
    body { background: white; color: black; }
    .hero { height: auto; min-height: auto; background: none; padding-top: 0; }
    .hero-box { border: 1px solid #ccc; color: black; box-shadow: none; }
    .hero-box h1 { color: black; }
    .section-padding { padding: 20px 0; min-height: auto; }
    .logo-text--short { display: none; }
    .logo-text--long { display: inline; }
}

/* ============================================================================
   18. DEVICE ALIGNMENT (référence laptop conservée)
   Ajustements ciblés mobile/tablette sans casser le desktop/laptop
   ============================================================================ */
@media (max-width: 1024px) {
    :root {
        --header-height: 68px;
        --trust-bar-height: 48px;
        --section-padding-top: calc(var(--header-height) + 16px);
        --section-padding-bottom: 24px;
        --scroll-padding: calc(var(--header-height) + var(--trust-bar-height) + 14px);
    }

    .container { padding: 0 16px; }
    .section-logo { display: none; }

    /* Neutraliser le min-height: 100vh générique */
    .section-padding {
        min-height: auto;
    }

    /* Hero : logo sous le texte, dans le flux */
    .hero {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-logo {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        margin: 12px auto 0;
    }

    /* Sections : hauteur auto, pas de plein écran forcé */
    .services.full-page-section,
    .pain-points.full-page-section,
    .why-us.full-page-section,
    .faq-section.full-page-section,
    .contact.full-page-section {
        min-height: auto;
        height: auto;
        margin-top: 0;
        padding-top: var(--section-padding-top);
        padding-bottom: var(--section-padding-bottom);
    }

    /* Services et témoignages : 2 colonnes sur tablette */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin: 16px auto 0;
    }

    .testimonial-card {
        padding: 16px 14px;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .testimonial-avatar {
        width: 34px;
        height: 34px;
        font-size: 0.75rem;
    }

    .faq-section.full-page-section .container { padding: 0 16px; }
    .faq {
        max-width: 100%;
        margin: 16px auto 0;
    }

    .contact-card {
        width: 100%;
        max-width: 100%;
        border-radius: 14px;
        padding: 28px 16px 30px;
    }
}

@media (max-width: 767px) {
    :root {
        --header-height: 64px;
        --trust-bar-height: 44px;
        --section-padding-top: calc(var(--header-height) + 14px);
        --section-padding-bottom: 20px;
        --scroll-padding: calc(var(--header-height) + var(--trust-bar-height) + 12px);
    }

    .container { padding: 0 12px; }

    .hero {
        min-height: calc(100dvh - var(--header-height) - var(--trust-bar-height));
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: calc(var(--header-height) + 12px);
    }

    .hero-content {
        width: 100%;
        max-width: 900px;
        padding: 0 6px;
    }

    .hero-logo {
        position: relative;
        left: auto;
        top: auto;
        bottom: auto;
        transform: none;
        margin: 12px auto 0;
    }

    .hero-box {
        max-width: 100%;
        padding: 12px 14px;
    }

    .hero-box h1 {
        white-space: normal;
        font-size: clamp(1.24rem, 5.2vw, 1.48rem);
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .hero-box p {
        font-size: clamp(0.9rem, 3.6vw, 1rem);
        line-height: 1.45;
    }

    .hero-logo img {
        width: clamp(118px, 36vw, 150px);
        height: clamp(118px, 36vw, 150px);
    }

    .trust-grid {
        flex-wrap: wrap;
        row-gap: 6px;
        column-gap: 8px;
    }

    .trust-item { font-size: 0.8rem; }

    .section-header {
        margin: 0 auto 16px;
        padding: 0 6px;
    }

    .section-header h2 {
        font-size: 1.14rem;
        line-height: 1.25;
    }

    .section-subtitle {
        font-size: 0.88rem;
        line-height: 1.4;
    }

    .service-card { padding: 16px 14px; }

    /* Mobile : retour 1 colonne */
    .services-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .check-list li,
    .gain-list li,
    .testimonial-content,
    .faq-question,
    .faq-answer {
        font-size: 0.84rem;
        line-height: 1.4;
    }

    .faq-question {
        padding: 14px 12px;
        min-height: 44px;
    }

    .faq-item.active .faq-answer { padding: 12px; }

    .contact-card {
        border-radius: 12px;
        padding: 22px 12px 24px;
    }
}

/* ============================================================================
   19. VIEWPORT FIT MODE (tablette/mobile, anti-débordement)
   ============================================================================ */
@media (max-width: 1200px), (max-height: 760px) {
    body.viewport-fit-mode {
        overflow-x: hidden;
    }

    body.viewport-fit-mode .hero {
        min-height: auto;
        height: calc(100dvh - var(--trust-bar-height));
        padding-top: calc(var(--header-height) + 10px);
    }

    body.viewport-fit-mode .hero-logo {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        margin: 10px auto 0;
    }

    body.viewport-fit-mode main > section.fit-section {
        position: relative;
        box-sizing: border-box;
        min-height: 0;
        padding-top: var(--fit-pad-top, 8px);
        padding-bottom: var(--fit-pad-bottom, max(env(safe-area-inset-bottom), 12px));
        overflow: hidden;
        overflow: clip;
    }

    body.viewport-fit-mode main > section.fit-section .fit-target {
        --fit-scale: 1;
        --fit-width: 100%;
        width: var(--fit-width);
        margin-left: auto;
        margin-right: auto;
        transform-origin: top center;
        transform: scale(var(--fit-scale));
        will-change: transform;
    }

    body.viewport-fit-mode #services .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    body.viewport-fit-mode #pourquoi .testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        margin-top: 12px;
    }

    body.viewport-fit-mode .service-card,
    body.viewport-fit-mode .testimonial-card {
        padding: 14px 12px;
    }

    body.viewport-fit-mode .check-list li,
    body.viewport-fit-mode .gain-list li,
    body.viewport-fit-mode .testimonial-content,
    body.viewport-fit-mode .faq-question,
    body.viewport-fit-mode .faq-answer {
        line-height: 1.35;
    }
}

@media (max-width: 767px), (max-height: 700px) {
    body.viewport-fit-mode #services .services-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    body.viewport-fit-mode #pourquoi .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    body.viewport-fit-mode .hero-box {
        padding: 10px 12px;
    }

    body.viewport-fit-mode .hero-box h1 {
        font-size: clamp(1.15rem, 4.8vw, 1.4rem);
        line-height: 1.2;
        margin-bottom: 8px;
    }

    body.viewport-fit-mode .hero-box p {
        font-size: clamp(0.84rem, 3.4vw, 0.95rem);
        line-height: 1.35;
    }
}

@media (max-height: 600px) and (min-width: 700px) {
    body.viewport-fit-mode #services .services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    body.viewport-fit-mode #pourquoi .testimonials-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    body.viewport-fit-mode .contact-layout {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 240px;
        align-items: start;
        gap: 8px;
    }

    body.viewport-fit-mode .contact-phone {
        align-self: stretch;
        justify-content: center;
    }
}

@media (max-width: 1200px) and (min-height: 950px) {
    body.viewport-fit-mode #valorisation .image-reveal {
        min-height: 320px;
    }

    body.viewport-fit-mode #valorisation .image-reveal img {
        height: 320px;
    }
}

/* Paysage tactile: 3 sections clés avec marge de sécurité latérale/basse ~5% */
@media (orientation: landscape) and (any-pointer: coarse) and (max-height: 900px) {
    body.viewport-fit-mode #services.fit-section,
    body.viewport-fit-mode #valorisation.fit-section,
    body.viewport-fit-mode #pourquoi.fit-section {
        padding-left: 5vw;
        padding-right: 5vw;
        padding-bottom: max(var(--fit-pad-bottom, max(env(safe-area-inset-bottom), 12px)), 5vw);
    }

    body.viewport-fit-mode #services.fit-section .fit-target,
    body.viewport-fit-mode #valorisation.fit-section .fit-target,
    body.viewport-fit-mode #pourquoi.fit-section .fit-target {
        max-width: none;
    }
}

/* Trust bar portrait: maintenir chaque libellé sur une ligne */
@media (orientation: portrait) and (max-width: 1032px) {
    .trust-bar {
        height: auto;
        min-height: 44px;
        padding: clamp(6px, 1.1vw, 10px) 0;
    }

    .trust-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        align-items: center;
        gap: clamp(4px, 0.9vw, 10px);
        flex-wrap: nowrap;
    }

    .trust-item {
        min-width: 0;
        justify-content: center;
        gap: clamp(2px, 0.45vw, 6px);
        font-size: clamp(0.58rem, 1.04vw, 0.95rem);
        line-height: 1.1;
        white-space: nowrap;
    }

    .trust-item .icon-star {
        flex: 0 0 auto;
        font-size: 0.95em;
        line-height: 1;
    }

    .trust-item .trust-text--long,
    .trust-item .trust-text--short {
        min-width: 0;
        max-width: 100%;
        white-space: nowrap;
        line-height: 1.1;
    }
}

/* Hero portrait tactile: logo sous le texte, taille = 1/3 largeur device */
@media (orientation: portrait) and (any-pointer: coarse) and (max-width: 1032px) {
    .hero {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        min-height: calc(100dvh - var(--header-height) - var(--trust-bar-height));
        height: auto;
        padding-bottom: max(env(safe-area-inset-bottom), 8px);
    }

    .hero-logo,
    body.viewport-fit-mode .hero-logo {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        transform: none;
        margin: 12px auto clamp(10px, 2.2vh, 18px);
    }

    .hero-logo img,
    body.viewport-fit-mode .hero-logo img {
        width: 33.333vw;
        height: 33.333vw;
        object-fit: contain;
    }
}

/* Hero paysage tactile: logo sous le texte, sans débordement, avec marge avant trust-bar */
@media (orientation: landscape) and (any-pointer: coarse) and (max-width: 1366px) {
    .hero,
    body.viewport-fit-mode .hero {
        --hero-logo-dynamic-top: calc(var(--header-height) + 150px);
        --hero-logo-landscape-size: min(22vh, 170px);
        min-height: calc(100dvh - var(--trust-bar-height));
        height: calc(100dvh - var(--trust-bar-height));
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: calc(var(--header-height) + 8px);
        padding-bottom: max(env(safe-area-inset-bottom), 8px);
    }

    .hero-box,
    body.viewport-fit-mode .hero-box {
        padding: 8px 12px;
        max-width: min(96vw, 980px);
    }

    .hero-box h1,
    body.viewport-fit-mode .hero-box h1 {
        font-size: clamp(1.02rem, 2.4vw, 1.35rem);
        line-height: 1.15;
        margin-bottom: 6px;
    }

    .hero-box p,
    body.viewport-fit-mode .hero-box p {
        font-size: clamp(0.72rem, 1.7vw, 0.92rem);
        line-height: 1.25;
    }

    .hero-logo,
    body.viewport-fit-mode .hero-logo {
        position: absolute;
        left: 50%;
        right: auto;
        top: var(--hero-logo-dynamic-top);
        bottom: auto;
        transform: translateX(-50%);
        margin: 0;
        flex: 0 0 auto;
    }

    .hero-logo img,
    body.viewport-fit-mode .hero-logo img {
        width: var(--hero-logo-landscape-size);
        height: var(--hero-logo-landscape-size);
        object-fit: contain;
    }
}

/* Paysage mobile: marges latérales du texte/cache = taille du logo */
@media (orientation: landscape) and (any-pointer: coarse) and (max-height: 500px) {
    .hero-content,
    body.viewport-fit-mode .hero-content {
        width: calc(100vw - (2 * var(--hero-logo-landscape-size, 84px)));
        max-width: calc(100vw - (2 * var(--hero-logo-landscape-size, 84px)));
        margin-left: auto;
        margin-right: auto;
    }

    .hero-box,
    body.viewport-fit-mode .hero-box {
        width: 100%;
        max-width: 100%;
    }
}

/* Position dynamique universelle du logo hero (calcul JS) */
.hero-logo.hero-logo-dynamic,
body.viewport-fit-mode .hero-logo.hero-logo-dynamic {
    position: absolute !important;
    left: 50% !important;
    right: auto !important;
    top: var(--hero-logo-dynamic-top) !important;
    bottom: auto !important;
    transform: translateX(-50%) !important;
    margin: 0 !important;
}

/* Nos prestations (paysage tactile): 3 cartes sur 80% de la largeur visible */
@media (orientation: landscape) and (any-pointer: coarse) and (max-width: 1366px) {
    #services .services-grid,
    body.viewport-fit-mode #services .services-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: clamp(8px, 1.1vw, 14px) !important;
        width: calc(80vw / var(--fit-scale, 1));
        margin: 0;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }

    #services .service-card,
    body.viewport-fit-mode #services .service-card {
        padding: clamp(8px, 1.4vh, 14px) clamp(8px, 1vw, 12px);
    }

    #services .service-icon,
    body.viewport-fit-mode #services .service-icon {
        margin-bottom: clamp(3px, 0.7vh, 8px);
    }

    #services .service-icon img,
    body.viewport-fit-mode #services .service-icon img {
        width: clamp(24px, 5.5vh, 52px);
        height: clamp(24px, 5.5vh, 52px);
    }

    #services .service-price,
    body.viewport-fit-mode #services .service-price {
        font-size: clamp(0.56rem, 1.2vh, 0.78rem);
        line-height: 1.2;
        margin-bottom: clamp(4px, 0.8vh, 8px);
    }

    #services .check-list li,
    body.viewport-fit-mode #services .check-list li {
        font-size: clamp(0.52rem, 1.1vh, 0.72rem);
        line-height: 1.18;
        margin-bottom: clamp(2px, 0.5vh, 6px);
    }
}

/* Nos protocoles (tactile <=1366): texte strict 60%, image dans 40% avec marge uniforme */
@media (any-pointer: coarse) and (max-width: 1366px) {
    #valorisation .pain-grid,
    body.viewport-fit-mode #valorisation .pain-grid {
        --protocol-side-gap: clamp(12px, 3.2vw, 24px);
        --protocol-image-gap: clamp(8px, 1.6vw, 16px);
        width: calc((100vw - (2 * var(--protocol-side-gap))) / var(--fit-scale, 1));
        max-width: none;
        margin: 0;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        display: grid !important;
        grid-template-columns: minmax(0, 60%) minmax(0, 40%) !important;
        align-items: center;
        justify-content: center;
        column-gap: 0;
        row-gap: 0;
    }

    #valorisation .pain-text,
    body.viewport-fit-mode #valorisation .pain-text {
        min-width: 0;
        max-width: 100%;
        padding-right: var(--protocol-image-gap);
        align-self: center;
    }

    #valorisation .pain-text ul.gain-list,
    body.viewport-fit-mode #valorisation .pain-text ul.gain-list {
        width: 100%;
        max-width: 100%;
    }

    #valorisation .pain-text ul.gain-list li,
    body.viewport-fit-mode #valorisation .pain-text ul.gain-list li {
        width: 100%;
        max-width: 100%;
        overflow-wrap: anywhere;
        font-size: calc(0.82rem + 2px);
    }

    body.viewport-fit-mode #valorisation .pain-text ul.gain-list li {
        /* Compense la réduction globale due au fit-scale pour un gain visuel réel */
        font-size: calc((0.82rem + 2px) / max(var(--fit-scale, 1), 0.7));
    }

    #valorisation .section-header h2,
    body.viewport-fit-mode #valorisation .section-header h2 {
        font-size: calc(clamp(1.15rem, 2.1vw, 1.5rem) + 8px);
    }

    #valorisation .section-subtitle,
    body.viewport-fit-mode #valorisation .section-subtitle {
        font-size: calc(clamp(0.85rem, 1.25vw, 0.9rem) + 2px);
    }

    body.viewport-fit-mode #valorisation .section-header h2 {
        font-size: calc(clamp(1.15rem, 2.1vw, 1.5rem) + (8px / max(var(--fit-scale, 1), 0.7)));
    }

    body.viewport-fit-mode #valorisation .section-subtitle {
        font-size: calc(clamp(0.85rem, 1.25vw, 0.9rem) + (2px / max(var(--fit-scale, 1), 0.7)));
    }

    #valorisation .image-reveal,
    body.viewport-fit-mode #valorisation .image-reveal {
        order: 0 !important;
        width: calc(100% - (2 * var(--protocol-image-gap)));
        max-width: calc(100% - (2 * var(--protocol-image-gap)));
        height: auto;
        min-height: 0;
        margin: var(--protocol-image-gap);
        align-self: center;
        justify-self: stretch;
        border-radius: 10px;
        overflow: hidden;
    }

    #valorisation .image-reveal img,
    body.viewport-fit-mode #valorisation .image-reveal img {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
        object-fit: cover;
        border-radius: inherit;
    }
}

/* Charte unifiée des en-têtes (Prestations, Notre Méthode, Avis, FAQ) sur tactile */
@media (any-pointer: coarse) and (max-width: 1366px) {
    #services .section-header span,
    #valorisation .section-header span,
    #pourquoi .section-header span,
    #faq .section-header span {
        font-size: 0.85rem !important;
        line-height: 1.2 !important;
        letter-spacing: 1.2px !important;
        margin-bottom: 6px !important;
    }

    #services .section-header h2,
    #valorisation .section-header h2,
    #pourquoi .section-header h2,
    #faq .section-header h2 {
        font-size: 1.5rem !important;
        line-height: 1.24 !important;
        margin-bottom: 8px !important;
    }

    #services .section-subtitle,
    #valorisation .section-subtitle,
    #pourquoi .section-subtitle,
    #faq .section-subtitle {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
    }

    body.viewport-fit-mode #services .section-header span,
    body.viewport-fit-mode #valorisation .section-header span,
    body.viewport-fit-mode #pourquoi .section-header span,
    body.viewport-fit-mode #faq .section-header span {
        font-size: calc(0.85rem / max(var(--fit-scale, 1), 0.35)) !important;
    }

    body.viewport-fit-mode #services .section-header h2,
    body.viewport-fit-mode #valorisation .section-header h2,
    body.viewport-fit-mode #pourquoi .section-header h2,
    body.viewport-fit-mode #faq .section-header h2 {
        font-size: calc(1.5rem / max(var(--fit-scale, 1), 0.35)) !important;
    }

    body.viewport-fit-mode #services .section-subtitle,
    body.viewport-fit-mode #valorisation .section-subtitle,
    body.viewport-fit-mode #pourquoi .section-subtitle,
    body.viewport-fit-mode #faq .section-subtitle {
        font-size: calc(0.9rem / max(var(--fit-scale, 1), 0.35)) !important;
    }
}

/* Paysage tactile: titres/sous-titres unifiés réduits de 4 crans */
@media (orientation: landscape) and (any-pointer: coarse) and (max-width: 1366px) {
    #services .section-header h2,
    #valorisation .section-header h2,
    #pourquoi .section-header h2,
    #faq .section-header h2 {
        font-size: calc(1.5rem - 4px) !important;
    }

    #services .section-subtitle,
    #valorisation .section-subtitle,
    #pourquoi .section-subtitle,
    #faq .section-subtitle {
        font-size: calc(0.9rem - 4px) !important;
    }

    body.viewport-fit-mode #services .section-header h2,
    body.viewport-fit-mode #valorisation .section-header h2,
    body.viewport-fit-mode #pourquoi .section-header h2,
    body.viewport-fit-mode #faq .section-header h2 {
        font-size: calc((1.5rem - 4px) / max(var(--fit-scale, 1), 0.35)) !important;
    }

    body.viewport-fit-mode #services .section-subtitle,
    body.viewport-fit-mode #valorisation .section-subtitle,
    body.viewport-fit-mode #pourquoi .section-subtitle,
    body.viewport-fit-mode #faq .section-subtitle {
        font-size: calc((0.9rem - 4px) / max(var(--fit-scale, 1), 0.35)) !important;
    }
}

/* Laptop non tactile: agrandir uniquement les titres étoilés et restaurer le décalage vertical */
@media (any-pointer: fine) and (min-width: 1366px) and (max-width: 1728px) {
    .full-page-section {
        min-height: calc(100vh - var(--header-height));
        min-height: calc(100dvh - var(--header-height));
    }

    #services .section-header span,
    #valorisation .section-header span,
    #pourquoi .section-header span,
    #faq .section-header span {
        font-size: calc(0.85rem + 8px) !important;
        line-height: 1.2 !important;
    }

    /* Réduit de 50% l'espace haut sur les pages internes (hors Accueil) */
    #services.full-page-section,
    #valorisation.full-page-section,
    #pourquoi.full-page-section,
    #faq.full-page-section {
        padding-top: calc(var(--section-padding-top) * 0.5) !important;
    }

    /* FAQ avait une logique différente: on l'aligne sur les autres sections */
    #faq.full-page-section {
        margin-top: 0 !important;
        padding-bottom: var(--section-padding-bottom) !important;
    }

    #faq.full-page-section .container {
        padding-top: 0 !important;
    }

    /* Avis laptop: marge pilotée dynamiquement pour équilibrer logo -> grille -> bas */
    #pourquoi .testimonials-grid {
        margin-top: var(--why-grid-margin-top, clamp(72px, 8vh, 110px)) !important;
    }
}
