/* Styles généraux */
  :root {
    /*--blue-dark: #0C447C;
    --blue-mid: #185FA5;
    --blue-light: #378ADD;
    --blue-bg: #E6F1FB;
    --blue-text: #0C447C;
    --green-bg: #EAF3DE;
    --green-text: #3B6D11;
    --gray-bg: #F5F4F1;
    --gray-border: rgba(0,0,0,0.1);
    --text-primary: #1a1a1a;
    --text-secondary: #5a5a5a;
    --text-muted: #888;
    --white: #ffffff;*/
    --aubergine:#42224C;
    --aubergine-deep:#2a1830;
    --sage:#8a987a;
    --sage-deep:#6f7d61;
    --sand: #CCC3AD;
    --gold:#bca98a;
    --gold-soft:#d4c6ad;
    --cream:#f6f1e8;
    --cream-card:#fcfaf5;
    --ink:#3c3340;
    --ink-soft:#6a6270;
    --line:#eee;
    --radius-md: 10px;
    --radius-lg: 14px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --texte-light: #212529;
  }
  
/* Reset de base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

main {
  /* Pour que le texte ne soit pas sous le menu */
  margin-left: 50px;
  width: 500px;
  text-align: justify;
  
}

/* ====== FOOTER ====== */
footer {
  background: #42224C;
  color: #fff;
  text-align: center;
  padding: 1rem;
}


/* ====== NAVBAR ====== */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #42224C;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  font-weight: bold;
}

.logo img {
  width: 50px;
  height: 50px;
}

.header-cta {
    background: #CCC3AD;
    color: white;
    border: none;
    border-radius: var(--radius-md);
    padding: 9px 18px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s;
  }
  .header-cta:hover { background: #6F7F6B; }

    /* Menu Burger */
    .burger {
      display: flex;
      flex-direction: column;
      justify-content: center;
      width: 30px;
      height: 25px;
      cursor: pointer;
      gap: 5px;
    }

    .burger span {
      display: block;
      height: 3px;
      width: 100%;
      background: #fff;
      border-radius: 2px;
      transition: 0.3s ease;
    }

    /* Animation croix */
    .burger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
    .burger.active span:nth-child(2) {
      opacity: 0;
    }
    .burger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Menu Mobile */
    nav {
      position: absolute;
      top: 75px;
      right: 10px;
      background: #42224C;
      border-radius: 8px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      min-width: 150px;

      max-height: 0;           /* caché par défaut */
      opacity: 0;
      transition: max-height 0.4s ease, opacity 0.3s ease;
    }

    nav a {
      color: #fff;
      text-decoration: none;
      padding: 0.8rem 1rem;
      display: block;
      transition: background 0.3s;
    }

    nav a:hover {
      background: #CCC3AD;
    }

    nav.active {
      max-height: 500px;   /* hauteur suffisante pour afficher les liens */
      opacity: 1;
    }
    
    nav ul {
        list-style: none;
    }

    nav li {
        position: relative;
    }
/*


nav a {
  color: white;
  text-decoration: none;
  padding: 10px;
}

nav a:hover {
  background: #444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
*/
body {
    font-family: 'Roboto', sans-serif;
    color: #212529;
    background-color: white;
    line-height: 1.6;
    margin: 0;
}

.menu {
  /* Pour que le menu reste en place quand on scroll */
  position: fixed;
  /* Pour que le menu ne soit pas sur le texte et que ce dernier puisse être sélectionné */
  width: 0px;
  /* Pour que la position soit à droite*/
  right: 100px;
}

/* ================= SOUS MENU ================= */

.submenu {
  background: #444;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.submenu.active {
  max-height: 200px;
}

.submenu a {
  padding-left: 2rem;
  font-size: 0.9rem;
}



.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: #212529;
    text-decoration: underline;
    transition: color 0.3s ease;
}

h1 {
    color: #42224C;
    /* test */
    /*font-family:'Cormorant Garamond',serif;*/
    font-weight:600;
    font-size:clamp(2.5rem,5.6vw,4.3rem);
    line-height:1.02;
    letter-spacing:-.015em;
    max-width:18ch;
    margin-bottom:1.2rem;
    margin-left: auto;
    margin-right: auto;
     /* end test */
    
}

.h1-sub {
    display:block;
    /*font-family:'Cormorant Garamond',serif;*/
    font-weight:500;
    font-size:clamp(1.7rem,3.6vw,2.7rem);
    line-height:1.05;
    letter-spacing:-.005em;
    color: #6F7F6B;
    margin-top:.35rem;
}



.lien-effet {
    position: relative;
    text-decoration: none;
    overflow: hidden;
    display: inline;
    padding: 0;
    color: #212529;
    z-index: 1;
}

/* Pseudo-élément pour le soulignage initial et l'effet au survol */
.lien-effet::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px; /* épaisseur du soulignage initial */
    background-color: #1EC726; /* couleur du soulignage et du fond final */
    transition: height 0.3s ease;
    z-index: -1; /* derrière le texte */
}

/* Effet au survol : le soulignage devient un fond complet du bas vers le haut */
.lien-effet:hover::before {
    height: 100%; /* remplissage complet au survol */
}

/* Changement de couleur du texte au survol pour contraste */
.lien-effet:hover {
    color: #212529;
}

/* Fil d'Ariane */
.breadcrumb {
    padding: 15px 0;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #1EC726;
}

.breadcrumb span {
    color: #212529;
    font-weight: 500;
}

/* Section Hero */
.hero-section {
    padding: 60px 0 60px;
    position: relative;
    overflow: hidden;
}


.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    background-color: #6F7F6B;
    animation: floatAnimation 8s infinite ease-in-out;
}

.shape-hero-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    left: -200px;
    animation-delay: 0s;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    min-height: 500px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height : 1.2;
}

.hero-text p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.hero-images {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.hero-sub {
    font-size:clamp(1.1rem,1.9vw,1.3rem);
    color: #42224C;
    max-width:46ch;
    line-height:1.5;
    margin-bottom:.9rem;
    font-weight:400;
}

.hero-accroche {
    font-size:clamp(.98rem,1.4vw,1.08rem);
    color: #212529;
    max-width:54ch;
    line-height:1.55;
    margin-bottom:2rem;
}


.city-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    width: 90%;
    max-width: 600px;
}

.city-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.city-image:hover img {
    transform: scale(1.03);
}

  @media (max-width: 480px) {
    .hero {
        padding: 2.5rem 1rem 2rem;
    }
    .hero h1 {
        font-size: 1.65rem;
    }
    .hero p {
        font-size: 0.95rem;
    }
  }

