/**
 * Châssis Olivier - Page Accueil
 * Design Figma exact
 */

/* =============================================
   VARIABLES
============================================= */
:root {
    --co-primary: #0C64A8;
    --co-primary-hover: #095085;
    --co-dark: #16161A;
    --co-gray: #727272;
    --co-gray-light: #9ca3af;
    --co-light-bg: #F2F9FD;
    --co-white: #ffffff;
    --co-border: #e5e7eb;
    --co-shadow: 0 3px 3px rgba(185, 185, 185, 0.16);
    --co-radius: 12px;
    --co-radius-lg: 24px;
    --co-radius-btn: 40px;
    --co-container: 1320px;
    --co-font: 'Poppins', sans-serif;
}

/* =============================================
   RESET & BASE
============================================= */
.co-container {
    max-width: var(--co-container);
    margin: 0 auto;
    padding: 0 24px;
}

.co-section {
    padding: 60px 0;
}

/* Texte en gras = couleur primaire */
strong,
b {
    color: var(--co-primary);
    font-weight: 600;
}

/* Fond bleu clair pour les modules */
.co-bg-light {
    background: var(--co-light-bg);
}

/* Boutons blancs sur fond bleu clair */
.co-bg-light .co-btn,
.co-bg-light .co-btn-light {
    background: var(--co-white);
}

.co-bg-light .co-btn:hover,
.co-bg-light .co-btn-light:hover {
    background: var(--co-light-bg);
}

/* =============================================
   FROSTED GLASS STYLE (iOS 7 inspired)
   Effet vitre/châssis prononcé et homogène
============================================= */
:root {
    --glass-saturate: 180%;
    --glass-bg-hover: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.35);
    --glass-shadow-hover: 0 12px 48px rgba(0, 0, 0, 0.12);
    --glass-inset: inset 0 1px 0 rgba(255, 255, 255, 0.6);
    --glass-inset-strong: inset 0 2px 0 rgba(255, 255, 255, 0.8);
}

.co-glass,
.co-glass-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(24px) saturate(var(--glass-saturate));
    -webkit-backdrop-filter: blur(24px) saturate(var(--glass-saturate));
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), var(--glass-inset);
}

.co-glass-subtle {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), var(--glass-inset);
}

.co-glass-strong {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(32px) saturate(200%);
    -webkit-backdrop-filter: blur(32px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1), var(--glass-inset-strong);
}

.co-glass-blue {
    background: rgba(12, 100, 168, 0.75);
    backdrop-filter: blur(24px) saturate(var(--glass-saturate));
    -webkit-backdrop-filter: blur(24px) saturate(var(--glass-saturate));
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(12, 100, 168, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* =============================================
   GLOBAL BUTTONS - Glassmorphism style
============================================= */
.co-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--co-font);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--co-radius-btn);
    cursor: pointer;
    transition: all 0.3s ease;
}

.co-btn-primary {
    background: rgba(12, 100, 168, 0.8);
    backdrop-filter: blur(24px) saturate(var(--glass-saturate));
    -webkit-backdrop-filter: blur(24px) saturate(var(--glass-saturate));
    color: var(--co-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(12, 100, 168, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.co-btn-primary:hover {
    background: rgba(12, 100, 168, 0.9);
    transform: translateY(-3px);
    box-shadow: 
        0 12px 48px rgba(12, 100, 168, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.co-btn-outline {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(24px) saturate(var(--glass-saturate));
    -webkit-backdrop-filter: blur(24px) saturate(var(--glass-saturate));
    color: var(--co-dark);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), var(--glass-inset);
}

.co-btn-outline:hover {
    background: rgba(12, 100, 168, 0.8);
    color: var(--co-white);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 
        0 12px 48px rgba(12, 100, 168, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.co-btn-white {
    background: var(--co-white);
    color: var(--co-primary);
    border: none;
}

.co-btn-white:hover {
    background: var(--co-light-bg);
    transform: translateY(-2px);
}

.co-btn-light {
    background: var(--co-light-bg);
    color: var(--co-primary);
    border: none;
}

.co-btn-light:hover {
    background: #e0f0fa;
    transform: translateY(-2px);
}

/* =============================================
   HEADER
============================================= */
/* Nav intégrée : fixed au-dessus du hero (image en arrière-plan) */
.site-header,
.site-header.sticky-header {
    background: transparent !important;
    border-bottom: none !important;
    box-shadow: none !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding-top: env(safe-area-inset-top);
    transition: background 0.3s ease, backdrop-filter 0.3s ease, border-bottom 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled,
.site-header.sticky-header.scrolled {
    /* Effet glass blanc au scroll */
    background: rgba(255, 255, 255, 0.45) !important;
    backdrop-filter: blur(24px) saturate(var(--glass-saturate)) !important;
    -webkit-backdrop-filter: blur(24px) saturate(var(--glass-saturate)) !important;
    border-bottom: 1px solid var(--glass-border) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08) !important;
}

.header-container {
    max-width: var(--co-container);
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

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

.site-logo-img {
    height: 64px;
    top: 2px;
    width: auto;
    margin-top: 16px;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 20px;
}

.main-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu li a {
    display: block;
    padding: 10px 15px;
    font-family: var(--co-font);
    font-size: 14px;
    font-weight: 600;
    color: var(--co-dark);
    text-decoration: none;
    border-radius: var(--co-radius-btn);
    border: 1px solid transparent;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.main-menu li a:hover {
    background: var(--glass-bg-hover);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow-hover), var(--glass-inset-strong);
    color: var(--co-primary);
}

.main-menu li.current-menu-item > a,
.main-menu li.current_page_item > a {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(24px) saturate(var(--glass-saturate));
    -webkit-backdrop-filter: blur(24px) saturate(var(--glass-saturate));
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), var(--glass-inset);
    color: var(--co-primary);
    font-weight: 800;
}

.header-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: transparent;
    color: var(--co-dark);
    font-family: var(--co-font);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(12, 100, 168, 0.25);
    border-radius: var(--co-radius-btn);
    margin-left: 16px;
    transition: all 0.2s;
}

.header-cta-button:hover,
body.contact .header-cta-button,
body.page-contact .header-cta-button {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(24px) saturate(var(--glass-saturate));
    -webkit-backdrop-filter: blur(24px) saturate(var(--glass-saturate));
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), var(--glass-inset);
    color: var(--co-primary);
}

body.contact .header-cta-button,
body.page-contact .header-cta-button {
    font-weight: 800;
}

.header-cta-text-short {
    display: none;
}

@media (max-width: 1300px) {
    .header-cta-text-full {
        display: none;
    }
    .header-cta-text-short {
        display: inline;
    }
    .main-menu {
        gap: 4px;
    }
}

.header-phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    font-family: var(--co-font);
    font-size: 14px;
    font-weight: 500;
    color: var(--co-primary);
    text-decoration: none;
    margin-left: 8px;
}

.header-phone::before {
    content: '';
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230C64A8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z'/%3E%3C/svg%3E");
    background-size: contain;
}

.mobile-menu-toggle {
    display: none;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    font-family: var(--co-font);
    font-size: 12px;
    font-weight: 500;
    color: var(--co-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
}

/* =============================================
   HERO HOME - Two columns layout
   Le hero démarre sous la nav fixe (padding-top pour éviter que le contenu soit masqué)
============================================= */
.co-hero-home {
    padding: calc(125px + 40px) 0 125px;
    background: linear-gradient(135deg, rgba(12, 100, 168, 0.52) 0%, rgba(12, 100, 168, 0.28) 40%, rgba(12, 100, 168, 0.12) 100%),
                url(../images/bg-ciel.png);
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    position: relative;
    overflow: visible;
    animation: co-sky-breathe 12s ease-in-out infinite;
}

.co-hero-home::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(12, 100, 168, 0.28) 0%,
        rgba(12, 100, 168, 0.18) 45%,
        rgba(12, 100, 168, 0.12) 65%,
        rgba(255, 255, 255, 0) 75%,
        rgba(255, 255, 255, 0.35) 86%,
        rgba(255, 255, 255, 0.75) 95%,
        rgba(255, 255, 255, 1) 100%
    );
    pointer-events: none;
    z-index: 0;
}

.co-hero-home::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.15) 40%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

@keyframes co-sky-breathe {
    0%, 100% { background-position: center bottom; filter: brightness(1); }
    50% { background-position: 52% 48%; filter: brightness(1.03); }
}

/* Couche nuages en parallaxe - deux vitesses pour la profondeur */
.co-hero-home-clouds {
    position: absolute;
    top: -20%;
    bottom: -20%;
    left: 50%;
    width: 140vw;
    margin-left: -70vw;
    min-height: 140%;
    pointer-events: none;
    z-index: 1;
}

.co-hero-home-clouds-track {
    position: absolute;
    inset: 0;
    background-size: 180% 100%;
    background-position: 0 center;
    background-repeat: repeat-x;
    opacity: 1;
    mix-blend-mode: screen;
    filter: contrast(1.08) brightness(1.02);
}

.co-hero-home-clouds-track--slow {
    animation: co-clouds-drift 40s linear infinite;
}

.co-hero-home-clouds-track--fast {
    opacity: 0.95;
    filter: contrast(1.06) brightness(1.02);
    animation: co-clouds-drift 28s linear infinite reverse;
}

@keyframes co-clouds-drift {
    0% { background-position: 0 center; }
    100% { background-position: 100% center; }
}

@media (prefers-reduced-motion: reduce) {
    .co-hero-home,
    .co-hero-page-section,
    .co-hero-product-section {
        animation: none;
    }
    .co-hero-home-clouds-track--slow,
    .co-hero-home-clouds-track--fast {
        animation: none;
    }
    .co-hero-home-slogan-track {
        animation: none;
    }
}

/* Slogan défilant + parallaxe */
.co-hero-home-slogan {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    direction: ltr !important;
}

.co-hero-home-slogan-track {
    display: inline-flex;
    gap: 0.15em;
    white-space: nowrap;
    animation: co-slogan-marquee 25s linear infinite;
    will-change: transform;
    padding: 0 2rem;
    direction: ltr !important;
}

.co-hero-home-slogan-text {
    font-family: var(--co-font);
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    padding-right: 0.2em;
    flex-shrink: 0;
}

@keyframes co-slogan-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-25%); }
}

