/* ─────────────────────────────────────────────────────
   1. VARIABLES & RESET
───────────────────────────────────────────────────── */

:root {

    /* Backgrounds */
    --bg-0:       #050E08;
    --bg-1:       #060F0A;
    --bg-2:       #0A1A0E;
    --bg-3:       #0E2014;
    --bg-card:    #0B1A10;

    /* Couleurs — VERT (extrait du logo) */
    --cyan:       #2ECC52;
    --cyan-dim:   rgba(46, 204, 82, 0.14);
    --cyan-glow:  rgba(46, 204, 82, 0.25);
    --green:      #22C55E;
    --green-dim:  rgba(34, 197, 94, 0.15);

    /* Textes */
    --text:       rgba(210, 240, 220, 0.92);
    --text-muted: rgba(130, 180, 145, 0.65);
    --text-dim:   rgba(90, 140, 105, 0.45);

    /* Bordures */
    --border:     rgba(46, 204, 82, 0.10);
    --border-h:   rgba(46, 204, 82, 0.35);

    /* Boutons */
    --btn-bg:     #1A7A32;
    --btn-bg-hover:  #28f74b;
    --btn-box-hover : rgba(33, 238, 33, 0.3);

    /* Typographie */
    --font:       'Inter', sans-serif;
    --font-title: 'Space Grotesk', sans-serif;

    /* Tailles de police */
    --fs-xs:   .72rem;
    --fs-sm:   .875rem;
    --fs-base: .938rem;
    --fs-lg:   1.1rem;
    --fs-xl:   1.45rem;
    --fs-2xl:  clamp(1.8rem, 3.5vw, 2.5rem);
    --fs-3xl:  clamp(2.2rem, 5vw, 3.4rem);
    --fs-hero: clamp(2.8rem, 7vw, 5rem);

    /* Divers */
    --spy:  100px;
    --r:    10px;
    --r-sm: 6px;
    --ease: cubic-bezier(.25, .8, .25, 1);
}

/* ─────────────────────────────────────────────────────
   TYPOGRAPHIE — Hiérarchie professionnelle
───────────────────────────────────────────────────── */

/* Classes de typographie pour cohérence */
.text-hero {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: var(--fs-hero);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.text-title {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: var(--fs-2xl);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.text-subtitle {
    font-family: var(--font-title);
    font-weight: 500;
    font-size: var(--fs-xl);
    line-height: 1.3;
}

.text-body {
    font-family: var(--font);
    font-weight: 400;
    font-size: var(--fs-base);
    line-height: 1.7;
}

.text-body-strong {
    font-family: var(--font);
    font-weight: 500;
    font-size: var(--fs-base);
    line-height: 1.7;
}

.text-caption {
    font-family: var(--font);
    font-weight: 400;
    font-size: var(--fs-sm);
    line-height: 1.5;
    color: var(--text-muted);
}

.text-label {
    font-family: var(--font);
    font-weight: 600;
    font-size: var(--fs-xs);
    line-height: 1.4;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Application aux éléments HTML standards */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--text);
}

h1 { font-size: var(--fs-hero); font-weight: 700; }
h2 { font-size: var(--fs-3xl); }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-xl); }
h5 { font-size: var(--fs-lg); }
h6 { font-size: var(--fs-base); font-weight: 500; }

p {
    font-family: var(--font);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text);
}

strong, b {
    font-weight: 500;
    color: var(--text);
}

small {
    font-size: var(--fs-sm);
    color: var(--text-muted);
}

/* Style de base */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html { 
    scroll-behavior: smooth; 
}

body {
    font-family: var(--font);
    background:  var(--bg-0);
    color:       var(--text);
    font-size:   var(--fs-base);
    line-height: 1.7;
    overflow-x:  hidden;
}

img{
    display: block; max-width: 100%; 
}

ul{ 
    list-style: none; 
}

a{ 
    text-decoration: none; 
    color: inherit; 
}
button { 
    cursor: pointer; 
    font-family: inherit; 
    border: none; 
    background: none; 
}

input,
textarea,
select {
    font-family: inherit;
    font-size:   var(--fs-base);
    outline:     none;
}

/* Grille réseau en fond */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 212, 255, .022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, .022) 1px, transparent 1px);
    background-size: 65px 65px;
    pointer-events: none;
    z-index: 0;
}

/* ─────────────────────────────────────────────────────
   2. LAYOUT UTILITIES
───────────────────────────────────────────────────── */

.container {
    width: min(1200px, 100% - 3rem);
    margin-inline: auto;
}

.container-wide {
    width: min(1400px, 100% - 3rem);
    margin-inline: auto;
}

.section {
    padding: var(--spy) 0;
    position: relative;
    z-index: 1;
}

.section-alt {
    background: var(--bg-1); 
}
.section-dark { 
    background: var(--bg-2); 
}


/* ─────────────────────────────────────────────────────
   3. TYPOGRAPHIE & LABELS DE SECTION
───────────────────────────────────────────────────── */

.section-label {
    display:        inline-flex;
    align-items:    center;
    gap:            .5rem;
    font-size:      var(--fs-xs);
    font-weight:    600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color:          var(--cyan);
    margin-bottom:  1rem;
}

.section-label::before {
    content:      '';
    width:        10px;
    height:       10px;
    border-radius: 50%;
    background:   var(--cyan);
    animation:    pulse 2.5s ease-in-out infinite;
    flex-shrink:  0;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 var(--cyan-glow); }
    50%       { box-shadow: 0 0 0 8px transparent; }
}

.section-title {
    font-family:  var(--font-title);
    font-size:    var(--fs-3xl);
    font-weight:  700;
    color:        var(--text);
    line-height:  1.15;
    margin-bottom: 1.1rem;
}

.section-title span { color: var(--cyan); }

