/* Masque la page jusqu'au chargement des polices (anti-FOUT) */
html { visibility: hidden; }
html.fonts-ready { visibility: visible; }

:root {
    /* =====================================================
       DESIGN SYSTEM LDLC — Charte graphique officielle (jan. 2023)
       Thème clair — voir design-system-ldlc.md
    ===================================================== */

    /* Couleurs officielles logo */
    --color-logo-blue: #0a3782;
    --color-logo-cyan: #0096c8;
    --color-logo-grey-dark: #3c4244;
    --color-logo-grey-medium: #766e7a;
    --color-logo-grey-light: #b0b2b4;

    /* Brand UI */
    --color-brand-navy: #1e2b50;
    --color-brand-navy-dark: #141e38;
    --color-brand-cta: #0a3782;
    --color-brand-cta-hover: #083070;
    --color-brand-cta-dark: #062860;

    /* Backgrounds */
    --color-bg-page: #e8ecf4;
    --color-bg-card: #f7f9fc;
    --color-bg-subtle: #dde4ef;
    --color-bg-info: #e8eef8;

    /* Texte */
    --color-text-primary: #333333;
    --color-text-secondary: #666666;
    --color-text-disabled: #999999;
    --color-text-white: #ffffff;
    --color-heading: #1e2b50;
    --color-text-link: #1e2b50;
    --color-text-link-hover: #0096c8;
    --color-price-current: #0096c8;
    --color-price-old: #999999;

    /* États */
    --color-success: #2e9e44;
    --color-success-bg: #e8f4e8;
    --color-warning: #f0a800;
    --color-error: #e2001a;
    --color-error-bg: #fdf0f0;
    --color-info: #2d6db5;

    /* Bordures */
    --color-border-light: #d6dde9;
    --color-border-medium: #c2ccdb;
    --color-border-focus: #0a3782;

    /* Typographie */
    --font-family-brand: "Montserrat", Arial, sans-serif;
    --font-family-ui: "Open Sans", Arial, sans-serif;

    /* Layout */
    --container-max: 1280px;
    --container-wide: 1440px;
    --container-sm: 960px;

    /* Spacing (base 8px) */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;

    /* Rayons */
    --border-radius-sm: 3px;
    --border-radius-md: 4px;
    --border-radius-lg: 8px;
    --border-radius-full: 999px;

    /* Ombres — teintées navy pour un relief doux sur fond bleuté */
    --shadow-sm: 0 1px 3px rgba(30, 43, 80, 0.06);
    --shadow-md: 0 6px 20px rgba(30, 43, 80, 0.10);
    --shadow-lg: 0 12px 32px rgba(30, 43, 80, 0.14);
    --shadow-xl: 0 20px 48px rgba(30, 43, 80, 0.18);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
    --transition-slow: 300ms ease;

    /* =====================================================
       ALIAS HÉRITÉS — anciens noms remappés sur le thème clair
       (utilisés dans tout le site, ne pas supprimer)
    ===================================================== */
    --ldlc-blue: #0a3782;
    --ldlc-cyan: #0096c8;
    --bg-solid: #e8ecf4;
    --panel: #f7f9fc;
    --panel-bg: #f7f9fc;
    --panel-border: #d6dde9;
    --text: #333333;
    --text-primary: #333333;
    --text-muted: #666666;
    --muted: #666666;
    --input-bg: #eef2f8;
    --input-border: #c2ccdb;
    --primary: #0a3782;
    --primary-hover: #083070;
    --danger: #e2001a;
    --ok: #2e9e44;
    --success: #2e9e44;
    --red: #e2001a;
    --cyan: #0096c8;
    --blue-light: #2d6db5;
    --gold: #f0a800;
    --border: #d6dde9;
    --border-color: #d6dde9;
    --bg: #e8ecf4;
    --surface: #f7f9fc;
    --card-bg: #f7f9fc;

    --radius: 8px;
    --shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* =====================================================
   MODE SOMBRE — bleu nuit, texte clair
   Activé via <html class="dark"> (toggle dans la navbar,
   préférence mémorisée + appliquée avant l'affichage)
===================================================== */
html.dark {
    /* Surfaces */
    --color-bg-page: #0c1424;
    --color-bg-card: #16223b;
    --color-bg-subtle: #1d2c49;
    --color-bg-info: #15263f;

    /* Texte */
    --color-text-primary: #e7edf6;
    --color-text-secondary: #aab6cc;
    --color-text-disabled: #7787a0;
    --color-heading: #ffffff;
    --color-text-link: #5aa9e0;
    --color-text-link-hover: #29b6e8;
    --color-price-current: #29b6e8;
    --color-price-old: #7787a0;

    /* Bordures */
    --color-border-light: rgba(255, 255, 255, 0.10);
    --color-border-medium: rgba(255, 255, 255, 0.18);
    --color-border-focus: #2d6db5;

    /* États (fonds translucides adaptés au sombre) */
    --color-success-bg: rgba(46, 158, 68, 0.18);
    --color-error-bg: rgba(226, 0, 26, 0.18);

    /* Ombres plus profondes */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.40);
    --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.50);
    --shadow-xl: 0 20px 48px rgba(0, 0, 0, 0.55);

    /* ── Alias hérités ── */
    --bg-solid: #0c1424;
    --bg: #0c1424;
    --panel: #16223b;
    --panel-bg: #16223b;
    --panel-2: #16223b;
    --card-bg: #16223b;
    --surface: #16223b;
    --panel-border: rgba(255, 255, 255, 0.10);
    --border: rgba(255, 255, 255, 0.10);
    --border-color: rgba(255, 255, 255, 0.10);
    --text: #e7edf6;
    --text-primary: #e7edf6;
    --text-muted: #aab6cc;
    --muted: #aab6cc;
    --input-bg: #0f1b30;
    --input-border: rgba(255, 255, 255, 0.16);
    --shadow: 0 6px 20px rgba(0, 0, 0, 0.45);

    /* ── Tokens MUI (homepage) ── */
    --bp: #16223b;
    --be: #1d2c49;
    --bc: #16223b;
    --t1: #e7edf6;
    --t2: #aab6cc;
    --t3: #7787a0;
    --div: rgba(255, 255, 255, 0.12);
    --hover: rgba(255, 255, 255, 0.06);
    --sel: rgba(0, 150, 200, 0.22);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family-ui);
    font-size: 14px;
    background: var(--color-bg-page);
    color: var(--color-text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Titres et éléments brand : Montserrat (charte officielle) */
h1, h2, h3, h4, h5, h6,
button, .btn, .badge, .nav-link, .nav-links a {
    font-family: var(--font-family-brand);
}

/* ── Newsletter Form (Top) ──────────────────── */
.newsletter-bar {
    max-width: 1200px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, rgba(10, 55, 130, 0.15), rgba(0, 150, 200, 0.1));
    border: 1px solid rgba(0, 150, 200, 0.2);
    border-radius: 14px;
    padding: 30px 35px;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.newsletter-bar .nl-text {
    flex: 1;
    min-width: 200px;
}

.newsletter-bar .nl-text h4 {
    color: var(--ldlc-cyan);
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 6px;
}

.newsletter-bar .nl-text p {
    color: var(--text-muted);
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
}

.newsletter-bar .nl-form {
    display: flex;
    gap: 10px;
    flex: 1;
    min-width: 280px;
}

.newsletter-bar .nl-form input {
    flex: 1 !important;
    padding: 12px 18px !important;
    background: var(--color-bg-card) !important;
    border: 1px solid var(--input-border) !important;
    border-radius: 4px !important;
    color: var(--text) !important;
}

.newsletter-bar .nl-form button {
    padding: 12px 24px !important;
    background: linear-gradient(135deg, var(--ldlc-blue), var(--ldlc-cyan)) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 4px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
}

/* ── Newsletter Popup (Top) ────────────────── */
.nl-popup-overlay {
    position: fixed !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0.8) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    z-index: 99999 !important;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.nl-popup-overlay.active {
    display: flex !important;
}

.nl-popup {
    background: var(--color-bg-card) !important;
    border: 1px solid var(--color-border-light) !important;
    box-shadow: var(--shadow-xl) !important;
    border-radius: 8px !important;
    padding: 40px !important;
    max-width: 500px !important;
    width: 100% !important;
    text-align: center !important;
    position: relative !important;
}

/* Newsletter Popup Children */
.nl-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-bg-subtle);
    border: 1px solid var(--color-border-light);
    color: var(--text-muted);
    font-size: 20px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nl-popup-close:hover {
    background: var(--danger);
    color: white;
    transform: rotate(90deg);
}

.popup-emoji {
    display: block;
    font-size: 40px;
    margin-bottom: 15px;
}

.nl-popup h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--color-brand-navy);
}

.nl-popup h3 span {
    color: var(--ldlc-cyan);
}

.nl-popup p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.popup-feedback {
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 600;
    min-height: 20px;
}

.popup-feedback.success {
    color: var(--ok);
}

.popup-feedback.error {
    color: var(--danger);
}

.popup-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.popup-form input {
    flex: 1;
    background: var(--color-bg-card);
    border: 1px solid var(--input-border);
    border-radius: 4px;
    padding: 12px 16px;
    color: var(--text);
    font-family: inherit;
    transition: all 0.3s ease;
}

.popup-form input:focus {
    border-color: var(--color-border-focus);
    box-shadow: 0 0 0 3px rgba(10, 55, 130, 0.2);
    outline: none;
}

.popup-form button {
    background: linear-gradient(135deg, var(--ldlc-blue), var(--ldlc-cyan));
    color: white;
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 150, 200, 0.4);
}

.popup-skip {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 13px;
    text-decoration: underline;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.popup-skip:hover {
    opacity: 1;
    color: var(--text);
}

/* Navbar — navy LDLC (#1e2b50), texte blanc */
.main-nav {
    background: var(--color-brand-navy);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo, .nav-logo a {
    display: flex;
    align-items: baseline;
    gap: 8px;
    text-decoration: none;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, var(--ldlc-cyan));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.logo-city {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
}

.nav-menu {
    display: flex;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    display: block;
    padding: 10px 14px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.nav-link.active {
    color: var(--ldlc-cyan);
    background: rgba(0, 150, 200, 0.15);
}

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

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.dropdown-toggle i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-item-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
    color: var(--ldlc-cyan);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #243357;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    min-width: 220px;
    padding: 10px;
    box-shadow: 0 12px 32px rgba(10, 20, 45, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
}

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

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    color: #ffffff;
    background: rgba(0, 150, 200, 0.20);
    transform: translateX(5px);
}

.dropdown-item i {
    font-size: 14px;
    color: var(--ldlc-cyan);
    width: 20px;
    text-align: center;
}

/* Intermediate sizes optimization (Small laptops / Tablets in landscape) */
@media (max-width: 1200px) and (min-width: 769px) {
    .nav-container {
        padding: 0 20px;
    }
    .nav-menu {
        gap: 4px;
    }
    .nav-link {
        padding: 10px 12px;
        font-size: 13.5px;
    }
    .logo-image {
        height: 44px;
    }
    .nav-profile-btn {
        padding: 8px 14px;
        font-size: 13px;
        gap: 6px;
    }
}

/* Even smaller intermediate sizes (e.g. iPad Pro landscape) */
@media (max-width: 1024px) and (min-width: 769px) {
    .nav-menu {
        gap: 0px;
    }
    .nav-link {
        padding: 10px 10px;
        font-size: 13px;
    }
    .nav-profile-btn #navProfileLabel {
        display: none; /* Hide label to save space, keep icon */
    }
    .nav-profile-btn {
        padding: 8px;
        border-radius: 50%;
        width: 38px;
        height: 38px;
        justify-content: center;
    }
}

/* Mobile Dropdown adjustment */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        transform: none !important;
        opacity: 1;
        visibility: visible;
        background: rgba(255, 255, 255, 0.03);
        border: none;
        box-shadow: none;
        padding: 5px 0 5px 20px;
        display: none; /* Controlled by JS or active class */
        min-width: unset;
        width: 100%;
        margin-top: 5px;
        border-left: 2px solid var(--ldlc-cyan);
    }

    .nav-item-dropdown.active .dropdown-menu {
        display: block;
        animation: fadeIn 0.3s ease;
    }

    .dropdown-item {
        font-size: 16px;
        padding: 12px 15px;
        border-bottom: none;
        font-family: 'Montserrat', sans-serif;
    }
}

/* ── Profile / Account Button ── */
.nav-profile-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-profile-btn:hover {
    border-color: var(--ldlc-cyan);
    color: white;
    background: rgba(0, 150, 200, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 150, 200, 0.1);
}

.nav-profile-btn--logged {
    border-color: rgba(0, 150, 200, 0.35);
    background: rgba(0, 150, 200, 0.08);
    color: white;
}

.nav-profile-btn--logged:hover {
    border-color: var(--ldlc-cyan);
    background: rgba(0, 150, 200, 0.15);
}