/* Éviter le scroll horizontal causé par les nuages */
body.home .site-main {
    overflow-x: hidden;
}

.co-hero-home .co-container {
    position: relative;
    z-index: 2;
}

.co-hero-home-grid {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 48px;
    align-items: center;
    direction: rtl;
}

.co-hero-home-grid > * {
    direction: ltr;
}

.co-hero-home-content {
}

.co-hero-home-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(24px) saturate(var(--glass-saturate));
    -webkit-backdrop-filter: blur(24px) saturate(var(--glass-saturate));
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), var(--glass-inset);
    font-family: var(--co-font);
    font-size: 13px;
    font-weight: 400;
    color: var(--co-gray);
    margin-bottom: 24px;
}

.co-hero-home-badge-flag {
    font-size: 16px;
}

.co-hero-home-title {
    font-family: var(--co-font);
    font-size: 36px;
    font-weight: 600;
    color: var(--co-dark);
    line-height: 1.2;
    margin: 0 0 16px;
}

.co-hero-home-subtitle {
    font-family: var(--co-font);
    font-size: 20px;
    font-weight: 500;
    color: var(--co-primary);
    line-height: 1.4;
    margin: 0 0 20px;
}

.co-hero-home-text {
    font-family: var(--co-font);
    font-size: 15px;
    font-weight: 400;
    color: var(--co-gray);
    line-height: 1.6;
}

.co-hero-home-text strong {
    font-weight: 600;
    color: var(--co-dark);
}