.section-desc {
    font-size:   var(--fs-base);
    color:       var(--text-muted);
    max-width:   580px;
    line-height: 1.85;
}

.glow-line {
    display:       block;
    width:         55px;
    height:        3px;
    background:    linear-gradient(90deg, var(--cyan), transparent);
    border-radius: 2px;
    margin-bottom: 1.3rem;
}


/* ─────────────────────────────────────────────────────
   4. BOUTONS
───────────────────────────────────────────────────── */

.btn {
    display:         inline-flex;
    align-items:     center;
    gap:             .55rem;
    padding:         .7rem 1.8rem;
    font-size:       var(--fs-sm);
    font-weight:     600;
    border-radius:   30px;
    transition:      all .3s var(--ease);
    white-space:     nowrap;
    letter-spacing:  .04em;
}

.btn-primary {
    background:  var(--btn-bg);
    color:       #fff;
    box-shadow:  0 0 20px rgba(46, 204, 82, 0.10);;
}

.btn-primary:hover {
    background:  var(--btn-bg-hover);
    transform:   translateY(-2px);
    box-shadow:  0 6px 24px rgba(46, 204, 82, 0.10);
    will-change: transform, box-shadow;
}

.btn-outline {
    background:   transparent;
    color:        var(--cyan);
    border:       1.5px solid var(--border);
    transition: background .3s, border-color .3s, transform .3s;
}

.btn-outline:hover {
    background:   var(--cyan-dim);
    border-color: var(--cyan);
    transform:    translateY(-2px);
    will-change: transform, background-color, border-color;
}

.btn-cyan {
    background:  var(--cyan);
    color:       var(--bg-0);
    font-weight: 700;
    box-shadow:  0 0 22px var(--cyan-glow);
}

.btn-cyan:hover {
    background: var(--btn-bg-hover);
    transform:  translateY(-2px);
    box-shadow: 0 6px 28px var(--cyan-glow);
    will-change: transform, background-color, box-shadow;
}


/* ─────────────────────────────────────────────────────
   5. ANIMATIONS DE RÉVÉLATION AU SCROLL
───────────────────────────────────────────────────── */

.reveal{ 
    opacity: 0; transform: translateY(28px);
    will-change: opacity, transform;
}

.reveal-l { 
    opacity: 0; transform: translateX(-28px);
    will-change: opacity, transform;
}

.reveal-r{ 
    opacity: 0; transform: translateX(28px);
    will-change: opacity, transform;
}

.reveal.visible,
.reveal-l.visible,
.reveal-r.visible {
    opacity:    1;
    transform:  translate(0);
    transition: opacity .65s var(--ease), transform .65s var(--ease);
    will-change: auto;
}

/* Délais */
.d1 { transition-delay: .10s !important; }
.d2 { transition-delay: .20s !important; }
.d3 { transition-delay: .30s !important; }
.d4 { transition-delay: .40s !important; }


/* ─────────────────────────────────────────────────────
   6. NAVBAR
───────────────────────────────────────────────────── */

.navbar {
    position: fixed;
    top: 0; 
    left: 0; 
    right: 0;
    z-index: 1000;
}

.navbar-inner {
    display:        flex;
    align-items:    center;
    justify-content: space-between;
    padding:        0 1.5rem;
}

.navbar-logo {
    max-width: 200px;
    flex-shrink: 0;
}

.navbar-menu{
    display: flex;
    flex-direction: column;
    gap: var(--fs-3xl);
    align-items: flex-start;
    position: fixed;
    top: 0;
    right: -100%;
    width: 65%;
    height: 100rem;
    padding: 9rem .2em 3em 3rem;
    box-shadow: 0 0 20px rgba(25, 38, 65, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-left: 1px solid var(--border);
    z-index:    999;
    transition: right .5s var(--ease), left .5s var(--ease);

}

.show-menu{
    right: 0;
}

.navbar-list{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--fs-3xl);
    font-size: var(--fs-sm);
}

.navbar-link{
    color: var(--text-muted);
    font-size: var(--fs-sm);
    font-weight: 500;
    position: relative;

}

.navbar-link:hover,
.navbar-link.active{
    color: var(--cyan);
}

.navbar-link::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%; 
    height: 2px;
    background: var(--cyan);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .6s var(--ease);
}

.navbar-link:hover::after{
    transform: scaleX(1);
    transform-origin: left;
}

.navbar-link.active::after{
    transform: scaleX(1);
    transform-origin: left;
}

.navbar-cta{
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .55rem 1.4rem;
    background: var(--cyan);
    color: var(--bg-0);
    font-size: var(--fs-sm);
    font-weight: 500;
    border-radius: 30px;
    transition: all .3s var(--ease);
}

.navbar-cta:hover{
    background: var(--btn-bg-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 28px var(--cyan-glow);
}

.navbar-toggle{
    display: flex;
    color: var(--text-muted);
    font-size: 1.6rem;
    transition: color .3s;
}

.navbar-close{
    display: flex;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--text-muted);
    font-size: 1.6rem;
    transition: color .3s;
}

.navbar-toggle:hover,
.navbar-close:hover{
    color: var(--cyan);
}

.navbar-close:focus,
.navbar-toggle:focus{
    outline:none;
}

.navbar-overlay { display: none; position: fixed; inset: 0; background: transparent; z-index: 998; transition: background .3s; }
.navbar-overlay.active { display: block; background: rgba(0, 0, 0, .6); }

.scrolled::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(8, 13, 24, .8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 0 20px rgba(8, 13, 24, .25);
    z-index: -1;
}

.navbar-menu.scrolled{
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 0 20px rgba(8, 13, 24, .25);
    z-index: -1;
}