.nav-profile-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.nav-profile-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ldlc-blue), var(--ldlc-cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
}

/* Mobile Menu Button (Hamburger) */
.mobile-menu-toggle {
    display: none;
    position: relative;
    width: 44px;
    height: 44px;
    box-sizing: border-box;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    position: absolute;
    left: 9px;
    right: 9px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 10px;
    transition: top 0.3s ease, transform 0.3s ease, opacity 0.2s ease;
}

.mobile-menu-toggle span:nth-child(1) { top: 14px; }
.mobile-menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.mobile-menu-toggle span:nth-child(3) { top: 27px; }

/* Hamburger to X transition — barres recentrées puis pivotées en croix nette */
.mobile-menu-toggle.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

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

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(30, 43, 80, 0.98);
        /* Drawer mobile navy LDLC */
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 60px;
        gap: 10px;
        transition: left 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        box-shadow: inset 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        display: flex;
        justify-content: center;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Animation en cascade pour les items du menu */
    .nav-menu.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-menu.active li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-menu.active li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-menu.active li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-menu.active li:nth-child(5) {
        transition-delay: 0.5s;
    }

    .nav-link {
        font-size: 22px;
        /* Texte plus grand */
        font-weight: 600;
        padding: 20px 0;
        width: 85%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        /* Séparateur subtil */
        color: #ffffff;
        text-transform: uppercase;
        letter-spacing: 1px;
        background: transparent !important;
        /* Retrait du fond bleu par défaut */
    }

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

    .nav-link-gold {
        border-bottom: 1px solid rgba(191, 144, 0, 0.2);
    }

    .nav-link.active::after {
        display: none;
        /* Retrait de la barre de soulignement classique sur mobile */
    }

    /* Distinction du menu Boutique sur mobile */
    .dropdown-toggle {
        justify-content: center;
        color: #ffffff !important;
        font-weight: 700 !important;
    }

    .nav-item-dropdown {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--ldlc-cyan);
}

/* Gold Navigation Link */
.nav-link-gold {
    background: linear-gradient(135deg, #bf9000, #f5d060 25%, #ffe87c 50%, #f5d060 75%, #bf9000) !important;
    background-size: 200% auto !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    font-weight: 800 !important;
    animation: goldShimmerNav 3s linear infinite !important;
    filter: drop-shadow(0 0 2px rgba(191, 144, 0, 0.3));
}

.nav-link-gold:hover {
    filter: drop-shadow(0 0 8px rgba(255, 232, 124, 0.6)) !important;
    background-position: right center !important;
    background-color: transparent !important;
    /* Empeche le fond gris du hover classique */
}

/* On retire l'effet bleu de l'onglet active quand c'est le lien or */
.nav-link-gold.active {
    color: transparent !important;
    background-color: rgba(255, 215, 0, 0.1) !important;
}

.nav-link-gold.active::after {
    background: #c9a227 !important;
    /* Barre de soulignement dorée au lieu de bleue */
}

@keyframes goldShimmerNav {
    to {
        background-position: 200% center;
    }
}

/* ========== HERO SECTION ========== */
.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 80px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: stretch;
}

.hero-content {
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 20px;
    color: var(--text);
}

.highlight {
    background: linear-gradient(135deg, var(--ldlc-blue), var(--ldlc-cyan));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--color-brand-cta);
    color: white;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(10, 55, 130, 0.25);
}

.btn-primary:hover {
    background: var(--color-brand-cta-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(10, 55, 130, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--color-brand-cta);
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    border: 2px solid var(--color-brand-cta);
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    border-color: var(--color-brand-cta);
    background: var(--color-brand-cta);
    color: #ffffff;
}

.hero-image {
    position: relative;
}

.placeholder-image {
    background: linear-gradient(135deg, rgba(10, 55, 130, 0.2), rgba(0, 150, 200, 0.2));
    border: 2px solid var(--panel-border);
    border-radius: 20px;
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

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

.placeholder-icon {
    color: var(--ldlc-cyan);
    opacity: 0.5;
    display: none;
}

/* ========== SECTIONS ========== */
.services-preview,
.why-us {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.services-preview {
    background: linear-gradient(180deg, transparent, rgba(10, 55, 130, 0.05));
}

.section-heading {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 60px;
    background: linear-gradient(135deg, var(--text), var(--ldlc-cyan));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--panel);
    border: 1px solid var(--panel-border);
    border-radius: var(--radius);
    padding: 35px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--ldlc-blue), var(--ldlc-cyan));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--ldlc-cyan);
}

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

.service-icon {
    color: var(--ldlc-cyan);
    margin-bottom: 20px;
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 15px;
    color: var(--text);
}

.service-description {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    color: var(--ldlc-cyan);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
}

.service-link:hover {
    transform: translateX(5px);
}

/* ========== FEATURES GRID ========== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    background: var(--panel);
    border: 1px solid var(--panel-border);
    border-radius: var(--radius);
    padding: 30px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    border-color: var(--ldlc-blue);
}

.feature-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--ldlc-blue), var(--ldlc-cyan));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    opacity: 0.3;
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px;
    color: var(--text);
}

.feature-item p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: linear-gradient(135deg, var(--ldlc-blue), var(--ldlc-cyan));
    padding: 80px 20px;
    text-align: center;
    margin: 80px 0 0;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 40px;
    font-weight: 800;
    color: white;
    margin: 0 0 20px;
}

.cta-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-cta {
    background: var(--color-bg-card);
    color: var(--ldlc-blue);
    padding: 18px 40px;
    border-radius: 10px;
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* ========== FOOTER — navy LDLC ========== */
.main-footer {
    background: var(--color-brand-navy);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 50px 20px 30px;
    margin-top: 80px;
    color: rgba(255, 255, 255, 0.85);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h4 {
    color: var(--ldlc-cyan);
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 15px;
}

.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 15px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin: 8px 0;
    line-height: 1.6;
}

/* Styles déplacés en haut */

@media (max-width: 500px) {
    .nl-popup {
        padding: 35px 24px 28px;
    }

    .nl-popup .popup-form {
        flex-direction: column;
    }

    .nl-popup h3 {
        font-size: 19px;
    }
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 20px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        text-align: center;
    }

    .section-heading {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .services-preview,
    .why-us {
        padding: 50px 20px;
    }

    .nav-menu {
        gap: 5px;
    }

    .nav-link {
        padding: 8px 12px;
        font-size: 13px;
    }

    .logo-text {
        font-size: 24px;
    }

    .logo-city {
        font-size: 14px;
    }
}

.container {
    width: min(1200px, 100% - 40px);
    margin: 0 auto;
}

.admin-body .container {
    width: min(900px, 100% - 40px);
    margin: 40px auto;
}

/* Header */
.topbar {
    text-align: center;
    margin-bottom: 30px;
}

.brand__title {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(90deg, #1e2b50, #0096c8);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.brand__subtitle {
    color: var(--text-muted);
    font-size: 16px;
    font-weight: 400;
}

/* Sticky Progress */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(245, 245, 245, 0.95);
    backdrop-filter: blur(8px);
    padding: 10px 0 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--panel-border);
}

html.dark .sticky-header {
    background: rgba(12, 20, 36, 0.95);
}

.progress-container {
    max-width: 900px;
    margin: 0 auto;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}

.progress-track {
    height: 6px;
    background: var(--input-bg);
    border-radius: 99px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--ldlc-blue), var(--ldlc-cyan));
    width: 0%;
    transition: width 0.3s ease;
}

.intro-text {
    margin-bottom: 30px;
    color: var(--text-muted);
    line-height: 1.6;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Card / Sections */
.card {
    background: var(--panel);
    border: 1px solid var(--panel-border);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.section-title {
    font-size: 22px;
    margin: 0 0 25px;
    color: var(--ldlc-cyan);
    font-weight: 700;
    border-bottom: 1px solid var(--panel-border);
    padding-bottom: 15px;
}

.hint-text {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 20px;
    font-size: 14px;
}

/* Grid Layout */
.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.full-width {
    grid-column: span 2;
}

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

    .full-width {
        grid-column: span 1;
    }
}

/* Fields */
.field {
    margin-bottom: 15px;
}

.field label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text-primary);
}

.field input,
.field textarea,
.field select {
    width: 100%;
    background: var(--input-bg);
    border: 2px solid var(--input-border);
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 15px;
    color: var(--text);
    transition: all 0.2s;
    font-family: inherit;
}

.field textarea {
    resize: vertical;
    min-height: 80px;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    border-color: var(--color-border-focus);
    outline: none;
    box-shadow: 0 0 0 3px rgba(10, 55, 130, 0.15);
}

/* Checkbox specific */
.checkbox-field {
    margin-top: 20px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    background: var(--color-bg-page);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid var(--input-border);
    transition: background 0.2s;
}

.checkbox-label:hover {
    background: var(--color-bg-subtle);
}

.checkbox-label input {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
}

.checkbox-text {
    font-weight: 600;
}

/* Buttons */
.actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--panel-border);
}

.btn {
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: transform 0.1s, filter 0.2s;
}

.btn:active {
    transform: scale(0.98);
}

.btn-submit {
    background: linear-gradient(135deg, var(--ldlc-blue), var(--ldlc-cyan));
    color: white;
    flex: 2;
}

.btn-submit:hover {
    filter: brightness(1.15);
}

.btn-reset {
    background: transparent;
    color: var(--danger);
    border: 2px solid var(--panel-border);
    flex: 1;
}

.btn-reset:hover {
    border-color: var(--danger);
    background: rgba(226, 0, 26, 0.1);
}

/* Errors */
.error-msg {
    color: var(--danger);
    background: rgba(226, 0, 26, 0.1);
    border: 1px solid var(--danger);
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    display: none;
    text-align: center;
    font-weight: 600;
}

/* Recap */
.recap-section {
    border-color: var(--ok);
}

.recap-box {
    background: #0d1117;
    padding: 20px;
    border-radius: 8px;
    font-family: monospace;
    white-space: pre-wrap;
    color: #2e9e44;
    border: 1px solid #333;
    max-height: 600px;
    overflow-y: auto;
    font-size: 14px;
}

.recap-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.recap-actions .btn {
    font-size: 14px;
    padding: 8px 16px;
    background: var(--input-bg);
    color: var(--text);
    border: 1px solid var(--panel-border);
}