.co-hero-home-cta-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.co-hero-home-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: rgba(12, 100, 168, 0.8);
    backdrop-filter: blur(24px) saturate(var(--glass-saturate));
    -webkit-backdrop-filter: blur(24px) saturate(var(--glass-saturate));
    color: var(--co-white);
    font-family: var(--co-font);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--co-radius-btn);
    box-shadow: 
        0 8px 32px rgba(12, 100, 168, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.co-hero-home-cta:hover {
    background: rgba(12, 100, 168, 0.9);
    transform: translateY(-3px);
    box-shadow: 
        0 12px 48px rgba(12, 100, 168, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.co-hero-home-cta--secondary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--co-dark);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.co-hero-home-cta--secondary:hover {
    background: var(--co-white);
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.co-hero-home-media {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 400px;
    margin-left: -50px;
}

.co-hero-home-media--stacked {
    min-height: 420px;
}

@keyframes co-chassis-float-up {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes co-chassis-float-down {
    0%, 100% { transform: translate(-20%, 0); }
    50% { transform: translate(-20%, 12px); }
}

.co-hero-home-image--primary {
    position: relative;
    z-index: 2;
    animation: co-chassis-float-up 4s ease-in-out infinite;
}

.co-hero-home-image--overlay {
    position: absolute;
    bottom: 0;
    left: 66%;
    max-height: 210px;
    max-width: 45%;
    width: auto;
    z-index: 1;
    object-fit: contain;
    object-position: center bottom;
    animation: co-chassis-float-down 4s ease-in-out infinite;
}

.co-hero-home-image {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    object-position: center bottom;
}

/* =============================================
   CATEGORY CARDS (PVC / Alu)
============================================= */
.co-categories {
    padding: 0 0 60px;
}

.co-categories-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.co-category-card {
    position: relative;
    border-radius: var(--co-radius-lg);
    overflow: hidden;
    aspect-ratio: 16/10;
}

.co-category-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.co-category-card-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 22px;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(24px) saturate(var(--glass-saturate));
    -webkit-backdrop-filter: blur(24px) saturate(var(--glass-saturate));
    border: 1px solid var(--glass-border);
    border-radius: var(--co-radius-lg);
    font-family: var(--co-font);
    font-size: 14px;
    font-weight: 500;
    color: var(--co-dark);
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), var(--glass-inset);
    transition: all 0.3s ease;
}

.co-category-card-label:hover {
    background: rgba(12, 100, 168, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--co-white);
    transform: translateY(-3px);
    box-shadow: 
        0 12px 48px rgba(12, 100, 168, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.co-category-card-label:hover .co-category-card-sublabel {
    color: rgba(255, 255, 255, 0.8);
}

.co-category-card-label-main {
    display: flex;
    align-items: center;
    gap: 4px;
}

.co-category-card-arrow {
    font-size: 18px;
    font-weight: 300;
}

.co-category-card-sublabel {
    font-size: 12px;
    color: var(--co-gray);
    font-weight: 400;
}

a.co-category-card-link {
    text-decoration: none;
    display: block;
    color: inherit;
}

a.co-category-card-link:hover .co-category-card-label {
    background: rgba(12, 100, 168, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--co-white);
    box-shadow: 
        0 8px 32px rgba(12, 100, 168, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

a.co-category-card-link:hover .co-category-card-label strong,
a.co-category-card-link:hover .co-category-card-label .co-category-card-arrow {
    color: var(--co-white) !important;
}

a.co-category-card-link:hover .co-category-card-sublabel {
    color: rgba(255, 255, 255, 0.9) !important;
}

a.co-category-card-link:hover .co-category-card-image {
    transform: scale(1.05);
}

a.co-category-card-link .co-category-card-image {
    transition: transform 0.3s ease;
    pointer-events: none; /* Le clic remonte au lien parent, évite interception par lightbox */
}

/* =============================================
   TEXT + IMAGE SECTION
============================================= */
.co-text-image-section {
    padding: 60px 0;
    text-align: center;
}

.co-text-image-section .co-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.co-text-image-centered {
    text-align: center !important;
    max-width: 800px;
    margin: 0 auto 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.co-text-image-centered * {
    text-align: center !important;
}

.co-text-image-title {
    font-family: var(--co-font);
    font-size: 24px;
    font-weight: 500;
    color: var(--co-dark);
    margin: 0 0 16px;
    text-align: center;
    width: 100%;
}

.co-text-image-link {
    display: inline-block;
    font-family: var(--co-font);
    font-size: 15px;
    font-weight: 400;
    color: var(--co-primary);
    text-decoration: underline;
    margin-bottom: 16px;
}

.co-text-image-link:hover {
    text-decoration: none;
}

.co-text-image-text {
    font-family: var(--co-font);
    font-size: 15px;
    font-weight: 400;
    color: var(--co-gray);
    line-height: 1.7;
    margin: 0 0 24px;
}

.co-text-image-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--co-light-bg);
    color: var(--co-dark);
    font-family: var(--co-font);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: var(--co-radius-btn);
    transition: all 0.3s ease;
}

.co-text-image-cta:hover {
    background: rgba(12, 100, 168, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--co-white);
    transform: translateY(-3px);
    box-shadow: 
        0 12px 48px rgba(12, 100, 168, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.co-text-image-full-image {
    width: 100%;
    height: auto;
    border-radius: var(--co-radius-lg);
    object-fit: cover;
    max-height: 500px;
    display: block;
    margin: 0 auto;
}

/* =============================================
   PRODUCTS GRID
============================================= */
.co-products-section {
    padding: 60px 0;
}

.co-products-title {
    font-family: var(--co-font);
    font-size: 22px;
    font-weight: 400;
    color: var(--co-dark);
    text-align: center;
    margin: 0 0 40px;
}

.co-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.co-product-card {
    background: transparent;
    border: none;
    border-radius: var(--co-radius-lg);
    overflow: hidden;
    text-decoration: none;
}

.co-product-card-media {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: var(--co-radius-lg) var(--co-radius-lg) 0 0;
}

.co-product-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.co-product-card-content {
    padding: 20px;
}

.co-product-card-title {
    font-family: var(--co-font);
    font-size: 18px;
    font-weight: 500;
    color: var(--co-dark);
    margin: 0 0 8px;
}

.co-product-card-desc {
    font-family: var(--co-font);
    font-size: 14px;
    font-weight: 400;
    color: var(--co-gray);
    line-height: 1.5;
    margin: 0;
}

.co-products-cta-wrapper {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.co-products-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--co-light-bg);
    color: var(--co-dark);
    font-family: var(--co-font);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: var(--co-radius-btn);
    transition: all 0.3s ease;
}

.co-products-cta:hover {
    background: rgba(12, 100, 168, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--co-white);
    transform: translateY(-3px);
    box-shadow: 
        0 12px 48px rgba(12, 100, 168, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* =============================================
   PROFESSIONALS CTA SECTION
============================================= */
.co-pro-section {
    padding: 60px 0;
    background: var(--co-light-bg);
}

.co-pro-inner {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.co-pro-surtitle {
    font-family: var(--co-font);
    font-size: 12px;
    font-weight: 500;
    color: var(--co-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 12px;
    text-align: center;
}

.co-pro-title {
    font-family: var(--co-font);
    font-size: 22px;
    font-weight: 500;
    color: var(--co-primary);
    margin: 0 0 16px;
    text-align: center;
}

.co-pro-text {
    font-family: var(--co-font);
    font-size: 15px;
    font-weight: 400;
    color: var(--co-gray);
    line-height: 1.7;
    margin: 0 0 24px;
    text-align: center;
}

.co-pro-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--co-white);
    color: var(--co-dark);
    font-family: var(--co-font);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: var(--co-radius-btn);
    transition: all 0.3s ease;
}

.co-pro-cta:hover {
    background: rgba(12, 100, 168, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--co-white);
    transform: translateY(-3px);
    box-shadow: 
        0 12px 48px rgba(12, 100, 168, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* =============================================
   PARTNERS / CLIENTS LOGOS
============================================= */
.co-partners-section {
    padding: 60px 0;
    background: var(--co-white);
}

.co-partners-section.co-bg-light {
    background: var(--co-light-bg);
}

.co-partners-title {
    font-family: var(--co-font);
    font-size: 22px;
    font-weight: 400;
    color: var(--co-dark);
    text-align: center;
    margin: 0 0 40px;
}

.co-partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.co-partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(24px) saturate(var(--glass-saturate));
    -webkit-backdrop-filter: blur(24px) saturate(var(--glass-saturate));
    border: 1px solid var(--glass-border);
    border-radius: var(--co-radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), var(--glass-inset);
    height: 72px;
    width: fit-content;
    transition: all 0.3s ease;
    text-decoration: none;
}

a.co-partner-item {
    cursor: pointer;
}

.co-partner-item:hover {
    background: var(--glass-bg-hover);
    transform: translateY(-4px);
    border-color: var(--glass-border);
    box-shadow: var(--glass-shadow-hover), var(--glass-inset-strong);
}

.co-partner-logo {
    max-height: 40px;
    max-width: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0%);
    opacity: 1;
    transition: all 0.2s;
}

.co-partner-item:hover .co-partner-logo {
    transform: scale(1.05);
}

/* =============================================
   IMAGE FULL WIDTH
============================================= */
.co-image-full-section {
    padding: 0;
}

.co-image-full {
    width: 100%;
    height: auto;
    border-radius: var(--co-radius-lg);
    object-fit: cover;
    max-height: 500px;
}

/* =============================================
   FOOTER
============================================= */
.site-footer {
    background: var(--co-white);
    border-top: 1px solid var(--co-border);
    padding: 40px 0 24px;
}

.footer-container {
    max-width: var(--co-container);
    margin: 0 auto;
    padding: 0 24px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    gap: 24px;
}

.footer-main-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

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

.footer-slogan {
    font-family: var(--co-font);
    font-size: 13px;
    color: var(--co-gray);
    line-height: 1.4;
    margin: 0;
}

.footer-main-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(12, 100, 168, 0.8);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 16px rgba(12, 100, 168, 0.25);
    color: var(--co-white);
    transition: all 0.3s ease;
}

.footer-social-icon svg {
    fill: var(--co-white);
    color: var(--co-white);
}

.footer-social-icon:hover {
    background: rgba(12, 100, 168, 0.9);
    color: var(--co-white);
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 24px rgba(12, 100, 168, 0.35);
}

.footer-social-icon svg {
    width: 16px;
    height: 16px;
}

.footer-contact-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    font-family: var(--co-font);
    font-size: 13px;
    color: var(--co-gray);
}

.footer-contact-inline-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-contact-inline-item a {
    color: var(--co-gray);
    text-decoration: none;
}

.footer-contact-inline-item a:hover {
    color: var(--co-primary);
}

.footer-contact-inline-item svg {
    width: 16px;
    height: 16px;
    min-width: 16px;
}

.footer-contact-inline-item svg,
.footer-contact-inline-item svg path,
.footer-contact-inline-item svg * {
    fill: var(--co-primary) !important;
    color: var(--co-primary);
}

/* Menu secondaire footer (Liège/Namur, Fabrication belge) */
.footer-secondary-nav {
    margin: 24px 0;
    text-align: center;
}

.footer-secondary-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 32px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-family: var(--co-font);
    font-size: 14px;
}

.footer-secondary-menu a {
    color: var(--co-gray);
    text-decoration: underline;
}

.footer-secondary-menu a:hover {
    color: var(--co-primary);
}

.footer-line {
    border: 0;
    border-top: 1px solid var(--co-border);
    margin: 0 0 24px;
}

.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-family: var(--co-font);
    font-size: 12px;
    color: var(--co-gray);
}

.footer-legal-links {
    display: flex;
    gap: 24px;
}

.footer-legal-links a {
    color: var(--co-gray);
    text-decoration: none;
}

.footer-legal-links a:hover {
    color: var(--co-primary);
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.vaya-logo-svg {
    height: 16px;
    width: auto;
}

.footer-credit-text {
    font-size: 12px;
    color: var(--co-gray);
    margin-right: 8px;
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
    /* Bandeau "Châssis à l'infini" visible et positionné derrière les châssis */
    .co-hero-home-slogan {
        bottom: auto;
        top: 24%;
        transform: translateY(-50%);
        align-items: center;
    }
    .co-hero-home-slogan-text {
        font-size: clamp(6rem, 22vw, 14rem);
        color: rgba(255, 255, 255, 0.65);
    }
    .co-hero-home-slogan-track {
        animation: co-slogan-marquee 20s linear infinite;
    }
    
    .co-hero-home-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        direction: ltr;
    }
    
    .co-hero-home-content {
        max-width: 100%;
        text-align: center;
        order: 2;
    }
    
    .co-hero-home-media,
    .co-hero-home-media.co-hero-home-media--stacked {
        order: 1;
        min-height: 210px;
        margin-left: 0;
        margin-right: 0;
        justify-content: center;
    }
    
    /* Overlay en flux pour centrer l'ensemble des 2 châssis */
    .co-hero-home-media--stacked .co-hero-home-image--overlay {
        position: relative;
        left: auto;
        bottom: auto;
        margin-left: -2%;
        max-height: 355px;
    }
    
    .co-hero-home-badge {
        justify-content: center;
    }
    
    .co-categories-grid {
        gap: 16px;
    }
    
    .co-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
}

@media (max-width: 768px) {
    .site-header.sticky-header {
        padding-top: env(safe-area-inset-top);
        padding-bottom: 0;
    }
    
    .header-container {
        height: auto;
        min-height: 56px;
        padding-top: 12px;
    }
    
    .site-logo-img {
        height: 64px;
        top: 2px;
        width: auto;
        margin-top: 0;
    }
    
    .main-navigation {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .co-hero-home-title {
        font-size: 28px;
    }
    
    .co-hero-home-subtitle {
        font-size: 18px;
    }
    
    .co-hero-home-media,
    .co-hero-home-media.co-hero-home-media--stacked {
        order: 1;
        min-height: 260px;
        margin-left: 0;
        margin-right: 0;
        justify-content: center;
    }
    
    .co-hero-home-media {
        /* top: 25px; */
    }
    
    .co-hero-home-image {
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: 250px;
        object-fit: contain;
        object-position: center bottom;
    }
    
    /* Châssis principal (blanc, gauche) : visible et bien dimensionné */
    .co-hero-home-image--primary {
        max-height: 220px;
    }
    
    /* Châssis overlay (sombre) : en flux pour centrer l'ensemble avec le principal */
    .co-hero-home-media--stacked .co-hero-home-image--overlay {
        position: relative;
        left: auto;
        bottom: auto;
        top: auto;
        margin-left: -2%;
        max-height: 182px;
    }
    
    .co-categories-grid {
        grid-template-columns: 1fr;
    }
    
    .co-category-card {
        aspect-ratio: 16 / 12.5; /* +25% hauteur (était 16/10) */
    }
    
    /* Sections image + texte : 1 colonne (image puis texte) - page produits, etc. */
    .chassis-text-image .chassis-text-image-grid,
    .chassis-text-image.chassis-section .chassis-text-image-grid,
    .chassis-text-image-grid,
    .co-text-image-list-grid {
        grid-template-columns: 1fr !important;
        gap: 32px;
    }
    
    .chassis-text-image-reverse .chassis-text-image-media,
    .chassis-text-image.chassis-section.chassis-text-image-reverse .chassis-text-image-media {
        order: 1 !important;
    }
    
    .chassis-text-image-reverse .chassis-text-image-content,
    .chassis-text-image.chassis-section.chassis-text-image-reverse .chassis-text-image-content {
        order: 2 !important;
    }
    
    .co-text-image-list-grid--reverse {
        direction: ltr;
    }
    
    .co-products-grid {
        grid-template-columns: 1fr;
    }
    
    .co-partner-item {
        padding: 12px 18px;
    }
    
    .co-partner-logo {
        max-height: 36px;
        max-width: 120px;
    }
    
    .footer-secondary-menu {
        flex-direction: column;
        gap: 12px;
    }

    .footer-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    
    .footer-main-left {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-main-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .footer-contact-inline {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-bottom-bar {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .co-section {
        padding: 40px 0;
    }
    
    .co-hero-home {
        padding: 24px 0 40px;
    }
    
    .co-hero-home-title {
        font-size: 24px;
    }
    
    /* Bandeau "Châssis à l'infini" : encore plus grand sur très petits écrans */
    .co-hero-home-slogan-text {
        font-size: clamp(5rem, 20vw, 11rem);
    }
    
    /* Châssis hero */
    .co-hero-home-image--primary {
        max-height: 210px;
    }
    
    .co-hero-home-media--stacked .co-hero-home-image--overlay {
        position: relative;
        left: auto;
        bottom: auto;
        top: auto;
        margin-left: -2%;
        max-height: 165px;
    }
}

/* =============================================
   OVERRIDES - Assurer que les styles s'appliquent
============================================= */
body {
    font-family: var(--co-font);
    color: var(--co-dark);
    background: var(--co-white);
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}

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

a {
    color: inherit;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: 500;
}

p {
    margin: 0 0 1em;
    font-family: var(--co-font);
    font-size: 15px;
    line-height: 1.8;
    color: var(--co-gray);
}

p:last-child {
    margin-bottom: 0;
}

ul, ol {
    margin: 0;
    padding: 0;
}

/* =============================================
   PAGE À PROPOS - HERO PAGE (ciel immersif 40vh)
============================================= */
.co-hero-page-section {
    padding: 140px 0 40px 0;
    background: linear-gradient(135deg, rgba(12, 100, 168, 0.48) 0%, rgba(12, 100, 168, 0.24) 40%, rgba(12, 100, 168, 0.1) 100%),
                url(../images/bg-ciel.png);
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    position: relative;
    overflow: visible;
    text-align: center;
    animation: co-sky-breathe 14s ease-in-out infinite;
}

.co-hero-page-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 60%,
        rgba(255, 255, 255, 0.85) 85%,
        rgba(255, 255, 255, 1) 100%
    );
    pointer-events: none;
    z-index: 0;
}

.co-hero-page-section .co-container {
    position: relative;
    z-index: 1;
}

/* Pages Nos produits et Réalisations : hero sans padding bas */
body.co-hero-tight .co-hero-page-section {
    padding: 140px 0 0 0;
}

body.co-hero-tight .co-hero-page-section .co-container {
    padding: 0 24px;
}

.co-hero-page-surtitle {
    font-family: var(--co-font);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--co-primary);
    margin: 0 0 16px;
}

.co-hero-page-title {
    font-family: var(--co-font);
    font-size: 32px;
    font-weight: 500;
    color: var(--co-dark);
    line-height: 1.3;
    max-width: 800px;
    margin: 0 auto;
}

.co-hero-page-text {
    font-family: var(--co-font);
    font-size: 15px;
    line-height: 1.8;
    color: var(--co-gray);
    max-width: 800px;
    margin: 24px auto 0;
    text-align: center;
}

/* =============================================
   PAGE À PROPOS - FEATURES CARDS
============================================= */
.co-features-cards-section {
    padding: 0 0 60px 0;
}

.co-features-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.co-features-cards-image-wrapper {
    border-radius: var(--co-radius-lg);
    overflow: hidden;
}

.co-features-cards-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.co-features-cards-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.co-feature-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(24px) saturate(var(--glass-saturate));
    -webkit-backdrop-filter: blur(24px) saturate(var(--glass-saturate));
    border: 1px solid var(--glass-border);
    border-radius: var(--co-radius-lg);
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), var(--glass-inset);
    transition: all 0.3s ease;
}

.co-feature-card:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border);
    transform: translateY(-4px);
    box-shadow: var(--glass-shadow-hover), var(--glass-inset-strong);
}

.co-feature-card-icon {
    display: block;
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--co-primary);
}