/* Bouton */
.btn {
    display: block;
    background-color: #CCC3AD;
    color: #212529;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: initial;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(33, 37, 41, 0.3);
}

/* Bouton externe */
.btn-external {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 500;
    color: #212529;
    border: 1px solid #1EC726;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.1s ease;
}

.btn-external:hover {
    border: 2px solid #1EC726;
    transform: translateY(-2px);
}

.external-icon {
    color: #1EC726;
    transition: transform 0.3s ease;
}

.btn-external:hover .external-icon {
    transform: translate(1px, -1px);
}

/* Preuves sociales */
.social-proof {
    margin: 25px 0;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-source {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-count {
    font-size: 0.9rem;
    color: #666;
}

.star {
    color: #1EC726;
    margin-right: 5px;
}

.stars {
    font-size: 1.2rem;
}

.social-proof-container {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stats-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-content {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #42224C;
}

.stat-text {
    font-size: 1rem;
    color: #6c757d;
    white-space: nowrap;
}

/*.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #1EC726;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    white-space: nowrap;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}*/

.arrow-icon {
    color: white;
    margin-left: 5px;
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
    width: 18px;
    height: 18px;
    font-weight: bold;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(33, 37, 41, 0.3);
}

.cta-btn:hover .arrow-icon {
    transform: rotate(-45deg) translateX(2px) translateY(-2px);
}

/* Section Présentation */
.presentation-section {
    background-color: #fff;
}

.presentation-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #42224C;
    position: relative;
    display: inline-block;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: #CCC3AD;
}

.presentation-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #212529;
}

.presentation-text p {
    margin-bottom: 20px;
}

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

.presentation-features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex: 1;
    min-width: 300px;
    padding: 25px;
    border-radius: 10px;
    background-color: #f8f9fa;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    flex-shrink: 0;
}

.feature-text h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #212529;
}

.feature-text p {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.5;
}

.slead {
    font-size: clamp(.98rem,1.4vw,1.08rem);
    color: #212529;
    line-height: 1.68;
}