.recap-actions .btn:hover {
    background: var(--panel-border);
}        /* ═══════════════════════════════════════════════════
   LDLC × MUI Design System — Base UI / Material UI
   "Using Base UI with Material UI skill"
   Base UI = structure sémantique + interactions
   MUI     = render prop + sx tokens
═══════════════════════════════════════════════════ */

        /* ── Tokens ──────────────────────────────────────── */
        :root {
            --p: #0a3782;
            /* primary */
            --pl: #2f6bc4;
            /* primary light */
            --pd: #083070;
            /* primary dark */
            --s: #0096c8;
            /* secondary */
            --sl: #4dc3f7;
            /* secondary light */
            --bg: #e8ecf4;
            /* surface default */
            --bp: #f7f9fc;
            /* surface paper */
            --be: #f7f9fc;
            /* surface elevated */
            --bc: #f7f9fc;
            /* surface card */
            --div: #d6dde9;
            --t1: var(--color-text-primary);
            --t2: var(--color-text-secondary);
            --t3: var(--color-text-disabled);
            --hover: rgba(30, 43, 80, .05);
            --sel: rgba(0, 150, 200, .18);
            --e1: 0 1px 4px rgba(0, 0, 0, .08);
            --e4: 0 4px 16px rgba(0, 0, 0, .12);
            --e8: 0 8px 32px rgba(0, 0, 0, .16);
            --e16: 0 16px 48px rgba(0, 0, 0, .20);
            --r1: 4px;
            --r2: 8px;
            --r3: 12px;
            --r4: 16px;
            --ease: cubic-bezier(.4, 0, .2, 1);
        }

        /* ── Reset + base ────────────────────────────────── */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0
        }

        html {
            scroll-behavior: smooth
        }

        body {
            font-family: "Open Sans", Arial, sans-serif;
            background: var(--bg);
            color: var(--t1);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased
        }

        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 8px
        }

        ::-webkit-scrollbar-track {
            background: var(--color-bg-subtle)
        }

        ::-webkit-scrollbar-thumb {
            background: var(--p);
            border-radius: 4px
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--pl)
        }

        ::selection {
            background: rgba(0, 150, 200, .3);
            color: #fff
        }

        /* MUI Button variants */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 6px 16px;
            min-height: 36px;
            border-radius: var(--r1);
            font-family: "Montserrat", Arial, sans-serif;
            font-size: .875rem;
            font-weight: 600;
            letter-spacing: .0286em;
            text-transform: uppercase;
            text-decoration: none;
            cursor: pointer;
            border: none;
            transition: background 250ms var(--ease), box-shadow 250ms var(--ease), transform 200ms var(--ease);
        }

        .btn-contained {
            background: var(--p);
            color: #fff;
            box-shadow: var(--e1)
        }

        .btn-contained:hover {
            background: var(--pl);
            box-shadow: var(--e4);
            transform: translateY(-1px)
        }

        .btn-outlined {
            background: transparent;
            color: var(--s);
            border: 1px solid rgba(0, 150, 200, .5)
        }

        .btn-outlined:hover {
            background: rgba(0, 150, 200, .08);
            border-color: var(--s)
        }

        .btn-text {
            background: transparent;
            color: var(--s);
            padding-left: 0
        }

        .btn-text:hover {
            background: rgba(0, 150, 200, .08);
            padding-left: 6px
        }

        .btn-lg {
            padding: 11px 28px;
            font-size: .9375rem;
            min-height: 48px;
            border-radius: var(--r1)
        }

        /* Shimmer effect sur btn principal */
        .btn-shimmer {
            position: relative;
            overflow: hidden
        }

        .btn-shimmer::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 60%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .25), transparent);
            transform: skewX(-20deg);
            animation: shimmer 2.8s infinite;
        }

        @keyframes shimmer {
            0% {
                left: -100%
            }

            60%,
            100% {
                left: 160%
            }
        }

        /* ── Hero (Base UI → MUI Box + Typography) ──────── */
        /* ── Navigation Menu Overrides ── */
        .nav-link {
            font-family: 'Montserrat', sans-serif !important;
        }

        .nav-spacer {
            flex: 1
        }

        /* Écrase les règles de style.css : .hero{max-width:1200px;display:grid} */
        .hero {
            position: relative !important;
            min-height: 100vh !important;
            width: 100% !important;
            max-width: none !important;
            margin: 0 !important;
            padding: 0 !important;
            display: flex !important;
            align-items: center;
            overflow: hidden;
            background: #141e38;
            grid-template-columns: none !important;
        }

        /* Fond photo */
        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
            background: url('/assets/images/header.webp') center 65%/cover no-repeat;
            opacity: .45;
            filter: saturate(1.1) brightness(.85);
        }

        /* Overlay dégradé réduit */
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 1;
            pointer-events: none;
            background:
                linear-gradient(90deg, rgba(20, 30, 56, .60) 0%, rgba(20, 30, 56, .28) 55%, rgba(20, 30, 56, .06) 100%),
                linear-gradient(180deg, rgba(20, 30, 56, .06) 0%, rgba(20, 30, 56, .45) 100%);
        }

        /* Orbes flottants — Base UI decorative render */
        .hero-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            pointer-events: none;
            animation: float-orb 8s ease-in-out infinite
        }

        .hero-orb-1 {
            width: 500px;
            height: 500px;
            background: rgba(10, 55, 130, .35);
            top: -100px;
            left: -150px;
            animation-delay: 0s
        }

        .hero-orb-2 {
            width: 350px;
            height: 350px;
            background: rgba(0, 150, 200, .18);
            top: 20%;
            right: 5%;
            animation-delay: -3s
        }

        .hero-orb-3 {
            width: 250px;
            height: 250px;
            background: rgba(10, 55, 130, .25);
            bottom: 10%;
            left: 40%;
            animation-delay: -5s
        }

        @keyframes float-orb {

            0%,
            100% {
                transform: translate(0, 0) scale(1)
            }

            33% {
                transform: translate(20px, -30px) scale(1.05)
            }

            66% {
                transform: translate(-15px, 15px) scale(.97)
            }
        }

        .hero-inner {
            position: relative;
            z-index: 2;
            max-width: 1280px;
            width: 100%;
            margin: 0 auto;
            padding: 110px 40px 120px;
            display: grid;
            grid-template-columns: 1fr 420px;
            gap: 40px;
            align-items: start;
        }

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

        .hero-right {
            display: flex;
            justify-content: flex-end;
            align-self: start;
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(0, 150, 200, .10);
            border: 1px solid rgba(0, 150, 200, .22);
            border-radius: 20px;
            padding: 5px 16px;
            font-size: .75rem;
            font-weight: 500;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: var(--s);
            margin-bottom: 28px;
        }

        .hero-eyebrow .live-dot {
            width: 7px;
            height: 7px;
            background: var(--s);
            border-radius: 50%;
            animation: pulse-dot 2s ease-in-out infinite;
            flex-shrink: 0;
        }

        @keyframes pulse-dot {

            0%,
            100% {
                opacity: 1;
                box-shadow: 0 0 0 0 rgba(0, 150, 200, .6)
            }

            50% {
                opacity: .6;
                box-shadow: 0 0 0 6px rgba(0, 150, 200, 0)
            }
        }

        .hero h1 {
            font-size: clamp(2.6rem, 5.5vw, 4.5rem);
            font-weight: 300;
            line-height: 1.08;
            letter-spacing: -.02em;
            color: #fff;
            margin-bottom: 8px;
        }

        .hero h1 .line2 {
            display: block;
            font-weight: 900;
            font-size: 1.1em;
            background: linear-gradient(110deg, #fff 20%, var(--sl) 55%, var(--s) 80%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% 100%;
            animation: gradient-pan 4s ease-in-out infinite alternate;
        }

        @keyframes gradient-pan {
            0% {
                background-position: 0% 50%
            }

            100% {
                background-position: 100% 50%
            }
        }

        .hero-subtitle {
            font-size: 1.15rem;
            font-weight: 400;
            line-height: 1.75;
            color: rgba(255, 255, 255, .78);
            max-width: 540px;
            margin: 20px 0 44px;
        }

        .hero-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap
        }

        /* Indicateur scroll */
        .scroll-indicator {
            position: absolute;
            bottom: 32px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            opacity: .6;
            animation: fade-bounce 2s ease-in-out infinite;
        }

        .scroll-indicator span {
            font-size: .6875rem;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .75)
        }

        .scroll-indicator svg {
            animation: bounce-arrow 2s ease-in-out infinite
        }

        @keyframes fade-bounce {

            0%,
            100% {
                opacity: .6
            }

            50% {
                opacity: 1
            }
        }

        @keyframes bounce-arrow {

            0%,
            100% {
                transform: translateY(0)
            }

            50% {
                transform: translateY(6px)
            }
        }

        /* ── Diagonal divider (clip-path) ────────────────── */
        .divider-top {
            clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
            margin-bottom: -40px
        }

        .divider-btm {
            clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 100%);
            margin-top: -40px
        }

        /* ── Stats — Base UI Meter-like avec render Box ──── */
        .stats-wrap {
            background: var(--color-bg-page);
            border-top: 1px solid var(--color-border-light);
            border-bottom: 1px solid var(--color-border-light);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            max-width: 1280px;
            margin: 0 auto;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 44px 20px;
            text-align: center;
            position: relative;
            transition: background 200ms var(--ease);
            cursor: default;
        }

        .stat-item:hover {
            background: var(--hover)
        }

        .stat-item a {
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
            align-items: center
        }

        .stat-icon {
            width: 44px;
            height: 44px;
            background: rgba(10, 55, 130, .08);
            border: 1px solid rgba(0, 150, 200, .28);
            border-radius: var(--r2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--s);
            margin-bottom: 14px;
            transition: background 300ms var(--ease), box-shadow 300ms var(--ease);
        }

        .stat-item:hover .stat-icon {
            background: rgba(0, 150, 200, .18);
            box-shadow: 0 0 20px rgba(0, 150, 200, .25)
        }

        .stat-number {
            font-size: 2.75rem;
            font-weight: 700;
            letter-spacing: -.02em;
            line-height: 1;
            background: linear-gradient(135deg, #0a3782, #0096c8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 6px;
            transition: transform 200ms var(--ease);
        }

        .stat-item:hover .stat-number {
            transform: scale(1.08)
        }

        .stat-label {
            font-size: .8rem;
            font-weight: 500;
            color: var(--t2);
            text-transform: uppercase;
            letter-spacing: .06em
        }

        .stat-sublabel {
            font-size: .6875rem;
            color: var(--s);
            margin-top: 4px
        }

        .stat-sep {
            position: absolute;
            right: 0;
            top: 25%;
            height: 50%;
            width: 1px;
            background: var(--div)
        }

        .stat-item:last-child .stat-sep {
            display: none
        }

        /* ── Reveal animation ────────────────────────────── */
        .reveal {
            opacity: 0;
            transform: translateY(32px);
            transition: opacity 600ms var(--ease), transform 600ms var(--ease)
        }

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

        .reveal-left {
            opacity: 0;
            transform: translateX(-32px);
            transition: opacity 600ms var(--ease), transform 600ms var(--ease)
        }

        .reveal-left.visible {
            opacity: 1;
            transform: translateX(0)
        }

        .stagger-1 {
            transition-delay: 80ms
        }

        .stagger-2 {
            transition-delay: 160ms
        }

        .stagger-3 {
            transition-delay: 240ms
        }

        .stagger-4 {
            transition-delay: 320ms
        }

        .stagger-5 {
            transition-delay: 400ms
        }

        .stagger-6 {
            transition-delay: 480ms
        }

        /* ── Section layout ──────────────────────────────── */
        .section {
            max-width: 1280px;
            margin: 0 auto;
            padding: 88px 24px
        }

        .section-label {
            font-size: .75rem;
            font-weight: 500;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: var(--s);
            margin-bottom: 8px
        }

        .section-title {
            font-size: clamp(1.8rem, 3vw, 2.6rem);
            font-weight: 700;
            letter-spacing: -.008em;
            margin-bottom: 14px;
            background: linear-gradient(135deg, #1e2b50 55%, #0096c8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-sub {
            font-size: 1rem;
            color: var(--t2);
            max-width: 560px;
            line-height: 1.75;
            margin: 0 auto;
            text-align: center;
        }

        .section-head {
            margin-bottom: 56px
        }

        /* ── Showcase — layout asymétrique ──────────────── */
        .showcase-layout {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            grid-template-rows: auto auto;
            gap: 20px;
        }

        /* Carte featured — grande */
        .showcase-card {
            background: var(--color-bg-card);
            border: 1px solid var(--color-border-light);
            border-radius: var(--r3);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            box-shadow: var(--e1);
            transition: transform 300ms var(--ease), box-shadow 300ms var(--ease), border-color 300ms var(--ease);
            position: relative;
        }

        .showcase-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--e8);
            border-color: rgba(0, 150, 200, .50);
        }

        /* Glassmorphism sur la card featured */
        .showcase-card.featured {
            grid-column: 1/3;
            grid-row: 1/2;
            background: rgba(255, 255, 255, .92);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(0, 150, 200, .28);
            flex-direction: row;
        }

        .showcase-card.featured .card-media {
            height: auto;
            flex: 1;
            min-height: 300px
        }

        .showcase-card.featured .card-content {
            flex: 1;
            padding: 36px 32px;
            display: flex;
            flex-direction: column;
            justify-content: center
        }

        .showcase-card.featured .card-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 12px
        }

        .showcase-card.featured .card-desc {
            font-size: .9375rem;
            line-height: 1.75;
            margin-bottom: 20px
        }

        .card-media {
            position: relative;
            height: 220px;
            background: linear-gradient(135deg, rgba(10, 55, 130, .08), rgba(0, 150, 200, .05));
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .card-media img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 20px;
            filter: drop-shadow(0 8px 24px rgba(30, 43, 80, .18));
            transition: transform 400ms var(--ease);
        }

        .showcase-card:hover .card-media img {
            transform: scale(1.06)
        }

        .card-media::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at center, rgba(0, 150, 200, .18) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 300ms var(--ease);
        }

        .showcase-card:hover .card-media::after {
            opacity: 1
        }

        /* MUI Chip (Base UI Badge render → MUI Chip) */
        .chip {
            display: inline-flex;
            align-items: center;
            height: 24px;
            padding: 0 10px;
            border-radius: 12px;
            font-size: .75rem;
            font-weight: 500;
            background: var(--p);
            color: #fff;
            position: absolute;
            top: 12px;
            right: 12px;
            z-index: 2;
        }

        .chip-cyan {
            background: transparent;
            border: 1px solid rgba(0, 150, 200, .65);
            color: var(--s)
        }

        .card-content {
            padding: 18px 22px 22px;
            flex: 1;
            display: flex;
            flex-direction: column
        }

        .card-title {
            font-size: 1rem;
            font-weight: 500;
            color: var(--t1);
            margin-bottom: 8px
        }

        .card-desc {
            font-size: .8125rem;
            color: var(--t2);
            line-height: 1.7;
            flex: 1
        }

        /* ── Process Stepper (Base UI → MUI Stepper) ─────── */
        .process-bg {
            background: var(--color-bg-page);
            border-top: 1px solid var(--color-border-light);
            border-bottom: 1px solid var(--color-border-light);
        }

        .process-stepper {
            display: flex;
            gap: 0;
            position: relative
        }

        .process-step {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            padding: 0 12px
        }

        .step-connector {
            position: absolute;
            top: 19px;
            left: calc(50% + 22px);
            right: calc(-50% + 22px);
            height: 2px;
            background: linear-gradient(90deg, var(--s), rgba(0, 150, 200, .15));
        }

        .process-step:last-child .step-connector {
            display: none
        }

        .step-icon {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--p), var(--pl));
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .875rem;
            font-weight: 700;
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
            box-shadow: 0 0 0 5px rgba(10, 55, 130, .2);
            transition: box-shadow 300ms var(--ease), background 300ms var(--ease), transform 300ms var(--ease);
        }

        .process-step:hover .step-icon {
            background: linear-gradient(135deg, var(--s), var(--sl));
            box-shadow: 0 0 0 8px rgba(0, 150, 200, .18), 0 0 20px rgba(0, 150, 200, .3);
            transform: scale(1.12);
        }

        .step-paper {
            background: var(--color-bg-card);
            border: 1px solid var(--color-border-light);
            border-radius: var(--r3);
            padding: 22px;
            width: 100%;
            margin-top: 8px;
            transition: border-color 300ms var(--ease), box-shadow 300ms var(--ease), transform 300ms var(--ease);
        }

        .process-step:hover .step-paper {
            border-color: rgba(0, 150, 200, .50);
            box-shadow: var(--e4);
            transform: translateY(-4px);
        }

        .step-title {
            font-size: 1rem;
            font-weight: 500;
            color: var(--t1);
            margin-bottom: 8px
        }

        .step-desc {
            font-size: .875rem;
            color: var(--t2);
            line-height: 1.6
        }

        /* ── Services (Base UI Card → MUI Card) ──────────── */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px
        }

        .service-card {
            background: var(--color-bg-card);
            border: 1px solid var(--color-border-light);
            border-radius: var(--r3);
            padding: 32px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            position: relative;
            overflow: hidden;
            transition: border-color 300ms var(--ease), box-shadow 300ms var(--ease), transform 300ms var(--ease);
        }

        /* Barre animée en bas */
        .service-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--p), var(--s));
            transition: right 350ms var(--ease);
        }

        .service-card:hover::after {
            right: 0
        }

        .service-card:hover {
            border-color: rgba(0, 150, 200, .50);
            box-shadow: var(--e4);
            transform: translateY(-4px);
        }

        .svc-icon {
            width: 54px;
            height: 54px;
            border-radius: var(--r2);
            background: rgba(10, 55, 130, .08);
            border: 1px solid rgba(0, 150, 200, .32);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--p);
            transition: background 300ms var(--ease), box-shadow 300ms var(--ease), transform 300ms var(--ease);
        }

        .service-card:hover .svc-icon {
            background: rgba(0, 150, 200, .18);
            box-shadow: 0 0 20px rgba(0, 150, 200, .30);
            transform: rotate(-5deg) scale(1.1);
        }

        .svc-title {
            font-size: 1.125rem;
            font-weight: 500;
            color: var(--t1)
        }

        .svc-desc {
            font-size: .875rem;
            color: var(--t2);
            line-height: 1.75;
            flex: 1
        }

        /* ── Testimonials carousel ───────────────────────── */
        .testimonials-bg {
            background: var(--color-bg-subtle);
            border-top: 1px solid var(--color-border-light);
            border-bottom: 1px solid var(--color-border-light);
        }

        .reviews-banner {
            background: var(--color-bg-card);
            border: 1px solid rgba(0, 150, 200, .28);
            border-radius: var(--r4);
            padding: 32px 40px;
            display: flex;
            align-items: center;
            gap: 40px;
            margin-bottom: 48px;
            box-shadow: var(--e1);
            flex-wrap: wrap;
        }

        .reviews-score {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-shrink: 0
        }

        .reviews-num {
            font-size: 3.5rem;
            font-weight: 700;
            letter-spacing: -.03em;
            color: var(--s);
            line-height: 1
        }

        .reviews-detail {
            display: flex;
            flex-direction: column;
            gap: 4px
        }

        .reviews-stars {
            color: #f4b400;
            font-size: 1.25rem
        }

        .reviews-lbl {
            font-size: .8125rem;
            color: var(--t2)
        }

        .reviews-text {
            flex: 1;
            min-width: 200px;
            font-size: .9375rem;
            color: var(--t2);
            line-height: 1.65
        }

        /* Carousel */
        .carousel-wrap {
            position: relative;
            overflow: hidden;
            width: 100%
        }

        .carousel-track {
            display: flex;
            gap: 0;
            transition: transform 500ms var(--ease);
            will-change: transform;
            width: 100%;
        }

        .testimonial-card {
            min-width: 100%;
            width: 100%;
            background: var(--color-bg-card);
            border: 1px solid var(--color-border-light);
            border-radius: var(--r3);
            padding: 28px;
            display: flex;
            flex-direction: column;
            gap: 14px;
            position: relative;
            overflow: hidden;
            transition: box-shadow 300ms var(--ease), transform 300ms var(--ease), border-color 300ms var(--ease);
            flex-shrink: 0;
            box-sizing: border-box;
        }

        .testimonial-card:hover {
            box-shadow: var(--e4);
            transform: translateY(-4px);
            border-color: rgba(0, 150, 200, .42);
        }

        .t-quote {
            position: absolute;
            top: 12px;
            right: 18px;
            font-size: 5rem;
            font-weight: 700;
            color: var(--s);
            opacity: .08;
            line-height: 1;
            font-family: Georgia, serif;
            pointer-events: none;
        }

        .stars {
            display: flex;
            gap: 2px;
            color: #f4b400;
            font-size: 1rem
        }

        .t-text {
            font-size: .9375rem;
            color: var(--t2);
            line-height: 1.75;
            font-style: italic;
            flex: 1;
            position: relative
        }

        .t-author {
            display: flex;
            align-items: center;
            gap: 12px;
            padding-top: 14px;
            border-top: 1px solid var(--div)
        }

        .t-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            flex-shrink: 0;
            background: linear-gradient(135deg, var(--p), var(--s));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            font-weight: 700;
            color: #fff;
        }

        .t-name {
            font-size: .9375rem;
            font-weight: 500;
            color: var(--t1)
        }

        .t-src {
            font-size: .75rem;
            color: var(--t2)
        }

        /* Carousel dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 28px
        }

        .carousel-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            border: none;
            cursor: pointer;
            background: rgba(30, 43, 80, .25);
            transition: background 250ms var(--ease), width 250ms var(--ease);
        }

        .carousel-dot.active {
            width: 24px;
            border-radius: 4px;
            background: var(--s)
        }

        /* ── Map (Base UI → MUI Paper) ───────────────────── */
        .map-paper {
            background: var(--color-bg-card);
            border: 1px solid var(--color-border-light);
            border-radius: var(--r4);
            overflow: hidden;
            box-shadow: var(--e1);
        }

        .map-head {
            padding: 28px 32px;
            border-bottom: 1px solid var(--div);
            display: flex;
            align-items: flex-start;
            gap: 16px;
            flex-wrap: wrap;
        }

        .map-info {
            flex: 1
        }

        .map-name {
            font-size: 1.25rem;
            font-weight: 500;
            color: var(--t1);
            margin-bottom: 12px
        }

        .map-row {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: .875rem;
            color: var(--t2);
            margin-bottom: 6px
        }

        .map-row svg {
            color: var(--s);
            flex-shrink: 0
        }

        .map-hours {
            display: flex;
            flex-direction: column;
            gap: 6px;
            text-align: right;
            flex-shrink: 0
        }

        .map-hours .lbl {
            font-size: .8125rem;
            color: var(--t2);
            font-weight: 500
        }

        .map-hours p {
            font-size: .875rem;
            color: var(--t2)
        }

        .map-iframe {
            display: block;
            height: 400px
        }

        .map-iframe iframe {
            width: 100%;
            height: 100%;
            border: 0
        }

        /* ── CTA (Base UI → MUI Box + Button) ───────────── */
        .cta-section {
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #1e2b50 0%, #0a3782 100%);
            border-top: 1px solid rgba(0, 150, 200, .28);
            border-bottom: 1px solid rgba(0, 150, 200, .28);
        }

        /* Pattern géométrique en fond */
        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(0, 150, 200, .06) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 150, 200, .06) 1px, transparent 1px);
            background-size: 40px 40px;
            pointer-events: none;
        }

        .cta-inner {
            position: relative;
            z-index: 1;
            max-width: 1280px;
            margin: 0 auto;
            padding: 90px 24px;
            text-align: center;
        }

        .cta-title {
            font-size: clamp(1.75rem, 3.5vw, 2.8rem);
            font-weight: 700;
            color: #fff;
            margin-bottom: 16px;
            line-height: 1.2
        }

        .cta-sub {
            font-size: 1.0625rem;
            color: rgba(255, 255, 255, .72);
            margin: 0 auto 44px;
            max-width: 540px;
            line-height: 1.75
        }

        /* Bouton CTA avec glow pulsant */
        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 40px;
            background: var(--s);
            color: #fff;
            border: none;
            border-radius: var(--r1);
            font-family: 'Roboto', sans-serif;
            font-size: 1.0625rem;
            font-weight: 500;
            letter-spacing: .0286em;
            text-transform: uppercase;
            text-decoration: none;
            cursor: pointer;
            box-shadow: 0 0 0 0 rgba(0, 150, 200, .5);
            animation: glow-pulse 2.4s ease-in-out infinite;
            transition: background 250ms var(--ease), transform 200ms var(--ease);
        }

        .cta-btn:hover {
            background: var(--sl);
            transform: translateY(-3px);
            animation: none;
            box-shadow: 0 8px 32px rgba(0, 150, 200, .55)
        }

        .cta-btn svg {
            transition: transform 300ms var(--ease)
        }

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

        @keyframes glow-pulse {

            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(0, 150, 200, .5), 0 4px 20px rgba(0, 150, 200, .3)
            }

            50% {
                box-shadow: 0 0 0 12px rgba(0, 150, 200, 0), 0 4px 30px rgba(0, 150, 200, .5)
            }
        }

        /* ── Footer — navy foncé LDLC ────────────────────── */
        .footer {
            background: var(--color-brand-navy-dark);
            border-top: 1px solid rgba(10, 55, 130, .22)
        }

        .footer-inner {
            max-width: 1280px;
            margin: 0 auto;
            padding: 64px 24px 32px
        }

        .footer-nl {
            background: #1e2b50;
            border: 1px solid rgba(10, 55, 130, .25);
            border-radius: var(--r3);
            padding: 28px 32px;
            display: flex;
            align-items: center;
            gap: 32px;
            margin-bottom: 48px;
            flex-wrap: wrap;
        }

        .footer-nl-text {
            flex: 1;
            min-width: 200px
        }

        .footer-nl-text h3 {
            font-size: 1rem;
            font-weight: 500;
            color: #ffffff;
            margin-bottom: 4px
        }

        .footer-nl-text p {
            font-size: .8125rem;
            color: rgba(255, 255, 255, .7)
        }

        .footer-nl-form {
            display: flex;
            gap: 8px;
            flex: 1;
            min-width: 280px
        }

        .mui-input {
            flex: 1;
            min-width: 0;
            padding: 10px 16px;
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(0, 150, 200, .28);
            border-radius: var(--r1);
            color: #ffffff;
            font-family: "Open Sans", Arial, sans-serif;
            font-size: .9375rem;
            outline: none;
            transition: border-color 200ms var(--ease);
        }

        .mui-input:focus {
            border-color: var(--s);
            box-shadow: 0 0 0 3px rgba(0, 150, 200, .12)
        }

        .mui-input::placeholder {
            color: rgba(255, 255, 255, .45)
        }

        .nl-feedback {
            font-size: .8125rem;
            margin-top: 6px;
            width: 100%
        }

        /* Newsletter responsive — bloc en colonne sur mobile/tablette */
        @media (max-width: 768px) {
            .footer-nl {
                flex-direction: column;
                align-items: stretch;
                gap: 18px;
                padding: 24px 22px;
            }
            .footer-nl-text {
                min-width: 0;
            }
            .footer-nl-form {
                min-width: 0;
                width: 100%;
            }
        }

        /* Très petits écrans : champ et bouton empilés */
        @media (max-width: 440px) {
            .footer-nl-form {
                flex-direction: column;
            }
            .footer-nl-form .mui-input,
            .footer-nl-form .btn {
                width: 100%;
                min-width: 0;
            }
        }

        .nl-feedback.success {
            color: #66bb6a
        }

        .nl-feedback.error {
            color: #f44336
        }

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

        .footer-brand img {
            height: 40px;
            width: auto;
            margin-bottom: 16px;
            display: block
        }

        .footer-brand p {
            font-size: .875rem;
            color: rgba(255, 255, 255, .7);
            line-height: 1.75;
            margin-bottom: 16px
        }

        .footer-col h4 {
            font-size: .75rem;
            font-weight: 500;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: #ffffff;
            margin-bottom: 16px
        }

        .footer-col p,
        .footer-col a {
            font-size: .875rem;
            color: rgba(255, 255, 255, .7);
            line-height: 2.1;
            text-decoration: none;
            display: block;
            transition: color 200ms var(--ease)
        }

        .footer-col a:hover {
            color: var(--s)
        }

        hr.footer-div {
            border: none;
            border-top: 1px solid rgba(255, 255, 255, .12);
            margin: 0 0 24px
        }

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

        .footer-bottom p {
            font-size: .8125rem;
            color: rgba(255, 255, 255, .5)
        }

        /* ── Responsive ──────────────────────────────────── */
        @media(max-width:1024px) {
            .stats-grid {
                grid-template-columns: repeat(3, 1fr)
            }

            .stat-item:nth-child(3) .stat-sep {
                display: none
            }

            .showcase-layout {
                grid-template-columns: 1fr 1fr
            }

            .showcase-card.featured {
                grid-column: 1/-1;
                flex-direction: column
            }

            .showcase-card.featured .card-media {
                min-height: 260px
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr 1fr;
                gap: 32px
            }

            .footer-brand {
                grid-column: 1/-1
            }
        }

        @media(max-width:768px) {
            .toolbar {
                height: 56px;
                padding: 0 16px
            }

            .nav-list {
                display: none;
                position: fixed;
                top: 56px;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(30, 43, 80, .98);
                flex-direction: column;
                align-items: stretch;
                padding: 16px;
                gap: 4px;
                overflow-y: auto;
                z-index: 1099;
            }

            .nav-list.open {
                display: flex
            }

            .nav-link {
                padding: 12px 16px;
                font-size: 1rem
            }

            .mobile-toggle {
                display: flex
            }

            .nav-spacer,
            .nav-profile-desktop {
                display: none
            }

            .hero-inner {
                padding: 80px 16px 100px
            }

            .hero h1 {
                font-size: 2.2rem
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr)
            }

            .stat-item:nth-child(2) .stat-sep {
                display: none
            }

            .stat-sep {
                display: none !important
            }

            .showcase-layout {
                grid-template-columns: 1fr
            }

            .showcase-card.featured {
                grid-column: 1;
                flex-direction: column
            }

            .services-grid,
            .testimonials-grid {
                grid-template-columns: 1fr
            }

            .process-stepper {
                flex-direction: column;
                gap: 20px
            }

            .step-connector {
                display: none
            }

            .carousel-track .testimonial-card {
                min-width: 100%
            }

            .reviews-banner {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px
            }

            .map-head {
                flex-direction: column
            }

            .map-hours {
                text-align: left
            }

            .section {
                padding: 60px 16px
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr
            }

            .footer-brand {
                grid-column: 1/-1
            }
        }

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

            .footer-grid {
                grid-template-columns: 1fr
            }

            .cta-inner {
                padding: 60px 16px
            }

            .hero h1 {
                font-size: 1.9rem
            }
        }
      /* ====================================================
           UI CARTE BLANCHE - PAGE SERVICES PREMIUM
        ==================================================== */
      html {
        scroll-behavior: smooth;
        scroll-padding-top: 140px;
      }

      /* ── HERO SECTION ── */
      .hero-premium {
        position: relative;
        padding: 120px 20px 80px;
        text-align: center;
        overflow: hidden;
        background: radial-gradient(
          circle at 50% 0%,
          rgba(0, 150, 200, 0.15) 0%,
          transparent 60%
        );
      }

      .hero-premium h1 {
        font-size: clamp(36px, 6vw, 64px);
        font-weight: 900;
        margin: 0 0 24px;
        letter-spacing: -1.5px;
        line-height: 1.1;
        background: linear-gradient(135deg, #1e2b50 30%, var(--ldlc-cyan));
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
      }

      .hero-premium p {
        font-size: 22px;
        color: var(--text-muted);
        max-width: 700px;
        margin: 0 auto 50px;
        line-height: 1.6;
      }

      /* ── TRUST BAR ── */
      .trust-bar {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
        max-width: 900px;
        margin: 0 auto;
      }

      .trust-item {
        display: flex;
        align-items: center;
        gap: 12px;
        background: var(--color-bg-card);
        border: 1px solid var(--color-border-light);
        padding: 15px 25px;
        border-radius: 50px;
        backdrop-filter: blur(10px);
        transition:
          transform 0.3s,
          border-color 0.3s;
      }

      .trust-item:hover {
        transform: translateY(-5px);
        border-color: var(--ldlc-cyan);
      }

      .trust-icon {
        font-size: 24px;
      }

      .trust-text {
        font-weight: 600;
        font-size: 15px;
        color: var(--text);
      }

      /* ── QUICK NAV (STICKY) ── */
      .quick-nav {
        position: sticky;
        top: 70px;
        z-index: 50;
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(15px);
        border-bottom: 1px solid var(--color-border-light);
        padding: 15px 0;
        margin-bottom: 60px;
      }

      .quick-nav ul {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        list-style: none;
        margin: 0;
        padding: 0 20px;
      }

      .quick-nav a {
        color: var(--text-muted);
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;
        padding: 10px 20px;
        border-radius: 30px;
        background: var(--color-bg-page);
        transition: all 0.3s;
        border: 1px solid transparent;
      }

      .quick-nav a:hover {
        color: var(--color-brand-cta);
        background: rgba(0, 150, 200, 0.12);
        border-color: var(--ldlc-cyan);
      }

      /* ── HOW IT WORKS (PROCESS) ── */
      .process-section {
        max-width: 1200px;
        margin: 0 auto 100px;
        padding: 0 20px;
      }

      .section-title-center {
        text-align: center;
        font-size: 36px;
        font-weight: 800;
        margin-bottom: 50px;
      }

      .process-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
      }

      .process-card {
        background: var(--panel);
        border: 1px solid var(--panel-border);
        border-radius: 24px;
        padding: 40px 30px;
        position: relative;
        text-align: center;
        overflow: hidden;
        transition: transform 0.3s;
      }

      .process-card:hover {
        transform: translateY(-10px);
        border-color: rgba(0, 150, 200, 0.3);
      }

      .process-number {
        position: absolute;
        top: -20px;
        left: 20px;
        font-size: 100px;
        font-weight: 900;
        color: rgba(30, 43, 80, 0.05);
        z-index: 0;
      }

      .process-card h3 {
        position: relative;
        z-index: 1;
        font-size: 22px;
        margin-bottom: 15px;
        color: var(--ldlc-cyan);
      }

      .process-card p {
        position: relative;
        z-index: 1;
        color: var(--text-muted);
        line-height: 1.6;
        margin: 0;
      }

      /* ── ALTERNATING LAYOUT FOR SERVICES ── */
      .service-row {
        max-width: 1200px;
        margin: 0 auto 100px;
        padding: 0 20px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
      }

      .service-row.reverse {
        /* On desktop, reverse visual order without touching sematics */
        direction: rtl;
      }

      .service-row.reverse > * {
        direction: ltr;
        /* Reset text direction */
      }

      @media (max-width: 992px) {
        .service-row {
          grid-template-columns: 1fr;
          gap: 40px;
        }

        .service-row.reverse {
          direction: ltr;
        }
      }

      /* Left Side : SEO Text */
      .service-text-block h2 {
        font-size: clamp(28px, 4vw, 40px);
        font-weight: 800;
        margin-bottom: 20px;
        line-height: 1.2;
      }

      .service-text-block .icon-badge {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        background: rgba(0, 150, 200, 0.1);
        border-radius: 16px;
        font-size: 32px;
        margin-bottom: 25px;
      }

      .service-text-block p {
        font-size: 17px;
        line-height: 1.7;
        color: var(--text-muted);
        margin-bottom: 25px;
      }

      .seo-bullets {
        list-style: none;
        padding: 0;
        margin: 0;
      }

      .seo-bullets li {
        position: relative;
        padding-left: 30px;
        margin-bottom: 12px;
        font-weight: 500;
        color: var(--text);
      }

      .seo-bullets li::before {
        content: "✓";
        position: absolute;
        left: 0;
        top: 0;
        color: var(--ldlc-cyan);
        font-weight: 900;
      }

      /* Right Side : Pricing Card */
      .pricing-glass-card {
        background: var(--color-bg-card);
        border: 1px solid var(--color-border-light);
        border-radius: 24px;
        padding: 40px 30px;
        box-shadow: var(--shadow-md);
        position: relative;
      }

      .pricing-glass-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, var(--ldlc-cyan), #00c6ff);
        border-radius: 24px 24px 0 0;
      }

      .pricing-glass-card h3 {
        font-size: 20px;
        margin: 0 0 25px;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--color-brand-navy);
        text-align: center;
      }

      .price-list {
        display: flex;
        flex-direction: column;
        gap: 15px;
      }

      .price-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px dashed var(--color-border-light);
        padding-bottom: 15px;
      }

      .price-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
      }

      .price-name {
        font-size: 15px;
        font-weight: 500;
        color: var(--color-text-secondary);
      }

      .price-value {
        font-size: 18px;
        font-weight: 800;
        color: var(--ldlc-cyan);
        white-space: nowrap;
        padding-left: 15px;
      }

      /* ── FAQ SECTION (SEO GOLDMINE) ── */
      .faq-section {
        max-width: 800px;
        margin: 0 auto 100px;
        padding: 0 20px;
      }

      .faq-item {
        background: var(--panel);
        border: 1px solid var(--panel-border);
        border-radius: 16px;
        margin-bottom: 15px;
        overflow: hidden;
        transition: border-color 0.3s;
      }

      .faq-item:hover {
        border-color: rgba(0, 150, 200, 0.5);
      }

      .faq-question {
        width: 100%;
        text-align: left;
        background: none;
        border: none;
        padding: 24px;
        font-size: 18px;
        font-weight: 700;
        color: var(--text);
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-family: inherit;
      }

      .faq-question::after {
        content: "+";
        font-size: 24px;
        font-weight: 300;
        color: var(--ldlc-cyan);
        transition: transform 0.3s;
      }

      .faq-item.active .faq-question::after {
        content: "−";
        transform: rotate(180deg);
      }

      .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition:
          max-height 0.4s ease-out,
          padding 0.4s ease;
        background: var(--color-bg-page);
      }

      .faq-item.active .faq-answer {
        max-height: 500px;
        /* Arbitrary large max-height for animation */
        padding: 0 24px 24px;
      }

      .faq-answer p {
        margin: 0;
        color: var(--text-muted);
        line-height: 1.6;
      }

      /* ── BIG CTA END ── */
      .mega-cta {
        max-width: 1200px;
        margin: 0 auto 80px;
        padding: 0 20px;
      }

      .mega-cta-inner {
        background: linear-gradient(135deg, #1e2b50 0%, #0a3782 100%);
        border-radius: 30px;
        padding: 60px 40px;
        text-align: center;
        border: 1px solid var(--ldlc-cyan);
        box-shadow: 0 20px 50px rgba(0, 150, 200, 0.2);
      }

      .mega-cta-inner h2 {
        font-size: 36px;
        font-weight: 900;
        margin-bottom: 20px;
        color: #ffffff;
      }

      .mega-cta-inner p {
        font-size: 18px;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 30px;
        max-width: 600px;
        margin-inline: auto;
      }

      .btn-mega {
        display: inline-block;
        background: var(--color-bg-card);
        color: #0a3782;
        font-size: 18px;
        font-weight: 800;
        padding: 16px 40px;
        border-radius: 50px;
        text-decoration: none;
        transition:
          transform 0.3s,
          box-shadow 0.3s;
      }

      .btn-mega:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
      }

