@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/Montserrat/Montserrat-Regular.ttf") format("truetype"),
    url("/assets/fonts/Montserrat/Montserrat-Regular.woff2") format("woff2"),
    url("/assets/fonts/Montserrat/Montserrat-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/Montserrat/Montserrat-Medium.ttf") format("truetype"),
    url("/assets/fonts/Montserrat/Montserrat-Medium.woff2") format("woff2"),
    url("/assets/fonts/Montserrat/Montserrat-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/Montserrat/Montserrat-MediumItalic.ttf") format("truetype"),
    url("/assets/fonts/Montserrat/Montserrat-MediumItalic.woff2") format("woff2"),
    url("/assets/fonts/Montserrat/Montserrat-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/Montserrat/Montserrat-SemiBold.ttf") format("truetype"),
    url("/assets/fonts/Montserrat/Montserrat-SemiBold.woff2") format("woff2"),
    url("/assets/fonts/Montserrat/Montserrat-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/Montserrat/Montserrat-SemiBoldItalic.ttf") format("truetype"),
    url("/assets/fonts/Montserrat/Montserrat-SemiBoldItalic.woff2") format("woff2"),
    url("/assets/fonts/Montserrat/Montserrat-SemiBoldItalic.woff") format("woff");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/Montserrat/Montserrat-Bold.ttf") format("truetype"),
    url("/assets/fonts/Montserrat/Montserrat-Bold.woff2") format("woff2"),
    url("/assets/fonts/Montserrat/Montserrat-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/Montserrat/Montserrat-BoldItalic.ttf") format("truetype"),
    url("/assets/fonts/Montserrat/Montserrat-BoldItalic.woff2") format("woff2"),
    url("/assets/fonts/Montserrat/Montserrat-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

/* RESET DE BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", Arial, sans-serif;
  backface-visibility: hidden;
  line-height: 22px;
}

html,
body {
  height: 100%;
  background-color: #131313;
  color: #ececec;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* CONTENEUR GÉNÉRAL */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ========== HEADER PC ========== */

.header-pc {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: linear-gradient(135deg, rgba(19, 19, 19, 0.95) 0%, rgba(25, 30, 35, 0.98) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.header-pc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg,
      rgba(15, 168, 132, 0.05) 0%,
      transparent 50%,
      rgba(15, 168, 132, 0.05) 100%);
  pointer-events: none;
}

.header-pc.scrolled {
  background: linear-gradient(135deg, rgba(19, 19, 19, 0.98) 0%, rgba(20, 25, 30, 1) 100%);
  height: 70px;
  border-bottom: 1px solid rgba(15, 168, 132, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 40px rgba(15, 168, 132, 0.1);
}

.header-pc .nav.container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

/* LOGO */

.logo-img {
  width: 45px;
}

.logo {
  font-size: 1.3rem;
  font-weight: bold;
  color: #0fa884;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: 100ms;
}

.logo:hover {
  cursor: pointer;
  filter: opacity(0.6);
}

/* NAVIGATION */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  height: 100%;
}

.nav-links li {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-links li a {
  font-size: 1rem;
  color: #ececec;
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 0 10px;
  transition: color 100ms ease;
  font-weight: 500;
  height: 100%;
}

.nav-links li a:hover {
  color: #0fa884;
}

.nav-links li .underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #0fa884;
  transform-origin: bottom;
  transition: height 0.1s ease-in-out;
}

.nav-links li:hover .underline {
  height: 3px;
}

/* BOUTON CTA */
.btn#chat-btn-pc {
  background: #f4f4f4;
  color: #000;
  padding: 0.4rem 1rem;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

#chat-btn-pc {
  margin-left: 30px !important;
}

