/* ==================================================
   VARIABLES GLOBALES - PALETTE DE COULEURS
   ================================================== */
:root {
    /* Couleurs principales REGENERESCENCE */
    --couleur-turquoise: #24B7A4;
    --couleur-rose-cuivre: #b76e79;
    --couleur-orange-dore: #cf786f;

    /* Variations des couleurs */
    --couleur-turquoise-hover: #1e9687;
    --couleur-rose-cuivre-light: #de8e8a;
    --couleur-orange-dore-dark: #b8655e;

    /* Couleurs neutres */
    --couleur-fond-gris: #f8f9fa;
    --couleur-texte: #333333;
    --couleur-texte-muted: #6c757d;
    --couleur-blanc: #ffffff;

    /* Dégradés */
    --degrade-principal: linear-gradient(135deg, #24B7A4 0%, #ecbbb6 100%);
    --degrade-bouton: linear-gradient(135deg, #7fcbc9 0%, #7fcbc9 100%);
    --degrade-hero: linear-gradient(135deg, #7fcbc9 0%, #ffffff);

    /* Système d'espacement 8px */
    /* --space-8px: 8px;
    --space-16px: 16px;
    --space-20px: 20px;
    --space-24px: 24px;
    --space-32px: 32px;
    --space-40px: 40px;
    --space-48px: 48px;
    --space-56px: 56px;
    --space-64px: 64px;
    --space-80px: 80px;
    --space-96px: 96px;
    --space-120px: 120px;
    --space-160px: 160px;
    --space-200px: 200px; */

    --overlay-opacity: 0.2;
}

/* ==================================================
   FONT STYLES
   ================================================== */
/* Font - Akony */
@font-face {
    font-family: 'Akony';
    src:
        url('/fonts/AKONY.woff2') format('woff2'),
        url('/fonts/AKONY.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geist Variable';
    src:
        url('/fonts/geist-variablefont_wght-webfont.woff2') format('woff2'),
        url('/fonts/geist-variablefont_wght-webfont.woff') format('woff');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Ortica';
    src: url('/fonts/OrticaAngular-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Ronzino - Multiple weights */
@font-face {
    font-family: 'Ronzino';
    src: url('/fonts/Ronzino-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Ronzino';
    src: url('/fonts/Ronzino-Oblique.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Ronzino';
    src: url('/fonts/Ronzino-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Ronzino';
    src: url('/fonts/Ronzino-MediumOblique.woff2') format('woff2');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Ronzino';
    src: url('/fonts/Ronzino-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Ronzino';
    src: url('/fonts/Ronzino-BoldOblique.woff2') format('woff2');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'SK Modernist';
    src: url('/fonts/sk-modernist-regular-webfont.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ==================================================
   STYLES GLOBAUX
   ================================================== */
body {
    font-family: 'SK Modernist', sans-serif;
}

html {
    font-size: 62.5%;
    /*Base 10px*/
}

body {
    font-size: 1.6rem;
    /*16px par défaut*/
}



/* Mobile */
@media (max-width: 768px) {
    #cabinet {
        padding: 3.2rem 0;
        /* 32px - plus compact */
        /* OU même 2.4rem (24px) si très serré */
    }
}



html,
body {
    overflow-x: hidden !important;
}

/* ==================================================
   ANIMATIONS GLOBALES
   ================================================== */
[data-aos] {
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.titre-principal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.titre-principal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Keyframes */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes chute-hexagone {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(calc(100vh + 100px)) rotate(360deg);
        opacity: 0;
    }
}

@keyframes chute-hexagone-lente {
    0% {
        transform: translateY(-100px) rotate(0deg) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 0.4;
    }

    50% {
        transform: translateY(50vh) rotate(180deg) translateX(30px);
    }

    90% {
        opacity: 0.4;
    }

    100% {
        transform: translateY(calc(100vh + 100px)) rotate(360deg) translateX(-30px);
        opacity: 0;
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(4.8rem) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes tab-ripple-animation {
    to {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes subtle-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ==================================================
   NAVIGATION
   ================================================== */
#navigation {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
}

#navigation .logo-container {
    display: flex;
    align-items: center;
}

#navigation .logo-image {
    width: 40px;
    height: 40px;
}

#navigation .logo-texte {
    margin-left: 10px;
    font-weight: bold;
    color: var(--couleur-texte);
}

#navigation .menu-item {
    color: var(--couleur-texte);
    text-decoration: none;
    padding: 8px 16px;
    transition: color 0.3s ease;
}

#navigation .menu-item:hover {
    color: var(--couleur-turquoise);
}

#navigation .bouton-contact {
    font-family: 'Roboto', sans-serif;
    font-weight: 200;
    text-transform: uppercase;
    font-size: 14px;
    color: white;
    letter-spacing: 0.1em;
    background: var(--degrade-bouton);
    padding: 8px 24px;
    border-radius: 24px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(36, 183, 164, 0.3);
}

#navigation .bouton-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(36, 183, 164, 0.4);
    color: white;
    text-decoration: none;
}


/* ==================================================
   NAVIGATION INTERNE MODERNE - STYLE UNIFIÉ
   ================================================== */
.nav-pill-moderne {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: var(--couleur-turquoise);
    border: 1px solid var(--couleur-turquoise);
    padding: 10px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    /* Pour les boutons */
}

.nav-pill-moderne:hover {
    background: var(--couleur-turquoise);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(36, 183, 164, 0.3);
    text-decoration: none;
}

.nav-pill-moderne.active {
    background: var(--couleur-turquoise);
    color: white;
    box-shadow: 0 4px 15px rgba(36, 183, 164, 0.4);
}

.nav-container-moderne {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 2rem 0 3rem 0;
    flex-wrap: wrap;
}

/* ==================================================
   SECTION HERO
   ================================================== */
#hero {
    height: calc(100vh - 40px);
    margin-bottom: 40px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-bottom: 20.0rem;
    padding-top: 8.0rem;
}

#hero .fond-degrade {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--degrade-hero);
    z-index: -3;
}

#hero .fond-image-logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../img/webp/logo-center.png');
    background-size: cover;
    background-position: center 33%;
    background-repeat: no-repeat;
    z-index: -2;
}

#hero .fond-image-sablier {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../img/webp/sablier.png');
    background-size: auto 100%;
    background-position: right bottom;
    background-repeat: no-repeat;
    z-index: -2;
}

#hero .contenu {
    position: relative;
    z-index: 10;
    text-align: center;
}

#hero .titre {
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
    font-size: 8.0rem;
    margin-bottom: 8px;
    letter-spacing: 4px;
}

#hero .sous-titre {
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
    font-size: 4.8rem;
    margin-bottom: 16px;
}