/* =========  Affichage du menu sur les écrans larges  ========== */
@media (min-width: 880px) {

    .navbar-inner{
        padding: 0 3rem ;
    }

    .navbar-menu{
        position: static;
        flex-direction: row;
        width: auto;
        max-height: 80px;
        padding: 0;
        align-items: center;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: none;
        border: none;
        transition: none;
    }

    .navbar-list {
        flex-direction: row;
        gap: 2.5rem;
    }

    .navbar-toggle,
    .navbar-close {
        display: none;
    }
}


/* ─────────────────────────────────────────────────────
  7. HEROES & SCROLL HINT
───────────────────────────────────────────────────── */

.header{
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.heroes{
    position: relative;
    z-index: 3;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 1.5rem;
    padding: 10rem 2.5rem 6rem;
    max-width: 900px;
    line-height: 2rem;

}

@media screen and (min-width : 850px) {
    .heroes{
        padding: 12rem 6rem 6rem;
    }
    
}

.heroes-tag{
    font-size: var(--fs-sm);
    font-family: var(--font);
    font-weight: 500;
    color: var(--cyan);
}

.heroes-tag::before{
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    display: inline-block;
    margin-right: .5rem;
    animation: pulse 2.5s ease-in-out infinite;
}

.heroes-title{
    font-family: var(--font-title);
    font-size: var(--fs-hero);
    font-weight: 700;
    color: var(--text);
    line-height: 1.1;
}

.heroes-title span{
    color: var(--cyan);
}

.heroes-texte{
    font-size: var(--fs-base);
    color: var(--text-muted);
    max-width: 480px;
    line-height: 1.85;
}

/* heroes button sur mobile */
@media screen and (max-width : 576px) {
    .heroes-btns{
    display: flex;
    flex-direction: column;
    gap: .9rem;
    margin-top: 1.5rem;
    width: 100%;
    justify-content: center;
}
    
}

.scroll-hint{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .6rem;
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-dim);
    opacity: 0.75;
    z-index: 2;
}

.scroll-hint__line{
       width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--cyan), transparent);
    animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
    0% {
    transform: scaleY(0);
    transform-origin: top;
    }
    50% {
        transform: scaleY(1);
        transform-origin: top;
    }
    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }
    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

.heroes-video{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.header::after{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(5, 8, 16, .5) 0%, rgba(5, 8, 16, .75) 60%, var(--bg-0) 100%);
    z-index: 0;
}

/* ─────────────────────────────────────────────────────
 8. About-home
───────────────────────────────────────────────────── */

.about-home-inner{
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-inline: auto;
    
}

.about-home-text{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width:100%;
    margin-inline: auto;
}

.about-home-text h2{
    font-family: var(--font-title);
    font-size: var(--fs-3xl);
    font-weight: 700;
    color: var(--text);
    line-height: 1.15;
}

.about-home-text p{
    font-size: var(--fs-base);
    color: var(--text-muted);
    line-height: 1.85;
}

.stats-row{
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.stat-card{
    display: flex;
    flex-direction: column;
    padding: 1.5rem .5rem;
    border-radius: var(--r);
    flex: 1;
    transition: all .3s var(--ease);
}

.stat-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 8px 28px var(--btn-box-hover);
}

.stat-icon{
    font-size: 1.3rem;
    margin-bottom: .4rem;
}

.stat-icon i,
.values i{
    color: var(--cyan);
    font-size: var(--fs-2xl);
}

.stat-number{
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--cyan);
}

.stat-suffix{
    font-size: var(--fs-sm);
    color: var(--cyan);
    font-weight: 600;
    margin-left: .2rem;
}

.stat-label{
    font-size: var(--fs-sm);
    color: var(--text-muted);
     margin-top: .3rem;
}

.about-home-img-wrap{
    position: relative;
    border-radius: var(--r);
    border:        1px solid var(--border);
    overflow: hidden;
}

.about-home-img-wrap::before {
    content:     '';
    position:    absolute;
    inset:       0;
    background:  linear-gradient(135deg, rgba(0, 212, 255, .06) 0%, transparent 60%);
    z-index:     1;
    pointer-events: none;
}

.about-home-img-wrap img{
    width:      100%;
    height:     490px;
    object-fit: cover;
    display:    block;
}

.about-home-badge{
    position: absolute;
    bottom: -5px;
    left: -3px;
    display: flex;
    align-items: center;
    flex: 1;
    gap: .5rem;
    border: 1px solid var(--cyan);
    padding: 5px 10px;
    border-radius: var(--r-sm);
    background: var(--bg-3);
}

.about-home-badge-num{
    font-size: var(--fs-xl);
}

.about-home-badge-label{
    color: var(--text-dim);
    font-family: var(--font);
    font-size: var(--fs-xs);
    line-height: 1rem;
}

/*  la section about home sur ecran large*/

@media screen and (min-width: 850px) {
    .about-home-inner{
        display: grid;
        grid-template-columns: repeat(2, 1fr); 
        gap: 4rem;
        align-items: center;

    }

    .about-home-text h2{
        font-size: var(--fs-2xl);
    }

    
}


/* ─────────────────────────────────────────────────────
  9. la section service de la page acceuil
───────────────────────────────────────────────────── */

.services-preview-head {
    display:         flex;
    flex-wrap:       wrap;
    justify-content: space-between;
    align-items:     flex-end;
    gap:             2rem;
    margin-bottom:   3.5rem;
}

.services-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.4rem;
}

.services-card{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 0rem 1.8rem 2rem 1.8rem;
    background: var(--bg-card);
    position:      relative;
    overflow:      hidden;
    transition:    all 3s;
    opacity:       1;
    transform:     translateY(10px);

}

.services-card.visible {
    opacity:    1;
    transform:  translateY(0);
    transition: opacity .6s var(--ease), transform .6s var(--ease), border-color .35s, box-shadow .35s;
}