/* ========== HEADER MOBILE ========== */
.header-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, rgba(19, 19, 19, 0.95) 0%, rgba(25, 30, 35, 0.98) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-mobile.scrolled {
  background: linear-gradient(135deg, rgba(19, 19, 19, 0.98) 0%, rgba(20, 25, 30, 1) 100%);
  border-bottom: 1px solid rgba(15, 168, 132, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 40px rgba(15, 168, 132, 0.1);
}

.header-mobile .nav.container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-mobile .logo {
  display: flex;
  align-items: center;
  font-size: 1rem;
  text-decoration: none;
  color: #0fa884;
  fill: #0fa884;
}

.header-mobile .logo:hover {
  color: #0d8670;
  fill: #0d8670;
}

.header-pc .nav.container {
  gap: 60px;
}

/* ========== MENU MOBILE ========== */
#header-menu {
  position: fixed;
  top: 60px;
  /* Position juste en bas du header */
  left: 0;
  width: 100%;
  background-color: #131313;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  /* Déplacement initial */
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

#header-menu.toggler-element-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  /* Déplacement vers le bas */
  border-bottom: 1px solid #202020;
}

/* === LIENS DU MENU === */
#header-menu .header-menu-trigger {
  text-align: center;
  color: #ececec;
  font-size: 1rem;
  text-decoration: none;
  padding: 15px 0;
  /* Espacement vertical */
  border-bottom: 1px solid #444;
  /* Trait gris séparateur */
  transition: background-color 0.2s ease, color 0.2s ease;
}

#header-menu .header-menu-trigger:last-child {
  border-bottom: none;
  /* Pas de trait pour le dernier lien */
}

#header-menu .header-menu-trigger:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #0fa884;
}

/* ========== BOUTON MENU TRIGGER ========== */
#menu-trigger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
}

#menu-trigger svg {
  height: 44px;
  fill: #ececec;
}

#menu-trigger-menu-icon {
  display: block;
  /* Icône menu par défaut */
}

#menu-trigger-cross-icon {
  display: none;
  /* Icône croix cachée */
}

#menu-trigger.header-menu-actived #menu-trigger-menu-icon {
  display: none;
  /* Cache menu */
}

#menu-trigger.header-menu-actived #menu-trigger-cross-icon {
  display: block;
  /* Affiche croix */
}

/* ========== OVERLAY ========== */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 9997;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ========== MEDIA QUERIES ========== */
@media screen and (min-width: 769px) {
  .header-pc {
    display: block;
  }

  .header-mobile {
    display: none;
  }

  .chat-content {
    max-height: 625px;
  }

  .hero {
    height: 95vh;
    top: 50px;
  }
}

@media screen and (max-width: 768px) {
  .header-pc {
    display: none;
  }

  .header-mobile {
    display: flex;
  }

  #chat-btn-mobile,
  #menu-trigger {
    display: inline-flex;
  }

  #chat-btn-mobile {
    margin-left: auto;
    margin-right: 7px;
  }

  .form-row {
    display: block !important;
    gap: 0px !important;
  }

  .contact-form .btn {
    margin: auto !important;
    display: flex !important;
    justify-content: center !important;
  }

  .chat-content {
    max-height: 450px;
  }

  .hero {
    height: 85vh;
    top: 40px;
  }
}

.image-article-div {
  max-width: 100%;
}

.image-article {
  border-radius: 5px;
  max-width: 100%;
}

.image-text-style-blog-articles {
  background-color: #131313;
  color: #ececec;
  padding: 0px 15px 25px 15px;
  margin-top: -10px;
}

.image-text-wrapper-blog {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 100%;
}

/* BOUTON */
.btn {
  display: inline-block;
  background: #0fa884 !important;
  color: #ececec !important;
  padding: 11px 19px !important;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 100ms ease !important;
  height: auto !important;
}

.btn:hover {
  background-color: #0d8670 !important;
}

/* SECTION HERO */
.hero {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  overflow: hidden;
  margin-bottom: 20px;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  max-width: 800px;
}

.hero-content h5 {
  font-size: 1.1rem;
  margin-bottom: 25px;
  max-width: 600px;
  font-weight: normal;
  line-height: 1.7rem;
}