#hero .accroche {
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
    font-size: 3.2rem;
    margin-bottom: 3.2rem;
}

#hero .bouton-principal {
    font-family: 'Roboto', sans-serif;
    font-weight: 200;
    text-transform: uppercase;
    font-size: var(--space-18px);
    color: white;
    letter-spacing: 0.1em;
    background: var(--degrade-bouton);
    padding: 1.6rem 4.0rem;
    border-radius: 4.8rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(36, 183, 164, 0.3);
}

#hero .bouton-principal:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(36, 183, 164, 0.4);
}

/* Hexagones flottants */
.hexagones-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.hexagone {
    position: absolute;
    color: #b76e79;
    opacity: 0;
    animation: chute-hexagone linear infinite;
    filter: drop-shadow(0 0 2px rgba(183, 110, 121, 0.3));
}

.hexagone:hover {
    animation-play-state: paused;
    transform: scale(1.2);
    opacity: 1 !important;
}

/* ==================================================
   SECTION CABINET
   ================================================== */
#cabinet {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f6f9f9 0%, #ffffff 100%);
    position: relative;
}


#cabinet::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2324B7A4' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    pointer-events: none;
}

#cabinet .texte {
    color: var(--couleur-texte);
    line-height: 1.8;
    font-size: 16px;
}

#cabinet .image {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

#cabinet .image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(36, 183, 164, 0.2);
}

/* ==================================================
   SECTION À PROPOS
   ================================================== */
#apropos {
    padding: 5rem 0;
    background-color: var(--couleur-blanc);
}

#apropos .texte {
    color: var(--couleur-texte);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 16px;
}

#apropos .liste-points {
    list-style: none;
    padding: 0;
}

#apropos .liste-points li {
    padding: 16px 0;
    color: var(--couleur-texte);
    transition: all 0.3s ease;
}

#apropos .icone-check {
    color: var(--couleur-turquoise);
    margin-right: 8px;
    font-size: 1.25rem;
}

#apropos .image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.signature {
    text-align: right;
    font-weight: bold;
    color: black;
    margin-top: 2rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 200;
    font-style: normal;
}

.citation-card {
    background: linear-gradient(135deg, rgba(36, 183, 164, 0.1), rgba(244, 162, 97, 0.1));
    border-left: 4px solid var(--couleur-rose-cuivre);
    border-radius: 16px;
    padding: 24px;
    margin: 16px 0;
    /* 2rem = 32px → 16px (multiple de 8) */
    position: relative;
    font-style: italic;
    color: var(--couleur-texte-muted);
    font-size: clamp(16px, 3.5vw, 18px);
    /* 16px et 18px = multiples de 8 */
    line-height: 1.6;
    font-family: 'Roboto', sans-serif;
    font-weight: 200;
}

/* ==================================================
   SECTION TECHNOLOGIES
   ================================================== */
#technologies {
    padding: 5rem 0;
    background-color: var(--couleur-blanc);
     margin-top: 4rem;
}
#technologies .nav-tabs {
    border: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 16px;
}

#technologies .nav-link {
    border: 0;
    transition: all 0.3s ease;
    color: var(--couleur-texte-muted);
    font-weight: 600;
    padding: 16px 24px;
    border-radius: 8px;
    margin-bottom: 8px;
    position: relative;
    overflow: hidden;
}

#technologies .nav-link:hover {
    color: white;
    background: var(--degrade-principal);
    transform: translateX(8px);
}

#technologies .nav-link.active {
    color: white;
    background: var(--degrade-principal);
    box-shadow: 0 4px 15px rgba(36, 183, 164, 0.3);
}

#technologies .nav-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--degrade-principal);
    transform: translate(-50%, -50%);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1), height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

#technologies .nav-link:hover::before {
    width: 304px;
    height: 304px;
}

#technologies .nav-link span {
    position: relative;
    z-index: 1;
}