@media (max-width: 992px) {
    .presentation-features {
        flex-direction: column;
    }
    
    .feature {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .presentation-section {
        padding: 0px 0;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .presentation-text {
        font-size: 1.1rem;
    }    
}

@media (max-width: 576px) {
    .presentation-section {
        padding: 0px 0;
    }
    
    h2 {
        font-size: 1.6rem;
    }
}

/* Responsive */
@media (min-width: 768px) {
      nav {
            position: static;
            display: block !important;
            max-height: none !important;
            overflow: visible !important;
            opacity: 1 !important;
            background: none;
      }

      nav a {
        padding: 0.5rem 1rem;
      }

      nav ul {
        display: flex;
        align-items: center;
      }

      nav li {
          position: relative;
          margin-left: 1.5rem;
      }

      /* 🔴 Désactivation complète du système mobile */
        nav.active {
          max-height: none !important;
        }
        
      .burger {
        display: none;
      }
      
      .submenu {
        position: absolute;
        top: 100%;
        left: 0;
        background: #42224C;
        width: 200px;
        max-height: none !important;
        overflow: visible !important;
        display: none;
      }

    nav li:hover > .submenu {
        display: block;
    }

    .submenu a {
        padding-left: 1rem;
    }
}

/* Cards Section */
.cards-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.cards-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.card {
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 35px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 12px;
}

.card-icon {
    margin-right: 20px;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    margin: 0;
}

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

.card-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.card-list li svg {
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 3px;
}

.card-list li span {
    font-size: 0.9rem;
    color: #212529;
    line-height: 1.5;
}

.pour-qui-intro {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #212529;
    line-height: 1.5;
}

.pour-qui-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.pour-qui-list li {
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
    padding: 10px 15px;
    border-radius: 30px;
    margin-bottom: 0;
    border: 1px solid rgba(249, 202, 0, 0.2);
    transition: all 0.3s ease;
}

.pour-qui-list li:hover {
    background-color: rgba(249, 202, 0, 0.1);
    transform: translateY(-2px);
}

.pour-qui-list li svg {
    margin-right: 8px;
    flex-shrink: 0;
}

.duree-intro {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #212529;
    line-height: 1.5;
}

.duree-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.duree-list li {
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
    padding: 10px 15px;
    border-radius: 30px;
    margin-bottom: 0;
    border: 1px solid rgba(249, 202, 0, 0.2);
    transition: all 0.3s ease;
}

.duree-list li:hover {
    background-color: rgba(249, 202, 0, 0.1);
    transform: translateY(-2px);
}

.duree-list li svg {
    margin-right: 8px;
    flex-shrink: 0;
}


.modalites-intro {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #212529;
    line-height: 1.5;
}

.modalites-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.modalites-list li {
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
    padding: 10px 15px;
    border-radius: 30px;
    margin-bottom: 0;
    border: 1px solid rgba(249, 202, 0, 0.2);
    transition: all 0.3s ease;
}

.modalites-list li:hover {
    background-color: rgba(249, 202, 0, 0.1);
    transform: translateY(-2px);
}

.modalites-list li svg {
    margin-right: 8px;
    flex-shrink: 0;
}

.objectifs-intro {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #212529;
    line-height: 1.5;
}

.objectifs-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.objectifs-list li {
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
    padding: 10px 15px;
    border-radius: 30px;
    margin-bottom: 0;
    border: 1px solid rgba(249, 202, 0, 0.2);
    transition: all 0.3s ease;
    width: auto;
}

.objectifs-list li:hover {
    background-color: rgba(249, 202, 0, 0.1);
    transform: translateY(-2px);
}

.objectifs-list li svg {
    margin-right: 8px;
    flex-shrink: 0;
    margin-top: 0;
}

.consultation-intro {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #212529;
    line-height: 1.5;
}

.consultation-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.consultation-list li {
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
    padding: 10px 15px;
    border-radius: 30px;
    margin-bottom: 0;
    border: 1px solid rgba(249, 202, 0, 0.2);
    transition: all 0.3s ease;
    width: auto;
}

.consultation-list li:hover {
    background-color: rgba(249, 202, 0, 0.1);
    transform: translateY(-2px);
}

.consultation-list li svg {
    margin-right: 8px;
    flex-shrink: 0;
    margin-top: 0;
}

.outils-section {
    padding-bottom: 40px;
    background-color: #fff;
}

.outils-intro {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #212529;
    line-height: 1.5;
}

/* Style pour le badge de outils */
.outils-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #6F7F6B;
    color: white;
    padding: 10px 15px;
    border-radius: 10px 10px 0 0;
    margin-top: 20px;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Nouveau style pour la section outils */
.outils-container {
    margin-top: 0;
    border: 1px solid #eee;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
}

.outils-option-new {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: flex-start;
}

.outils-option-new:last-child {
    border-bottom: none;
}

.outils-option-new:hover {
    background-color: #CCC3AD;
}

.outils-left {
    min-width: 30%;
    padding-right: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    min-height: 60px; /* Hauteur minimale pour aligner les titres */
}

.logo-parcoureo {
    width: 60px;
    height: auto;
    object-fit: contain;
    margin-right: 10px;
    flex-shrink: 0; /* Empêche le logo de rétrécir */
}

.logo-assessfirst {
    width: 55px;
    height: 40px;
}

.logo-monkeytie {
    width: 55px;
    height: 40px;
}

.logo-riasec {
    width: 55px;
    height: 40px;
}

.logo-mbti {
    width: 55px;
    height: 40px;
}
.outils-left img {
    margin-bottom: 0;
}

.outils-left h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #212529;
    flex: 1; /* Permet au titre de prendre l'espace restant */
}

.outils-right {
    width: 70%;
    display: flex;
    align-items: center;
    min-height: 60px;
}

.outils-right p {
    margin: 10px;
    color: #212529;
    line-height: 1.4;
    font-size: 0.95rem;
}

.outils-right .highlight {
    color: #212529;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.outils-right .highlight::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: #CCC3AD;
    z-index: -1;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .outils-right {
        flex-direction: column;
    }
}

.outils-support-new {
    margin-top: 20px;
    padding: 15px 20px;
    background-color: rgba(249, 202, 0, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
}


@media (max-width: 768px) {
    .cards-container {
        flex-direction: column;
    }
    
    .card {
        margin-bottom: 20px;
    }
    
    .objectifs-list li {
        width: 100%;
    }
}

/* Toggle Section */
.toggle-section {
    padding: 60px 0;
}

.tabs-container {
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.tabs-header {
    display: flex;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.tab-button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    background-color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Roboto', sans-serif;
    color: #212529;
    font-weight: 500;
    font-size: 0.95rem;
}

.tab-button:focus {
    outline: none;
}

.tab-button:hover {
    background-color: #CCC3AD;
    color: #212529;
}

.tab-button.active {
    background-color: #6F7F6B;
    color: #212529;
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #42224C;
}

.tab-icon {
    margin-right: 10px;
}

.tabs-content {
    padding: 30px;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.tab-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.tab-list li {
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
    padding: 10px 15px;
    border-radius: 30px;
    border: 1px solid rgba(249, 202, 0, 0.2);
    transition: all 0.3s ease;
}

.tab-list li:hover {
    background-color: #CCC3AD;
    transform: translateY(-2px);
}

.tab-list li svg {
    margin-right: 8px;
    flex-shrink: 0;
}

.tab-list li span {
    font-size: 0.9rem;
    color: #212529;
    line-height: 1.5;
}

.price-intro {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #212529;
    line-height: 1.5;
}

.prix-list li {
    min-width: 280px;
}

.prix-list li strong {
    color: #212529;
    font-weight: 700;
}

.risques-psychosociaux-intro {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #212529;
    line-height: 1.5;
}

.risques-psychosociaux-list li {
    min-width: 280px;
}

.risques-psychosociaux-list li strong {
    color: #212529;
    font-weight: 700;
}

.burn-out-intro {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #212529;
    line-height: 1.5;
}

.burn-out-list li {
    min-width: 280px;
}

.burn-out-list li strong {
    color: #212529;
    font-weight: 700;
}

.bilan-competences-intro {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #212529;
    line-height: 1.5;
}

.bilan-competences-list li {
    min-width: 280px;
}

.bilan-competences-list li strong {
    color: #212529;
    font-weight: 700;
}

.BOJ-intro {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #212529;
    line-height: 1.5;
}

.BOJ-list li {
    min-width: 280px;
}

.BOJ-list li strong {
    color: #212529;
    font-weight: 700;
}

@media (max-width: 768px) {
    .prix-list li {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .tabs-header {
        flex-direction: column;
    }
    
    .tab-button {
        justify-content: flex-start;
    }
    
    .tab-button.active::after {
        width: 5px;
        height: 100%;
        top: 0;
        left: 0;
    }
    
    .toggle-section {
        padding: 30px 0 60px 0;
    }
}

/* Section Déroulement */
.deroulement-section {
    padding: 0px 0px 60px 0px;
    background-color: #fff;
}

.deroulement-container {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 40px;
    margin-top: 40px;
}

.deroulement-steps {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 25px;
    top: 25px;
    width: 2px;
    height: calc(100% - 115px);
    background-color: #CCC3AD;
    z-index: 0;
}

.deroulement-image {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-height: 400px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.deroulement-image iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.process-step {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #CCC3AD;
    color: #212529;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin-right: 20px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    color: #212529;
}

.step-content p {
    margin: 0;
    color: #212529;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .deroulement-container {
        flex-direction: column;
    }
    
    .deroulement-steps, 
    .deroulement-image {
        width: 100%;
    }
    
    .deroulement-image {
        display: block; /* Afficher l'image sur mobile */
        width: 100%;
        min-height: 300px;
        margin-top: 20px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.fade-in-delay-1 {
    opacity: 0;
    animation: fadeIn 0.8s ease 0.2s forwards;
}

.fade-in-delay-2 {
    opacity: 0;
    animation: fadeIn 0.8s ease 0.4s forwards;
}

.fade-in-delay-3 {
    opacity: 0;
    animation: fadeIn 0.8s ease 0.6s forwards;
}

.fade-in-delay-4 {
    opacity: 0;
    animation: fadeIn 0.8s ease 0.8s forwards;
}

.fade-in-delay-5 {
    opacity: 0;
    animation: fadeIn 0.8s ease 1s forwards;
}

.slide-in-right {
    opacity: 0;
    animation: slideInRight 1s ease 0.3s forwards;
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 1s ease 0.8s forwards;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        min-height: auto;
    }
    
    .hero-text, .hero-images {
        flex: none;
        width: 100%;
    }
    
    .hero-images {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0 60px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .breadcrumb {
        font-size: 0.8rem;
    }
    
    .social-proof-container {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }
    
    .stats-container {
        flex-direction: column;
        width: 100%;
    }
    
    .stats-column {
        width: 100%;
    }
    
    .cta-container {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .hero-images {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 30px 0 40px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .stat-item {
        width: 100%;
    }
    
    .icon {
        font-size: 1.3rem;
    }
    
    .stat-number, .stars {
        font-size: 1.1rem;
    }
    
    .stat-text {
        font-size: 0.8rem;
    }
}

/* Section Tarifs et financement */
.pricing-section {
    padding-bottom: 40px;
    background-color: #fff;
}

.pricing-intro {
    margin-top: 20px;
    margin-bottom: 20px;
    line-height: 1.5;
    color: #212529;
}

/* Style pour le badge de financement */
.financing-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #6F7F6B;
    color: white;
    padding: 10px 15px;
    border-radius: 10px 10px 0 0;
    margin-top: 20px;
    font-weight: 500;
    font-size: 0.95rem;
}

.badge-logo {
    width: 70px;
    height: auto;
    margin-right: 10px;
    filter: brightness(0) invert(1); /* Convertit l'image en blanc */
}

.financing-badge p {
    margin: 0;
}

/* Nouveau style pour la section financement */
.financing-container {
    margin-top: 0;
    border: 1px solid #eee;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
}

.financing-option-new {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: flex-start;
}

.financing-option-new:last-child {
    border-bottom: none;
}

.financing-option-new:hover {
    background-color: #CCC3AD;
}

.financing-left {
    width: 30%;
    padding-right: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    min-height: 60px; /* Hauteur minimale pour aligner les titres */
}

.logo-icon {
    width: 60px;
    height: auto;
    object-fit: contain;
    margin-right: 10px;
    flex-shrink: 0; /* Empêche le logo de rétrécir */
}

.logo-cpf {
    width: 55px;
    height: 40px;
}

.logo-france {
    width: 55px;
    height: 40px;
}

.logo-fne {
    width: 55px;
    height: 40px;
}

.logo-anfh {
    width: 55px;
    height: 40px;
}
.financing-left img {
    margin-bottom: 0;
}

.financing-left h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #212529;
    flex: 1; /* Permet au titre de prendre l'espace restant */
}

.financing-right {
    width: 70%;
    display: flex;
    align-items: center;
    min-height: 60px;
}

.financing-right p {
    margin: 0;
    color: #212529;
    line-height: 1.4;
    font-size: 0.95rem;
}

.financing-support-new {
    margin-top: 20px;
    padding: 15px 20px;
    background-color: rgba(249, 202, 0, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
}

.support-left {
    width: 30%;
    padding-right: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    min-height: 60px; /* Hauteur minimale pour aligner les titres */
}

.support-left svg {
    margin-bottom: 0;
    margin-right: 10px;
    flex-shrink: 0; /* Empêche l'icône de rétrécir */
}

.support-left h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #212529;
    flex: 1; /* Permet au titre de prendre l'espace restant */
}

.support-right {
    width: 70%;
}

.support-right p {
    margin: 0;
    color: #212529;
    line-height: 1.4;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .financing-option-new, 
    .financing-support-new {
        flex-direction: column;
    }
    
    .financing-left,
    .financing-right,
    .support-left,
    .support-right {
        width: 100%;
        padding-right: 0;
    }
    
    .financing-left {
        margin-bottom: 10px;
    }
    
    .support-left {
        margin-bottom: 10px;
    }
}

/* Section Avis Google */
.reviews-section {
    padding-bottom: 60px;
    background-color: #fff;
    overflow: hidden; /* Empêcher le débordement */
}

.reviews-layout {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    max-width: 100%; /* Limiter la largeur */
}

.reviews-summary {
    flex: 0 0 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    padding: 25px 20px;
    box-shadow: none;
    height: fit-content;
    margin-top: 20px;
}

.rating-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.rating-stars {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.star {
    color: #1EC726;
}

.rating-source {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-count {
    font-size: 0.9rem;
    color: #666;
}

.google-logo {
    height: 20px;
    width: auto;
}

.reviews-slider-container {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    max-width: calc(100% - 240px); /* Ajuster pour la nouvelle largeur de la colonne de gauche */
}

.reviews-slider {
    flex: 1;
    position: relative;
    overflow: hidden;
    margin: 0 15px;
    width: 100%; /* Assurer que le slider prend toute la largeur disponible */
}

.reviews-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding: 10px 5px;
    margin: 0 -5px;
    scrollbar-width: none; /* Firefox */
    width: 100%; /* Assurer que le conteneur prend toute la largeur disponible */
}

.reviews-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.review-card {
    flex: 0 0 calc(50% - 20px);
    min-width: 280px;
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    scroll-snap-align: start;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f0f0;
    color: #212529;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 10px;
}

.reviewer-info {
    flex-grow: 1;
}

.reviewer-name {
    font-weight: 600;
    color: #212529;
}

.review-date {
    font-size: 0.8rem;
    color: #666;
}

.review-source {
    height: 20px;
    width: auto;
}

.review-stars {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.verified {
    margin-left: 5px;
    color: #4285F4;
    font-size: 0.8rem;
}

.review-content {
    margin-bottom: 10px;
    color: #212529;
    font-size: 0.95rem;
    line-height: 1.5;
}

.review-footer {
    display: flex;
    justify-content: flex-start;
}

.review-more {
    color: #666;
    font-size: 0.85rem;
    text-decoration: none;
}

.review-more:hover {
    text-decoration: underline;
}

.slider-arrow {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    border: 1px solid #eee;
    color: #212529;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background-color: #1EC726;
    color: white;
}

@media (max-width: 992px) {
    .reviews-layout {
        flex-direction: column;
    }
    
    .reviews-summary {
        flex: none;
        width: 100%;
        max-width: 400px;
        margin: 0 auto 0px;
    }
    
    .reviews-slider-container {
        max-width: 100%;
        width: 100%;
    }
    
    .review-card {
        flex: 0 0 calc(100% - 20px);
    }
}

@media (max-width: 768px) {
    .reviews-summary {
        padding: 10px;
    }
    
    .rating-excellent {
        font-size: 1.2rem;
    }
    
    .review-card {
        padding: 15px;
        min-width: 250px;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
    }
    
    .reviews-layout {
        gap: 15px;
    }
    
    .reviews-slider {
        margin: 0 10px;
    }
}

/* Section ART spécificités */
.art-specifics {
    padding-bottom:60px;
    position: relative;
    overflow: hidden;
}

.specifics-wrapper {
    position: relative;
    margin-top: 50px;
}

.specifics-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.specifics-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: floatAnimation 8s infinite ease-in-out;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background-color: #6F7F6B;
    top: -30px;
    left: -70px;
    animation-delay: 0s;
}


.specifics-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.specifics-item {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
}

.specifics-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: #CCC3AD;
    border-radius: 50%;
    margin-right: 20px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.specifics-item:hover .specifics-icon {
    transform: scale(1.1);
    background-color: #6F7F6B;
}

.specifics-info {
    flex: 1;
    position: relative;
    z-index: 1;
}

.specifics-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #212529;
}

.specifics-info p {
    font-size: 15px;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

.specifics-info .highlight {
    color: #212529;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.specifics-info .highlight::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: #CCC3AD;
    z-index: -1;
    border-radius: 4px;
}

/* Styles d'animation pour les éléments de la section spécificités */
.specifics-item.animate {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

@keyframes floatAnimation {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(15px, 15px);
    }
    100% {
        transform: translate(0, 0);
    }
}

@media (max-width: 768px) {
    .specifics-content {
        grid-template-columns: 1fr;
    }
    
    .specifics-item {
        padding: 25px;
    }
}

/* Section FAQ */
.faq-section {
    padding-bottom: 60px;
}

.faq-container {
    margin-top: 40px;
}

.faq-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
}

.faq-column {
    flex: 1;
    min-width: 300px;
}

.accordion-item {
    background-color: #fff;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.accordion-header {
    position: relative;
}

.accordion-button {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 20px 25px;
    background-color: #fff;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #212529;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.accordion-button:hover {
    background-color: #6F7F6B;
}

.accordion-button:after {
    content: '+';
    position: absolute;
    right: 25px;
    font-size: 24px;
    font-weight: 300;
    color: #42224C;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-button:after {
    content: '−';
    transform: rotate(0deg);
}

.question-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    min-width: 30px;
    margin-right: 10px;
    background-color: #CCC3AD;
    border-radius: 50%;
}

.question-icon:hover{
    background-color: #6F7F6B;
}


.question-icon svg {
    width: 20px;
    height: 20px;
/*    stroke: #1EC726;*/
}

.accordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.accordion-item.active .accordion-content {
    padding: 0 25px 25px;
    max-height: 1000px;
}

.accordion-content p {
    margin-top: 0;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.6;
}

.accordion-content ul {
    margin: 0 0 20px 0;
    padding-left: 20px;
}

.accordion-content li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}

.accordion-content strong {
    color: #212529;
    font-weight: 600;
}

@media (max-width: 768px) {
    .faq-columns {
        flex-direction: column;
        gap: 0;
    }
    
    .accordion-button {
        font-size: 16px;
        padding: 15px 20px;
    }
    
    .accordion-item.active .accordion-content {
        padding: 20px;
    }
    
    .question-icon {
        width: 30px;
        height: 30px;
        min-width: 30px;
    }
    
    .question-icon svg {
        width: 16px;
        height: 16px;
    }
}

/* Section Liens Utiles */
.useful-links-section {
    position: relative;
    overflow: hidden;
    padding-bottom: 60px;
}

.useful-links-container {
    margin-top: 30px;
}

.useful-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.useful-link-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #CCC3AD;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #212529;
    position: relative;
}

.useful-link-card:hover {
    border-color: #6F7F6B;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.useful-link-content h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    transition: all 0.3s ease;
    color: #42224C;
}

.useful-link-card:hover .useful-link-content h3 {
    color: #6F7F6B;
}

.useful-link-content {
    flex: 1;
}

.useful-link-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}

.useful-link-arrow svg {
    width: 18px;
    height: 18px;
    stroke: #42224C;
    transition: all 0.3s ease;
    transform: rotate(-45deg);
}

.useful-link-card:hover .useful-link-arrow svg {
    transform: translate(2px, -2px) rotate(-45deg);
}

@media (max-width: 992px) {
    .useful-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .useful-links-grid {
        grid-template-columns: 1fr;
    }
    
    .useful-link-card {
        padding: 12px;
    }
    
    .useful-link-content h3 {
        font-size: 14px;
    }
    
    .useful-link-arrow svg {
        width: 16px;
        height: 16px;
    }
}

/* Section Autres Emplacements */
.other-locations-section {
    position: relative;
    overflow: hidden;
    padding-bottom: 60px;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.location-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid rgba(249, 202, 0, 0.5);
    transition: all 0.3s ease;
    text-decoration: none;
    color: #212529;
    position: relative;
}

.location-card:hover {
    border-color: rgba(249, 202, 0, 0.8);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.location-content {
    flex: 1;
}

.location-content h3 {
    margin: 0;
    font-size: 15px;
/*    font-weight: 500;*/
    font-weight: bold;
    line-height: 1.4;
    transition: all 0.3s ease;
    color: #212529;
}

.location-card:hover .location-content h3 {
    color: #1EC726;
}

.location-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}

.location-arrow svg {
    width: 18px;
    height: 18px;
    stroke: #1EC726;
    transition: all 0.3s ease;
    transform: rotate(-45deg);
}

.location-card:hover .location-arrow svg {
    transform: translate(2px, -2px) rotate(-45deg);
}

@media (max-width: 992px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .location-card {
        padding: 12px 15px;
    }
    
    .location-content h3 {
        font-size: 14px;
    }
    
    .location-arrow svg {
        width: 16px;
        height: 16px;
    }
}

/* Styles pour la section des badges de certification */
.certification-badges {
    padding: 40px 0px 0px 0px;
    background-color: transparent;
    border-radius: 0;
    text-align: center;
    transition: all 0.3s ease;
    max-width: 100%;
    position: relative;
}

.certification-badges::before {
    content: none;
}

.certification-badges:hover {
    background-color: transparent;
}

.certification-badges h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #212529;
    position: relative;
    display: inline-block;
}

.certification-badges h3::after {
    content: none;
}

.certification-badges p {
    margin-bottom: 30px;
    color: #666;
    font-size: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.badges-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    position: relative;
}

.badge-item::after {
    content: none;
}

.badge-item:hover {
    transform: translateY(-5px);
}

.certification-badge {
    width: 60%;
    height: auto;
    margin-bottom: 15px;
    margin-top: 15px;
    transition: all 0.3s ease;
    filter: grayscale(0);
}

/* Style spécifique pour la deuxième image de certification (Qualiopi) */
.badge-item:nth-child(2) .certification-badge {
    width: 350px;
}

.badge-item:hover .certification-badge {
    transform: none;
    filter: none;
}

.badge-caption {
    font-size: 0.9rem;
    font-weight: 500;
    color: #212529;
    text-align: center;
    position: relative;
    padding-bottom: 5px;
}

.badge-caption::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #1EC726;
    transition: width 0.3s ease;
}

.badge-item:hover .badge-caption::after {
    width: 50%;
}

@media (max-width: 768px) {
    
    .badges-container {
        gap: 30px;
    }
    
    .certification-badge {
        width: 100%;
        margin-top: 15px;
    }
}

/* Section Modalités d'enseignement */
.modalites-section {
    padding-bottom: 60px;
    background-color: #fff;
}

.modalites-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
}