/* RESPONSIVE SIMPLE */
@media (max-width: 768px) {
  nav.nav {
    justify-content: center;
    height: auto;
    gap: 10px;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .swiper-button-prev-trigger,
  .swiper-button-next-trigger {
    display: none !important;
  }

  .swiper {
    width: 325px !important;
  }
}

#chat-btn {
  margin-left: 20px;
}

.our-engagements-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 10px;
}

/* ------------------------------------- */
/* Container principal du bloc d'avis    */
/* ------------------------------------- */

#trustpilot-reviews {
  background-image: linear-gradient(145deg, #e30018, #672e02);
  font-family: Roboto, sans-serif;
  scroll-margin-top: 100px;
  /* Ajustez selon la hauteur de votre header */
  font-family: Roboto, sans-serif;
  overflow: visible;
  padding: 50px 0;
  /* Espace interne en haut et en bas */
  color: white;
}

/* Conteneur global (exemple d'un wrapper) */
#div_c22e_0 {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}

#h2_c22e_0 {
  font-family: Poppins, sans-serif;
  font-size: 1.8rem;
  margin: 0 0 10px;
  text-align: center;
  color: white;
}

/* SVG décoratif Trustpilot */
#svg_c22e_0 {
  object-fit: contain;
  margin: 0px 0px 12px 0px;
  /* Espace sous le logo */
  max-width: 250px;
  height: 45px;
  width: 100%;
}

.font-weight-500 {
  font-weight: 500;
}

/* Petit bloc pour la note (4,7 • 12 Avis) */
#div_c22e_1 {
  display: flex;
  margin-top: 10px;
  align-items: center;
  gap: 8px;
}

#img_c22e_0 {
  height: 24px;
  width: auto;
}

#span_c22e_0 {
  font-size: 15px;
  font-weight: 400;
  line-height: normal;
  color: white;
  /* Couleur du texte */
}

/* Conteneur global du slider */
#div_c22e_2 {
  position: relative;
  /* pour positionner les flèches */
  margin: 40px 0;
  width: 100%;
}

/* ------------------------------------- */
/*  SWIPER (ou tout autre carrousel)     */
/* ------------------------------------- */

/* Taille max du carrousel */
.swiper {
  width: 972px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

/* Flex container des slides */
.swiper-wrapper {
  display: flex;
  width: 100%;
  transition-property: transform;
  box-sizing: content-box;
}

/* Une slide du carrousel */
.swiper-slide {
  flex-shrink: 0;
  width: 325px;
  /* Largeur fixe d'une slide */
  padding: 0 12px;
  /* Espacement horizontal */
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Grabbable cursor pour "faire glisser" */
.grabbable {
  cursor: grab;
}

.grabbable:active {
  cursor: grabbing;
}

/* ------------------------------------- */
/*  Style de chaque avis (review)        */
/* ------------------------------------- */

.trustpilot-review {
  color: #191919;
  font-size: 16px;
  padding: 15px;
  background-color: #ececec;
  border-radius: 5px;
  font-family: Roboto, sans-serif;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.trustpilot-review-title {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 500;
  color: #191919;
}

.trustpilot-review p {
  margin: 12px 0;
  line-height: 20px;
  color: #6f6f87;
  /* Couleur un peu plus grise pour le texte */
}

/* Bas de la review */
.trustpilot-bottom-container {
  margin-top: auto;
  /* Pousse ce bloc en bas */
  color: #6f6f87;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Etoiles d'avis */
.trustpilot-review-img {
  height: 24px;
  width: auto;
}

/* ------------------------------------- */
/*  Boutons de navigation fléchés        */
/* ------------------------------------- */

.swiper-button-prev-trigger,
.swiper-button-next-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 29px;
  min-width: 29px;
  border: 2px solid white;
  border-radius: 50px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  cursor: pointer;
  transition: 200ms;
}

.swiper-button-prev-trigger:hover,
.swiper-button-next-trigger:hover {
  opacity: 0.5;
}

#div_c22e_3 {
  left: -50px;
}

#div_c22e_4 {
  right: -50px;
}

#svg_c22e_1 {
  margin-right: 2px;
}

