@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');


:root {
  /* Couleurs globales */
  --global-color-white: #f6f6f6;
  --global-color-black: #1a1a1a;
  --global-color-background: #131414;
  --global-color-gray: #cecece;
  --global-color-dark-gray: #1e1e1e;
  --global-color-light-gray: #555;
  --global-color-dark: rgba(27, 27, 27, 0.95);
  --global-color-blue-dark: rgb(19, 20, 20);
  --global-color-blue: rgb(110, 192, 242);
  --global-color-yellow: #defc04;
  ;


  /* Tailles de police responsives */
  --font-xs: clamp(0.8rem, 1vw, 0.95rem);
  --font-sm: clamp(0.935rem, 1.2vw, 1rem);
  --font-md: clamp(1rem, 1.5vw, 1.05rem);
  --font-lg: clamp(1.25rem, 2vw, 1.5rem);
  --font-xl: clamp(1.75rem, 3vw, 2.25rem);
  --font-xxl: clamp(2.5rem, 5vw, 3.6rem);
  --font-hero: clamp(3rem, 7vw, 5.6rem);

  --global-border-radius: 7px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base */
html,
body {
  margin: 0;
  background-color: var(--global-color-background);
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
  transition: background-color 0.5s ease;
  letter-spacing: -0.05em;
  text-align: center;
  color: var(--global-color-white);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.section-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 1rem;
}

.title {
  font-size: var(--font-xxl);
  font-weight: 700;
  margin-bottom: 1.6rem;
  line-height: 1.2;
  font-family: 'Urbanist';
}

.subtitle {
  font-size: 1.1rem;
  color: var(--global-color-yellow);
  margin-bottom: 20px;
}

.button {
  position: relative;
  padding: 1rem 1.2rem;
  font-size: var(--font-sm);
  font-weight: 500;
  color: var(--global-color-black);
  background-color: var(--global-color-yellow);
  border: solid 1.5px var(--global-color-yellow);
  border-radius: var(--global-border-radius);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  z-index: 1;
}

.button-transparent {
  position: relative;
  padding: 1rem 1.2rem;
  font-size: var(--font-sm);
  font-weight: 500;
  color: var(--global-color-yellow);
  border: solid 1.5px var(--global-color-yellow);
  border-radius: var(--global-border-radius);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  z-index: 1;
}

.highlight {
  color: var(--global-color-blue);
  font-weight: 700;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--global-color-blue-dark);
  color: white;
  border-bottom: solid 1px rgba(255, 255, 255, 0.1);
  padding: .6rem 16rem;
  margin: 0 auto;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: 100%;
}

.nav-center a {
  color: white;
  margin-right: 1.5rem;
  text-decoration: none;
  font-weight: 500;
  font-size: var(--font-xs);
  transition: all 250ms ease-in-out;
}

.nav-center a:hover {
  color: var(--global-color-yellow);
}

.nav-left .logo {
  width: 45px;
}

.nav-right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}

.contact-button {
  position: relative;
  padding: 0.7rem 1rem;
  font-size: var(--font-xs);
  font-weight: 500;
  color: var(--global-color-black);
  background-color: var(--global-color-yellow);
  border-radius: var(--global-border-radius);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  z-index: 1;
}

.linkedin-link {
  position: relative;
  /* nécessaire pour positionner le point par rapport au logo */
  display: inline-block;
}

.linkedin-link::after {
  content: "";
  position: absolute;
  top: 7px;
  /* ajuste la position verticale */
  right: 2px;
  /* ajuste la position horizontale */
  width: 10px;
  height: 10px;
  background: red;
  /* couleur du point */
  border-radius: 50%;
  /* cercle parfait */
  border: 2px solid white;
  /* petit contour blanc pour plus de style */
}


.linkedin-logo {
  width: 55px;
  padding-top: 4px;
}


.fixed-newsletter-btn {
  position: fixed;
  bottom: 40px;
  right: -400px;
  /* position initiale hors écran à droite */
  z-index: 1000;
  transition: right 0.5s ease, transform 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 255, 0, 0.9), 0 0 20px rgba(255, 255, 0, 0.6);
}