.co-feature-card-title {
    font-family: var(--co-font);
    font-size: 15px;
    font-weight: 600;
    color: var(--co-primary);
    margin: 0 0 8px;
}

.co-feature-card-text {
    font-family: var(--co-font);
    font-size: 13px;
    color: var(--co-gray);
    line-height: 1.5;
}

/* =============================================
   PAGE À PROPOS - TEXT CENTERED
============================================= */
.co-text-centered-section {
    padding: 60px 0;
    background: var(--co-white);
}

.co-text-centered-section.co-bg-light {
    background: var(--co-light-bg);
}

.co-text-centered-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.co-text-centered-title {
    font-family: var(--co-font);
    font-size: 24px;
    font-weight: 600;
    color: var(--co-dark);
    margin: 0 0 24px;
    text-align: center;
}

.co-text-centered-text {
    font-family: var(--co-font);
    font-size: 14px;
    color: var(--co-gray);
    line-height: 1.7;
    margin: 0 0 32px;
}

.co-text-centered-text p {
    margin: 0 0 16px;
}

.co-text-centered-text p:last-child {
    margin-bottom: 0;
}

.co-text-centered-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--co-light-bg);
    color: var(--co-dark);
    font-family: var(--co-font);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: var(--co-radius-btn);
    transition: all 0.3s ease;
}