#svg_c22e_2 {
  margin-left: 2px;
}

/* ------------------------------------- */
/*  Légende générale en bas              */
/* ------------------------------------- */

#span_c22e_1 {
  color: white;
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  display: inline-block;
}

#span_c22e_2,
#span_c22e_3,
#span_c22e_4 {
  color: white;
}

#span_c22e_4 {
  text-decoration: underline;
}

/* Fin du CSS extrait spécifiquement pour la section Trustpilot */

/* SECTION NOS ENGAGEMENTS */
.commitments {
  position: relative;
  padding: 70px 15px 0px;
  background: #131313;
  text-align: center;
  color: #ececec;
}

.commitments::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: url(../website/assets/images/temp.png) center / contain no-repeat;
  filter: grayscale(100%);
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
  content: "";
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
}

.commitments .container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  margin-bottom: 15px;
}

.commitments-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.commitment-item {
  padding: 20px;
  flex: 1;
  min-width: 280px;
  max-width: 300px;
  text-align: center;
}

.icon-box {
  margin-bottom: 20px;
}

.icon-box img {
  width: 60px;
  height: auto;
}

.commitment-item h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.commitment-item p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #ccc;
}

@media (max-width: 768px) {
  .commitments-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .commitment-item {
    max-width: 100%;
  }
}

/* SECTION BLOG */
.blog-section {
  padding: 60px 15px;
  background-color: #131313;
  color: #ececec;
  text-align: center;
}

.blog-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.blog-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.blog-card {
  background-color: #1c1c1c;
  border-radius: 8px;
  overflow: hidden;
  max-width: 300px;
  text-align: left;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: opacity 100ms ease;
}

.blog-card:hover {
  opacity: 0.7;
}