.fixed-newsletter-btn.show {
  right: 40px;
  /* position finale visible */
}




/* Main Content */
.main {
  position: relative;
  padding: 11rem 0;
  z-index: 0;
  overflow: hidden;
  background-color: var(--global-color-blue-dark);
  height: 100vh;
}


.floating-dots {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.floating-dots span {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  animation: float ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-50px);
  }
}


.satisfaction {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  /* espace entre le texte et les photos */
  margin-bottom: 2rem;
}


.small-text {
  font-size: var(--font-md);
  color: var(--global-color-white);
  opacity: .8;
}

.client-photos {
  display: flex;
}

.client-photos img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  /* rond */
  object-fit: cover;
  border: 1.5px solid var(--global-color-yellow);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  margin-left: -15px;
}




.main-title {
  font-size: var(--font-hero);
  font-family: 'Urbanist';
  font-weight: 700;
  line-height: 1.05;
  margin: 20px 0;
  color: var(--global-color-white);
  letter-spacing: -0.025em;
}

#dynamic-word {
  display: inline;
  min-width: 120px;
  border-right: 8px solid var(--global-color-blue);
  /* caret */
  padding-right: 2px;
  animation: blink 1.2s step-start infinite;
  color: var(--global-color-blue);
  line-height: 1;
}

@keyframes blink {

  0%,
  50%,
  100% {
    border-color: white;
  }

  25%,
  75% {
    border-color: transparent;
  }
}


.main-subtitle {
  font-size: 1.1rem;
  color: var(--global-color-white);
  opacity: .8;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.button-hero-discover-more i {
  transform: rotateZ(90deg);
}



.section-trusted {
  text-align: center;
  color: var(--global-color-white);
  overflow: hidden;
  margin-top: -6rem;
}

.trusted-text {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: var(--global-color-white);
  opacity: 0.8;
}

.logo-carousel-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-carousel-wrapper::before,
.logo-carousel-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-carousel-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--global-color-background) 0%, transparent 100%);
}

.logo-carousel-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--global-color-background) 0%, transparent 100%);
}

/* Bande de logos animÃ©e */
.logo-carousel {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  white-space: nowrap;
}

/* Track contenant les logos */
.logo-track {
  display: flex;
  gap: 4rem;
  animation: scrollLogos 1000s linear infinite;
}

/* Chaque logo */
.logo-track img {
  height: 38px;
  object-fit: contain;
  opacity: 0.7;
  filter: grayscale(100%);
  /* dÃ©saturation */
  transition: transform 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
}

.logo-track img:hover {
  opacity: 1;
  filter: grayscale(0%);
  /* couleur au hover */
}


/* Animation scroll infini */
@keyframes scrollLogos {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}


.section-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  text-align: left;
  color: var(--global-color-white);
}

.about-content {
  max-width: 600px;
}