.co-text-centered-cta:hover {
    background: rgba(12, 100, 168, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--co-white);
    transform: translateY(-3px);
    box-shadow: 
        0 12px 48px rgba(12, 100, 168, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* =============================================
   TEXTE ALIGNÉ À GAUCHE
============================================= */
.co-text-left-section {
    padding: 60px 0;
    background: var(--co-white);
}

.co-text-left-section.co-bg-light {
    background: var(--co-light-bg);
}

.co-text-left-content {
    text-align: left;
}

/* Large = largeur actuelle, Medium = 800px centré */
.co-text-left-section.co-text-left--large .co-text-left-content {
    max-width: 100%;
}

.co-text-left-section.co-text-left--medium .co-text-left-content {
    max-width: 800px;
    margin: 24px auto 0;
}

.co-text-left-title {
    font-family: var(--co-font);
    font-size: 24px;
    font-weight: 600;
    color: var(--co-dark);
    margin: 0 0 24px;
    text-align: left;
}

.co-text-left-text {
    font-family: var(--co-font);
    font-size: 14px;
    color: var(--co-gray);
    line-height: 1.7;
    margin: 0 0 32px;
}

.co-text-left-text p {
    margin: 0 0 16px;
}

.co-text-left-text p:last-child {
    margin-bottom: 0;
}

/* =============================================
   PAGE À PROPOS - PROCESS STEPS
============================================= */
/* Fond contrôlé par bg_color (Blanc = défaut, co-bg-light pour Bleu clair) */
.co-process-section {
    padding: 60px 0;
    background: var(--co-white);
}
.co-process-section.co-bg-light {
    background: var(--co-light-bg);
}

.co-process-title {
    font-family: var(--co-font);
    font-size: 24px;
    font-weight: 500;
    color: var(--co-dark);
    text-align: center;
    margin: 0 0 48px;
}

.co-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.co-process-step {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(24px) saturate(var(--glass-saturate));
    -webkit-backdrop-filter: blur(24px) saturate(var(--glass-saturate));
    border: 1px solid var(--glass-border);
    border-radius: var(--co-radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), var(--glass-inset);
    transition: all 0.3s ease;
}

.co-process-step:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border);
    transform: translateY(-4px);
    box-shadow: var(--glass-shadow-hover), var(--glass-inset-strong);
}

.co-process-step-number {
    display: block;
    font-family: var(--co-font);
    font-size: 32px;
    font-weight: 600;
    color: var(--co-primary);
    margin-bottom: 16px;
}

.co-process-step-title {
    font-family: var(--co-font);
    font-size: 15px;
    font-weight: 600;
    color: var(--co-primary);
    margin: 0 0 12px;
}

.co-process-step-text {
    font-family: var(--co-font);
    font-size: 13px;
    color: var(--co-gray);
    line-height: 1.5;
}

/* =============================================
   PAGE À PROPOS - TEXT IMAGE LIST
============================================= */
.co-text-image-list-section {
    padding: 60px 0;
}

.co-text-image-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.co-text-image-list-grid--reverse {
    direction: rtl;
}

.co-text-image-list-grid--reverse > * {
    direction: ltr;
}

.co-text-image-list-media {
    border-radius: var(--co-radius-lg);
    overflow: hidden;
}

.co-text-image-list-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.co-text-image-list-content {
    padding: 0;
}

.co-text-image-list-title {
    font-family: var(--co-font);
    font-size: 24px;
    font-weight: 500;
    color: var(--co-dark);
    margin: 0 0 24px;
}

.co-text-image-list-items {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.co-text-image-list-item {
    position: relative;
    padding-left: 24px;
    font-family: var(--co-font);
    font-size: 14px;
    color: var(--co-gray);
    line-height: 1.6;
    margin-bottom: 12px;
}

.co-text-image-list-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--co-primary);
    border-radius: 50%;
}

.co-text-image-list-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--co-light-bg);
    color: var(--co-dark);
    font-family: var(--co-font);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: var(--co-radius-btn);
    transition: all 0.3s ease;
}

.co-text-image-list-cta:hover {
    background: rgba(12, 100, 168, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--co-white);
    transform: translateY(-3px);
    box-shadow: 
        0 12px 48px rgba(12, 100, 168, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* =============================================
   PAGE À PROPOS - TESTIMONIALS GRID
============================================= */
/* Fond contrôlé par bg_color (Blanc = défaut, co-bg-light pour Bleu clair) */
.co-testimonials-section {
    padding: 60px 0;
    background: var(--co-white);
}
.co-testimonials-section.co-bg-light {
    background: var(--co-light-bg);
    margin-top: 60px;
    margin-bottom: 60px;
}

.co-testimonials-title {
    font-family: var(--co-font);
    font-size: 24px;
    font-weight: 500;
    color: var(--co-dark);
    text-align: center;
    margin: 0 0 48px;
}

.co-testimonials-carousel {
    position: relative;
    padding: 0 56px;
}

.co-testimonials-track-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.co-testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s ease;
}

.co-testimonials-carousel .co-testimonial-card {
    flex-shrink: 0;
    width: 220px;
    max-width: 220px;
    min-width: 220px;
}

@media (max-width: 1200px) {
    .co-testimonials-carousel .co-testimonial-card {
        width: calc((100% - 72px) / 4);
        max-width: calc((100% - 72px) / 4);
        min-width: calc((100% - 72px) / 4);
    }
}

@media (max-width: 1024px) {
    .co-testimonials-carousel .co-testimonial-card {
        width: calc((100% - 24px) / 3);
        max-width: calc((100% - 24px) / 3);
        min-width: calc((100% - 24px) / 3);
    }
}

@media (max-width: 768px) {
    .co-testimonials-carousel {
        padding: 0 48px;
    }
    .co-testimonials-carousel .co-testimonial-card {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
    }
}

.co-testimonials-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    z-index: 5;
}

.co-testimonials-nav:hover {
    background: var(--glass-bg-hover);
    transform: translateY(-50%) scale(1.05);
    box-shadow: var(--glass-shadow-hover);
}

.co-testimonials-nav.prev {
    left: 0;
}

.co-testimonials-nav.next {
    right: 0;
}

.co-testimonials-nav svg {
    width: 24px;
    height: 24px;
    fill: var(--co-dark);
}

.co-testimonials-nav:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.co-testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(24px) saturate(var(--glass-saturate));
    -webkit-backdrop-filter: blur(24px) saturate(var(--glass-saturate));
    border: 1px solid var(--glass-border);
    border-radius: var(--co-radius-lg);
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), var(--glass-inset);
    transition: all 0.3s ease;
}

.co-testimonial-card:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border);
    transform: translateY(-4px);
    box-shadow: var(--glass-shadow-hover), var(--glass-inset-strong);
}

.co-testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 12px;
    flex-shrink: 0;
}

.co-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.co-testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 8px;
}

.co-testimonial-star {
    font-size: 16px;
    color: var(--co-border);
}

.co-testimonial-star.is-filled {
    color: #f5a623;
}

.co-testimonial-author {
    font-family: var(--co-font);
    font-size: 14px;
    font-weight: 600;
    color: var(--co-dark);
    margin: 0 0 8px;
}

.co-testimonial-quote {
    font-family: var(--co-font);
    font-size: 13px;
    color: var(--co-gray);
    line-height: 1.55;
    margin: 0;
    text-align: left;
    max-width: 100%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

/* =============================================
   FAQ (accordéon)
============================================= */
.co-faq-section {
    padding: 60px 0;
    background: var(--co-white);
}
.co-faq-section.co-bg-light {
    background: var(--co-light-bg);
}

.co-faq-title {
    font-family: var(--co-font);
    font-size: 24px;
    font-weight: 600;
    color: var(--co-dark);
    text-align: center;
    margin: 0 0 32px;
}

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

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

.co-faq-item:first-child {
    border-top: 1px solid var(--co-border);
}

.co-faq-question {
    position: relative;
    font-family: var(--co-font);
    font-size: 16px;
    font-weight: 600;
    color: var(--co-dark);
    padding: 20px 40px 20px 0;
    cursor: pointer;
    list-style: none;
    transition: color 0.2s ease;
}

.co-faq-question::-webkit-details-marker {
    display: none;
}

.co-faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 20px;
    font-weight: 400;
    color: var(--co-primary);
}

.co-faq-item[open] .co-faq-question::after {
    content: '−';
}

.co-faq-item {
    position: relative;
}

.co-faq-answer {
    font-family: var(--co-font);
    font-size: 15px;
    color: var(--co-gray);
    line-height: 1.7;
    padding: 0 0 24px 0;
}

.co-faq-answer p {
    margin: 0 0 12px;
}

.co-faq-answer p:last-child {
    margin-bottom: 0;
}

/* =============================================
   PAGE À PROPOS - RESPONSIVE
============================================= */
@media (max-width: 1024px) {
    .co-features-cards-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .co-features-cards-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .co-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    
    .co-text-image-list-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .co-text-image-list-grid--reverse {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    p {
        font-size: 14px;
    }
    
    .co-hero-page-title {
        font-size: 24px;
    }
    
    .co-hero-page-text {
        font-size: 14px;
        margin-top: 16px;
    }
    
    .co-features-cards-list {
        grid-template-columns: 1fr;
    }
    
    .co-process-grid {
        grid-template-columns: 1fr;
    }
    
}

/* =============================================
   PAGE PRODUIT - HERO PRODUCT (ciel immersif 40vh)
============================================= */
.co-hero-product-section {
    padding: 80px 0 60px;
    min-height: 40vh;
    background: linear-gradient(135deg, rgba(12, 100, 168, 0.48) 0%, rgba(12, 100, 168, 0.24) 40%, rgba(12, 100, 168, 0.1) 100%),
                url(../images/bg-ciel.png);
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    text-align: center;
    animation: co-sky-breathe 14s ease-in-out infinite;
}

.co-hero-product-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 60%,
        rgba(255, 255, 255, 0.85) 85%,
        rgba(255, 255, 255, 1) 100%
    );
    pointer-events: none;
    z-index: 0;
}