/* ═══════════════════════════════════════════════════════════
   ESPACE PROFESSIONNELS — WHITE / BLUE THEME
   ═══════════════════════════════════════════════════════════ */

.pro-page {
    background: var(--color-bg-page);
    color: #1a2744;
}

/* ── Pro Hero ── */
.pro-hero {
    position: relative;
    padding: 100px 20px 80px;
    text-align: center;
    background: linear-gradient(170deg, #eef3fb 0%, #f4f7fc 50%, #e7eef8 100%);
    overflow: hidden;
}

.pro-hero::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 150, 200, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.pro-hero::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(10, 55, 130, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.pro-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(10, 55, 130, 0.06);
    border: 1px solid rgba(10, 55, 130, 0.12);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: #0a3782;
    margin-bottom: 32px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pro-hero-badge i {
    color: #0096c8;
}

.pro-hero h1 {
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 800;
    color: var(--color-heading);
    line-height: 1.18;
    margin-bottom: 24px;
    letter-spacing: -1px;
    position: relative;
}

.pro-hero h1 .pro-highlight {
    background: linear-gradient(135deg, #0a3782, #0096c8);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pro-hero-desc {
    font-size: 18px;
    color: var(--color-text-secondary);
    max-width: 680px;
    margin: 0 auto 40px;
    line-height: 1.72;
}

.pro-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #0a3782, #0096c8);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.28s, box-shadow 0.28s;
    box-shadow: 0 4px 20px rgba(10, 55, 130, 0.25);
}

.pro-hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(10, 55, 130, 0.35);
}

/* ── Pro Container ── */
.pro-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ── Pro Section ── */
.pro-section {
    padding: 80px 0;
}

.pro-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(10, 55, 130, 0.05);
    border: 1px solid rgba(10, 55, 130, 0.1);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: #0a3782;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.pro-section-title {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 800;
    color: var(--color-heading);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.pro-section-subtitle {
    font-size: 16px;
    color: var(--color-text-secondary);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 48px;
}

/* ── Pro Service Cards ── */
.pro-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.pro-service-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-light);
    border-radius: 18px;
    padding: 36px 32px;
    transition: transform 0.32s, box-shadow 0.32s, border-color 0.32s;
    position: relative;
    overflow: hidden;
}