.services-card:nth-child(1) { transition-delay: .00s; }
.services-card:nth-child(2) { transition-delay: .08s; }
.services-card:nth-child(3) { transition-delay: .16s; }
.services-card:nth-child(4) { transition-delay: .24s; }
.services-card:nth-child(5) { transition-delay: .32s; }
.services-card:nth-child(6) { transition-delay: .40s; }

.services-card:nth-child(1) { 
    transition-delay: .00s; 
}
.services-card:nth-child(2) { 
    transition-delay: .08s; 
}
.services-card:nth-child(3) { 
    transition-delay: .16s; 
}
.services-card:nth-child(4) { 
    transition-delay: .24s; 
}
.services-card:nth-child(5) { 
    transition-delay: .32s; 
}
.services-card:nth-child(6) { 
    transition-delay: .40s; 
}

.services-card::before {
    content:    '';
    position:   absolute;
    top:        0;
    left:       0;
    right:      0;
    height:     2px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    opacity:    0;
    transition: opacity .6s;
}

.services-card:hover {
    border-color: var(--border-h);
    transform:    translateY(-4px);
    box-shadow:   0 20px 50px rgba(0, 0, 0, .35), 0 0 28px var(--cyan-dim);
}

.services-card:hover::before { opacity: 1; }

.services-card-icon {
    width: calc(100% + 4.4rem);
    height: 200px;
    margin: -2.2rem -2.2rem 1.5rem -2.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: var(--r);
    background: var(--cyan-dim);
    transition: background .3s, box-shwdow .3s;
    overflow: hidden;
}

.services-card:hover .services-card-icon {
    background:  var(--cyan-dim);
    box-shadow:  0 0 18px var(--cyan-glow);
}

.services-card-icon i{
    font-size: var(--fs-2xl);
}

.services-card-icon img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--r);
}

.services-card-title{
    font-family: var(--font-title);
    font-weight: 700;
}

.services-card-desc{
    font-family: var(--font);
    color: var(--text-muted);
}

.services-card-link{
    font-family: var(--font-title);
    color: var(--cyan);
    font-size: var(--fs-sm);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: .5rem;
    transition: all .5s var(--ease);
}

.services-card-link:hover{
    gap: .8rem;
}



/* ─────────────────────────────────────────────────────
  10. la section pourquoi nous de la page acceuil
───────────────────────────────────────────────────── */

.features{
    padding: var(--spy) 0;
}