#technologies .tab-content h3 {
    color: var(--couleur-turquoise);
    font-weight: 600;
    margin-bottom: 1rem;
}

#technologies .tab-content .description-tech {
    color: var(--couleur-rose-cuivre);
    font-size: 16px;
    font-style: italic;
    font-weight: 600;
    margin-bottom: 1rem;
}

#technologies .tab-content p {
    color: var(--couleur-texte);
    line-height: 1.8;
}

#technologies .tab-content img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#technologies .tab-pane {
    animation: slideInFromRight 0.6s ease;
}

.tab-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: tab-ripple-animation 0.6s ease-out;
    pointer-events: none;
}

/* ==================================================
   SECTION POURQUOI NOUS
   ================================================== */
#pourquoi-nous {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f6f9f9 0%, #ffffff 100%);
}

#pourquoi-nous .carte-atout {
    flex: 1;
    background: white;
    border-radius: 16px;
    padding: 8px;
    margin-bottom: 8px;
    border: 2px solid transparent;
    text-align: center;
    height: 100%;
    min-height: 184px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    will-change: transform;
    backface-visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: float 4s ease-in-out infinite;
    animation-delay: calc(var(--index) * 0.5s);
    transform-style: preserve-3d;
    perspective: 1024px;
    display: flex;
    flex-direction: column;
}

#pourquoi-nous .carte-atout:nth-child(1) {
    --index: 0;
}

#pourquoi-nous .carte-atout:nth-child(2) {
    --index: 1;
}

#pourquoi-nous .carte-atout:nth-child(3) {
    --index: 2;
}

#pourquoi-nous .carte-atout:nth-child(4) {
    --index: 3;
}

#pourquoi-nous .carte-atout::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--degrade-principal);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

#pourquoi-nous .carte-atout:hover {
    transform: translateY(-8px) rotateY(10deg) rotateX(5deg) translateZ(24px);
    box-shadow: 0 15px 40px rgba(183, 110, 121, 0.2);
}

#pourquoi-nous .icone-atout {
    font-size: clamp(32px, 4vw, 40px);
    color: var(--couleur-turquoise);
    margin-top: 1.6rem;
    margin-bottom:1.6rem;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
    display: block;
     width: clamp(44px, 5vw, 64px);
    height: clamp(44px, 5vw, 64px); 
    display: flex;
    align-items: center;
    justify-content: center;
}

#pourquoi-nous .carte-atout:hover .icone-atout {
    transform: scale(1.2) rotate(5deg);
}

#pourquoi-nous .titre-atout {
    color: var(--couleur-texte);
    font-weight: 600;
    margin-bottom: 0.8rem;
    text-align: center;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
}

#pourquoi-nous .texte-atout {
    color: var(--couleur-texte-muted);
    text-align: center;
    margin-bottom: 1.6rem;
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    font-size: clamp(1.2rem, 3vw, 2.0rem);
    line-height: clamp(1.6rem, 3vw, 2.4rem);

}

/* ==================================================
   SECTION CONTACT
   ================================================== */
#contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f6f9f9 0%, #ffffff 100%);
}

#contact .carte-info {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px;
    padding: 3.2rem;
    margin-bottom: 24px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#contact .carte-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--degrade-principal);
}

#contact .carte-info:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(183, 110, 121, 0.15);
}

#contact .icone-info {
    font-size: 1.25rem;
    margin-right: 16px;
    color: var(--couleur-turquoise) !important;
    background: none !important;
}

#contact .titre-info {
    color: var(--couleur-texte);
    font-weight: 200;
    margin-bottom: 0.5rem;
}

#contact .texte-info {
    color: var(--couleur-texte-muted);
    margin: 0;
}

#contact .bouton-envoi {
    background: var(--degrade-bouton);
    color: white;
    padding: 1.6rem 4.0rem;
    border-radius: 4.8rem;
    border: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

#contact .bouton-envoi:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(36, 183, 164, 0.4);
}

#contact .carte-map {
    width: 100%;
    height: 272px;
    border-radius: 0;
    border: 0;
}

/* ==================================================
   FOOTER
   ================================================== */
#footer {
    background-color: #A7C6BF;
    color: #ffffff;
    padding-top: 0;
}

#footer .appel-action {
    background: var(--degrade-principal);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#footer .appel-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='64' height='64' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M32 32c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20zm0 0c0 11.046 8.954 20 20 20s20-20-8.954 20-20-8.954-20-20 8.954-20 20z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

#footer .titre-appel {
    position: relative;
    z-index: 2;
    font-size: 2.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

#footer .contenu-footer {
    padding: 3rem 0 2rem;
}

#footer .lien-footer {
    color: rgb(239, 245, 229);
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
}

#footer .lien-footer:hover {
    color: gray;
}

#footer .separation {
    border-color: rgba(106, 14, 14, 0.1);
    margin: 2rem 0;
}

#footer .reseaux-sociaux {
    text-align: center;
}

#footer .icone-reseau {
    color: gray;
    font-size: 1.5rem;
    margin: 0 8px;
    transition: all 0.3s ease;
}

#footer .icone-reseau:hover {
    color: var(--couleur-turquoise);
    transform: scale(1.2);
}

#footer .copyright {
    color: rgb(239, 245, 229);
    text-align: center;
    padding-bottom: 2rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
}

