
    

    :root {
        /* Couleurs principales */
        --black: #000000;
        --yellow: #FFCC00;
        --mint:       #E8FDF9;
        --pink:       #F8D2D4;
        /* Couleur d’accent */
        --green: #61BFAC;
      
        /* Couleurs neutres */
        --white: #FFFFFF;
        --black:      #000000;
        --gray-dark: #333333;
        --gray-light: #F5F5F5;
        --gray-to-black-p: rgb(161, 161, 166);
        --gray-to-title: rgb(245, 245, 247);
        /* Police */
        --font-sans: 'Helvetica Neue', Arial, sans-serif;
      }
      
      /* checkbox yellow accent */
      input[type="checkbox"],
      input[type="radio"] {
        /* Chrome, Firefox, Edge modernes */
        accent-color: #FFCC00;
      }
      
      
      
      * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      
      body {
        font-family: var(--font-sans);
        color: var(--white);
        background: #1d1d1f;
        font-size: 17px;
        text-align: center;
        line-height: 1.47;
        letter-spacing: -0.022em;
      }
      .p {
        color: #a1a1a6;
        font-size: 17px;
        font-weight: 300;
        
      }
      
      #btn-inscrire5,
.btn-inscrire5 {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--gray-light);
  border-radius: 999px;
  background: transparent;
  color: #F5F5F5;
  font-weight: 400;
  text-decoration: none;
  
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

#btn-inscrire5:hover,
.btn-inscrire5:hover {
  background: #555;
  color: #F5F5F5;
  transform: scale(1.05);
}