.features-inner{
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

/* affichage grand ecran de la section pourquoi nous */
@media screen and (min-width : 1000px) {
    .features-inner{
    grid-template-columns: 1fr 1fr;
}
}


.features-list{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.features-item{
    display:       flex;
    gap:           1.1rem;
    position: relative;
    padding: 1rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    background: var(--bg-card);
    transition:    border-color .3s, transform .3s;
    opacity:       1;
    /*transform:     translateX(-20px);*/

}

.features-item.visible {
    opacity:    1;
    transform:  translateX(0);
    transition: opacity .5s var(--ease), transform .5s var(--ease), border-color .3s;
}

.features-item:nth-child(1) { transition-delay: .00s; }
.features-item:nth-child(2) { transition-delay: .10s; }
.features-item:nth-child(3) { transition-delay: .20s; }
.features-item:nth-child(4) { transition-delay: .30s; }

.features-item:hover{
    border-color: var(--border-h);
    transform: translate(4px);
}

.features-item-icon{
    width: 43px;
    height: 43px;
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--border-h);
    border-radius: var(--r-sm);
    background: var(--cyan-dim);
}

.features-item-icon {
    font-size: var(--fs-md);
}

.features-item-desc{
    font-family: var(--font);
    color: var(--text-muted);
}

/*  visual */
.features-visual{
    position: relative;
    display: flex;
    justify-content: center;
}

.features-img{
    width: 100%;
    max-width: 470px;
    height: 500px;
    object-fit: cover;
    border-radius: var(--r);
    border: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

.features-glow{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background:radial-gradient(circle, rgba(0, 212, 255, .10) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}


/* ─────────────────────────────────────────────────────
  11. CTA bande
───────────────────────────────────────────────────── */

.cta-band {
    padding:     80px 0;
    background:  linear-gradient(135deg, #061e17 0%, #0a2e0c 50%, #061e17 100%);
    border-top:  1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align:  center;
    position:    relative;
    overflow:    hidden;
    z-index:     1;
}

.cta-band::before {
    content:    '';
    position:   absolute;
    top:        50%;
    left:       50%;
    transform:  translate(-50%, -50%);
    width:      800px;
    height:     300px;
    background: radial-gradient(ellipse, rgba(0, 212, 255, .06) 0%, transparent 60%);
    pointer-events: none;
}

.cta-band-title{
    font-family: var(--font-title);
    font-size: var(--fs-2xl);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-band-title span{
    color: var(--cyan);
}

.cta-band-desc{
    font-family: var(--font);
    font-size: var(--fs-base);
    color: var(--text-muted);
    max-width: 446;
    margin: 0 auto 2.2rem;
    line-height: 1.8;
    
}

.cta-band-btns{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}


/* ─────────────────────────────────────────────────────
   12. page banner toute les pages
───────────────────────────────────────────────────── */
.page-banner{
    padding:     140px 0 80px;
    background:  var(--bg-1);
    border-bottom: 1px solid var(--border);
    position:    relative;
    overflow:    hidden;
    text-align:  center;
    z-index:     1;
}

.page-banner::before {
    content:    '';
    position:   absolute;
    top:        -80px;
    left:       50%;
    transform:  translateX(-50%);
    width:      600px;
    height:     380px;
    background: radial-gradient(ellipse, rgba(0, 212, 255, .07) 0%, transparent 65%);
    pointer-events: none;
}

.page-banner .section-label{
    justify-content: center;
}

.page-banner .section-title{
    margin: 0 auto 1rem;
}

.page-banner .section-desc{
    margin: 0 auto;
}

.breadcrumb {
    display:        flex;
    justify-content: center;
    gap:            .5rem;
    font-size:      var(--fs-xs);
    color:          var(--text-dim);
    margin-bottom:  1.5rem;
    letter-spacing: .06em;
}

.breadcrumb a {
    color: var(--text-muted);
    transition: color .3s;
}

.breadcrumb a:hover,
.breadcrumb span {
    color: var(--cyan);
}



/* ─────────────────────────────────────────────────────
   13. PAGE ABOUT
───────────────────────────────────────────────────── */
    /* story*/
.about-story{
    padding: var(--spy) 0;
}

.about-story-inner{
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 992px) {
    .about-story-inner { 
        grid-template-columns: 1fr 1fr; 
    }
}

.about-story-img{
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: var(--r);
    border: 1px solid var(--border);
}

.about-story-text{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-story-text p{
    color: var(--text-muted);
    line-height: 1.9;
}

/*  valeurs*/
.values{
    padding: var(--spy) 0;
}

.values-head{
    text-align: center;
    margin-bottom: 3.5rem;
}

.values-head .section-label{
    justify-content: center;
}

.values-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1.4rem;
}

.value-card{
    background:    var(--bg-card);
    border:        1px solid var(--border);
    border-radius: var(--r);
    padding:       2rem 1.6rem;
    text-align:    center;
    transition:    border-color .3s, transform .3s, box-shadow .3s;
    opacity:       0;
    transform:     translateY(22px);
}

.value-card.visible {
    opacity:    1;
    transform:  translateY(0);
    transition: opacity .55s var(--ease), transform .55s var(--ease), border-color .3s;
}

.value-card:nth-child(1) { transition-delay: .00s; }
.value-card:nth-child(2) { transition-delay: .10s; }
.value-card:nth-child(3) { transition-delay: .20s; }
.value-card:nth-child(4) { transition-delay: .30s; }

.value-card:hover {
    border-color: var(--border-h);
    transform:    translateY(-5px);
    box-shadow:   0 16px 40px rgba(0, 0, 0, .3);
}


.value-card-icon  { 
    font-size: 2rem; 
    margin-bottom: 1rem; 
    display: block; 
}
.value-card-title { 
    font-family: var(--font-title); 
    font-size: var(--fs-lg); 
    font-weight: 600; 
    color: var(--text); 
    margin-bottom: .5rem; 
}
.value-card-desc  { 
    font-size: var(--fs-sm); 
    color: var(--text-muted); 
    line-height: 1.75; 
}

/*  equipe*/
.team{
    padding: var(--spy) 0;
}

.team-head{
    text-align: center;
    margin-bottom: 3.5rem;
}

.team-head .section-label{
    justify-content: center;
}

.team-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1.4rem;
}

.team-card{
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    gap: 1rem;
    padding: 1.5rem;

    transition: border-color .3s, transform .3s, box-shadow .3s;
    opacity: 0;
}

.team-card.visible {
    opacity:    1;
    transform:  translateY(0);
    transition: opacity .55s var(--ease), transform .55s var(--ease), border-color .3s;
}

.team-card:nth-child(1) { transition-delay: .00s; }
.team-card:nth-child(2) { transition-delay: .10s; }
.team-card:nth-child(3) { transition-delay: .20s; }
.team-card:nth-child(4) { transition-delay: .30s; }

.team-card:hover {
    border-color: var(--border-h);
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .3);
}

.team-card-img{
    width: 100px;
    height: 100px;

    margin: 0 auto;

    border: 1px solid var(--border);
    border-radius: 50%;
    overflow: hidden;
}

.team-card-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card-body { 
    padding: 1.3rem; 
}

.team-card-name { 
    font-family: var(--font-title); 
    font-weight: 600; 
    color: var(--text); 
    margin-bottom: .2rem; 
}

.team-card-role { 
    font-size: var(--fs-xs); 
    color: var(--cyan); 
    letter-spacing: .1em; 
    text-transform: uppercase; 
    font-weight: 600; 
    margin-bottom: .7rem; 
}

.team-card-links{
    display: flex;
    justify-content: center;
    gap: .7rem;
}

.team-card-links a {
    width:          32px;
    height:         32px;
    border-radius:  50%;
    background:     var(--cyan-dim);
    border:         1px solid var(--border);
    display:        flex;
    align-items:    center;
    justify-content: center;
    color:          var(--cyan);
    font-size:      .9rem;
    transition:     background .3s, box-shadow .3s;
}

.team-card-links a:hover {
    background:  var(--border-h);
    box-shadow:  0 0 12px var(--cyan-glow);
}



/* ─────────────────────────────────────────────────────
   15. PAGE SERVICES COMPLÈTE
───────────────────────────────────────────────────── */

.services-full{
    padding: var(--spy) 0;
}

.services-full-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 1.6rem;
}

.sfc {
    background:    var(--bg-card);
    border:        1px solid var(--border);
    border-radius: var(--r);
    padding:       2.2rem;
    transition:    border-color .35s, transform .35s, box-shadow .35s;
    position:      relative;
    overflow:      hidden;
    opacity:       0;
    transform:     translateY(22px);
}

.sfc.visible {
    opacity:    1;
    transform:  translateY(0);
    transition: opacity .55s var(--ease), transform .55s var(--ease), border-color .35s, box-shadow .35s;
}

.sfc::after {
    content:    '';
    position:   absolute;
    top:        0;
    left:       0;
    right:      0;
    height:     2px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    opacity:    0;
    transition: opacity .4s;
}

.sfc:hover {
    border-color: var(--border-h);
    transform:    translateY(-6px);
    box-shadow:   0 24px 60px rgba(0, 0, 0, .35), 0 0 28px var(--cyan-dim);
}

.sfc:hover::after { 
    opacity: 1; 
}

.sfc-icon {
    width: calc(100% + 4.4rem);
    margin: -2.2rem -2.2rem 1.5rem -2.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: var(--r) var(--r) 0 0;
    background: var(--cyan-dim);
    overflow: hidden;
}

.sfc-icon img {
    aspect-ratio: 16/10;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--r-sm);
}

.sfc-title { 
    font-family: var(--font-title); 
    font-size: var(--fs-xl); 
    font-weight: 700; 
    color: var(--text); 
    margin-bottom: .7rem; 
}
.sfc-desc  { 
    font-size: var(--fs-sm); 
    color: var(--text-muted); 
    line-height: 1.85; 
    margin-bottom: 1.5rem; 
}

.sfc-list { 
    display: flex; 
    flex-direction: column; 
    gap: .5rem; 
}

.sfc-item {
    display:     flex;
    align-items: center;
    gap:         .55rem;
    font-size:   var(--fs-sm);
    color:       var(--text-muted);
}

.sfc-item i { 
    color: var(--green); 
    font-size: .8rem; 
    flex-shrink: 0; 
}

.sfc-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 1.5rem;
}