.accordion-item {
    margin-top: 8px;
}

.accordion-body {
    padding: 8px 0 0;
    padding-left: 24px;
}

/* ==================================================
   ÉLÉMENTS COMMUNS À TOUTES LES SECTIONS
   ================================================== */
.titre-principal {
    font-family: 'SK Modernist', sans-serif;
    font-size: 4.0rem;
    letter-spacing: 0.05em;
    color: var(--couleur-texte);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.titre-principal::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--degrade-principal);
    border-radius: 2px;
}





.texte-centre {
    text-align: center;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    max-width: 800px;
    margin: 2.4rem auto 1.6rem;
    margin-bottom: 4.0rem;
}

/* ==================================================
   SECTION PRISE EN CHARGE (Timeline)
   ================================================== */
#prise-en-charge {
    padding: 5rem 0;  /*calc(5rem + 32px);*/
    --timeline-overlap: 0px;
    padding-bottom: 5rem;
        background: linear-gradient(135deg, #f6f9f9 0%, #ffffff 100%);

}

.timeline {
    position: relative;
    padding: 0;
    list-style: none;
    margin: 0;
}

.timeline:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    margin-left: -2px;
    content: "";
    background: var(--degrade-principal);
    border-radius: 2px;
    z-index: 1;
}

.timeline-item {
    position: relative;
    min-height: 150px;
    margin-bottom: 80px;
}

.timeline-item:after,
.timeline-item:before {
    display: table;
    content: " ";
}

.timeline-item:after {
    clear: both;
}

.timeline-image {
    position: absolute;
    z-index: 100;
    left: 50%;
    width: 120px;
    height: 120px;
    margin-left: -60px;
    border: 4px solid var(--couleur-turquoise);
    text-align: center;
    color: white;
    border-radius: 100%;
    background: var(--degrade-principal);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(183, 110, 121, 0.3);
    transform: scale(0.9);
    transition: transform 0.8s ease-out;
}

.timeline-image.visible {
    transform: scale(1);
}

.timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.timeline-panel {
    position: relative;
    width: 45%;
    padding: 24px;
    text-align: left;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateX(30px);
    transition: all 1s ease-out;
    border-top: none;
    overflow: hidden;
}

.timeline-panel-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--degrade-principal);
}

.timeline-panel.visible {
    opacity: 1;
    transform: translateX(0);
}

.timeline-item:nth-child(odd) .timeline-panel {
    float: left;
    text-align: right;
    margin-right: 5%;
    margin-left: 0;
    transform: translateX(calc(-1 * var(--timeline-overlap)));
}

.timeline-item:nth-child(even) .timeline-panel {
    float: right;
    text-align: left;
    margin-left: 5%;
    margin-right: 0;
    transform: translateX(0px);
}

.timeline-item:nth-child(even) .timeline-panel.visible {
    transform: translateX(calc(1 * var(--timeline-overlap)));
}

.timeline-panel:before {
    content: '';
    position: absolute;
    top: 26px;
    width: 0;
    height: 0;
    border: 15px solid transparent;
    z-index: 10;
}

.timeline-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--degrade-principal);
    border-radius: 2px 2px 0 0;
    z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-panel:before {
    right: calc(-30px);
    border-left-color: white;
}

.timeline-item:nth-child(even) .timeline-panel:before {
    left: calc(-30px);
    border-right-color: white;
}

/* .timeline-heading h4 {
    color: var(--couleur-rose-cuivre);
    font-weight: 700;
    margin-bottom: 0.5rem;
} */

.timeline-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4.8rem;
    height: 4.8rem;
    border: 1px solid var(--couleur-rose-cuivre);
    border-radius: 50%;
    background: transparent;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--couleur-rose-cuivre);
    margin-right: 1.6rem;
    margin-bottom: 1.6rem;
}
.timeline-heading .subheading {
    color: var(--couleur-turquoise);
    font-weight: 600;
    margin-right: 1.6rem;
    font-size: 2.4rem;
}

.timeline-body {
    color: var(--couleur-texte-muted);
    line-height: 1.6;
}

.timeline-liste {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 2rem;
}

.timeline-liste li {
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    color: var(--couleur-texte-muted);
    line-height: 1.6;
}

.timeline-icone {
    color: var(--couleur-turquoise);
    flex-shrink: 0;
    margin-right: 8px;
    font-size: 2rem;
    margin-top: 2px;
}

.timeline-liste li:hover .timeline-icone {
    transform: scale(1.2);
    transition: transform 0.3s ease;
}

.timeline-item:nth-child(1) .timeline-icone,
.timeline-item:nth-child(2) .timeline-icone,
.timeline-item:nth-child(3) .timeline-icone,
.timeline-item:nth-child(4) .timeline-icone {
    color: var(--couleur-turquoise);
}

/* Optimisation timeline - affichage direct panels */
#prise-en-charge .timeline-panel {
    opacity: 1 !important;
    transform: translateX(0) !important;
    transition: none !important;
}

#prise-en-charge .timeline-image {
    transform: scale(0.9);
    transition: transform 0.8s ease-out;
}

#prise-en-charge .timeline-image.visible {
    transform: scale(1);
}