.pro-service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0a3782, #0096c8);
    border-radius: 18px 18px 0 0;
    opacity: 0;
    transition: opacity 0.32s;
}

.pro-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(10, 55, 130, 0.1);
    border-color: rgba(0, 150, 200, 0.25);
}

.pro-service-card:hover::before {
    opacity: 1;
}

.pro-service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(10, 55, 130, 0.08), rgba(0, 150, 200, 0.08));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #0a3782;
    margin-bottom: 22px;
}

.pro-service-card h3 {
    font-size: 19px;
    font-weight: 800;
    color: var(--color-heading);
    margin-bottom: 12px;
}

.pro-service-card p {
    font-size: 14.5px;
    color: var(--color-text-secondary);
    line-height: 1.72;
}

/* ── Pro Cibles ── */
.pro-cibles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.pro-cible-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    background: #f7faff;
    border: 1px solid var(--color-border-light);
    border-radius: 16px;
    padding: 32px 20px;
    transition: transform 0.28s, box-shadow 0.28s;
    text-align: center;
}

.pro-cible-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(10, 55, 130, 0.08);
}

.pro-cible-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #0a3782, #0096c8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
}

.pro-cible-item span {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-heading);
}

/* ── Pro CTA Band ── */
.pro-cta {
    background: linear-gradient(135deg, #0a3782 0%, #0a3782 50%, #0096c8 100%);
    border-radius: 24px;
    padding: 64px 48px;
    text-align: center;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
}

.pro-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 120%, rgba(255, 255, 255, 0.08) 0%, transparent 65%);
    pointer-events: none;
}