.modalite-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #ffffff;
    border: 2px solid;
    border-radius: 12px;
    border-color: #CCC3AD;
    padding: 30px 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modalite-card:hover {
    background-color: #CCC3AD;
    border-color: #6F7F6B;
    /*background-color: rgba(249, 202, 0, 0.1);*/
}

.modalite-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.modalite-card:hover .modalite-icon {
    transform: scale(1.05);
}

.modalite-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modalite-content h3 {
    font-size: 1.3rem;
    color: #212529;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.modalite-card:hover .modalite-content h3 {
    color: #000;
}

.modalite-content p {
    color: #212529;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .modalites-container {
        flex-direction: column;
    }
    
    .modalite-card {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .modalite-card:last-child {
        margin-bottom: 0;
    }
    
    .cta-btn {
        transform: translateX(-70%);
    }

    .cta-btn:active,
    .cta-btn:hover {
      transform: translateX(0);
    }

    .cta-rappel {
        transform: translateX(-70%);
    }

    .cta-rappel:active,
    .cta-rappel:hover {
      transform: translateX(0);
    }

}

@media (max-width: 1280px) {
    .cta-btn {
        transform: translateX(-70%);
    }

    .cta-btn:active,
    .cta-btn:hover {
      transform: translateX(0);
    }

    .cta-rappel {
        transform: translateX(-70%);
    }

    .cta-rappel:active,
    .cta-rappel:hover {
      transform: translateX(0);
    }

}
.liste {
    list-style-position: inside;
    list-style-type: square;
}

    #cta-container {
      position: fixed;
      left: 0;
      top: 40%;
      display: flex;
      flex-direction: column;
      gap: 12px; /* espace entre les boutons */
      z-index: 1000;
    }



    /* Style du bouton flottant */
    #cta-btn {
      /*position: fixed;*/
      left: 0;
      /*top: 40%;*/
      background: #6F7F6B;
      color: white;
      border: none;
      border-radius: 0 8px 8px 0;
      padding: 12px 16px;
      font-size: 20px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
      z-index: 1000;
      box-shadow: 0 4px 8px rgba(0,0,0,0.3);
      transition: background 0.3s;
    }
    #cta-btn:hover {
      background: #CCC3AD;
    }
    