.tech-benefits.jetpeel-benefits .benefit-tag {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.ia-tag,
.led-tag,
.jetpeel-tag {
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
}


.tech-subtitle {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    color: var(--couleur-rose-cuivre);
    font-weight: 600;
    margin-bottom: 20px;
    font-style: italic;
}




.tech-process {
    margin: 24px 0;
}

.led-colors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin: 24px 0;
    padding: 20px;
    background: rgba(108, 117, 125, 0.1);
    border-radius: 16px;
    border: 2px dashed rgba(36, 183, 164, 0.2);
}

.led-color {
    display: flex;
    align-items: center;
    gap: 12px;
}

.color-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.red .color-dot {
    background: #ff4757;
}

.blue .color-dot {
    background: #3742fa;
}

.yellow .color-dot {
    background: #ffff00;
}

.infrared .color-dot {
    background: white;
    border: 2px solid #ddd;
    position: relative;
    overflow: hidden;
}

.infrared .color-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #ff0000;
    transform: translateY(-50%) rotate(-45deg);
    transform-origin: center;
}

.color-info strong {
    display: block;
    font-size: 14px;
    color: var(--couleur-texte);
}

.color-info small {
    font-size: 12px;
    color: var(--couleur-texte-muted);
}

.jetpeel-process {
    margin: 24px 0;
}

.tech-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.benefit-tag,
.led-tag,
.jetpeel-tag {
    background: none;
    border: none;
    color: var(--couleur-texte);
    padding: 0;
    margin: 0;
    border-radius: 0;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    text-transform: none;
    letter-spacing: normal;
    display: inline;
}

.benefit-tag:not(:last-child)::after,
.led-tag:not(:last-child)::after,
.jetpeel-tag:not(:last-child)::after {
    content: " | ";
    color: var(--couleur-turquoise);
    margin: 0 8px;
    font-weight: 300;
}

.tech-results h6 {
    color: var(--couleur-turquoise);
    font-weight: 600;
    margin-bottom: 12px;
}

.results-list i {
    color: var(--couleur-turquoise);
    margin-right: 8px;
    font-size: 16px;
}

.tech-highlight i {
    font-size: 24px;
    color: var(--couleur-turquoise);
}

.tech-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
}

.tech-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tech-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(36, 183, 164, var(--overlay-opacity));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.tech-overlay .overlay-content p,
.tech-overlay .overlay-content i {
    color: #000;
}

.led-overlay .overlay-content p,
.jetpeel-overlay .overlay-content p {
    color: #fff;
}

.tech-visual:hover .tech-image {
    transform: scale(1.1);
}

.tech-visual:hover .tech-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-icon {
    font-size: 48px;
    margin-bottom: 16px;
    animation: pulse 2s infinite;
}

.led-overlay {
    background: rgba(36, 183, 164, var(--overlay-opacity));
}

.led-animation {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.led-pulse {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    animation: ledPulse 1.5s infinite;
}

.red-pulse {
    background: #ff4757;
}

.blue-pulse {
    background: #3742fa;
    animation-delay: 0.3s;
}

.yellow-pulse {
    background: #ffa502;
    animation-delay: 0.6s;
}

.jetpeel-overlay {
    background: rgba(36, 183, 164, var(--overlay-opacity));
}

.jetpeel-animation {
    margin-bottom: 16px;
}

.jet-stream {
    width: 4px;
    height: 40px;
    background: white;
    margin: 4px auto;
    border-radius: 2px;
    animation: jetStream 1s infinite;
}

.jet-stream:nth-child(2) {
    animation-delay: 0.2s;
}

.jet-stream:nth-child(3) {
    animation-delay: 0.4s;
}

.tech-cta {
    background: white;
    padding: 8px 40px 8px 40px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--couleur-turquoise);
}

.tech-cta h5 {
    color: black;
    font-weight: 700;
    margin-bottom: 8px;
}

.tech-cta p {
    color: var(--couleur-texte-muted);
    margin-bottom: 16px;
}

.btn-tech-cta {
    font-family: 'Roboto', sans-serif;
    font-weight: 200;
    text-transform: uppercase;
    font-size: 16px;
    color: white;
    letter-spacing: 0.1em;
    background: var(--degrade-bouton);
    padding: 1.6rem 4.0rem;
    border-radius: 4.8rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(36, 183, 164, 0.3);
}

.btn-tech-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(36, 183, 164, 0.4);
    color: white;
    text-decoration: none;
}

.cta-card-8px {
    background: white;
    border-radius: 16px;
    padding: 8px 32px 16px 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--couleur-turquoise);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cta-content-8px {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cta-title-8px {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--couleur-texte);
    margin: 0 0 8px 0;
    text-align: center;
}

.cta-text-8px {
    color: var(--couleur-texte-muted);
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    text-align: center;
    flex: 1;
}

.cta-bottom-8px {
    margin-top: 16px;
    text-align: center;
}

.cta-button-8px {
    font-family: 'Roboto', sans-serif;
    font-weight: 200;
    text-transform: uppercase;
    font-size: 14px;
    color: white;
    letter-spacing: 0.1em;
    background: var(--degrade-bouton);
    padding: 12px 24px;
    border-radius: 24px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(36, 183, 164, 0.3);
    margin: 0;
}

.cta-button-8px:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(36, 183, 164, 0.4);
    color: white;
    text-decoration: none;
}