.blog-card-image img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-card-content {
  padding: 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-card-content h4 {
  font-size: 1rem;
  margin-bottom: 10px;
  font-weight: 700;
  transition: opacity 100ms ease;
  line-height: 1.3rem;
}

.blog-card-content p {
  font-size: 0.9rem;
  margin-bottom: 10px;
  line-height: 1.5;
  color: #ccc;
}

.blog-card-footer {
  margin-top: auto;
}

.blog-card-footer hr {
  border: none;
  border-top: 1px solid #444;
  margin: 10px 0;
}

.blog-card-footer span {
  font-size: 0.8rem;
  color: #0fa884;
}

.blog-button {
  margin-top: 40px;
}

.footer-logo-contact .logo {
  margin-bottom: 20px;
}

/* SECTION NEWSLETTER */
.newsletter {
  position: relative;
  width: 100%;
  background: url(../images/) center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ececec;
  background-position: center 30%;
}

/* Version mobile : effet de zoom */
@media screen and (max-width: 768px) {
  .newsletter {
    background-size: 100vh;
  }
}

.newsletter-overlay {
  position: relative;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-content {
  max-width: 600px;
  z-index: 2;
  padding: 40px;
}

.newsletter-content h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.newsletter-content p {
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 12px 15px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
}

.newsletter-form input[type="email"]::placeholder {
  color: #888;
}

.newsletter-form button {
  background: #0fa884;
  color: #ececec;
  border: none;
  padding: 12px 20px;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.1s ease;
}

.newsletter-form button:hover {
  background: #ff2f40;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .newsletter-form {
    flex-direction: column;
    gap: 15px;
  }

  .newsletter-form input[type="email"],
  .newsletter-form button {
    width: 100%;
  }

  .newsletter-content h2 {
    font-size: 1.5rem;
  }

  .newsletter-content p {
    font-size: 0.9rem;
  }
}

/* SECTION IMAGE + TEXTE STYLE */
.image-text-style {
  background-color: #131313;
  color: #ececec;
  margin: 60px 0px 60px 0px;
}

.image-text-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.image-box {
  flex: 1;
  max-width: 50%;
}

.image-box img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.text-box {
  flex: 1;
  max-width: 50%;
  padding: 10px;
}

.text-box p {
  line-height: 1.5;
  margin-bottom: 20px;
}

.text-box-only {
  flex: 1;
  padding: 10px;
}

.text-box-only p {
  line-height: 1.5;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  background: #0fa884;
  color: #ececec;
  padding: 12px 20px;
  border-radius: 4px;
  font-weight: 600 !important;
  text-decoration: none;
  transition: background 0.1s ease;
  font-size: 1rem !important;
}

/* RESPONSIVE STYLE */
@media (max-width: 768px) {
  .image-text-wrapper {
    flex-direction: column;
    gap: 15px;
  }

  .image-box,
  .text-box {
    max-width: 100%;
  }

  .text-box h2 {
    font-size: 1.5rem;
  }
}

/* FOOTER */
.footer {
  background-color: #131313;
  color: #ececec;
  padding: 60px 15px;
  border-top: 1px solid #202020;
}

.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-logo-contact h3 {
  font-size: 1.5rem;
  color: #0fa884;
}

.footer-logo-contact p {
  margin-top: 10px;
}

.footer-logo-contact a {
  text-decoration: none;
}

.contact-links-footer-1 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-links-footer-2 {
  display: flex;
  align-items: center;
  gap: 4px;
}

.contact-links-footer-2 svg {
  margin-top: 1px;
}

.contact-links-footer-1:hover path,
.contact-links-footer-2:hover path {
  fill: #0fa884;
  transition: fill 0.1s ease;
}

.footer-logo-contact,
.footer-links,
.footer-legal,
.footer-about {
  flex: 1 1 200px;
  width: 250px;
  min-width: 250px;
  max-width: 250px;
  margin: 0 auto;
  max-height: fit-content;
  text-align: left;
}

.footer-links h4,
.footer-legal h4,
.footer-about h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.footer-links ul,
.footer-legal ul {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-legal li {
  margin-bottom: 8px;
}

.footer-logo-contact a:hover,
.footer-links a:hover,
.footer-legal a:hover {
  color: #0fa884;
  fill: #0fa884 !important;
}

.footer-about p {
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-bottom {
  text-align: center;
  margin-top: 45px;
  font-size: 0.9rem;
  color: #888;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-wrapper {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .footer-links ul,
  .footer-legal ul {
    text-align: left;
    margin: 0 auto;
  }
}

/* SECTION MAIN-TITLE */
.main-title {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ececec;
}

.main-title-overlay {
  position: relative;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: clamp(5rem, 9vw, 7rem);
  padding-bottom: clamp(3rem, 5vw, 4rem);
}

.main-title-content {
  z-index: 2;
}

.main-title-content h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.main-title-content p {
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

.main-title-form {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.main-title-form input[type="email"] {
  flex: 1;
  padding: 12px 15px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
}

.main-title-form input[type="email"]::placeholder {
  color: #888;
}

.main-title-form button {
  background: #0fa884;
  color: #ececec;
  border: none;
  padding: 12px 20px;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.1s ease;
}

.main-title-form button:hover {
  background: #ff2f40;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .main-title-form {
    flex-direction: column;
    gap: 15px;
  }

  .main-title-form input[type="email"],
  .main-title-form button {
    width: 100%;
  }

  .main-title-content h2 {
    font-size: 1.5rem;
  }

  .main-title-content p {
    font-size: 0.9rem;
  }
}

/* SECTION ÉQUIPE */
.team-section {
  padding: 60px 15px;
  background-color: #131313;
  /* Fond noir */
  color: #ececec;
  /* Texte blanc */
  text-align: center;
}

.team-section .section-title {
  font-size: 2rem;
  margin-bottom: 40px;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.team-member {
  border-radius: 8px;
  overflow: hidden;
  max-width: 300px;
  text-align: center;
  padding: 20px;
}

.team-member img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.team-member h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #0fa884;
}

.team-member .role {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #ccc;
  font-style: italic;
}

.team-member .achievement {
  font-size: 0.9rem;
  color: #777;
  line-height: 1.5;
}

.main-title-h1 {
  font-size: 2rem;
}

/* Contact Info */
.contact-info {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.contact-item {
  text-align: center;
  margin-bottom: 15px;
}

.contact-item i {
  font-size: 2rem;
  color: #cc0000;
  margin-bottom: 5px;
}

.contact-item p {
  font-size: 1rem;
}

/* Contact Form */
.contact-form {
  background-color: #222;
  padding: 20px;
  border-radius: 5px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-group {
  flex: 1;
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #444;
  border-radius: 5px;
  background-color: #333;
  color: #ececec;
}

.form-group textarea {
  height: 150px;
  resize: none;
}

.btn {
  display: inline-block;
  background-color: #cc0000;
  color: #ececec;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #a80000;
}

.icon-contact {
  width: 32px;
  height: 32px;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* Style de base pour les icônes */
.icon-contact {
  filter: grayscale(100%);
  /* Rend l'icône grise au repos */
  transition: filter 0.1s ease;
  /* Animation douce */
}

/* Effet hover pour les icônes */
.contact-item:hover .icon-contact {
  filter: none;
  /* Retire le filtre gris pour afficher l'icône en couleur */
}

/* Effet hover pour le texte */
.contact-item:hover p {
  color: #0fa884;
  /* Texte devient rouge */
  transition: color 0.1s ease;
}

.contact-section {
  padding: 20px 20px 50px 20px;
}

/* SECTION ERREUR 404 */
.error-section {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50vh;
  background-color: #131313;
  /* Fond noir */
  color: #ececec;
  /* Texte blanc */
  text-align: center;
  padding: 20px;
}

.error-content {
  max-width: 600px;
}

.error-content h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: bold;
}

.error-content h5 {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.5;
  color: #ccc;
}

/* SECTION GÉNÉRALE DES PAGES LÉGALES */
.legal-section {
  padding: 50px 20px;
  line-height: 1.6;
}

/* TITRES H2 */
.legal-section h2 {
  font-size: 1.8rem;
  color: #0fa884;
  margin-bottom: 20px;
  border-left: 4px solid #0fa884;
  padding-left: 15px;
  font-weight: bold;
}

/* PARAGRAPHES */
.legal-section p {
  font-size: 1rem;
  margin-bottom: 20px;
}

/* LISTES À PUCES (UL) */
.legal-section ul {
  list-style: none;
  /* Enlève les puces par défaut */
  padding-left: 40px;
  margin-bottom: 20px;
}

.legal-section ul li {
  position: relative;
  /* Position relative pour placer la nouvelle puce */
  padding-left: 20px;
  /* Décalage pour le texte */
}

.legal-section ul li::before {
  content: "•";
  color: #0fa884;
  font-size: 3.2em;
  position: absolute;
  left: -7px;
  top: -32px;
}

.legal-section ul li,
.legal-section ol li {
  font-size: 1rem;
  margin-bottom: 10px;
  margin-left: 20px;
}

/* LIENS */
.legal-section a {
  color: #0fa884;
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-section a:hover {
  text-decoration: underline;
}

/* RÉPONSIVITÉ */
@media (max-width: 768px) {
  .legal-section {
    padding: 30px 10px;
  }

  .legal-section h2 {
    font-size: 1.5rem;
  }

  .legal-section p {
    font-size: 0.95rem;
  }
}

/* SECTION PRODUIT */
.product-section {
  padding: 50px 20px;
  background-color: #131313;
  color: #ececec;
}

.product-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.product-image {
  flex: 1;
  max-width: 50%;
}

.product-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.product-content {
  flex: 1;
  max-width: 50%;
}

.product-title {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #0fa884;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.product-rating img {
  height: 24px;
}

.product-rating span {
  font-size: 0.9rem;
  color: #ccc;
}

/* LISTE À PUCES */
.product-features {
  list-style: none;
  margin-bottom: 20px;
}

.product-features li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
}

/* PRIX ET PROMOTION */
.product-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.new-price {
  font-size: 1.8rem;
  font-weight: bold;
  color: #0fa884;
}

.old-price {
  text-decoration: line-through;
  color: #aaa;
  font-size: 1rem;
}

.discount {
  display: inline-block;
  background-color: #0fa884;
  color: #ececec;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: bold;
}

.payment-type {
  font-size: 0.9rem;
  color: #ccc;
}

/* BOUTON DE COMMANDE */
.product-btn {
  display: block;
  background-color: #0fa884;
  color: #ececec;
  padding: 12px 20px;
  border-radius: 5px;
  text-align: center;
  font-weight: bold;
  transition: background-color 0.2s ease;
}

.product-btn:hover {
  background-color: #b30214;
}

/* PAIEMENT SÉCURISÉ */
.secure-payment {
  margin-top: 10px;
  font-size: 0.9rem;
  text-align: center;
  color: #ccc;
}

@media (max-width: 768px) {
  .product-wrapper {
    flex-direction: column;
  }

  .product-image,
  .product-content {
    max-width: 100%;
  }

  .new-price {
    font-size: 1.5rem;
  }

  .product-title {
    font-size: 1.5rem;
  }

  .product-price {
    text-align: center;
    justify-content: center;
  }
}

/* SECTION PRODUIT */
.product-section {
  padding: 50px 20px;
  background-color: #131313;
  color: #ececec;
}

.product-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.product-image {
  flex: 1;
  max-width: 50%;
  text-align: center;
}

.product-image img {
  width: 100%;
  max-width: 700px;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}

/* TEXTE PRODUIT */
.product-content {
  flex: 1;
  max-width: 50%;
}

.product-title {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #0fa884;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.product-rating img {
  height: 24px;
}

.product-features {
  list-style: none;
  margin-bottom: 20px;
}

.product-features li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.product-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0fa884;
}

/* VARIATION OPTIONS */
.product-variation {
  margin-bottom: 20px;
}

.variation-title {
  margin-bottom: 10px;
  font-weight: bold;
}

.variation-options {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.variation-label {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1e1e1e;
  color: #ccc;
  border: 1px solid #444;
  border-radius: 5px;
  padding: 10px 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: bold;
  position: relative;
}

.variation-label input {
  display: none;
}

.variation-label.selected {
  background: #0fa884;
  color: #ececec;
  border-color: #0fa884;
}

/* PRIX ET PROMOTION */
.product-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.new-price {
  font-size: 1.8rem;
  font-weight: bold;
  color: #0fa884;
}

.old-price {
  text-decoration: line-through;
  color: #aaa;
  font-size: 1rem;
}

.discount {
  display: inline-block;
  background-color: #0fa884;
  color: #ececec;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: bold;
}

.payment-type {
  font-size: 0.9rem;
  color: #ccc;
}

/* BOUTON DE COMMANDE */
.product-btn {
  display: block;
  background-color: #0fa884;
  color: #ececec;
  padding: 12px 20px;
  border-radius: 5px;
  text-align: center;
  font-weight: bold;
  transition: background-color 0.2s ease;
}

.product-btn:hover {
  background-color: #b30214;
}

.secure-payment {
  margin-top: 10px;
  font-size: 0.9rem;
  text-align: center;
  color: #ccc;
  font-style: italic;
}

@media (max-width: 768px) {
  .product-wrapper {
    flex-direction: column;
  }

  .product-image,
  .product-content {
    max-width: 100%;
  }

  .variation-options {
    justify-content: center;
  }

  .product-section {
    padding-bottom: 0px;
  }
}

.secure-payment {
  margin-top: 10px;
  font-size: 0.9rem;
  text-align: center;
  color: #ccc;
  font-style: italic;
}

.paiement-securise-em {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 7px;
  margin-top: 10px;
}

.trigger-arrow-svg {
  height: 16px;
  margin-right: 7px;
}

.locker-path {
  fill: #8b8b8b;
}

.btn.product-btn {
  justify-content: center;
  display: flex;
  align-items: center;
}

.footer-logo-contact a,
.footer-links a,
.footer-legal a {
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.1s ease;
}

.footer-logo-contact .logo {
  font-size: 1.3rem !important;
}

.faq>.container>.section-title {
  font-size: 20px;
  margin-top: 30px;
}

.faq {
  margin-bottom: 30px;
}

.android-ios-a {
  display: flex;
  align-items: center;
  gap: 7px;
  width: 160px;
  justify-content: center;
}

.android-ios-a>svg {
  width: 20px;
  fill: #fff;
}

.android-ios-a-container {
  display: flex;
  gap: 10px;
}

/* Décalage pour les ancres fixes */
.offset-anchor {
  position: absolute;
  top: -60px;
  visibility: hidden;
}

/* Ajustement de la section chat */
.hero {
  scroll-margin-top: 60px;
  /* Nouvelle propriété CSS pour le défilement */
}

.img-image-text-style {
  justify-content: center;
  display: flex;
  margin: auto;
  max-width: 220px;
}

.modeles-gpt-section-title {
  justify-content: center;
  margin: auto;
  display: flex;
  margin-bottom: 20px;
}

.modeles-gpt {
  margin-bottom: 50px;
}

td {
  padding: 5px !important;
}

.chat-footer-a {
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
}

.send-chat-btn {
  width: 36px;
  background: #fff;
  border-radius: 100%;
  height: 36px;
  padding: 9px;
  transition: 100ms;
}

.send-chat-btn:hover {
  cursor: pointer;
  filter: opacity(0.5) !important;
}

.chat-box {
  border: 1px solid #3f3f3f;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  background: #212121;
  width: 90%;
  max-width: 1200px;
}

.chat-header {
  color: white;
  padding: 15px;
  border-radius: 25px 25px 0 0;
  text-align: center;
  background-color: #303030;
}

.chat-content {
  overflow-y: auto;
  height: 70vh;
  padding: 10px 25px 10px 25px;
  display: flex;
  flex-direction: column;
}

.chat-content::-webkit-scrollbar {
  width: 12px;
}

.chat-content::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.chat-content::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
}

.chat-content::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.5);
}

.chat-message {
  padding: 8px;
  border-radius: 5px;
  margin: 5px 0;
  max-width: 80%;
}

.bot {
  align-self: flex-start;
}

.chat-footer {
  padding: 10px;
  display: flex;
  border-radius: 100px;
  background: #303030;
  padding: 8px 8px 8px 20px;
  margin: 10px;
}

.chat-input {
  width: 100%;
  outline: none;
  border: 0px;
  color: #fff;
  font-size: 16px;
  background: transparent;
  padding-right: 10px;
}

.chat-message.user {
  text-align: left;
  color: #ececec;
  background-color: #2f2f2f;
  border-radius: 1.5rem;
  margin: 15px auto;
  margin-right: 0;
  padding: 0.625rem 1.25rem;
  line-height: 28px;
  overflow-wrap: break-word;
  word-wrap: break-word;
  white-space: pre-wrap;
  max-width: 80%;
}

.chat-message.bot {
  text-align: left;
  color: #ececec;
  line-height: 28px;
}

.chat-message.loading {
  color: #ccc;
  font-style: italic;
}

.chat-message.bot strong {
  font-weight: bold;
}

.chat-message.bot em {
  font-style: italic;
}

.contact-links-footer-2 {
  display: none;
}

.modeles-gpt ul {
  list-style: none;
  padding-left: 0;
}

.modeles-gpt ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 15px;
  font-size: 1rem;
  line-height: 1.5;
}

.modeles-gpt ul li::before {
  content: "•";
  color: #0fa884;
  position: absolute;
  left: 0;
  font-size: 2.2em;
  top: -17px;
}

#char-counter {
  white-space: nowrap;
  margin: auto 10px;
}