.co-hero-product-section .co-container {
    position: relative;
    z-index: 1;
}

.co-hero-product-breadcrumb {
    font-family: var(--co-font);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--co-primary);
    margin: 0 0 24px;
}

.co-hero-product-title {
    font-family: var(--co-font);
    font-size: 36px;
    font-weight: 500;
    color: var(--co-dark);
    line-height: 1.2;
    margin: 0 0 20px;
}

.co-hero-product-text {
    font-family: var(--co-font);
    font-size: 15px;
    color: var(--co-gray);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* =============================================
   PAGE PRODUIT - BANNER + BULLE PRODUIT
============================================= */
.co-banner-bulle-produit {
    padding: 0 0 120px;
    overflow: visible;
}

.co-banner-bulle-produit-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.co-banner-bulle-produit-image-wrap {
    position: absolute;
    inset: 0;
    border-radius: var(--co-radius-lg);
    overflow: hidden;
}

.co-banner-bulle-produit-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Bulle à cheval sur le bas du banner (centrée) */
.co-banner-bulle-produit-bulle {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(235, 249, 255, 0.95);
    border: 2px solid rgba(12, 100, 168, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(12, 100, 168, 0.15);
}

.co-banner-bulle-produit-bulle-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (min-width: 768px) {
    .co-banner-bulle-produit-bulle {
        width: 220px;
        height: 220px;
        transform: translate(-50%, 50%);
    }
}

/* =============================================
   PAGE PRODUIT - REASSURANCES
============================================= */
.co-reassurances-section {
    padding: 40px 0;
    background: var(--co-white);
}

.co-reassurances-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.co-reassurance-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(24px) saturate(var(--glass-saturate));
    -webkit-backdrop-filter: blur(24px) saturate(var(--glass-saturate));
    border: 1px solid rgba(12, 100, 168, 0.15);
    border-radius: 50px;
    box-shadow: none;
    transition: all 0.3s ease;
}

.co-reassurance-badge:hover {
    background: var(--glass-bg-hover);
    transform: translateY(-2px);
    box-shadow: none;
}

.co-reassurance-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--co-primary);
}

.co-reassurance-icon svg {
    display: block;
    width: 20px;
    height: 20px;
}

.co-reassurance-text {
    font-family: var(--co-font);
    font-size: 13px;
    font-weight: 500;
    color: var(--co-primary);
}

/* =============================================
   PAGE PRODUIT - PRODUCTS CARDS
============================================= */
.co-products-cards-section {
    padding: 60px 0;
}

.co-products-cards-title {
    font-family: var(--co-font);
    font-size: 24px;
    font-weight: 500;
    color: var(--co-dark);
    text-align: center;
    margin: 0 0 48px;
}

.co-products-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Style aligné sur produits phares (home) : pas d'effet hover, pas cliquable */
.co-product-card-item {
    text-align: center;
    background: transparent;
    border: none;
    border-radius: var(--co-radius-lg);
}

.co-product-card-image-wrapper {
    border-radius: var(--co-radius-lg);
    overflow: hidden;
    margin-bottom: 20px;
    aspect-ratio: 4/3;
}

.co-product-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.co-product-card-title {
    font-family: var(--co-font);
    font-size: 18px;
    font-weight: 500;
    color: var(--co-dark);
    margin: 0 0 8px;
}

.co-product-card-text {
    font-family: var(--co-font);
    font-size: 14px;
    font-weight: 400;
    color: var(--co-gray);
    line-height: 1.5;
    margin: 0;
}

/* =============================================
   PAGE PRODUIT - IMAGE ICON TEXT
============================================= */
.co-image-icon-text-section {
    padding: 60px 0;
}

.co-image-icon-text-image-wrapper {
    position: relative;
    margin-bottom: 60px;
}

.co-image-icon-text-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--co-radius-lg);
    object-fit: cover;
    max-height: 500px;
}

.co-image-icon-text-icon-wrapper {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--co-light-bg);
    padding: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.co-image-icon-text-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.co-image-icon-text-content {
    font-family: var(--co-font);
    font-size: 15px;
    color: var(--co-gray);
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    font-style: italic;
}

/* =============================================
   PAGE PRODUIT - RESPONSIVE
============================================= */
@media (max-width: 1024px) {
    .co-products-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .co-reassurances-grid {
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .co-hero-product-title {
        font-size: 28px;
    }
    
    .co-products-cards-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .co-reassurances-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .co-reassurance-badge {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* =============================================
   PAGE RÉALISATIONS
============================================= */
.co-realisations-section {
    padding: 80px 0 60px;
    background: var(--co-white);
}

.co-realisations-section--after-hero {
    padding-top: 40px;
}

.co-realisations-header {
    text-align: center;
    margin-bottom: 48px;
    background: linear-gradient(180deg, #EBF9FF 0%, rgba(235, 249, 255, 0) 100%);
    padding: 40px 0;
    margin: -80px -24px 48px;
    padding: 80px 24px 40px;
}

.co-realisations-surtitle {
    font-family: var(--co-font);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--co-primary);
    margin: 0 0 16px;
}

.co-realisations-title {
    font-family: var(--co-font);
    font-size: 32px;
    font-weight: 500;
    color: var(--co-dark);
    line-height: 1.2;
    margin: 0;
}

/* Filters */
.co-realisations-filters {
    text-align: center;
    margin-bottom: 48px;
}

.co-realisations-filter-label {
    display: block;
    font-family: var(--co-font);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--co-gray);
    margin-bottom: 20px;
}

.co-realisations-filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.co-filter-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(24px) saturate(var(--glass-saturate));
    -webkit-backdrop-filter: blur(24px) saturate(var(--glass-saturate));
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-family: var(--co-font);
    font-size: 13px;
    font-weight: 500;
    color: var(--co-dark);
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), var(--glass-inset);
    transition: all 0.3s ease;
}

.co-filter-btn:hover {
    background: var(--glass-bg-hover);
    border-color: var(--co-primary);
    color: var(--co-primary);
    transform: translateY(-2px);
    box-shadow: var(--glass-shadow-hover), var(--glass-inset-strong);
}

.co-filter-btn.active {
    background: rgba(12, 100, 168, 0.8);
    backdrop-filter: blur(24px) saturate(var(--glass-saturate));
    -webkit-backdrop-filter: blur(24px) saturate(var(--glass-saturate));
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--co-white);
    box-shadow: 0 8px 32px rgba(12, 100, 168, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.co-filter-btn.active .co-filter-btn-badge {
    background: var(--co-white);
    color: var(--co-primary);
}

/* Onglets sans projets : grisés, non cliquables */
.co-filter-btn--disabled,
.co-filter-btn:disabled {
    opacity: 0.5;
    filter: grayscale(1);
    cursor: not-allowed;
    pointer-events: none;
}

.co-filter-btn--disabled.active,
.co-filter-btn:disabled.active {
    background: rgba(255, 255, 255, 0.45);
    border-color: var(--glass-border);
    color: var(--co-dark);
}

.co-filter-btn-icon {
    font-size: 16px;
}

.co-filter-btn-text {
    white-space: nowrap;
}

.co-filter-btn-badge {
    position: absolute;
    bottom: -6px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--co-primary);
    color: var(--co-white);
    font-family: var(--co-font);
    font-size: 10px;
    font-weight: 600;
    border-radius: 50px;
    line-height: 1;
    box-shadow: 0 2px 6px rgba(12, 100, 168, 0.4);
}

/* Masonry */
.co-realisations-grid {
    column-count: 3;
    column-gap: 24px;
}

.co-realisation-item {
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    margin-bottom: 24px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.co-realisation-item.hidden {
    display: none;
}

/* Réalisation sans photos : grisée, non cliquable */
.co-realisation-item--no-photos {
    opacity: 0.6;
    filter: grayscale(1);
    pointer-events: none;
}

.co-realisation-item--no-photos .co-realisation-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--co-gray-light, #d1d5db);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--co-font);
    font-size: 13px;
    color: var(--co-gray);
}

.co-realisation-link--disabled {
    cursor: default;
    display: block;
    text-decoration: none;
}

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