.sfc-toggle {
    background: var(--btn-bg);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--r-sm);
    font-size: var(--fs-sm);
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sfc-toggle:hover {
    background: var(--btn-bg-hover);
    transform: translateY(-2px);
}

.sfc-details {
    transition: all 0.3s ease;
    display: none;
}

@media screen and (max-width : 360px) {

    .services-full .container{
        margin: 0;
        width: 100%;
    }
    
    .services-full-grid{
        display: flex;
        flex-direction: column;
        gap: 1.6rem;
        width: 100%;
    }

    .sfc{
        display: flex;
        flex-direction: column;
        gap: 2rem; ;
        padding: 2.2rem 1rem;
        border-radius: 0;
    }
}

/* Processus */
.process{
    padding: var(--spy) 0;
}

.process-head{
    text-align: center;
    margin-bottom: 4rem;
}

.process-head .section-label{
    justify-content: center;
}

.process-steps{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 0;
    position: relative;
}

.process-steps::before{
    content: '';
    position: absolute;
    top: 36px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    z-index: 0;
}

@media screen and (max-width : 807px) {
    .process-steps{
    display:               grid;
    grid-template-columns: repeat(2, 1fr);
    gap:                   0;
    position:              relative;
    }

    .process-steps::before{
        top: 0;
        bottom: 0;
        left: 50%;
        width: 2px;
        height: auto;

        background: linear-gradient(
            180deg,
            transparent,
            var(--cyan),
            transparent
        );

    }
}

@media screen and (max-width : 480px) {

    .process-steps{
    display:               grid;
    grid-template-columns: repeat(1, 1fr);
    gap:                   0;
    position:              relative;
    }

    .process-steps::before{
        display: none;
    }

}

.process-step {
    display:        flex;
    flex-direction: column;
    align-items:    center;
    text-align:     center;
    padding:        2rem 1.5rem;
    opacity:        0;
    transform:      translateY(18px);
    z-index:       1;
}

.process-step.visible {
    opacity:    1;
    transform:  translateY(0);
    transition: opacity .55s var(--ease), transform .55s var(--ease);
}

.process-step:nth-child(1) { transition-delay: .00s; }
.process-step:nth-child(2) { transition-delay: .12s; }
.process-step:nth-child(3) { transition-delay: .24s; }
.process-step:nth-child(4) { transition-delay: .36s; }

.process-step-num {
    width:         56px;
    height:        56px;
    border-radius: 50%;
    background:    var(--bg-0);
    border:        2px solid var(--cyan);
    display:       flex;
    align-items:   center;
    justify-content: center;
    font-family:   var(--font-title);
    font-weight:   800;
    font-size:     var(--fs-lg);
    color:         var(--cyan);
    margin-bottom: 1.3rem;
    box-shadow:    0 0 18px var(--cyan-dim);
    position:      relative;
    z-index:       1;
}

.process-step-title { 
    font-family: var(--font-title); 
    font-weight: 600; 
    color: var(--text); 
    margin-bottom: .45rem; 
}

.process-step-desc  { 
    font-size: var(--fs-sm); 
    color: var(--text-muted); 
    line-height: 1.7; 
}



/* ─────────────────────────────────────────────────────
   16. PAGE CONTACT
───────────────────────────────────────────────────── */
.contact-section{
    padding: var(--spy) 0;
}

.contact-inner{
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: start;
}

@media screen and (min-width : 992px) {
    .contact-inner{
        grid-template-columns: 1fr 1.4fr;
    }
}

.contact-info{
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
}

.contact-info-title { 
    font-family: var(--font-title); 
    font-size: var(--fs-2xl); 
    font-weight: 700; 
    color: var(--text); 
    line-height: 1.2; 
    margin-bottom: .4rem; 
}

.contact-info-title span { 
    color: var(--cyan); 
}

.contact-info-desc  { 
    font-size: var(--fs-sm); 
    color: var(--text-muted); 
    line-height: 1.85; 
    margin-bottom: .4rem; 
}

.contact-item {
    display:       flex;
    align-items:   flex-start;
    gap:           1rem;
    padding:       1.2rem 1.4rem;
    background:    var(--bg-card);
    border:        1px solid var(--border);
    border-radius: var(--r-sm);
    transition:    border-color .3s;
}

.contact-item:hover { 
    border-color: var(--border-h); 
}

.contact-item-icon {
    width:         42px;
    height:        42px;
    border-radius: var(--r-sm);
    background:    var(--cyan-dim);
    border:        1px solid var(--border);
    display:       flex;
    align-items:   center;
    justify-content: center;
    font-size:     1.05rem;
    color:         var(--cyan);
    flex-shrink:   0;
}