/* Animations for tech sections */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@keyframes ledPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes jetStream {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

.btn-retour {
    margin-top: 2rem;
    padding: 12px;
    background: var(--degrade-bouton);
    border: none;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
}

.btn-retour:hover {
    background: var(--couleur-turquoise-hover);
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(36, 183, 164, 0.3);
}

/* ==================================================
   CARDS COMMUNES - Style uniforme
   ================================================== */
.section-card {
    background: white;
    border-radius: 16px;
    padding: clamp(24px, 5vw, 40px);
    margin-bottom: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(36, 183, 164, 0.1);
    border-top: 2px solid var(--couleur-turquoise);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.section-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(36, 183, 164, 0.15);
}

/* ==================================================
   TITRES ET TEXTES RESPONSIVES
   ================================================== */
.titre-principal-static {
    font-size: clamp(2.4rem, 5vw, 4.0rem);
    font-weight: 700;
    color: var(--couleur-texte);
    margin-bottom: 3.2rem;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.titre-principal-static::after {
    content: '';
    position: absolute;
    bottom: -3.2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--couleur-turquoise);
    border-radius: 2px;
}

.sous-titre-decoratif {
    text-align: center;
    /* color: var(--couleur-rose-cuivre); */
    color: #752e35;
    font-weight: 600;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    margin-bottom: 0.8rem;
    font-style: italic;
}

.texte-explicatif {
    color: var(--couleur-texte-muted);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    /* line-height: 1.6; */
    font-weight: 500;
}

.texte-contenu {
    color: var(--couleur-texte);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: clamp(2.4rem, 3vw, 3.2rem);
    margin-bottom: clamp(1.6rem, 3vw, 2.4rem);
    text-align: justify;
}
.tech-description {
    color: var(--couleur-texte-muted);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: clamp(2.4rem, 3vw, 3.2rem) !important;
    /* margin-bottom: clamp(1.6rem, 3vw, 2.4rem); */
    margin-bottom: clamp(1.6rem, 3vw, 1.6rem);
    text-align: justify;
}

.tech-content {
    padding: 2.4rem 0;
}
/* ==================================================
   IMAGES AVEC EFFET
   ================================================== */
.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: clamp(300px, 50vw, 400px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.image-principale {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.image-container:hover .image-principale {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(36, 183, 164, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.overlay-icon {
    font-size: 48px;
    color: var(--couleur-turquoise);
    animation: pulse 2s infinite;
}

.icone-check {
    color: var(--couleur-turquoise);
    margin-right: 12px;
    font-size: 1.25rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ==================================================
   CITATION STYLÉE
   ================================================== */
/* .citation-card {
    background: linear-gradient(135deg, rgba(36, 183, 164, 0.1), rgba(244, 162, 97, 0.1));
    border-left: 4px solid var(--couleur-rose-cuivre);
    border-radius: 16px;
    padding: 24px;
    margin: 2rem 0;
    position: relative;
    font-style: italic;
    color: var(--couleur-texte-muted);
    font-size: clamp(16px, 3.5vw, 18px);
    line-height: 1.6;
} */

/* .citation-card::before {
    content: '"';
    position: absolute;
    top: -8px;
    left: 24px;
    font-size: 4rem;
    color: var(--couleur-rose-cuivre);
    opacity: 0.3;
    font-family: serif;
} */
/* .citation-card {
        padding: 16px;
        margin: 1rem 0;
    } */
/* ==================================================
   BADGES ET HIGHLIGHTS
   ================================================== */
.badge-expertise {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: var(--couleur-turquoise);
    border: 1px solid var(--couleur-turquoise);
    border-radius: 8px;
    padding: 8px 16px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 2.4rem;
    letter-spacing: 0.1em;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}




/* ==================================================
   CLASSE UNIFIÉE POUR BLOCS GRIS
   ================================================== */
.info-block {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    padding: 12px;
    background: rgba(108, 117, 125, 0.1);
    border-left: 4px solid var(--couleur-turquoise);
    border-radius: 12px;
    transition: all 0.3s ease;
    gap: 12px;
}

.info-block:hover {
    background: rgba(36, 183, 164, 0.1);
    transform: translateX(8px);
}

.info-block .block-icon {
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--couleur-turquoise);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--couleur-turquoise);
    font-size: 18px;
    flex-shrink: 0;
}

.info-block .block-number {
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--couleur-turquoise);
    color: var(--couleur-turquoise);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.info-block.highlight .block-icon {
    width: auto;
    height: auto;
    background: none;
    border: none;
    border-radius: 0;
    font-size: 24px;
    color: var(--couleur-turquoise);
}

.info-block.inline .block-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-block .block-content {
    flex: 1;
}

.info-block .block-title {
    display: block;
    color: var(--couleur-texte);
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.info-block .block-subtitle {
    display: block;
    color: var(--couleur-texte-muted);
    font-size: clamp(0.8rem, 3vw, 1.6rem);
}

.info-block.inline .block-title,
.info-block.inline .block-subtitle {
    display: inline;
    margin: 0;
}

.simple-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-title {
    color: var(--couleur-turquoise);
    font-weight: 600;
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    margin: 1.6rem 0 1rem 0;
}

.simple-list .list-icon {
    color: var(--couleur-turquoise);
    margin-right: 8px;
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    flex-shrink: 0;
}

/* ==================================================
   CARTE DE CONTACT - ESPACEMENTS PRÉCIS
   ================================================== */
.contact-card {
    background: white;
    border-radius: 16px;
    padding: 8px 30px 8px 30px;
    margin-bottom: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(36, 183, 164, 0.1);
    border-top: 2px solid var(--couleur-turquoise);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(36, 183, 164, 0.15);
}

.contact-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    margin-left: -14px;
    gap: 8px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    color: var(--couleur-turquoise);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--couleur-texte);
    margin: 0;
}

.contact-content {
    color: var(--couleur-texte-muted);
    line-height: 1.3;
    margin-bottom: 8px;
}

/* ==================================================
   FOOTER INFO BLOCKS
   ================================================== */
.footer-info-block {
    margin: 8px;
}

.footer-title-line {
    display: flex;
    align-items: baseline;
    margin-top: 16px;
    margin-bottom: 0px;
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
}

.footer-icon {
    color: #000000;
    margin-right: 8px;
    font-size: 16px;
}

.footer-text {
    font-size: 16px;
    color: rgb(239, 245, 229);
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
}

.footer-text-tight {
    font-size: 16px;
    color: rgb(239, 245, 229);
    margin-top: -4px;
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
}

.footer-title {
    color: rgb(243, 246, 238);
    /* color: rgb(239, 245, 229); */

    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

.footer-title-description {
    font-size: 16px;
    color: rgb(243, 246, 238);
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

.footer-title-description-tight {
    font-size: 16px;
    color: rgb(243, 246, 238);
    margin-top: -4px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}


.footer-text-color {
    color: rgb(239, 245, 229);
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
}

/* ==================================================
   COOKIE BANNER
   ================================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    backdrop-filter: blur(10px);
    border-top: 3px solid var(--couleur-turquoise);
}

/* ==================================================
   RESPONSIVE CENTRALISÉ
   ================================================== */

/* DESKTOP (1200px+) */
@media (min-width: 1200px) {
    #hero .contenu {
        transform: translateY(140px);
    }

    #hero .fond-image-sablier {
        background-size: auto 100%;
        background-position: right bottom;
    }

    .timeline-item {
        min-height: 160px;
        margin-bottom: 140px;
    }

    .timeline-item:last-child::after {
        top: 80px;
    }

    .timeline-image {
        width: 160px;
        height: 160px;
        margin-left: -80px;
    }

    .timeline-panel {
        padding: 32px;
    }
}

/* TABLETTE LARGE (1199px et moins) */
@media (max-width: 1199px) {
    #hero .contenu {
        transform: translateY(140px);
    }

    #hero .titre {
        font-size: 72px;
    }

    #hero .sous-titre {
        font-size: 40px;
    }

    #hero .accroche {
        font-size: 24px;
    }

    #hero .bouton-principal {
        padding: 1.6rem 3.2rem;
    }

    #hero .fond-image-sablier {
        background-size: auto 95%;
        background-position: calc(100% + 0px) bottom;
    }
}