.co-realisation-image-wrapper {
    border-radius: var(--co-radius-lg);
    overflow: hidden;
    margin-bottom: 12px;
}

.co-realisation-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.co-realisation-link:hover .co-realisation-img {
    transform: scale(1.05);
}

.co-realisation-info {
    padding: 0 4px;
}

.co-realisation-title {
    font-family: var(--co-font);
    font-size: 14px;
    font-weight: 500;
    color: var(--co-dark);
    margin: 0 0 4px;
}

.co-realisation-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--co-font);
    font-size: 12px;
    color: var(--co-primary);
}

.co-realisation-location-icon {
    font-size: 12px;
}

/* Lightbox */
.co-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.co-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(12, 100, 168, 0.8);
    backdrop-filter: blur(24px) saturate(var(--glass-saturate));
    -webkit-backdrop-filter: blur(24px) saturate(var(--glass-saturate));
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--co-white);
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(12, 100, 168, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    z-index: 10;
}

.co-lightbox-close:hover {
    background: rgba(12, 100, 168, 0.95);
    transform: scale(1.1);
    box-shadow: 0 12px 48px rgba(12, 100, 168, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.co-lightbox-prev,
.co-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(24px) saturate(var(--glass-saturate));
    -webkit-backdrop-filter: blur(24px) saturate(var(--glass-saturate));
    border: 1px solid var(--glass-border);
    color: var(--co-dark);
    font-size: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), var(--glass-inset);
}

.co-lightbox-prev {
    left: 30px;
}

.co-lightbox-next {
    right: 30px;
}

.co-lightbox-prev:hover,
.co-lightbox-next:hover {
    background: var(--glass-bg-hover);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--glass-shadow-hover), var(--glass-inset-strong);
}

.co-lightbox-content {
    max-width: 90vw;
    max-height: 80vh;
}

.co-lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 32px;
}