.about-text {
  font-size: var(--font-md);
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.about-buttons {
  display: flex;
  gap: 2rem;
}

.photo-stack {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}

.photo {
  width: 100%;
  border-radius: var(--global-border-radius);
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.5s ease, z-index 0.5s ease;
}

/* Superposition et effet serpentin */
.photo-1 {
  transform: rotate(-8deg) translate(50px, -300px);
  z-index: 1;
}

.photo-2 {
  transform: rotate(5deg) translate(50px, -80px);
  z-index: 2;
}


.section-problems {
  color: var(--global-color-white);
  position: relative;
  text-align: center;
}

.problems-intro {
  margin-bottom: 3rem;
}

.problems-center {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

.person-img {
  width: 220px;
  border-radius: 50%;
  z-index: 2;
}

/* Bubbles */
.bubble {
  position: absolute;
  max-width: 300px;
  background-color: var(--global-color-blue);
  color: var(--global-color-dark);
  border-radius: 5rem;
  padding: .6rem 1rem;
  box-shadow: 0 8px 20px rgba(43, 170, 255, 0.2);
  text-align: left;
}

.bubble-content {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.bubble-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Positions différentes pour chaque bulle */
.bubble1 {
  top: 0%;
  left: 5%;
  animation-duration: 5s;
  transform: rotate(2.5deg);
}

.bubble2 {
  top: 10%;
  right: 0%;
  animation-duration: 6s;
  transform: rotate(-1.5deg);
}

.bubble3 {
  bottom: 20%;
  left: 15%;
  animation-duration: 5.5s;
  transform: rotate(4deg);
}

.bubble4 {
  bottom: 10%;
  right: 20%;
  animation-duration: 6.5s;
  transform: rotate(-2deg);
}

.bubble5 {
  top: 30%;
  left: 0%;
  animation-duration: 5.2s;
  transform: rotate(1.5deg);
}

.bubble6 {
  top: 40%;
  right: 10%;
  animation-duration: 6.2s;
  transform: rotate(2deg);
}


.cta-problems {
  margin-top: 3rem;
  text-align: center;
}




/* Container ligne + étapes */
.process-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}


/* Steps */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 150px;
}

.process-step {
  position: sticky;
  top: calc(30vh - 75px);
  /* 50% du viewport moins la moitié de la hauteur approximative de la card */
  background-color: var(--global-color-dark-gray);
  padding: 40px;
  border-radius: var(--global-border-radius);
  border: solid 1px rgba(255, 255, 255, 0.1);
  width: 80%;
  margin: 20px auto;
  font-size: 1.1rem;
  transition: transform 0.3s;
  z-index: 0;
  height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.process-step.active {
  transform: scale(1.05);
}



/* Numéro */
.step-number {
  font-size: 3.6rem;
  font-weight: bold;
  color: var(--global-color-blue);
  margin-bottom: 15px;
}

/* Info */
.step-info h4 {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.step-info p {
  color: var(--global-color-white);
  opacity: .7;
  font-size: 1rem;
  margin-bottom: 20px;
}



.offre-section {
  color: #fff;
}


.offre-niveau {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--global-border-radius);
  padding: 40px;
  margin-bottom: 40px;
  text-align: left;
  overflow: hidden;
}

.offre-niveau.actif {
  background-color: var(--global-color-dark-gray);
  color: var(--global-color-white);
  text-align: left;
  max-width: 100%;
  margin-top: 4rem;
  border: solid 1px var(--global-color-blue);
  position: relative;
}

.offre-niveau .offre-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  /* pour mobile */
  z-index: 2;
  /* reste au-dessus des points */
}

.offre-niveau .offre-texte {
  flex: 1;
  min-width: 300px;
  background-color: var(--global-color-dark-gray);
}

.offre-niveau .offre-image {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.offre-niveau .offre-image img {
  max-width: 400px;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.offre-niveau h3 {
  font-size: 2rem;
  margin: 1rem 0;
}

.offre-niveau .description {
  margin-bottom: 2rem;
}

/* Liste principale */
.offre-niveau .points {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  margin-bottom: 2.2rem;
  margin-left: -2rem;
  text-align: left;
  color: var(--global-color-white);
  opacity: .8;
}

.offre-niveau .points li {
  font-size: 1.05rem;
  margin: 12px 0;
  padding-left: 30px;
  position: relative;
}

.offre-niveau .points i {
  font-size: 1.05rem;
  margin-right: .5rem;
  color: var(--global-color-blue);
}



.offre-niveaux-futurs {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.offre-niveau.futur {
  flex: 1 1 320px;
  opacity: 0.7;
}

.badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 30px;
  margin-bottom: 15px;
}

.badge.prochain {
  background: rgba(255, 255, 255, 0.1);
  color: var(--global-color-yellow);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge {
  background: var(--global-color-yellow);
  color: #000;
}




/* Section Avis */
.avis-section {
  text-align: center;
  overflow: hidden;
}


/* Vidéos */
.avis-videos {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  margin-top: 4rem;
}

.video-wrapper {
  width: 280px;
  height: 500px;
  /* 16:9 ratio */
  overflow: hidden;
  border-radius: var(--global-border-radius);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
}

/* Carrousels avis */
.avis-carousel-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
  overflow: hidden;
}

.avis-track {
  display: flex;
  gap: 1.5rem;
  white-space: nowrap;
}

.avis-card {
  display: inline-block;
  padding: 1rem 1.5rem;
  background: var(--global-color-dark-gray);
  color: var(--global-color-white);
  border-radius: var(--global-border-radius);
  border: solid 1px rgba(255, 255, 255, 0.1);
  font-weight: 500;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: space-between;
}

.avis-card p {
  margin: 0;
  line-height: 1.5;
  font-size: 0.95rem;
  color: var(--global-color-white);
  white-space: normal;
}

.avis-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1rem;
}

.avis-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.avis-name {
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.avis-description {
  font-size: 0.85rem;
  opacity: 0.8;
}


/* Photo et texte */
.avis-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--global-color-yellow);
}


/* Animation infinie */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.track-left {
  animation: scroll-left 20s linear infinite;
}

.track-left:hover {
  animation-play-state: paused;
}

.track-right {
  animation: scroll-right 20s linear infinite;
}

.track-right:hover {
  animation-play-state: paused;
}


.avis-carousel-container::before,
.avis-carousel-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  /* accentué */
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.avis-carousel-container::before {
  left: 0;
  background: linear-gradient(to right,
      var(--global-color-background) 0%,
      var(--global-color-background) 40%,
      transparent 100%);
}

.avis-carousel-container::after {
  right: 0;
  background: linear-gradient(to left,
      var(--global-color-background) 0%,
      var(--global-color-background) 40%,
      transparent 100%);
}





.section-conferences {
  text-align: center;
  position: relative;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
}

.carousel-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.6s ease;
  will-change: transform;
}