.contact-item-label { 
    font-size: var(--fs-xs); 
    text-transform: uppercase; 
    letter-spacing: .12em; 
    color: var(--text-dim); 
    margin-bottom: .15rem; 
}

.contact-item-value { 
    font-size: var(--fs-sm); 
    font-weight: 500; 
    color: var(--text); }


.contact-socials { 
    display: flex; 
    gap: .8rem; 
    margin-top: .3rem; 
}

.contact-social {
    width:         40px;
    height:        40px;
    border-radius: 50%;
    background:    var(--bg-card);
    border:        1px solid var(--border);
    display:       flex;
    align-items:   center;
    justify-content: center;
    color:         var(--text-muted);
    font-size:     1rem;
    transition:    background .3s, border-color .3s, color .3s, box-shadow .3s;
}

.contact-social:hover,
.contact-social:focus {
    background:  var(--cyan-dim);
    border-color: var(--cyan);
    color:        var(--cyan-dim);
    box-shadow:   0 0 12px var(--cyan-glow);
}

/* Formulaire */
.contact-form-wrap {
    background:    var(--bg-card);
    border:        1px solid var(--border);
    border-radius: var(--r);
    padding:       2.5rem;
}

.contact-form-title { 
    font-family: var(--font-title); 
    font-size: var(--fs-xl); 
    font-weight: 700; 
    color: var(--text); 
    margin-bottom: .25rem; 
}
.contact-form-sub   { 
    font-size: var(--fs-sm); 
    color: var(--text-muted); 
    margin-bottom: 2rem; 
}

.form-grid {
    display:               grid;
    grid-template-columns: 1fr 1fr;
    gap:                   1.2rem;
}

.form-group         { 
    display: flex; 
    flex-direction: column; 
    gap: .4rem; 
}

.form-group-full   { 
    grid-column: 1 / -1; 
}

.form-label {
    font-size:      var(--fs-xs);
    font-weight:    600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color:          var(--text-muted);
}

.form-control {
    width:         100%;
    padding:       .85rem 1.1rem;
    background:    var(--bg-2);
    border:        1px solid var(--border);
    border-radius: var(--r-sm);
    color:         var(--text);
    font-size:     var(--fs-sm);
    transition:    border-color .3s, box-shadow .3s;
}

.form-control::placeholder { 
    color: var(--text-dim); 
}

.form-control:focus {
    border-color: var(--border-h);
    box-shadow:   0 0 0 3px var(--cyan-dim);
}

textarea.form-control           { 
    resize: vertical; 
    min-height: 130px; 
}

select.form-control option      { 
    background: var(--bg-2); 
}


.form-submit {
    width:          100%;
    padding:        1rem;
    background:     var(--cyan);
    color:          var(--bg-0);
    font-size:      var(--fs-base);
    font-weight:    700;
    border-radius:  var(--r-sm);
    transition:     background .3s, transform .2s, box-shadow .3s;
    letter-spacing: .04em;
    margin-top:     .4rem;
    display:        flex;
    align-items:    center;
    justify-content: center;
    gap:            .5rem;
}

.form-submit:hover {
    background:  var(--btn-bg-hover);
    transform:   translateY(-2px);
    box-shadow:  0 4px 15px var(--btn-bg-hover);
}

/* Succès */
.form-success           { 
    display: none; 
    text-align: center; 
    padding: 3rem 2rem; 
}

.form-success.show      { 
    display: block; 
}

.form-success-icon     { 
    font-size: 3rem; 
    margin-bottom: 1rem; 
}

.form-success-title    { 
    font-family: var(--font-title); 
    font-size: var(--fs-xl); 
    color: var(--green); margin-bottom: .5rem; 
}

.form-success-desc     { 
    font-size: var(--fs-sm); 
    color: var(--text-muted); 
}

/* Choix de formulaire */
.form-type-selection {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--bg-2);
    border-radius: var(--r-sm);
    border: 1px solid var(--border);
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.radio-option input[type="radio"] {
    margin: 0;
    accent-color: var(--cyan);
}

.radio-option label {
    font-size: var(--fs-base);
    color: var(--text);
    cursor: pointer;
    font-weight: 500;
}

/* Carte map */
.map-placeholder {
    width:          100%;
    height:         320px;
    background:     var(--bg-card);
    border:         1px solid var(--border);
    border-radius:  var(--r);
    display:        flex;
    flex-direction: column;
    align-items:    center;
    justify-content: center;
    gap:            1rem;
    color:          var(--text-muted);
    font-size:      var(--fs-sm);
    margin-top:     3rem;
    position: relative;
}

.map-placeholder i { 
    font-size: 2.5rem; 
    color: var(--cyan); 
    opacity: .8; 
    z-index: 1;
}

.map-placeholder span { 
    color: var(--text-muted); 
    font-size: var(--fs-sm);
    opacity: 1; 
    z-index: 1;
}

.map-placeholder-place{
    position: absolute;
    inset: 0;
    z-index: 0;
}


/* ─────────────────────────────────────────────────────
   17. FAQ
───────────────────────────────────────────────────── */

.faq { 
    padding: var(--spy) 0; 
}

.faq-head {
    text-align:    center;
    margin-bottom: 3rem;
}

.faq.head .section-label { justify-content: center; }

.faq-list {
    max-width:      720px;
    margin:         0 auto;
    display:        flex;
    flex-direction: column;
    gap:            .8rem;
}

.faq-item {
    background:    var(--bg-card);
    border:        1px solid var(--border);
    border-radius: var(--r-sm);
    overflow:      hidden;
    transition:    border-color .3s;
}

.faq-item.open { border-color: var(--border-h); }

.faq-question {
    width:          100%;
    display:        flex;
    justify-content: space-between;
    align-items:    center;
    padding:        1.2rem 1.5rem;
    background:     none;
    color:          var(--text);
    font-size:      var(--fs-sm);
    font-weight:    500;
    text-align:     left;
    gap:            1rem;
    transition:     color .3s;
}