/* Réalisations Responsive */
@media (max-width: 1024px) {
    .co-realisations-grid {
        column-count: 2;
    }
    
    .co-realisations-filter-buttons {
        gap: 8px;
    }
    
    .co-filter-btn {
        padding: 10px 16px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .co-realisations-title {
        font-size: 24px;
    }
    
    .co-realisations-grid {
        column-count: 1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .co-realisations-filter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .co-filter-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .co-lightbox-prev,
    .co-lightbox-next {
        width: 44px;
        height: 44px;
        font-size: 24px;
    }
    
    .co-lightbox-prev {
        left: 10px;
    }
    
    .co-lightbox-next {
        right: 10px;
    }
}

/* =============================================
   CONTACT CTA SECTION
============================================= */
.co-contact-cta-section {
    padding: 60px 0;
}

.co-contact-cta-inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.co-contact-cta-title {
    font-family: var(--co-font);
    font-size: 24px;
    font-weight: 500;
    color: var(--co-dark);
    margin: 0 0 20px;
    text-align: center;
}

.co-contact-cta-text {
    font-family: var(--co-font);
    font-size: 15px;
    line-height: 1.6;
    color: var(--co-gray);
    margin: 0 0 8px;
}

.co-contact-cta-text--highlight {
    color: var(--co-primary);
    font-weight: 500;
}

.co-contact-cta-subtext {
    font-family: var(--co-font);
    font-size: 14px;
    color: var(--co-gray);
    margin: 0 0 32px;
}

.co-contact-cta-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.co-contact-cta-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    font-family: var(--co-font);
    font-size: 15px;
    color: var(--co-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

a.co-contact-cta-item:hover {
    color: var(--co-primary);
}

/* Boutons blancs sur fond bleu clair */
.co-contact-cta-section.co-bg-light .co-contact-cta-item {
    padding: 14px 24px;
    background: var(--co-white);
    border-radius: var(--co-radius);
    border: 1px solid rgba(12, 100, 168, 0.15);
}

a.co-contact-cta-section.co-bg-light .co-contact-cta-item:hover {
    background: #f8fcff;
    border-color: rgba(12, 100, 168, 0.25);
}

.co-contact-icon {
    color: var(--co-primary);
    flex-shrink: 0;
}

.co-contact-icon,
.co-contact-icon path,
.co-contact-icon polyline {
    stroke: var(--co-primary);
    fill: var(--co-primary);
}

.co-contact-cta-item .co-contact-icon[fill="none"] path,
.co-contact-cta-item .co-contact-icon[fill="none"] polyline {
    fill: none;
    stroke: var(--co-primary);
}

/* Contact CTA Responsive */
@media (max-width: 768px) {
    .co-contact-cta-title {
        font-size: 20px;
    }
    
    .co-contact-cta-info {
        gap: 12px;
    }
}

/* =============================================
   PRODUCTS ANCHOR NAV (page Nos produits)
============================================= */
.co-products-anchor-nav {
    padding: 50px 0;
    background: var(--co-white);
}

.co-products-anchor-nav-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.co-products-anchor-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(24px) saturate(var(--glass-saturate));
    -webkit-backdrop-filter: blur(24px) saturate(var(--glass-saturate));
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-family: var(--co-font);
    font-size: 13px;
    font-weight: 500;
    color: var(--co-dark);
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), var(--glass-inset);
    transition: all 0.3s ease;
}

.co-products-anchor-btn:hover {
    background: var(--glass-bg-hover);
    border-color: var(--co-primary);
    color: var(--co-primary);
    transform: translateY(-2px);
    box-shadow: var(--glass-shadow-hover), var(--glass-inset-strong);
}

.co-products-anchor-btn-icon {
    display: inline-flex;
    flex-shrink: 0;
}

.co-products-anchor-btn-icon svg {
    display: block;
}

.co-products-anchor-btn-text {
    white-space: nowrap;
}

/* Décalage au scroll pour ne pas masquer le titre sous la nav fixe */
section[id^="section-"] {
    scroll-margin-top: 100px;
}

@media (max-width: 768px) {
    .co-products-anchor-nav-inner {
        gap: 8px;
    }
    .co-products-anchor-btn {
        padding: 10px 16px;
        font-size: 12px;
    }
}

/* =============================================
   PRODUCTS GRID SECTION
============================================= */
.co-products-grid-section {
    padding: 60px 0;
}

.co-products-grid-title {
    font-family: var(--co-font);
    font-size: 24px;
    font-weight: 500;
    color: var(--co-dark);
    text-align: center;
    margin: 0 0 48px;
}

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

.co-product-grid-item {
    text-align: center;
}

.co-product-grid-media {
    border-radius: var(--co-radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    margin-bottom: 16px;
}

.co-product-grid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.co-product-grid-content {
    padding: 0 8px;
}

.co-product-grid-item-title {
    font-family: var(--co-font);
    font-size: 15px;
    font-weight: 600;
    color: var(--co-dark);
    margin: 0 0 8px;
}

.co-product-grid-desc {
    font-family: var(--co-font);
    font-size: 13px;
    line-height: 1.6;
    color: var(--co-gray);
    margin: 0;
}

/* Products Grid Responsive */
@media (max-width: 1024px) {
    .co-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .co-products-grid-title {
        font-size: 20px;
        margin-bottom: 32px;
    }
    
    .co-products-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* =============================================
   VIDEO SECTION
============================================= */
.co-video-section {
    padding: 60px 0;
    background: linear-gradient(180deg, rgba(235, 249, 255, 0.6) 0%, rgba(235, 249, 255, 0.3) 100%);
}

.co-video-section--blue {
    background: var(--co-primary);
    padding: 80px 0;
}

.co-video-player {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: var(--co-radius-lg);
}

.co-video-wrapper {
    position: relative;
    border-radius: var(--co-radius-lg);
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    cursor: pointer;
}

.co-video-poster {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.co-video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(22, 22, 26, 0.5);
    backdrop-filter: blur(24px) saturate(var(--glass-saturate));
    -webkit-backdrop-filter: blur(24px) saturate(var(--glass-saturate));
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--co-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.co-video-play-btn:hover {
    background: rgba(12, 100, 168, 0.8);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 12px 48px rgba(12, 100, 168, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.co-video-play-btn svg {
    margin-left: 4px;
}

/* Video Lightbox */
.co-video-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.co-video-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(12, 100, 168, 0.8);
    backdrop-filter: blur(24px) saturate(var(--glass-saturate));
    -webkit-backdrop-filter: blur(24px) saturate(var(--glass-saturate));
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--co-white);
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(12, 100, 168, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    z-index: 10;
}

.co-video-lightbox-close:hover {
    background: rgba(12, 100, 168, 0.95);
    transform: scale(1.1);
    box-shadow: 0 12px 48px rgba(12, 100, 168, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.co-video-lightbox-content {
    width: 100%;
    max-width: 1000px;
    aspect-ratio: 16/9;
}

.co-video-iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--co-radius-lg);
}

/* Video Responsive */
@media (max-width: 768px) {
    .co-video-section {
        padding: 40px 0;
    }
    
    .co-video-play-btn {
        width: 60px;
        height: 60px;
    }
    
    .co-video-lightbox {
        padding: 20px;
    }
}

/* =============================================
   DOCUMENTS SECTION
============================================= */
.co-documents-section {
    padding: 0 0 100px 0;
}

.co-documents-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 0 0 32px;
}

.co-documents-nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    font-family: var(--co-font);
    font-size: 14px;
    font-weight: 500;
    color: var(--co-primary);
    text-decoration: none;
    background: #EBF9FF;
    border: 1px solid rgba(12, 100, 168, 0.2);
    border-radius: 999px;
    transition: all 0.25s ease;
}

.co-documents-nav-button:hover {
    background: #D6F1FF;
    color: var(--co-primary-hover);
    border-color: rgba(12, 100, 168, 0.3);
}

.co-documents-category {
    margin-bottom: 60px;
    scroll-margin-top: 120px;
}

.co-documents-category:last-child {
    margin-bottom: 0;
}

.co-documents-category-title {
    font-family: var(--co-font);
    font-size: 24px;
    font-weight: 500;
    color: var(--co-dark);
    text-align: center;
    margin: 0 0 32px;
}

.co-documents-category-title span,
.co-documents-category-title em {
    color: var(--co-primary);
    font-style: normal;
}

.co-documents-group {
    margin-bottom: 32px;
}

.co-documents-group:last-child {
    margin-bottom: 0;
}

.co-documents-type-title {
    font-family: var(--co-font);
    font-size: 14px;
    font-weight: 500;
    color: var(--co-dark);
    text-align: center;
    margin: 0 0 16px;
}

.co-documents-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.co-document-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(24px) saturate(var(--glass-saturate));
    -webkit-backdrop-filter: blur(24px) saturate(var(--glass-saturate));
    border: 1px solid var(--glass-border);
    border-left: 4px solid var(--co-primary);
    border-radius: 8px;
    padding: 16px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), var(--glass-inset);
    transition: all 0.3s ease;
}

.co-document-item:hover {
    background: var(--glass-bg-hover);
    transform: translateY(-2px);
    box-shadow: var(--glass-shadow-hover), var(--glass-inset-strong);
}

.co-document-item-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.co-document-vignette {
    width: auto;
    height: auto;
    max-height: 60px;
    max-width: 120px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 8px;
}

.co-document-name {
    font-family: var(--co-font);
    font-size: 14px;
    font-weight: 500;
    color: var(--co-primary);
}

.co-document-link {
    font-family: var(--co-font);
    font-size: 13px;
    font-weight: 500;
    color: var(--co-primary);
    background: #EBF9FF;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(12, 100, 168, 0.2);
}

.co-document-link:hover {
    background: #D6F1FF;
    color: var(--co-primary-hover);
    border-color: rgba(12, 100, 168, 0.3);
}

.co-document-link--disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Documents Responsive */
@media (max-width: 768px) {
    .co-documents-category-title {
        font-size: 20px;
    }
    
    .co-document-item {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .co-document-link {
        width: 100%;
        text-align: center;
    }
}

/* =============================================
   CONTACT IMAGE INFO SECTION
============================================= */
.co-contact-image-info-section {
    padding: 0 0 60px 0;
}

.co-contact-image-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.co-contact-image-info-media {
    border-radius: var(--co-radius-lg);
    overflow: hidden;
}

.co-contact-image-info-img {
    width: 100%;
    height: auto;
    display: block;
}

.co-contact-image-info-content {
    padding: 20px 0;
}

.co-contact-image-info-title {
    font-family: var(--co-font);
    font-size: 28px;
    font-weight: 500;
    color: var(--co-dark);
    margin: 0 0 16px;
}

.co-contact-image-info-text {
    font-family: var(--co-font);
    font-size: 15px;
    line-height: 1.7;
    color: var(--co-gray);
    margin: 0 0 24px;
}

.co-contact-image-info-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.co-contact-image-info-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.co-contact-btn {
    justify-content: flex-start;
    text-align: left;
    width: fit-content;
}

.co-contact-btn-icon {
    color: var(--co-primary);
    flex-shrink: 0;
}

.co-contact-company-number {
    font-family: var(--co-font);
    font-size: 14px;
    color: var(--co-gray);
    margin-top: 4px;
}

.co-contact-image-info-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--co-font);
    font-size: 15px;
    color: var(--co-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

a.co-contact-image-info-item:hover {
    color: var(--co-primary);
}

.co-contact-image-info-icon {
    color: var(--co-primary);
    flex-shrink: 0;
}

/* Contact Image Info Responsive */
@media (max-width: 1024px) {
    .co-contact-image-info-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .co-contact-image-info-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .co-contact-image-info-title {
        font-size: 24px;
    }
}

/* =============================================
   CONTACT FORM SECTION
============================================= */
.co-contact-form-section {
    padding: 60px 0;
}

.co-contact-form-wrapper {
    background: var(--co-light-bg);
    border: none;
    border-radius: var(--co-radius-lg);
    padding: 48px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), var(--glass-inset);
}

.co-contact-form-title {
    font-family: var(--co-font);
    font-size: 24px;
    font-weight: 500;
    color: var(--co-dark);
    text-align: center;
    margin: 0 0 32px;
}

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

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

.co-contact-form-field input,
.co-contact-form-field textarea {
    width: 100%;
    padding: 16px 20px;
    font-family: var(--co-font);
    font-size: 14px;
    color: var(--co-dark);
    background: var(--co-white);
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.co-contact-form-field input::placeholder,
.co-contact-form-field textarea::placeholder {
    color: var(--co-gray);
}

.co-contact-form-field input:focus,
.co-contact-form-field textarea:focus {
    outline: none;
    border-color: var(--co-primary);
    box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.1);
}

.co-contact-form-field textarea {
    resize: vertical;
    min-height: 120px;
}

.co-contact-form-submit {
    text-align: center;
    margin-top: 24px;
}

.co-contact-form-submit .co-btn {
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
}

/* Contact Form Responsive */
@media (max-width: 768px) {
    .co-contact-form-wrapper {
        padding: 32px 24px;
    }
    
    .co-contact-form-row {
        grid-template-columns: 1fr;
    }
    
    .co-contact-form-title {
        font-size: 20px;
    }
}

/* =============================================
   MOBILE - Alignement texte à gauche (global)
============================================= */
@media (max-width: 768px) {
    .site-main,
    .site-main p,
    .site-main h1,
    .site-main h2,
    .site-main h3,
    .site-main h4,
    .co-container,
    .co-container p,
    .co-hero-page-section,
    .co-hero-page-surtitle,
    .co-hero-page-title,
    .co-hero-page-text,
    .co-hero-page-section .co-container,
    .co-hero-product-section,
    .co-hero-product-breadcrumb,
    .co-hero-product-title,
    .co-hero-product-text,
    .co-text-image-content,
    .co-text-image-title,
    .co-text-image-text,
    .co-text-centered-section,
    .co-text-centered-title,
    .co-text-centered-content,
    .co-features-cards-title,
    .co-features-cards-text,
    .co-contact-cta-section,
    .co-contact-cta-title,
    .co-contact-cta-text,
    .co-realisations-header,
    .co-realisations-surtitle,
    .co-realisations-title,
    .co-realisations-filters,
    .co-partners-title,
    .co-products-grid-title,
    .co-products-grid-intro,
    .co-documents-section,
    .co-documents-category-title,
    .co-documents-type-title,
    .co-document-item,
    .co-image-full-section,
    .co-video-section .co-video-title,
    .co-video-section .co-video-text,
    .co-contact-image-info-title,
    .co-contact-image-info-text,
    .co-process-steps-title,
    .co-testimonials-grid-title,
    .co-text-image-list-content,
    .co-text-image-list-title,
    .co-text-image-list-text,
    .co-text-centered-text,
    .co-testimonials-title,
    .co-faq-title,
    .co-process-title,
    .co-products-cards-title,
    .co-products-cards-text,
    .co-products-title,
    .chassis-text-image-title,
    .chassis-text-image-text,
    .co-reassurance-text,
    .co-pro-surtitle,
    .co-pro-title,
    .co-pro-text {
        text-align: left;
    }
}