.conference-card {
  min-width: 300px;
  flex: 0 0 auto;
  background: var(--global-color-dark);
  border-radius: var(--global-border-radius);
  overflow: hidden;
  color: var(--global-color-white);
  text-decoration: none;
  transition: all 250ms ease-in-out;
  border: solid 1px rgba(255, 255, 255, 0.1);
}

.conference-card:hover{
  color: var(--global-color-yellow);
}

.conf-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: linear-gradient(135deg, var(--global-color-blue), #0066ff);
}

.conf-logo img {
  width: 250px;
  height: 150px;
  object-fit: contain;
  padding: 1rem;
}


.conf-content {
  padding: 1rem 1.2rem;
}

.conf-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.conf-content p {
  font-size: 0.9rem;
  opacity: 0.8;
}


/* Flèches */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--global-color-yellow);
  border: none;
  padding: 0.6rem 0.8rem;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.carousel-arrow.left {
  left: 1rem;
}

.carousel-arrow.right {
  right: 1rem;
}


.carousel-wrapper-conference {
  position: relative;
  overflow: hidden;
  /* masque ce qui dépasse */
}

.carousel-wrapper-conference::before,
.carousel-wrapper-conference::after {
  content: "";
  position: absolute;
  top: 0;
  width: 40px;
  /* largeur du dégradé */
  height: 100%;
  z-index: 5;
  pointer-events: none;
  /* clics passent à travers */
}

.carousel-wrapper-conference::before {
  left: 0;
  background: linear-gradient(to right,
      var(--global-color-background) 0%,
      transparent 100%);
}

.carousel-wrapper-conference::after {
  right: 0;
  background: linear-gradient(to left,
      var(--global-color-background) 0%,
      transparent 100%);
}

.cta-after-conferences {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  margin-top: -2rem;
  padding: 3rem;
  background: var(--global-color-background);
  border-radius: var(--global-border-radius);
  position: relative;
  overflow: hidden;
  border: solid 1px rgba(255, 255, 255, 0.1);
  text-align: left;
}

.cta-left .title {
  margin-bottom: 1rem;
  font-size: 2.6rem;
}

.cta-subtitle {
  margin-bottom: 2.5rem;
  font-size: 1rem;
  color: var(--global-color-white);
  opacity: .6;
  font-weight: 400;
}

.cta-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.cta-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  margin-bottom: 0.8rem;
}

.cta-list i {
  color: var(--global-color-blue);
}