.pro-cta h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    position: relative;
}

.pro-cta p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    line-height: 1.7;
    position: relative;
}

.pro-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--color-bg-card);
    color: #0a3782;
    font-size: 15px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.28s, box-shadow 0.28s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: relative;
}

.pro-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}

/* ── Pro Form Page ── */
.pro-form-section {
    padding: 80px 0;
}

.pro-form-wrapper {
    max-width: 720px;
    margin: 0 auto;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-light);
    border-radius: 24px;
    padding: 48px 44px;
    box-shadow: 0 8px 40px rgba(10, 55, 130, 0.06);
}

.pro-form-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-heading);
    margin-bottom: 8px;
}

.pro-form-subtitle {
    font-size: 15px;
    color: var(--color-text-secondary);
    margin-bottom: 36px;
    line-height: 1.7;
}

.pro-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.pro-form-group.full-width {
    grid-column: 1 / -1;
}

.pro-form-group label {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pro-form-group label .required {
    color: #e74c3c;
}

.pro-form-group input,
.pro-form-group select,
.pro-form-group textarea {
    padding: 14px 18px;
    border: 1.5px solid #d6e2f0;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    color: #1a2744;
    background: var(--input-bg);
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}

.pro-form-group input:focus,
.pro-form-group select:focus,
.pro-form-group textarea:focus {
    border-color: #0096c8;
    box-shadow: 0 0 0 4px rgba(0, 150, 200, 0.1);
    background: var(--color-bg-card)00;
}

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

.pro-form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6a84' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

.pro-form-submit-row {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.pro-form-submit {
    padding: 16px 36px;
    background: linear-gradient(135deg, #0a3782, #0096c8);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: transform 0.28s, box-shadow 0.28s;
    box-shadow: 0 4px 20px rgba(10, 55, 130, 0.25);
}

.pro-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(10, 55, 130, 0.35);
}

.pro-form-engagement {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--color-text-secondary);
}

.pro-form-engagement i {
    color: #0096c8;
    font-size: 15px;
}

.pro-form-feedback {
    grid-column: 1 / -1;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    min-height: 22px;
    margin-top: 8px;
}

.pro-form-feedback.success {
    color: #27ae60;
}

.pro-form-feedback.error {
    color: #e74c3c;
}

/* ── Pro Promise Band ── */
.pro-promise {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    padding: 48px 0;
    border-top: 1px solid var(--color-border-light);
    border-bottom: 1px solid var(--color-border-light);
    margin: 0 0 48px;
}

.pro-promise-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.pro-promise-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(10, 55, 130, 0.06);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #0a3782;
}

.pro-promise-item h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: 4px;
}

.pro-promise-item p {
    font-size: 13px;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ── Pro Events ── */
.pro-events-section-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-heading);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--color-border-light);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pro-events-section-title i {
    color: #0096c8;
}

.pro-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
    margin-bottom: 64px;
}

.pro-event-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-light);
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.32s, box-shadow 0.32s;
}

.pro-event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(10, 55, 130, 0.08);
}

.pro-event-visual {
    height: 180px;
    background: linear-gradient(135deg, #e8f1fd 0%, #d4e6fa 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.pro-event-visual i {
    font-size: 48px;
    color: rgba(10, 55, 130, 0.15);
}

.pro-event-date-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #0a3782, #0096c8);
    color: #fff;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.pro-event-content {
    padding: 28px;
}

.pro-event-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(10, 55, 130, 0.06);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    color: #0a3782;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.pro-event-tag.past {
    background: rgba(90, 106, 132, 0.08);
    color: var(--color-text-secondary);
}

.pro-event-content h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--color-heading);
    margin-bottom: 10px;
}

.pro-event-content p {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.65;
}

/* ── Pro Responsive ── */
@media (max-width: 768px) {
    .pro-hero {
        padding: 70px 20px 60px;
    }
    .pro-hero h1 {
        font-size: 28px;
    }
    .pro-hero-desc {
        font-size: 15px;
    }
    .pro-services-grid {
        grid-template-columns: 1fr;
    }
    .pro-cibles-grid {
        grid-template-columns: 1fr 1fr;
    }
    .pro-cta {
        padding: 48px 24px;
        margin: 48px 16px;
        border-radius: 18px;
    }
    .pro-form-wrapper {
        padding: 32px 24px;
        margin: 0 16px;
    }
    .pro-form-grid {
        grid-template-columns: 1fr;
    }
    .pro-form-submit-row {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    .pro-events-grid {
        grid-template-columns: 1fr;
    }
    .pro-promise {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════════
   RGPD — Banner & Modal cookies
   ═══════════════════════════════════════════════════════════ */

/* ── Banner ─────────────────────────────────────────────── */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid var(--panel-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.12);
    animation: cb-slide-up 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes cb-slide-up {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

.cb-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cb-text {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    flex: 1;
    min-width: 260px;
}

.cb-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.cb-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.cb-text p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

.cb-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    flex-shrink: 0;
}

/* ── Boutons partagés banner + modal ────────────────────── */
.cb-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 9px 18px;
    cursor: pointer;
    transition: background 0.18s, color 0.18s, transform 0.1s, box-shadow 0.18s;
    white-space: nowrap;
}
.cb-btn:active { transform: scale(0.97); }

.cb-btn--primary {
    background: linear-gradient(135deg, var(--ldlc-blue), var(--ldlc-cyan));
    color: #fff;
    box-shadow: 0 2px 10px rgba(0, 150, 200, 0.3);
}
.cb-btn--primary:hover {
    box-shadow: 0 4px 18px rgba(0, 150, 200, 0.45);
    background: linear-gradient(135deg, #0052b3, #00b8ff);
}

.cb-btn--outline {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--panel-border);
}
.cb-btn--outline:hover {
    border-color: var(--ldlc-cyan);
    color: var(--ldlc-cyan);
}

.cb-btn--ghost {
    background: rgba(0, 150, 200, 0.1);
    color: var(--ldlc-cyan);
    border: 1px solid rgba(0, 150, 200, 0.25);
}
.cb-btn--ghost:hover {
    background: rgba(0, 150, 200, 0.2);
}

/* ── Modal ──────────────────────────────────────────────── */
#cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 9100;
    display: flex;
    align-items: center;
    justify-content: center;
}
#cookie-banner[hidden] { display: none; }
#cookie-modal[hidden] { display: none; }

.cm-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.cm-box {
    position: relative;
    z-index: 1;
    background: var(--panel);
    border: 1px solid var(--panel-border);
    border-radius: 16px;
    width: min(620px, calc(100vw - 32px));
    max-height: calc(100vh - 48px);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-xl);
    animation: cm-zoom-in 0.28s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes cm-zoom-in {
    from { transform: scale(0.9); opacity: 0; }
    to   { transform: scale(1);   opacity: 1; }
}

.cm-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 16px;
    border-bottom: 1px solid var(--panel-border);
    flex-shrink: 0;
}

.cm-header h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}

#cm-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    padding: 2px 6px;
    border-radius: 6px;
    transition: color 0.15s, background 0.15s;
}
#cm-close:hover { color: var(--text); background: rgba(30, 43, 80, 0.06); }

.cm-body {
    overflow-y: auto;
    padding: 20px 24px;
    flex: 1;
    scrollbar-width: thin;
    scrollbar-color: var(--panel-border) transparent;
}

.cm-intro {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* ── Catégorie ──────────────────────────────────────────── */
.cm-category {
    background: var(--input-bg);
    border: 1px solid var(--panel-border);
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 12px;
}
.cm-category:last-child { margin-bottom: 0; }

.cm-cat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    gap: 12px;
}

.cm-cat-header > div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cm-cat-header strong {
    font-size: 0.9rem;
    color: var(--text);
}

.cm-category p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

/* ── Badge ──────────────────────────────────────────────── */
.cm-badge {
    font-size: 0.68rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
    background: rgba(0, 150, 200, 0.12);
    color: var(--ldlc-cyan);
    border: 1px solid rgba(0, 150, 200, 0.25);
}
.cm-badge--required {
    background: rgba(46, 158, 68, 0.12);
    color: var(--ok);
    border-color: rgba(46, 158, 68, 0.3);
}

/* ── Toggle switch ──────────────────────────────────────── */
.cm-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
    cursor: pointer;
}

.cm-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.cm-toggle-knob {
    position: absolute;
    inset: 0;
    background: var(--input-border);
    border-radius: 24px;
    transition: background 0.22s;
}

.cm-toggle-knob::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: var(--color-bg-card);
    border-radius: 50%;
    transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 1px 4px rgba(0,0,0,0.35);
}

.cm-toggle input:checked + .cm-toggle-knob {
    background: linear-gradient(135deg, var(--ldlc-blue), var(--ldlc-cyan));
}

.cm-toggle input:checked + .cm-toggle-knob::after {
    transform: translateX(20px);
}

/* Toggle désactivé (nécessaires) */
.cm-toggle--disabled {
    cursor: default;
    opacity: 0.55;
}
.cm-toggle--disabled .cm-toggle-knob {
    background: linear-gradient(135deg, var(--ldlc-blue), var(--ldlc-cyan));
}
.cm-toggle--disabled .cm-toggle-knob::after {
    transform: translateX(20px);
}

/* ── Footer modal ───────────────────────────────────────── */
.cm-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 24px;
    border-top: 1px solid var(--panel-border);
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cm-link {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.15s;
}
.cm-link:hover { color: var(--ldlc-cyan); }

.cm-footer-btns {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 640px) {
    .cb-inner {
        padding: 16px 20px;
        flex-direction: column;
        align-items: stretch;
    }
    .cb-actions {
        justify-content: stretch;
    }
    .cb-btn {
        flex: 1;
        text-align: center;
    }
    .cm-footer {
        flex-direction: column;
        align-items: stretch;
    }
    .cm-footer-btns {
        justify-content: stretch;
    }
    .cm-footer-btns .cb-btn {
        flex: 1;
    }
}

/* ── Expertise Cards ─────────────────────────────────── */
.section-expertise {
    padding-top: 60px;
    padding-bottom: 30px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.expertise-card {
    background: var(--color-bg-card);
    border: 1px solid var(--panel-border);
    border-radius: var(--radius);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 150, 200, 0.12);
    border-color: rgba(0, 150, 200, 0.3);
}

.expertise-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
}

.expertise-card-icon {
    color: var(--ldlc-cyan);
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.expertise-card-text {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 15px;
}

/* ══════════════════════════════════════════════════════════
   DESIGN UPGRADE — Améliorations Visuelles Professionnelles
   ══════════════════════════════════════════════════════════ */

/* ── Section head — centrage global + label ligne ────────── */
.section-head {
    text-align: center;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* ── Section Simulateurs ────────────────────────────── */
.section-simulateur {
    padding-bottom: 80px;
}

.simu-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.simu-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.simu-img-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--panel-border);
    background: var(--color-bg-subtle);
    aspect-ratio: 3/4;
}