/* TABLETTE (992px et moins) */
@media (max-width: 992px) {
    #navigation .navbar {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    #hero .contenu {
        transform: translateY(140px);
    }

    #hero .titre {
        font-size: 64px;
    }

    #hero .sous-titre {
        font-size: 32px;
    }

    #hero .accroche {
        font-size: 16px;
    }

    #hero .bouton-principal {
        font-size: 16px;
        padding: 1.6rem 3.2rem;
    }

    #hero .fond-image-sablier {
        background-size: auto 90%;
        background-position: calc(100% + 0px) bottom;
    }

    .timeline-item {
        min-height: 140px;
        margin-bottom: 120px;
    }

    .timeline-item:last-child::after {
        top: 70px;
    }

    .timeline-image {
        width: 140px;
        height: 140px;
        margin-left: -70px;
    }


    .led-colors {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .tech-visual {
        height: 280px;
        margin-bottom: 24px;
    }

    .tech-cta {
        padding: 24px;
    }

    .tech-quick-nav {
        flex-direction: column;
        align-items: center;
    }

    .tech-nav-link {
        width: 80%;
        justify-content: center;
    }
}

/* MOBILE (768px et moins) */
@media (max-width: 768px) {
    #hero {
        height: calc(100vh - 20px);
        margin-bottom: 20px;
    }

    #hero .contenu {
        transform: translateY(-10px);
    }

    #hero .titre {
        font-size: 56px;
    }

    #hero .sous-titre {
        font-size: 32px;
    }

    #hero .accroche {
        font-size: 16px;
    }

    #hero .bouton-principal {
        font-size: 12px;
        padding: 1.6rem 3.2rem;
    }

    #hero .fond-image-sablier {
        background-size: auto 80%;
        background-position: calc(100% + 0px) bottom;
    }

    #footer .appel-action {
        padding: 4.8rem 0;
    }

    #footer .titre-appel {
        font-size: 2rem;
    }

    #footer .contenu-footer {
        padding: 3.2rem 0 2.4rem;
    }

    .titre-section {
        font-size: 1.75rem !important;
    }

    .sous-titre {
        font-size: 1.1rem !important;
    }

    section {
        padding: 3rem 0 !important;
    }

    .timeline:before {
        left: 40px;
        height: calc(100% - 250px) !important;
        bottom: auto !important;
    }

    .timeline-image {
        left: 0;
        width: 80px;
        height: 80px;
        margin-left: 0;
    }

    .timeline-panel,
    .timeline-item:nth-child(odd) .timeline-panel,
    .timeline-item:nth-child(even) .timeline-panel {
        float: none !important;
        width: calc(100% - 50px) !important;
        margin-left: 50px !important;
        margin-right: 0 !important;
        margin-top: 50px;
        text-align: left !important;
        transform: translateX(-30px) !important;
    }

    .timeline-panel.visible,
    .timeline-item:nth-child(odd) .timeline-panel.visible,
    .timeline-item:nth-child(even) .timeline-panel.visible {
        transform: translateX(calc(var(--timeline-overlap)));
    }

    .timeline-panel:before,
    .timeline-item:nth-child(odd) .timeline-panel:before,
    .timeline-item:nth-child(even) .timeline-panel:before {
        left: -30px !important;
        right: auto !important;
        border-right-color: white !important;
        border-left-color: transparent !important;
    }



    .image-container {
        height: 250px;
        margin-bottom: 20px;
    }

    .cookie-banner {
        top: 50%;
        left: 50%;
        right: auto;
        bottom: auto;
        transform: translate(-50%, -50%);
        width: 90%;
        border-radius: 16px;
        border: 3px solid var(--couleur-turquoise);
    }
}