.cta-right img {
  width: 100%;
  max-width: 500px;
  border-radius: var(--global-border-radius);
}



.newsletter-section {
  margin-top: 6rem;
}

.envelope-shape {
  background: var(--global-color-yellow);
  border-radius: var(--global-border-radius);
  padding: 5rem 2rem;
  max-width: 850px;
  margin: 0 auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  position: relative;
  margin-top: 3rem;
  overflow: hidden;
}

/* Icône en arrière-plan */
.envelope-shape::before {
  content: "\f0e0";
  /* unicode Font Awesome pour envelope */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  /* nécessaire pour les icônes solides */
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60rem;
  /* taille énorme en fond */
  color: rgba(0, 0, 0, 0.05);
  /* blanc translucide */
  z-index: 0;
}

/* Le contenu au-dessus */
.envelope-shape>* {
  position: relative;
  z-index: 1;
}


.newsletter-title {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: var(--global-color-dark);
}

.newsletter-subtitle {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: var(--global-color-dark);
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.newsletter-form input {
  padding: 0.9rem 1.2rem;
  border-radius: var(--global-border-radius);
  border: 2px solid var(--global-color-background);
  outline: none;
  font-size: 1rem;
  flex: 1;
  max-width: 350px;
}

.newsletter-form button {
  background: var(--global-color-background);
  color: var(--global-color-white);
  border: none;
  border-radius: var(--global-border-radius);
  padding: 0.9rem 1.6rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 250ms ease-in-out;
}

.newsletter-form button:hover {
  background: var(--global-color-dark);
}

.newsletter-note {
  font-size: 0.9rem;
  color: var(--global-color-dark);
  opacity: 0.8;
}











.faq-section {
  max-width: 800px;
}

.faq-section h2 {
  margin-bottom: 4rem;
}


.faq-item {
  border-bottom: 1px solid #3a3b3b;
  padding: 25px 0;
  transition: all 250ms ease-in-out;
}

.faq-item:hover {
  color: var(--global-color-blue);
}


.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question span {
  font-size: 1.1rem;
  font-weight: 400;
}

.faq-toggle {
  border: none;
  font-size: 1.2rem;
  font-weight: bold;
  transition: transform 0.3s ease;
  cursor: pointer;
  color: var(--global-color-black);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--global-color-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
  font-size: 1rem;
  line-height: 1.5;
  padding-right: 10px;
  text-align: left;
  font-style: italic;
  color: var(--global-color-white);
  opacity: .6;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
  margin-top: 10px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}



.cta-final {
  color: var(--global-color-white);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-color: var(--global-color-dark-gray);
  border-radius: var(--global-border-radius);
  border: solid 1px rgba(255, 255, 255, 0.1);
}

.cta-subtitle {
  margin-bottom: 2rem;
}

.cta-garantie {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  opacity: 0.85;
  font-style: italic;
}



/* FOOTER GLOBAL */
.site-footer {
  background: var(--global-color-black);
  padding: 4rem 2rem 2rem;
  font-size: 0.95rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: 6rem;
  text-align: left;
  color: #ffffff;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* CONTAINER PRINCIPAL */
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

/* BLOC GAUCHE : LOGO + TAGLINE */

.footer-logo {
  width: 50px;
  margin-bottom: 1rem;
}

.footer-tagline {
  line-height: 1.6;
  max-width: 300px;
  color: #ffffff;
  opacity: .6;
  text-align: justify;
}

/* BLOC CENTRE : LIENS */
.footer-links {
  display: flex;
  gap: 3rem;
}


.footer-links a {
  color: #ffffff;
  opacity: .6;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #dadada;
}

/* BLOC DROIT : CONTACT + RÃ‰SEAUX + CTA */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-social a {
  color: var(--global-color-yellow);
  font-size: 2rem;
  transition: opacity 0.2s ease;
}


/* LIENS LEGAUX */
.footer-legal {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.5rem;
  font-size: 0.85rem;
}

.footer-legal a {
  color: #888888;
  text-decoration: none;
}

.footer-legal a:hover {
  text-decoration: underline;
}

/* COPYRIGHT */
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #888;
}