.simu-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.simu-img-wrap:hover img {
    transform: scale(1.04);
}

.simu-label {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.1);
}

.simu-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.simu-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 150, 200,0.12);
    color: var(--ldlc-cyan);
    border: 1px solid rgba(0, 150, 200,0.25);
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    width: fit-content;
}

.simu-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
    margin: 0;
}

.simu-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.simu-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.simu-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text-muted);
}

.simu-features li svg {
    color: var(--ldlc-cyan);
    flex-shrink: 0;
}

.simu-img-wrap {
    cursor: zoom-in;
}

.simu-zoom-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.15);
    pointer-events: none;
}

.simu-img-wrap:hover .simu-zoom-icon {
    opacity: 1;
}

/* Lightbox */
.simu-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(8px);
    cursor: zoom-out;
}

.simu-lightbox.active {
    display: flex;
}

.simu-lightbox-inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    cursor: default;
}

.simu-lightbox-inner img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    display: block;
}

.simu-lightbox-inner p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.simu-lightbox-close {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 10000;
}

.simu-lightbox-close:hover {
    background: rgba(255,255,255,0.2);
}

@media (max-width: 900px) {
    .simu-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .simu-images {
        grid-template-columns: 1fr 1fr;
    }
    .simu-title {
        font-size: 26px;
    }
}

/* ── Section title — underline accent ───────────────────── */
.section-title {
    position: relative;
    padding-bottom: 22px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--ldlc-blue), var(--ldlc-cyan));
}

/* ── Hero orbs — plus de profondeur ─────────────────────── */
.hero-orb-1 {
    background: radial-gradient(ellipse, rgba(0, 80, 200, .55) 0%, rgba(0, 30, 100, .12) 100%) !important;
    width: 620px !important;
    height: 620px !important;
    filter: blur(90px) !important;
}

.hero-orb-2 {
    background: radial-gradient(ellipse, rgba(0, 190, 255, .26) 0%, transparent 70%) !important;
    animation-duration: 11s !important;
}

/* ── Expertise card — gradient border glow on hover ─────── */
.expertise-card {
    position: relative;
    overflow: hidden;
}

.expertise-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(10, 55, 130, .95), rgba(0, 150, 200, .95));
    z-index: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.expertise-card:hover {
    border-color: transparent !important;
    box-shadow: 0 12px 36px rgba(10, 55, 130, .35) !important;
}

.expertise-card:hover::after {
    opacity: 1;
}

/* Garder le contenu AU-DESSUS du dégradé ::after */
.expertise-card-icon,
.expertise-card-title,
.expertise-card-text,
.expertise-card-arrow {
    position: relative;
    z-index: 1;
}

/* Couleurs du texte au survol — lisibles sur fond sombre */
.expertise-card-link:hover .expertise-card-title {
    color: #ffffff !important;
}

.expertise-card-link:hover .expertise-card-text {
    color: rgba(255, 255, 255, 0.85) !important;
}

.expertise-card-link:hover .expertise-card-icon {
    color: #ffffff !important;
}

.expertise-card-link:hover .expertise-card-arrow {
    color: rgba(255, 255, 255, 0.95) !important;
}

/* ── Testimonials — 3 colonnes côte à côte sur desktop ───── */
@media (min-width: 960px) {
    .carousel-wrap {
        overflow: visible !important;
    }
    .carousel-track {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        transform: none !important;
        gap: 24px !important;
        transition: none !important;
    }
    .testimonial-card {
        min-width: 0 !important;
        width: 100% !important;
    }
    .carousel-dots {
        display: none !important;
    }
}

/* ── Testimonial card — accent line en haut au hover ─────── */
.testimonial-card {
    position: relative;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ldlc-cyan), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.testimonial-card:hover::before {
    opacity: 1;
}

/* ── CTA — blob animé en coin bas-droit ─────────────────── */
@keyframes cta-blob {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(60px, -40px) scale(1.08); }
    66%       { transform: translate(-30px, 50px) scale(.94); }
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -60px;
    width: 360px;
    height: 360px;
    background: radial-gradient(ellipse, rgba(0, 150, 200, .16) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    animation: cta-blob 14s ease-in-out infinite;
}


/* ── Footer social links — pill design avec icône ────────── */
.footer-social-link {
    display: inline-flex !important;
    align-items: center !important;
    gap: 9px !important;
    padding: 7px 16px !important;
    border-radius: 30px !important;
    border: 1px solid rgba(255, 255, 255, .08) !important;
    background: rgba(255, 255, 255, .03) !important;
    transition: all 0.25s ease !important;
    font-size: 13px !important;
    color: var(--text-muted) !important;
    text-decoration: none !important;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.footer-social-link:hover {
    border-color: rgba(0, 150, 200, 0.4) !important;
    background: rgba(0, 150, 200, 0.08) !important;
    color: #fff !important;
    transform: translateX(5px) !important;
    box-shadow: 0 4px 16px rgba(0, 150, 200, .12) !important;
}

.footer-social-link i {
    font-size: 13px;
    width: 14px;
    text-align: center;
}

/* ── Btn shimmer — gradient animé ────────────────────────── */
@keyframes shimmer-bg {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.btn-shimmer {
    background: linear-gradient(
        270deg,
        #083070,
        #0055bb,
        #0096c8,
        #0055bb,
        #083070
    ) !important;
    background-size: 350% 100% !important;
    animation: shimmer-bg 5s ease infinite !important;
    box-shadow: 0 0 24px rgba(0, 150, 200, .22) !important;
    border: none !important;
}

.btn-shimmer:hover {
    box-shadow: 0 0 40px rgba(0, 150, 200, .45) !important;
    transform: translateY(-2px) !important;
}

/* ── Showcase card — ambient glow on image ───────────────── */
.card-media::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 55%;
    background: linear-gradient(to top, rgba(30, 43, 80, .08) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

/* ── Chip / Badge design ─────────────────────────────────── */
.chip {
    position: absolute !important;
    top: 14px !important;
    left: 14px !important;
    background: rgba(10, 55, 130, .85) !important;
    backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(0, 150, 200, .4) !important;
    color: #fff !important;
    font-size: .7rem !important;
    font-weight: 700 !important;
    letter-spacing: .06em !important;
    text-transform: uppercase !important;
    padding: 4px 12px !important;
    border-radius: 20px !important;
    z-index: 2;
}

.chip-cyan {
    background: rgba(0, 120, 200, .85) !important;
    border-color: rgba(0, 200, 255, .5) !important;
    color: #c8f0ff !important;
}

/* ==========================================================================
   GOOGLE MY BUSINESS CARD (LOCAL BUSINESS SCHEMA WIDGET)
   ========================================================================== */
.gmb-card {
    background: var(--color-bg-card);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    font-family: Roboto, Arial, sans-serif;
    color: #3c4043;
    font-size: 14px;
    max-width: 420px;
    width: 100%;
    transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), 
                transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), 
                visibility 0.4s;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 10;
    border: 1px solid #dadce0;
}

.gmb-card.gmb-hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    pointer-events: none;
}

.gmb-images {
    display: flex;
    height: 160px;
    gap: 2px;
    background: #000;
}

.gmb-img-large {
    flex: 1.6;
    position: relative;
    overflow: hidden;
}

.gmb-img-large img, .gmb-img-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gmb-img-large:hover img, .gmb-img-thumbs div:hover img {
    transform: scale(1.05);
}

.gmb-img-thumbs {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.gmb-img-thumb-top, .gmb-img-thumb-bottom {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.gmb-img-label {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 3px 8px;
    font-size: 11px;
    border-radius: 4px;
    font-family: inherit;
    font-weight: 500;
    pointer-events: none;
}

.gmb-content {
    padding: 16px;
}

.gmb-title {
    font-size: 22px;
    font-weight: 400;
    margin: 0 0 6px 0;
    color: #202124;
}

.gmb-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 4px;
}

.gmb-rating-val {
    font-weight: 500;
    color: #ff9800;
}

.gmb-stars {
    color: #fbbc05;
    font-size: 14px;
    letter-spacing: 1px;
}

.gmb-reviews-count {
    color: #0096c8;
    text-decoration: none;
    cursor: pointer;
    font-size: 13px;
}

.gmb-reviews-count:hover {
    text-decoration: underline;
}

.gmb-info-icon {
    color: #9aa0a6;
    font-size: 12px;
    margin-left: 4px;
    cursor: pointer;
}

.gmb-category {
    color: #5f6368;
    font-size: 13px;
    margin: 0 0 16px 0;
}

.gmb-actions {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 4px;
    border-top: 1px solid #dadce0;
    border-bottom: 1px solid #dadce0;
    padding: 12px 0;
    margin-bottom: 16px;
    text-align: center;
}

.gmb-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: #0096c8;
    text-decoration: none;
    font-size: 10px;
    cursor: pointer;
    transition: color 0.2s, background-color 0.2s;
    padding: 4px 0;
    border-radius: 4px;
}

.gmb-action-btn span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.gmb-action-btn:hover {
    color: #0a3782;
}

.gmb-action-icon {
    width: 36px;
    height: 36px;
    border: 1px solid #dadce0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: background-color 0.2s;
}

.gmb-action-btn:hover .gmb-action-icon {
    background-color: rgba(138, 180, 248, 0.08);
}

.gmb-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gmb-detail-item {
    font-size: 13px;
    line-height: 1.4;
    display: flex;
    gap: 8px;
}

.gmb-detail-label {
    font-weight: 700;
    color: #3c4043;
    white-space: nowrap;
}

.gmb-detail-text {
    color: #5f6368;
}

.gmb-detail-text a {
    color: #0096c8;
    text-decoration: none;
}

.gmb-detail-text a:hover {
    text-decoration: underline;
}

.gmb-hours-dropdown {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gmb-hours-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    user-select: none;
}

.gmb-hours-dropdown-trigger:hover {
    color: #202124;
}

.gmb-hours-value {
    color: #3c4043;
}

.toggle-hours {
    font-size: 10px;
    color: #9aa0a6;
    transition: transform 0.3s;
}

.gmb-hours-list {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding-left: 70px;
    margin-top: 4px;
}

.gmb-hours-dropdown.active .gmb-hours-list {
    display: flex;
}

.gmb-hours-dropdown.active .toggle-hours {
    transform: rotate(180deg);
}

.gmb-hours-row {
    display: flex;
    justify-content: space-between;
    max-width: 280px;
    color: #5f6368;
    font-size: 13px;
}

.gmb-hours-row span:first-child {
    font-weight: 500;
    text-transform: capitalize;
}

/* ── Hero restyling helpers ── */
.hero-header-wrap {
    width: 100%;
    animation: fadeInUp 0.6s ease;
}

.hero-header-wrap h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    color: #ffffff;
}

.hero-bottom-right {
    width: 100%;
}

/* ── Clickable Cards (Expertise) ── */
.clickable-card {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.clickable-card:hover {
    border-color: var(--ldlc-cyan);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 150, 200, 0.15);
}

/* ============================================================
   SLIDER PRINCIPAL
   Dimensions Canva recommandées : 1440 × 480 px
   ============================================================ */
.main-slider {
    position: relative;
    width: 100%;
    background: #141e38;
    overflow: hidden;
    user-select: none;
}

.ms-viewport {
    overflow: hidden;
    width: 100%;
}

.ms-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.ms-slide {
    flex: 0 0 100%;
    height: 480px;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    position: relative;
}