.faq-question:hover            { color: var(--cyan); }
.faq-question i                { color: var(--cyan); font-size: 1rem; transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow:   hidden;
    transition: max-height .4s var(--ease), padding .4s;
}

.faq-item.open .faq-answer { max-height: 200px; padding-bottom: 1.2rem; }

.faq-answer p { padding: 0 1.5rem; font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.8; }


/* ─────────────────────────────────────────────────────
   18. FOOTER
───────────────────────────────────────────────────── */
.footer{
    background: var(--bg-1);
    border-top: 1px solid var(--border);
    padding: 70px 0 0;
    position: relative;
    z-index: 1;
}

.footer-inner{
    display: grid;
    grid-template-columns: 1.5fr repeat(3,1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}


.footer-brand{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo{
    width: 100px;
}

.footer-about{
    font-size: var(--fs-sm);
    color: var(--text-muted);
    line-height: 1.8;
    min-width: 260px;
}

.footer-socials {
    display:    flex;
    gap:        .7rem;
    margin-top: .2rem;
}

.footer-social{
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: .9rem;
    transition: background .3s, box-shadow .3s;
}

.footer-social:hover {
    background:  var(--cyan-dim);
    box-shadow:  0 0 12px var(--cyan-glow);
}

.footer-col-title{
    font-family: var(--font-title);
    font-weight: 600;
    color: var(--text);
    font-size: var(--fs-base);
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: .7rem;
}

.footer-col-title::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--cyan);
    border-radius: 2px;
}

.footer-links{
    display: flex;
    flex-direction: column;
    gap: .55rem;
}

.footer-link{
    font-size: var(--fs-sm);
    color: var(--text-muted);
    transition: color .3s, padding-left .3s;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.footer-link:hover{
    color: var(--cyan);
    padding-left: .3rem;
}

.footer-link i{
    font-size: .6rem;
    color :var(--cyan);
}

.footer-contact-row {
    display:     flex;
    align-items: flex-start;
    gap:         .7rem;
    font-size:   var(--fs-sm);
    color:       var(--text-muted);
    margin-bottom: .7rem;
    line-height: 1.5;
}

.footer-contact-row i{
    color: var(--cyan);
    font-size: .95rem;
    margin-top: .15rem;
    flex-shrink: 0;
}

.footer-bottom {
    border-top:     1px solid var(--border);
    padding:        1.4rem 0;
    display:        flex;
    flex-wrap:      wrap;
    justify-content: space-between;
    align-items:    center;
    gap:            1rem;
    font-size:      var(--fs-xs);
    color:          var(--text-dim);
}

.footer-bottom a       { 
    color: var(--text-dim); 
    transition: color .3s; 
}

.footer-bottom a:hover { 
    color: var(--cyan); 
}

.footer-bottom-links   { 
    display: flex; 
    gap: 1.5rem; 
}

.toplist i{
    display: none;
}


/* ===================== effet scroll toplist ===================== */
@media only screen and (max-width:970px) {
  .foot-list1{
    display: block;
    order: 2;
  }

  .foot-list1 .foot_list1_li{
    width: 100%;
  }

  .foot_list1_li{
    width: 100%;
    height: 63px;
    overflow: hidden;
    margin: 20px auto;
    transition: height 0.4s ease-in-out;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    order: 1;
  }

  .toplist{
    display: flex;
    width: 100%;
    background: inherit;
    border: none;
    outline: none;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 10px ;
  }

  .toplist i{
    display: block;
    font-family: var(--font-title);
    font-weight: 600;
    color: var(--text);
    font-size: var(--fs-base);
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: .7rem;
}
.footer-contact-row{
    margin-left: 1rem;
}

.footer-links{
    margin-left: 1rem;
}
    
}



/* ─────────────────────────────────────────────────────
   19. MODAL DEVIS
───────────────────────────────────────────────────── */

.modal {
    position:   fixed;
    inset:      0;
    display:    none;
    align-items: center;
    justify-content: center;
    z-index:    9999;
}

.modal.show-modal {
    display: flex;
}

.modal-overlay {
    position:   absolute;
    inset:      0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
}

.modal-content {
    position:   relative;
    width:      90%;
    max-width:  640px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--bg-card);
    border:     1px solid var(--border-h);
    border-radius: var(--r);
    padding:    2.5rem;
    z-index:    1;
    animation:  modalIn .3s var(--ease);
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(-24px) scale(.97); }
    to   { opacity: 1; transform: translateY(0)     scale(1);   }
}

.modal-close-btn {
    position:   absolute;
    top:        1rem;
    right:      1rem;
    width:      38px;
    height:     38px;
    border-radius: 50%;
    background: var(--bg-2);
    border:     1px solid var(--border);
    color:      var(--text-muted);
    display:    flex;
    align-items: center;
    justify-content: center;
    font-size:  1.1rem;
    transition: background .3s, color .3s, border-color .3s;
    z-index:    2;
}

.modal-close-btn:hover {
    background:   var(--cyan-dim);
    color:        var(--cyan);
    border-color: var(--cyan);
}

/* Scrollbar du modal sur webkit */
.modal-content::-webkit-scrollbar       { width: 5px; }
.modal-content::-webkit-scrollbar-track { background: var(--bg-2); }
.modal-content::-webkit-scrollbar-thumb { background: var(--border-h); border-radius: 4px; }

/* a revoir
.reveal,
.reveal-l,
.reveal-r{
    opacity:0;
    transform:translateY(40px);
    transition:all .7s cubic-bezier(.22,.61,.36,1);
}

.reveal-l{
    transform:translateX(-60px);
}

.reveal-r{
    transform:translateX(60px);
}

.visible{
    opacity:1;
    transform:none;
}*/