/* TABLETTE (min-width: 768px) - AJUSTEMENTS PRÉCIS */
@media (min-width: 768px) {
    .timeline-item {
        min-height: 120px;
        margin-bottom: 100px;
    }

    .timeline-item:last-child::after {
        content: '';
        position: absolute;
        left: 50%;
        margin-left: -2px;
        top: 120px;
        bottom: 0;
        width: 4px;
        background: var(--couleur-fond-gris);
        z-index: 99;
    }
}

/* PETIT MOBILE (576px et moins) */
@media (max-width: 576px) {
    #hero .fond-image-sablier {
        background-size: auto 65%;
        background-position: calc(100% + 0px) bottom;
    }

    #hero .titre {
        font-size: 32px;
    }

    .titre-principal {
        font-size: 3.2rem;
    }


    

    .tech-benefits {
        justify-content: center;
    }

    .led-color {
        justify-content: center;
    }
}

/* TRÈS PETIT MOBILE (480px et moins) */
@media (max-width: 480px) {
    #hero .fond-image-sablier {
        background-size: auto 40%;
        background-position: calc(100% + 0px) bottom;
    }
}
.tech-title {
        font-size: clamp(2.4rem, 3.5vw, 3.2rem);
        font-weight: 700;
        color: var(--couleur-texte);
        margin-bottom: 1.6rem;
        line-height: 1.2;
    }
/* Réduction animations sur demande */
@media (prefers-reduced-motion: reduce) {
    #pourquoi-nous .carte-atout {
        animation: none;
    }

    #pourquoi-nous .carte-atout:hover {
        transform: translateY(-8px) scale(1.02);
    }
}

/* Navigation moderne unifiée */
.nav-pill-moderne {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: var(--couleur-turquoise);
    border: 1px solid var(--couleur-turquoise);
    padding: 10px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.nav-pill-moderne:hover,
.nav-pill-moderne.active {
    background: var(--couleur-turquoise);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(36, 183, 164, 0.3);
    text-decoration: none;
}

.nav-container-moderne {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 2rem 0 3rem 0;
    flex-wrap: wrap;
}


/* ==================================================
   EFFETS RIPPLE
   ================================================== */
/* .ripple-effect {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(36, 183, 164, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    animation: ripple-animation 1s ease-out;
    pointer-events: none;
    z-index: 10;
} */

@keyframes ripple-animation {
    to {
        transform: translate(-50%, -50%) scale(4);
        opacity: 0;
    }
}



.cesam-logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px; /* 16px */
    margin-top: 16px;
    padding: 8px 0; /* 8px vertical */
}

.cesam-logo {
    height: 160px; /* 40px - grille 8px */
    width: auto;
    max-width: 240px; /* 80px max largeur */
    opacity: 1;
    transition: all 0.3s ease;
    filter: grayscale(0%);
    object-fit: contain; /* Garde les proportions */
        filter: brightness(1); /* Normal */

}

.cesam-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.1); /* Plus lumineux au hover */
}
/* Tablet - réduction importante */
@media (max-width: 768px) {
    .cesam-logo {
        height: 120px; /* 64px au lieu de 120px */
        max-width: 120px; /* 96px */
    }
       
}

/*FAQ*/
.faq-group{
    background: white; 
    border-radius: 1.6rem; 
    margin-bottom: 1.6rem; 
    border: 1px solid rgba(36, 183, 164, 0.1); 
    box-shadow: 0 4px 20px rgba(0,0,0,0.06); 
    padding: 2.4rem;
}
.faq-question{
    color: var(--couleur-texte-muted); 
    font-weight: 600; 
    margin-bottom: 0.4rem; 
    display: flex; 
    align-items: center;
    font-size:2rem;
}
.faq-response{

    color: var(--couleur-texte-muted); 
    margin: 0; 
    font-size:1.6rem;
    line-height: 2.4rem;
}
.faq-icon{

    color: var(--couleur-orange-dore-dark);
}