@media (max-width: 430px){
  .btn-inscrire5 {
    font-size: 14px;
    padding: 0.4rem 1.3rem;
  }
}

      
      /* header superposé */
      .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: var(--black);
        transition: background 0.3s ease, opacity 0.3s ease;
        z-index: 1000;
      }
      
      /* header fixé après scroll */
      .header.scrolled {
        position: fixed;
        top: 0;
        left: 0;
        background: var(--black);
        opacity: 0.90;
      }
      
      .header-content {
       display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 4rem;
       
       max-width: 1214px;
       margin: 0 auto;
       padding: 0 2rem;
       width: 100%;
      }
      
      /* Logo */
      .header-left .logo img {
        height: 24px;
      }
      @media (max-width: 430px){
        .logo img {
          height: 16px;
        }
      }
      /* Liens de navigation (desktop) */
      .nav-center .nav-links {
        display: flex;
        gap: 2rem;
        list-style: none;
      }
      
      .nav-links a {
        color: var(--white);
        text-decoration: none;
        font-weight: 300;
      }
      
      .nav-links a.active {
        color: var(--yellow);
      }
      
      /* Conteneur bouton + burger */
      .header-right {
        display: flex;
        align-items: center;
        gap: 1rem;
        order: 2; /* en desktop, order naturel ne change rien */
      }
      
      /* Burger icon (caché sur desktop) */
      .burger {
        display: none;
        flex-direction: column;
        gap: 4px;
        cursor: pointer;
      }
      .bar {
        width: 25px;
        height: 3px;
        background-color: var(--white);
      }
      
      /* Animation du burger */
      .burger.open .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 5px);
      }
      .burger.open .bar:nth-child(2) {
        opacity: 0;
      }
      .burger.open .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -5px);
      }
      /* Bloque le scroll global quand le menu est ouvert */
      body.no-scroll {
        overflow: hidden;
        /* Pour certains navigateurs mobiles, on peut aussi : */
        position: fixed;
        width: 100%;
      }
      
      
      
      
      
      @media (max-width: 980px) {
      
        
        /* 1) On masque la nav hors-écran via translateX */
        .nav-center {
          position: absolute;
          top: 4rem;
          left: 0;
          width: 100%;        /* plein écran */
         
          background: var(--black);
          transform: translateY(-100%);
          transition: transform 0.5s ease-in-out;
          
          z-index: 999;       /* en dessous du burger */
          padding: 2rem 1.5rem;
          overflow-y: auto;   /* scroll si beaucoup d’items */
           /* Masqué et transparent par défaut */
          opacity: 0;
          pointer-events: none;
          
          /* Transition sur l’opacité */
          transition: opacity 0.7s ease-in-out;
          z-index: 999;
        
        }
      
        /* 2) Quand on ajoute .open, on replace la nav à l’écran */
        .nav-center.open {
          transform: translateY(0);
          opacity: 1;
          pointer-events: auto;
        }
      
        /* 3) On aligne tous les liens verticalement */
        .nav-links {
          display: flex; 
          flex-direction: column;
          gap: 1rem;
          margin-top: 1rem;
        }
      
        .nav-links a {
          color: var(--white);
          font-size: 1.8rem;
          font-weight: 800;
          text-decoration: none;
          margin-left: 2rem;
        }
      
        /* 4) On force l’affichage du burger et on le place au-dessus */
        .burger {
          display: flex;      /* override display:none sur desktop */
          position: relative;
          z-index: 1000;      /* au-dessus de la nav */
        }
      }
      
        
      
      .section-container {
        max-width: 1214px;
        margin: 0 auto;
        padding: 0 2rem;
        width: 100%;
        z-index: 200;
      }
      
     
      
      /* --- RESPONSIVE (mobile) --- */
      @media (max-width: 768px) {
        .header-left { order: 1; }
        .header-right { order: 2; }
        .nav-center { order: 3; width: 100%; }
      
        .nav-center .nav-links {
          display: none;
          flex-direction: column;
          background: var(--black);
          width: 100%;
          padding: 1rem 0;
          list-style: none;
          margin-top: 0.5rem;
        }
        .burger { display: flex; }
        .nav-center.open .nav-links { display: flex; }
      }
      
      


    /* ===== HERO ===== */
    .section-container {
        padding-top: 4rem;
    }

    .hero  {
      text-align: center;
      max-width: 1214px;
      margin: 0 auto;
      
      width: 100%;
     
    }
    .hero h1 {
      font-size: 2rem;
      font-weight: 600;
      margin-bottom: .75rem;
     padding-top: 4rem;
    }
    .hero .phone {
      font-size: 1.125rem;
      color: var(--yellow);
      margin-top: 4rem;
      margin-bottom: 1rem;
    }
    .hero .phone a {
      font-weight: 600;
    }
    .hero .btn {
        background: transparent;
        display:inline-block; padding:.6rem 1.8rem;
    border:1px solid var(--yellow); border-radius:999px;
    background:transparent; color:var(--white);
    text-decoration:none; transition:background .3s, transform .2s;
    margin-bottom: 4rem;
    }
    .hero .btn:hover {
        background: transparent;
        display:inline-block; padding:.6rem 1.8rem;
    border:1px solid var(--gray-light); border-radius:999px;
    background:transparent; color:var(--white);
    text-decoration:none; transition:background .3s, transform .2s;
    }
    .hero .btn img {
      width: 1.25rem;
      height: 1.25rem;
      display: block;
    }


    .assurance-section {
        background-color: #FFFFFF;
        padding: 4rem 0;
        color: var(--black);
      }
      
      .assurance-section .section-container {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 1rem;
        text-align: center;
      }
      
      .assurance-section h2 {
        font-size: 2rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
      }
      
      .assurance-section h2::after {
        content: '';
        display: block;
        width: 60px;
        height: 4px;
        background-color: var(--yellow);
        margin: 1rem auto 2rem;
      }
      
      .assurance-section p {
        font-size: 1rem;
        line-height: 1.6;
        color: var(--gray-dark);
        margin-bottom: 1.5rem;
      }
      
      @media (max-width: 600px) {
        .assurance-section h2 {
          font-size: 1.75rem;
        }
        .assurance-section p {
          font-size: 0.95rem;
        }
      }
      
      .publics-objectifs {
        background-color: #1d1d1f;
        color: #F5F5F5; /* texte gris foncé */
        padding: 4rem 0;
      }
      
      .publics-objectifs .section-container {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 1rem;
      }
      
      .publics-objectifs h2 {
        font-size: 2rem;
        font-weight: 600;
        text-align: center;
        margin-bottom: 1rem;
      }
      
      .publics-objectifs h2::after {
        content: '';
        display: block;
        width: 60px;
        height: 4px;
        background-color: var(--yellow);
        margin: 1rem auto 2rem;
      }
      
      .publics-objectifs p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
      }
      
      .publics-objectifs ul {
        list-style: none;
        padding-left: 0;
        max-width: 600px;
        margin: 0 auto;
      }
      
      .publics-objectifs ul li {
        position: relative;
        padding-left: 1.5rem;
        margin-bottom: 0.75rem;
        font-size: 1rem;
        color: #F5F5F5;
      }
      
      
      
      @media (max-width: 600px) {
        .publics-objectifs h2 {
          font-size: 1.75rem;
        }
        .publics-objectifs p,
        .publics-objectifs ul li {
          font-size: 0.95rem;
        }
      }
      
    /* ===== CARTES ===== */
    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
      gap: 2rem;
      max-width: 1024px;
      margin: 0 auto 4rem;
      padding: 0 1rem;
    }
    .card {
      text-align: center;
    }
    .card-icon {
      width: 3rem;
      height: 3rem;
      margin: 0 auto 1rem;
      /* icône PNG verte, donc on laisse telle quelle */
    }
    .card h3 {
      font-size: 1.25rem;
      margin-bottom: .5rem;
      color: #1d1d1f;
    }
    .card p {
      color: var(--gray-dark);
      font-size: .95rem;
    }

    /* ===== RESPONSIVE ===== */
    @media(max-width:600px) {
      .hero h1 { font-size:2rem; }
      .hero .phone { font-size:1rem; }
    }

    /* ===== SECTION PROCESSUS ===== */