/* Gradient de couleur par défaut quand aucune image n'est définie */
.ms-slide:nth-child(1) { background-color: var(--color-heading); }
.ms-slide:nth-child(2) { background-color: #141e38; }
.ms-slide:nth-child(3) { background-color: #0a3782; }

.ms-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.ms-overlay {
    position: absolute;
    inset: 0;
    background: none;
    display: flex;
    align-items: center;
}

.ms-content {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.ms-badge {
    display: inline-block;
    background: var(--ldlc-cyan, #0096c8);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 4px;
}

.ms-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin: 0;
    text-shadow: 0 2px 12px rgba(0,0,0,.5);
}

.ms-cta {
    display: inline-block;
    background: var(--ldlc-cyan, #0096c8);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 11px 26px;
    border-radius: 8px;
    transition: background 0.2s, transform 0.2s;
    margin-top: 4px;
}

.ms-slide:hover .ms-cta {
    background: #0088c7;
    transform: translateX(4px);
}

/* Flèches */
.ms-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(6px);
    color: #fff;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s;
}

.ms-arrow:hover { background: rgba(0, 150, 200,.55); }
.ms-prev { left: 18px; }
.ms-next { right: 18px; }

/* Points */
.ms-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.ms-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    padding: 0;
}

.ms-dot.active {
    background: var(--ldlc-cyan, #0096c8);
    transform: scale(1.4);
}

/* Responsive */
@media (max-width: 768px) {
    .ms-slide { height: 280px; }
    .ms-content { padding: 0 20px; gap: 10px; }
    .ms-title { font-size: 1.5rem; }
    .ms-cta { font-size: 0.85rem; padding: 9px 18px; }
    .ms-arrow { width: 36px; height: 36px; }
}

/* ============================================================
   EXPERTISE CARDS — cliquables
   ============================================================ */
.expertise-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.expertise-card-link:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 150, 200, .35);
    border-color: transparent;
}

.expertise-card-arrow {
    display: inline-block;
    margin-top: 12px;
    color: var(--ldlc-cyan, #0096c8);
    font-size: 0.875rem;
    font-weight: 600;
    transition: letter-spacing 0.2s, color 0.4s ease;
}

.expertise-card-link:hover .expertise-card-arrow {
    letter-spacing: 0.03em;
}

/* Responsiveness for GMB and Hero Layout */
@media (max-width: 992px) {
    .hero-header-wrap {
        text-align: center;
    }
    .hero-header-wrap h1 {
        font-size: 36px;
    }
    .hero-inner {
        grid-template-columns: 1fr;
        padding: 80px 20px 60px;
        gap: 32px;
    }
    .hero-left {
        align-items: center;
        text-align: center;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-right {
        justify-content: center;
    }
    .gmb-card {
        margin: 0 auto;
    }
}

/* ── GMB Map Thumb ──────────────────────────────── */
.gmb-map-thumb:hover .gmb-map-overlay {
    opacity: 1;
}
.gmb-map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 30, 56, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
    color: #fff;
}
.gmb-map-overlay svg {
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.6));
}

/* ── Map Popup ──────────────────────────────────── */
.map-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
}
.map-popup.active {
    opacity: 1;
    pointer-events: all;
}
.map-popup-inner {
    position: relative;
    width: 90vw;
    max-width: 960px;
    height: 70vh;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
}
.map-popup-inner iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.map-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 1;
    background: rgba(20, 30, 56, 0.82);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.map-popup-close:hover {
    background: rgba(0, 150, 200, 0.8);
}

/* ── Bouton Panier (Nav) ────────────────────────── */
.nav-cart-btn {
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px 8px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
}
.nav-cart-btn:hover {
    background: rgba(0, 150, 200, 0.12);
    color: var(--ldlc-cyan);
}
.nav-cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--ldlc-cyan);
    color: #141e38;
    font-size: 10px;
    font-weight: 700;
    min-width: 17px;
    height: 17px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
    pointer-events: none;
}

/* ── Cart Overlay ───────────────────────────────── */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.cart-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* ── Cart Drawer ────────────────────────────────── */
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    max-width: 100vw;
    height: 100dvh;
    background: var(--color-bg-card);
    border-left: 1px solid var(--color-border-light);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.18);
}
.cart-drawer.active {
    transform: translateX(0);
}

.cart-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 16px;
    border-bottom: 1px solid var(--color-border-light);
    flex-shrink: 0;
}
.cart-drawer-head h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-brand-navy);
}
.cart-close-btn {
    background: transparent;
    border: none;
    color: var(--color-text-secondary);
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    transition: background 0.2s, color 0.2s;
}
.cart-close-btn:hover {
    background: var(--color-bg-subtle);
    color: var(--color-text-primary);
}

/* ── Cart Items ─────────────────────────────────── */
.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 12px 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--color-border-medium) transparent;
}
.cart-items::-webkit-scrollbar { width: 4px; }
.cart-items::-webkit-scrollbar-thumb { background: var(--color-border-medium); border-radius: 4px; }

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    height: 100%;
    min-height: 200px;
    color: var(--color-text-disabled);
    text-align: center;
}
.cart-empty p {
    font-size: 15px;
}

.cart-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border-light);
}
.cart-item:last-child { border-bottom: none; }

.cart-item-img {
    width: 62px;
    height: 62px;
    border-radius: 8px;
    background: var(--color-bg-subtle);
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-disabled);
}
.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.cart-item-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-primary);
    line-height: 1.3;
}
.cart-item-cat {
    font-size: 11px;
    color: var(--ldlc-cyan);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.cart-item-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--ldlc-cyan);
    margin-top: 2px;
}
.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
}
.cart-item-qty button {
    background: var(--color-bg-subtle);
    border: none;
    color: var(--color-text-primary);
    width: 24px;
    height: 24px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.cart-item-qty button:hover { background: rgba(0, 150, 200, 0.25); }
.cart-item-qty span {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-primary);
    min-width: 16px;
    text-align: center;
}

.cart-item-remove {
    background: transparent;
    border: none;
    color: var(--color-text-disabled);
    cursor: pointer;
    padding: 4px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-top: 2px;
    transition: color 0.2s, background 0.2s;
}
.cart-item-remove:hover {
    color: var(--color-error);
    background: var(--color-error-bg);
}

/* ── Cart Footer ────────────────────────────────── */
.cart-footer {
    padding: 16px 20px 20px;
    border-top: 1px solid var(--color-border-light);
    flex-shrink: 0;
    flex-direction: column;
    gap: 12px;
}
.cart-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 0;
}
.cart-total-row span {
    font-size: 14px;
    color: var(--color-text-secondary);
}
.cart-total-row strong {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-price-current);
}
.cart-validate-btn {
    width: 100%;
    background: var(--color-brand-cta);
    color: #ffffff;
    border: none;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s, transform 0.15s;
}
.cart-validate-btn:hover {
    background: var(--color-brand-cta-hover);
    transform: translateY(-1px);
}
.cart-login-notice {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--color-text-disabled);
    margin: 0;
    justify-content: center;
}

@media (max-width: 480px) {
    .cart-drawer { width: 100vw; }
}

/* ── CART DÉSACTIVÉ (à réactiver plus tard) ── */
.nav-cart-btn { display: none !important; }



/* ════════════════════════════════════════
   PC pages — Reserve CTA (hero + sticky)
════════════════════════════════════════ */
.pc-btn-reserve-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 42px;
    border-radius: 100px;
    background: linear-gradient(135deg, #27893b, #2e9e44);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    font-family: inherit;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    box-shadow: 0 8px 32px rgba(46, 158, 68, 0.30);
    margin-left: 12px;
}
.pc-btn-reserve-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 44px rgba(46, 158, 68, 0.45);
}

#pcStickyBar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 8888;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 32px;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}
#pcStickyBar.visible {
    transform: translateY(0);
}
.pcsb-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-brand-navy);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pcsb-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 28px;
    border-radius: 100px;
    background: linear-gradient(135deg, #27893b, #2e9e44);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    font-family: inherit;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(46, 158, 68, 0.3);
}
.pcsb-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(46, 158, 68, 0.45);
}
@media (max-width: 600px) {
    #pcStickyBar { padding: 10px 16px; }
    .pcsb-name { display: none; }
    .pcsb-btn { padding: 10px 20px; }
}

/* ═══════════════════════════════════════════════════════
   MODE SOMBRE — ajustements composants (cas non auto-adaptés)
═══════════════════════════════════════════════════════ */
/* Titres en dégradé (texte clippé) → démarrent en clair */
html.dark .highlight,
html.dark .section-title,
html.dark .section-heading,
html.dark .brand__title,
html.dark .hero-premium h1 {
    background: linear-gradient(135deg, #ffffff 30%, var(--ldlc-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* Carte Google My Business : reste claire (rendu Google authentique) */
html.dark .gmb-card { background: #ffffff; }
/* Bandeau cookies : surface sombre */
html.dark #cookie-banner { background: rgba(16, 26, 46, 0.98); }
/* Boutons secondaires / flèches : contraste sur fond sombre */
html.dark .btn-secondary { color: #7ec8f7; border-color: #7ec8f7; }
html.dark .btn-secondary:hover { background: var(--ldlc-cyan); border-color: var(--ldlc-cyan); color: #0c1424; }
html.dark .cfg-arrow,
html.dark .slider-arrow { color: #7ec8f7; }
html.dark .pc-spec-table tr:hover td { background: rgba(255, 255, 255, 0.04); }

/* ═══════════════════════════════════════════════════════
   INTERRUPTEUR DE THÈME (clair / sombre) — coulissant animé
═══════════════════════════════════════════════════════ */
.theme-toggle {
    -webkit-appearance: none;
    appearance: none;
    border: none;
    background: transparent;
    padding: 0;
    margin: 0;
    cursor: pointer;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    line-height: 0;
}
.theme-toggle .tt-track {
    position: relative;
    width: 62px;
    height: 30px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
    background: rgba(255, 255, 255, 0.10);
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.25);
    transition: background 0.4s ease, border-color 0.3s ease;
}
html.dark .theme-toggle .tt-track {
    background: rgba(0, 0, 0, 0.30);
    border-color: rgba(255, 255, 255, 0.18);
}
.theme-toggle:hover .tt-track { border-color: var(--ldlc-cyan); }

/* Icônes calées exactement sur les 2 positions de la pastille (centres alignés) */
.theme-toggle .tt-sun,
.theme-toggle .tt-moon {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 15px;
    height: 15px;
    transition: opacity 0.4s ease, transform 0.5s ease, color 0.4s ease;
}
.theme-toggle .tt-sun  { left: 6px;  color: #ffce54; opacity: 1; transform: translateY(-50%) scale(1); }
.theme-toggle .tt-moon { left: 41px; color: #c9d6ee; opacity: 0.45; transform: translateY(-50%) scale(0.82); }
html.dark .theme-toggle .tt-sun  { color: #ffd98a; opacity: 0.45; transform: translateY(-50%) scale(0.82); }
html.dark .theme-toggle .tt-moon { color: #ffffff; opacity: 1; transform: translateY(-50%) scale(1); }

/* Pastille coulissante */
.theme-toggle .tt-thumb {
    position: absolute;
    top: 50%;
    left: 2px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    z-index: 1;
    background: linear-gradient(135deg, #ffffff, #e6eeff);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
    transform: translateY(-50%) rotate(0deg);
    transition: left 0.45s cubic-bezier(0.68, -0.40, 0.27, 1.40),
                transform 0.6s ease,
                background 0.4s ease,
                box-shadow 0.3s ease;
}
html.dark .theme-toggle .tt-thumb {
    left: calc(100% - 26px);
    background: linear-gradient(135deg, #0a3782, #0096c8);
    transform: translateY(-50%) rotate(360deg);
}
.theme-toggle:hover .tt-thumb {
    box-shadow: 0 0 0 4px rgba(0, 150, 200, 0.22), 0 2px 6px rgba(0, 0, 0, 0.35);
}
.theme-toggle:active .tt-thumb { width: 28px; }

/* ──────────────────────────────────────────────────────────
   Icônes SVG inline (remplacent les anciens emojis)
   ────────────────────────────────────────────────────────── */
.ico {
    width: 1em;
    height: 1em;
    display: inline-block;
    vertical-align: -0.125em;
    flex-shrink: 0;
}
.gmb-stars .ico { color: #f5a623; }

/* ──────────────────────────────────────────────────────────
   Accessibilité — contraste, liens, cibles tactiles, focus
   (corrections audit Lighthouse mobile)
   ────────────────────────────────────────────────────────── */

/* Focus visible au clavier sur tous les éléments interactifs */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid #00b3e6;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Contraste : textes de pied de page éclaircis pour atteindre le ratio AA */
.footer-col a {
    color: rgba(255, 255, 255, .88);
}
.footer-bottom p {
    color: rgba(255, 255, 255, .78);
}

/* Liens identifiables autrement que par la couleur :
   soulignement persistant sur les liens du pied de page et liens dans le texte */
.footer-col a,
.footer-bottom a,
p a:not(.btn):not([class*="btn"]) {
    text-decoration: underline;
    text-underline-offset: 2px;
}
.footer-col a:hover,
.footer-col a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
    text-decoration: underline;
}

/* Cibles tactiles suffisamment grandes et espacées sur mobile */
@media (max-width: 768px) {
    .nav-menu a.nav-link,
    .dropdown-item,
    .footer-col a,
    .footer-social-link,
    .footer-bottom a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    /* Centrer les onglets dans le menu mobile */
    .nav-menu a.nav-link {
        justify-content: center;
    }
    .theme-toggle {
        min-width: 44px;
        min-height: 44px;
    }
    /* Masquer le switch et le bouton "Mon compte" dans la barre du haut sur mobile */
    .theme-toggle,
    .nav-profile-btn {
        display: none;
    }
    /* ...et les réafficher en bas à gauche quand le menu mobile est ouvert */
    .nav-menu.active ~ .theme-toggle {
        display: inline-flex;
        position: fixed;
        left: 24px;
        bottom: 24px;
        z-index: 1001;
    }
    .nav-menu.active ~ .nav-profile-btn {
        display: inline-flex;
        position: fixed;
        left: 24px;
        bottom: 76px;
        z-index: 1001;
    }
}