.cta-btn-float {
      /*position: fixed;*/
      left: 0;
      background: #7842B2;
      color: white;
      border: none;
      border-radius: 0 8px 8px 0;
      padding: 12px 16px;
      font-size: 20px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
      z-index: 1000;
      box-shadow: 0 4px 8px rgba(0,0,0,0.3);
      transition: background 0.3s;
      text-decoration: none;
    }
    .cta-btn-float:hover {
      filter: brightness(0.9);
    }
    /* Formulaire flottant */
    #cta-form {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0);
      background: white;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.3);
      z-index: 2000;
      width: 300px;
      transition: transform 0.3s ease-in-out;
    }
    #cta-form.active {
      transform: translate(-50%, -50%) scale(1);
    }

    #cta-form h2 {
      margin-top: 0;
      font-size: 18px;
      text-align: center;
      color: #333;
    }

    #cta-form input {
      width: 100%;
      padding: 8px;
      margin: 8px 0;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 14px;
    }

    #cta-form button {
      width: 100%;
      padding: 10px;
      background: #28a745;
      color: white;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      font-size: 16px;
    }
    #cta-form button:hover {
      background: #218838;
    }

    #cta-close {
      position: absolute;
      top: 10px;
      right: 10px;
      cursor: pointer;
      font-size: 18px;
      color: #888;
    }
    #cta-close:hover {
      color: #000;
    }
    
       /* Bouton "Rappel" (avec formulaire) */
    #cta-rappel {
      /*position: fixed;*/
      left: 0;
      /*top: 50%;*/
      background: #CCC3AD;
      color: white;
      border: none;
      border-radius: 0 8px 8px 0;
      padding: 12px 16px;
      font-size: 20px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
      z-index: 1000;
      box-shadow: 0 4px 8px rgba(0,0,0,0.3);
      transition: background 0.3s;
    }
    
        /* Style du bouton map*/
        
        #cta-map-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #CCC3AD;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #212529;
    position: relative;
}