.process-section {
    background: #1d1d1f;
    color: #F5F5F5;
    padding: 4rem 0;
  }
  .process-section .section-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
  }
  .process-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    position: relative;
  }
  .process-section h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--yellow);
    margin: 0.5rem auto 2rem;
  }
  
  /* grille de cartes */
  .process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
  }
  
  /* style des cartes */
  .process-card {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: transform .2s ease, box-shadow .2s ease;
  }
  
  .process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  /* icônes */
  .process-icon {
    width: 36px;
    flex-shrink: 0;
  }
  
  /* contenu textuel */
  .process-content h3 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1d1d1f;
  }
  .process-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #333;
  }
  
  /* adaptatif mobile */
  @media (max-width: 600px) {
    .process-grid {
      grid-template-columns: 1fr;
    }
  }
  /* ===== PROBLÉMATIQUES EN CARTES ===== */
.problematiques-section {
    background: #1d1d1f;
    color: #F5F5F5;
    padding: 4rem 0;
  }
  
  .problematiques-section .section-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;

  }
  
  .problematiques-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    position: relative;
    color: #F5F5F5;
  }
  
  .problematiques-section h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--yellow);
    margin: 0.5rem auto 2rem;
  }
  
  .problematiques-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
  }
  
  .problematiques-grid .card {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: transform .2s ease, box-shadow .2s ease;
    color: #1d1d1f;
  }
  
  .problematiques-grid .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  .card-icon {
    width: 32px;
    flex-shrink: 0;
    margin-top: 4px;
  }
  
  .card-text {
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
    margin: 0;
  }
  
  .problematiques-section .conclu {
    font-size: 1rem;
    color: #FFCC00;
    margin-top: 2rem;
   
    text-align: center;
  }
  
  @media (max-width: 600px) {
    .problematiques-grid {
      grid-template-columns: 1fr;
    }
  }
  

  /* Section Footer */
.footer-logo img {
    margin-bottom: 2rem;
    height: 25px ;
  }
  .site-footer {
    background-color: var(--black);
    color: var(--white);
    padding-top: 2rem;
  }
  .footer-top {
    padding: 2rem 2rem;
  }
  .footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
    flex-wrap: wrap;
    max-width: 1214px;
    margin: 0 auto;
  }
  .footer-left {
    max-width: 18.75rem;
  }
  .footer-left address {
    font-style: normal;
    line-height: 1.5;
  }
  .footer-nav {
    text-align: center;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    margin-left: 15rem;
    margin-right: 15rem;
    padding: 0;
    justify-content: space-evenly;
  }
  .footer-nav a {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 300;
    ;
  }
  .footer-nav a.active {
    color: var(--yellow);          
    text-decoration: none;          
    font-weight: 600;
  }
  .footer-bottom {
   
    background-color: var(--black);
   
  }
  .footer-bottom-content p {
    max-width: 1214px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    z-index: 200;
    padding-bottom: 2rem;
    margin-top: 2rem;
  }
  
  /* RESPONSIVE : Passe en 1 colonne sur mobile */
  @media (max-width: 1024px) {
    .footer-nav ul {
       display: flex;
       flex-direction: column;
       gap: 1rem;
       font-size: 1 rem;
       
    }
    .footer-nav a {
      font-size: 1rem;
    }
    
  }
  /* ====== Styles Floating Actions ====== */