#cta-map-btn:hover {
    border-color: #42224C;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

#cta-map-btn:after {
    content: '+';
    position: absolute;
    right: 25px;
    font-size: 24px;
    font-weight: 300;
    color: #42224C;
    transition: all 0.3s ease;
}
/*    #cta-map-btn {
      background: #007bff;
      color: white;
      border: none;
      border-radius: 6px;
      padding: 12px 18px;
      font-size: 18px;
      cursor: pointer;
      box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    }
    #cta-map-btn:hover {
      background: #0056b3;
    }
*/
    /* Popup contenant la carte */
    #map-popup {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.6);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 2000;
    }

    #map-content {
      background: white;
      border-radius: 10px;
      padding: 20px;
      display: flex;
      gap: 20px;
      width: 80%;
      max-width: 900px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    }

    #map {
      width: 60%;
      height: 400px;
      border-radius: 8px;
    }

    #map-info {
      width: 40%;
      font-size: 16px;
      color: #333;
    }

    #map-popup .close-btn {
      position: absolute;
      top: 15px;
      right: 20px;
      font-size: 28px;
      cursor: pointer;
      color: white;
    }
    
    #map-large{
        width: 100%;
        height: 350px;
        border-radius: 12px;
        margin-top: 2em;
    }

@media (max-width: 768px) {
  #map-content {
    flex-direction: column;
  }

  #map {
    width: 100%;
    order: 1; /* la carte en premier */
    height: 200px;
  }

  #map-info {
    width: 100%;
    order: 2; /* le texte ensuite */
  }
}
    
    .icon {
        width: 24px;
        height: 24px;
        stroke: #42224C;
        stroke-width: 2px;
        stroke-linecap: round;
        stroke-linejoin: round;
        fill: none;
    }

    .icon-fill {
        fill: #42224C;
    }
    
    .icon:hover {
        stroke: #997FA2;
    }

    .icon-small {
        width: 20px;
        height: 20px;
      }

    .icon-specific {
        width: 28px;
        height: 28px;
      }
      
    .icon-cta-rappel {
        width: 20px;
        height: 20px;
        stroke: #42224C;
        stroke-width: 0.5px;
        stroke-linecap: round;
        stroke-linejoin: round;
        fill: #42224C;
    }

    .icon-cta {
        width: 20px;
        height: 20px;
        stroke: #42224C;
        stroke-width: 0.5px;
        stroke-linecap: round;
        stroke-linejoin: round;
        fill: #42224C;
    }    

    .icon-big {
        width: 30px;
        height: 30px;
        margin-right: 6px;
      }

      /* ─── STATS ─── */
  .stats-bar {
    background: white;
    border-bottom: 1px solid #eee;
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    divide-x: 1px solid #eee;
  }
  .stat-item {
    padding: 1.25rem 1rem;
    border-right: 1px solid #eee;
  }
  .stat-item:last-child { border-right: none; }
  .stat-n { font-size: 1.6rem; font-weight: 500; color: #42224C }
  .stat-l { font-size: 12px; color: #6F7F6B; margin-top: 2px; }

    /* ─── SECTION ─── */
  /*section { padding: 3.5rem 0; }*/
  .section-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #42224C;
    margin-bottom: 0.5rem;
  }
  .section-title {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 600;
    color: #42224C;
    margin-bottom: 0.6rem;
    line-height: 1.3;
  }
  .section-sub { font-size: 15px; color: #212529; max-width: 500px; }
  
.two-col {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2.5rem;
    align-items: start;
  }

@media (max-width: 768px) {
    .two-col { grid-template-columns: 1fr; }
    .form-card { position: static; }
}
  
    /* ─── TRUST ITEMS ─── */
  .trust-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.75rem; }
  .trust-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: white;
    border: 1px solid #eee;
    border-radius: var(--radius-lg);
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow-sm);
  }
  .ti-icon {
    width: 36px; height: 36px;
    border-radius: 9px;
    background: #CCC3AD;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .ti-icon svg { width: 17px; height: 17px; stroke: #212529; fill: none; stroke-width: 2; }
  .ti-title { font-size: 14px; font-weight: 500; margin-bottom: 2px; }
  .ti-desc { font-size: 13px; color: #212529; line-height: 1.45; }
  
    /* ─── PROCESS ─── */
  .process-block {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-top: 1rem;
    box-shadow: var(--shadow-sm);
  }
  .process-title {
      font-size: 14px;
      font-weight: 500;
      margin-bottom: 1rem;
  }
  
  .process-subtitle {
      font-size: 13px;
      font-weight: 500;
      color: #212529;
      margin-bottom: 2px;
  }
  
  .process-text {
      font-size: 13px;
      color: #212529;
      line-height: 1.45;
      margin-bottom: 1rem;
  }
  
  .steps { display: flex; flex-direction: column; gap: 0; }
  .step { display: flex; align-items: flex-start; gap: 14px; padding-bottom: 1rem; position: relative; }
  .step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 14px; top: 28px;
    width: 1px; height: calc(100% - 12px);
    background: #eee;
  }
  .step-num {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: #CCC3AD;
    color: #212529;
    font-size: 13px; font-weight: 500;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .step-t { font-size: 14px; font-weight: 500; margin-bottom: 2px; }
  .step-d { font-size: 13px; color: #212529; line-height: 1.4; }

    /* ─── FORM CARD ─── */
  .form-card {
    background: white;
    border: 1px solid #eee;
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 80px;
  }
  .cpf-badge {
    background: #6F7F6B;
    border: 1px solid rgba(59,109,17,0.2);
    border-radius: var(--radius-md);
    padding: 0.6rem 0.9rem;
    font-size: 12px;
    color: white;
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 1.25rem;
  }
  .cpf-badge svg { width: 14px; height: 14px; stroke: white; fill: none; stroke-width: 2; flex-shrink: 0; }
  .form-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
  }
  .form-sub { font-size: 13px; color: #212529; margin-bottom: 1.25rem; }
  .field { margin-bottom: 0.85rem; }
  .field label { display: block; font-size: 12px; font-weight: 500; color: #212529; margin-bottom: 4px; }
  .field input, .field select, .field textarea {
    width: 100%;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    padding: 10px 13px;
    border: 1px solid #d0d0d0;
    border-radius: var(--radius-md);
    background: white;
    color: #212529;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
    -webkit-appearance: none;
  }
  .field input:focus, .field select:focus, .field textarea:focus {
    border-color: #6F7F6B;
    box-shadow: 0 0 0 3px rgba(55,138,221,0.12);
  }
  .field textarea { resize: vertical; min-height: 75px; }
  .field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px; }
  .submit-btn {
    width: 100%;
    padding: 13px;
    background: #CCC3AD;
    color: #212529;
    border: none;
    border-radius: var(--radius-md);
    font-family: 'Roboto', sans-serif;
    font-size: 15px; font-weight: 500;
    cursor: pointer;
    transition: background 0.15s, transform 0.1s;
    margin-top: 0.25rem;
  }
  .submit-btn:hover { background: #6F7F6B; }
  .submit-btn:active { transform: scale(0.98); }
  .privacy-note { font-size: 11px; color: var(--text-muted); text-align: center; margin-top: 0.6rem; }

  .form-success {
    display: none;
    text-align: center;
    padding: 2rem 0.5rem;
  }
  .success-icon {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--green-bg);
    margin: 0 auto 1rem;
    display: flex; align-items: center; justify-content: center;
  }
  .success-icon svg { width: 24px; height: 24px; stroke: var(--green-text); fill: none; stroke-width: 2.5; }
  .form-success h3 { font-size: 1.05rem; font-weight: 500; margin-bottom: 0.4rem; }
  .form-success p { font-size: 13px; color: var(--text-secondary); }

/* =========================================================
   CALL BANNER
========================================================= */

.call-banner{

  display:flex;
  justify-content:center;
  align-items:center;

  background:white;

  padding:12px 16px;

  text-decoration:none;

}

/* Contenu encadré */
.call-banner-content{

  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;

  border:1px solid #42224C;

  border-radius:6px;

  padding:10px 20px;

  color:#42224C;

  font-weight:bold;
  font-size:1.05rem;
  
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;

}

/* Hover */
.call-banner:hover .call-banner-content{

  background:#f8f4fc;

  transform:translateY(-1px);

  box-shadow:
    0 4px 10px rgba(120,66,178,0.15);

}

@media (max-width:768px){

  .call-banner{
    /*font-size:0.85rem;*/
    padding:0.6rem;
  }

}

/* ================= CONTENEUR STICKY ================= */

.top-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* ==================== EYEBROW ======================= */
.eyebrow {
    font-size:.72rem;
    letter-spacing:.24em;
    text-transform:uppercase;
    color: #6F7F6B;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:.8rem;
    margin-bottom:1.3rem;
}
.eyebrow::before {
    content:"";
    width:32px;
    height:1.5px;
    background: #6F7F6B;
}

/* Section eyebrow */
.seyebrow {
    font-size:.7rem;
    letter-spacing:.22em;
    text-transform:uppercase;
    color: #6F7F6B;
    font-weight:600;
    margin-bottom:.9rem;
}

/* FORMULES */
.grid3{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:clamp(1rem,1.8vw,1.5rem);
    margin-top:2.2rem;
}
@media(max-width:880px){
    .grid3{
        grid-template-columns:1fr;
        max-width:500px;
    }
}
.card{
    position:relative;
    /*background:var(--cream-card);*/
    border:1px solid var(--line);
    border-radius:16px;
    padding:2rem 1.8rem 1.8rem;
    display:flex;
    flex-direction:column;
    overflow:hidden;
    transition:transform .4s ease,box-shadow .4s ease,border-color .4s ease;
}
.card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:4px;
    background:var(--accent);
    transform:scaleX(0);
    transform-origin:left;
    transition:transform .5s ease;
}
.card:hover{
    transform:translateY(-5px);
    box-shadow:0 22px 46px -26px rgba(58,36,64,.38);
    border-color:var(--accent);
}
.card:hover::before{
    transform:scaleX(1);
}
.card--action{
    --accent: #42224C;
}
.card--reaction{
    --accent:#6F7F6B;
}
.cbadge{
    align-self:flex-start;
    font-size:.62rem;
    letter-spacing:.22em;
    text-transform:uppercase;
    font-weight:700;
    color:#fff;
    background:var(--accent);
    padding:.38rem .85rem;
    border-radius:100px;
    margin-bottom:1.3rem;
}
.card h3 {
    font-family:'Cormorant Garamond',serif;
    font-weight:600;
    font-size:2rem;
    color:#42224C;
    line-height:1;
    margin-bottom:.3rem;
}
.cbaseline {
    font-size:.72rem;
    letter-spacing:.13em;
    text-transform:uppercase;
    font-weight:600;
    color:var(--accent);
    margin-bottom:1.2rem;
}
.card .desc {
    font-size:.93rem;
    color:#212529;
    line-height:1.66;
    margin-bottom:1.5rem;
}
.specs {
    list-style:none;
    margin-top:auto;
    border-top:1px solid var(--line);
    padding-top:1.1rem;
    display:flex;
    flex-direction:column;
    gap:.45rem;
}
.specs li {
    display:flex;
    align-items:flex-start;
    gap:.5rem;
    font-size:.84rem;
    color:#6A6270;
}
.specs li::before {
    content:"";
    flex:0 0 auto;
    width:5px;
    height:5px;
    border-radius:50%;
    background:var(--accent);
    margin-top:.55rem;
}
.price {
    font-family:'Cormorant Garamond',serif;
    font-size:1.7rem;
    font-weight:600;
    color:#42224C;
}
.price::before {
    display:none;
}
.price-row {
    align-items:baseline !important;
}
.card .card-cta {
    margin-top:1.4rem;
    display:block;
    text-align:center;
    background:var(--accent);
    color:#fff;
    text-decoration:none;
    font-weight:600;
    font-size:.88rem;
    padding:.88rem;
    border-radius:10px;
    transition:filter .3s ease,transform .3s ease;
}
.card .card-cta:hover {
    filter:brightness(1.1);
    transform:translateY(-2px);
}
.choose-note {
    margin-top:2rem;
    text-align:center;
    font-size:1rem;
    color:#6A6270;
    padding:1.3rem 1.8rem;
    background:#fff;
    border:1px solid var(--line);
    border-radius:12px;
    max-width:680px;
    margin-left:auto;
    margin-right:auto;
}
.choose-note b {
    color: #42224C;
}

/******************************* EXPERTISE **************************/
.expertise{
    background:var(--cream-card);
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
}
.exp-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:clamp(2rem,4vw,4rem);
    align-items:start;
    margin-top:1.8rem;
}
@media(max-width:760px){
    .exp-grid{
        grid-template-columns:1fr;
    }
}
.exp-left h3{
    font-family:'Cormorant Garamond',serif;
    font-size:1.65rem;
    font-weight:600;
    color:var(--aubergine);
    margin-bottom:.6rem;
}
.exp-left p{
    font-size:.96rem;
    color:var(--ink-soft);
    line-height:1.7;
    margin-bottom:.85rem;
}
.exp-tags{
    display:flex;
    flex-wrap:wrap;
    gap:.48rem;
    margin-top:.8rem;
}
.exp-right{
    display:flex;
    flex-direction:column;
    gap:.8rem;
}
.exp-item{
    display:flex;
    align-items:flex-start;
    gap:.9rem;
    background:var(--cream);
    border:1px solid var(--line);
    border-radius:12px;
    padding:1.1rem 1.2rem;
}
.exp-item .eic{
    width:36px;
    height:36px;
    background:var(--aubergine);
    border-radius:8px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--gold);
    font-size:1rem;
    flex:0 0 auto;
}
.exp-item h4{
    color:var(--aubergine);
    font-size:.96rem;
    font-weight:600;
    margin-bottom:.18rem;
}
.exp-item p{
    font-size:.85rem;
    color:var(--ink-soft);
}

/*************** Boite presentation *******************/
.pres-box {
    background:var(--sand);
    border-radius:1.1rem;
    padding:20px 18px;
    margin-top:6px;
}
.pres-box p {
    font-size:1.1rem;
    color:var(--texte-light);
    line-height:1.7;
    margin-bottom:12px;
}
.pres-box p:last-child {
    margin-bottom:0;
}
.pres-box strong {
    color:var(--aubergine);
}