/* === Conteneur flottant === */
/* Conteneur caché par défaut, montré au scroll */
.floating-actions {
    position: fixed;
    top: 50%; right: 1rem;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: .5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
    z-index: 1000;
  }
  .floating-actions.visible {
    opacity: 1;
    pointer-events: auto;
  }
  
  /* === wrapper inchangé === */
  .action-wrapper {
    position: relative;
    width: 3rem;
    height: 3rem;
  }
  
  /* === bouton carré === */
  .action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;      /* 3rem via wrapper */
    height: 100%;
    background: #61BFAC;
    color: #fff;
    text-decoration: none;
    border-radius: 0;
    transition: background .3s;
  }
  .action-btn svg {
    width: 1.5rem;
    height: 1.5rem;
  }
  
  /* === label positionné à GAUCHE du bouton === */
  .action-label {
    position: absolute;
    top: 0;
    right: 100%;       /* <-- ici on change */
    left: auto;        /* <-- et on neutralise le left */
    height: 100%;
  
    background: #61BFAC;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    white-space: nowrap;
  
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s;
  
    /* pour ne pas sortir de l’écran */
    max-width: calc(100vw - 5rem);
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  /* === survol du wrapper : on ouvre SEUL le label concerné === */
  .action-wrapper:hover .action-btn {
    background: #54a897;
  }
  .action-wrapper:hover .action-label {
    opacity: 1;
  }
  /* Icône dans le carré */
  .icon-btn {
    width: 1.8rem;
    height: 1.8rem;
    object-fit: contain;
  }
  
  /* Icône dans le bandeau de texte */
  .icon-label {
    width: 1.5rem;
    height: 1.5rem;
    object-fit: contain;
    margin-right: 0.75rem;
  }
  
  /* Assurez-vous que le label reste un flex container */
  /* (vous l’avez déjà défini ainsi dans l’exemple précédent) */
  .action-label {
    display: flex;
    align-items: center;
  }
  /* ==== Bouton “back to top” personnalisé ==== */
  .action-wrapper .btn-top {
    /* Carré fixe */
    width: 3rem;
    height: 3rem;
  
    /* Fond blanc, bordure verte, icône verte */
    background: #fff;
    border: 2px solid #61BFAC;
    color: #61BFAC;
  
    /* Centre l’icône */
    display: flex;
    align-items: center;
    justify-content: center;
  
    /* Pas de label pour ce bouton */
  }
  /* Cacher tout texte résiduel */
  .action-wrapper .btn-top span {
    display: none !important;
  }
  
  /* Style de base : carré blanc bord vert, icône verte */
  /* Bouton “remonter en haut” → fond blanc + icône verte */
  .action-wrapper .btn-top {
    background: #fff !important;
    border: 2px solid #61BFAC !important;
    color: #61BFAC !important;    /* pour SVG inline via currentColor */
  }
  
  /* SVG inline : on remplit selon la couleur courante */
  .action-wrapper .btn-top svg {
    fill: currentColor !important;
  }
  
  /* PNG : on part d’un PNG vert, et on l’inverse au hover */
  .action-wrapper .btn-top img {
    /* état normal : on ne touche pas, le PNG est vert */
    filter: none;
  }
  
  /* Au hover → fond vert + icône blanche */
  .action-wrapper .btn-top:hover {
    background: #61BFAC !important;
    color: #fff !important;
  }
  
  /* SVG inline passera en blanc grâce à fill: currentColor */
  /* Pour un PNG vert, on l’inverse en blanc : */
  .action-wrapper .btn-top:hover img {
    filter: brightness(0) saturate(100%) invert(1);
  }
  