/* === BASE === */

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', 'Inter Placeholder', sans-serif;
    color: rgb(255, 255, 255);
    background-color: #0c0c0c;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}













/* === HERO SECTION === */
.hero {
  position: relative;
  padding: 100px 20px 40px;
  text-align: center;
}

.container {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #FFD700;
  letter-spacing: 1px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-icon {
  font-size: 16px;
}

.hero h1 {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin: 0;
  max-width: 800px;
}

.hero h1 .highlight {
  background: linear-gradient(to right, #FFD700, #FFA500);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
}

.video-wrapper {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

wistia-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}

wistia-player:not(:defined) {
  background: center / contain no-repeat url('https://fast.wistia.com/embed/medias/vosu5wfeme/swatch');
  display: block;
  filter: blur(5px);
}

.cta-block {
  text-align: center;
  width: 100%;
  max-width: 400px;
}

.cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.infos {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

@media (max-width: 1023px) {
  .hero {
    padding: 80px 16px 30px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .video-wrapper {
    max-width: 700px;
  }
}

@media (max-width: 767px) {
  .hero {
    padding: 60px 16px 30px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-badge {
    font-size: 12px;
    padding: 6px 12px;
  }

  .video-wrapper {
    max-width: 100%;
  }

  .video-container {
    border-radius: 12px;
  }
}

@media (max-width: 359px) {
  .hero {
    padding: 40px 12px 20px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero-badge {
    font-size: 11px;
    padding: 4px 10px;
  }
}

/* === VIDEO === */
.video-wrapper {
  max-width: 720px;
  border: 2px solid #FECE16;
  border-radius: 12px;
  overflow: hidden;
  margin: 0 auto 24px;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* === CTA BLOCK === */
.cta-block {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding-bottom: 12px;
}

.cta-block h2 {
  font-size: 30px;
  font-weight: 600;
  margin: 0 0 12px;
  line-height: 1.2;
  background: linear-gradient(to right, #fff, #FECE16);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-block .infos {
  color: #999;
  font-size: 12px;
  margin-top: 3px;
}

/* === BOUTON ANIMÉ LASER ALLER-RETOUR V2=== */

.animated-button {
  --offset: 3px;
  --border-color: #FECE16;
  position: relative;
  display: inline-block;
  padding: 14px 20px;  /* Réduit de 16px 32px */
  font-size: 15px;     /* Réduit de 15px */
  font-weight: 600;
  color: white;
  background-color: #0A0A0A;
  border-radius: 999px;
  text-decoration: none;
  overflow: hidden;
  z-index: 0;
  border: none;
  min-width: 140px;    /* Réduit de 200px */
}

.animated-button .btn-text {
  position: relative;
  z-index: 3;
}

/* Laser animé */
.animated-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  aspect-ratio: 1;
  background: conic-gradient(transparent 310deg, var(--border-color), transparent);
  transform: translate(-50%, -50%) scale(1.4);
  animation: rotateLaser 3s linear infinite;
  z-index: 1;
  opacity: 1;
  transition: opacity 1.2s ease-out;
}

/* Contour interne */
.animated-button::after {
  content: '';
  position: absolute;
  inset: var(--offset);
  background: inherit;
  border-radius: inherit;
  z-index: 2;
  box-shadow: 0 0 0 0 transparent;
  transition: box-shadow 1.2s ease-in-out;
}

/* Hover */
.animated-button:hover::before {
  opacity: 0;
}

.animated-button:hover::after {
  box-shadow: 0 0 0 2px var(--border-color);
}

/* Rotation laser lente */
@keyframes rotateLaser {
  from {
    transform: translate(-50%, -50%) scale(1.4) rotate(0turn);
  }
  to {
    transform: translate(-50%, -50%) scale(1.4) rotate(1turn);
  }
}

@keyframes rotateLaserFast {
  from {
    transform: translate(-50%, -50%) scale(1.4) rotate(0turn);
  }
  to {
    transform: translate(-50%, -50%) scale(1.4) rotate(1turn);
  }
}

.bouton-blanc {
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.12);
}

/* === SECTION 2 === */
.situation-alt {
  padding: 70px 20px 80px;
  text-align: center;
}

.container-situation-alt {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
}

.badge-ref {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #FECE16;
  border: 1px solid #FECE16;
  border-radius: 999px;
  padding: 7px 18px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
  position: relative;
  padding-left: 36px;
  margin-bottom: 10px;
  background-color: #131412;
}

.badge-ref::before {
  content: "✦";
  font-size: 12px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  width: 20px;
  height: 20px;
  background: rgba(254, 206, 22, 0.15);
  color: #FECE16;
  border-radius: 50%;
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  line-height: 20px;
  text-align: center;
}

.situation-alt-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  margin: 5px 0 48px;
}

.situation-alt-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px 48px;
}

.situation-alt-item {
  flex: 1 1 260px;
  max-width: 260px;
  text-align: center;
}

.icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: #FECE16;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.icon-circle img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.situation-alt-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
  color: white;
  line-height: 1.4;
}

.situation-alt-item p {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.2px;
  color: #bcbcbc;
  line-height: 1.2;
  margin: 0;
}

/* === SECTION 3 : AVIS CLIENTS === */
.section-avis {
  padding: 120px 20px 80px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.container-avis {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
}

.avis-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  margin: 5px 0 0px;
}

/* CAROUSEL */

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  margin: 0 auto 20px;
  max-width: 100%;
  padding: 60px 0;
  mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}

.carousel-track {
  display: flex;
  gap: 31px;
  animation: scroll-carousel 45s linear infinite;
  width: max-content;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

@keyframes scroll-carousel {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 15.5px)); }
}

.carousel-track img {
  width: 300px;
  height: auto;
  flex-shrink: 0;
  border-radius: 12px;
  object-fit: cover;
}

/* Suppression des anciens fades qui ne sont plus nécessaires */
.carousel-fade-left,
.carousel-fade-right {
  display: none;
}

.carousel-item {
  flex-shrink: 0;
  position: relative;
  transition: transform 0.4s ease;
  z-index: 1; /* TEST */
  overflow: visible; /* TEST*/

  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0); /* hack GPU rendering */
}


.carousel-item:hover {
  transform: scale(1.15);
  z-index: 10;
}

.carousel-item img {
  width: 300px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  pointer-events: none; /* Important pour ne pas bloquer le hover sur le .carousel-item */
}


/* === SECTION 4 : RÉSULTATS CONCRETS OPTIMISÉE === */
.section-resultats {
  padding: 85px 0;
  position: relative;
  z-index: 1;
}

/* Conteneur */
.container-resultats {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;  /* Padding symétrique */
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  .container-resultats {
    padding: 0 16px;
    width: 100%;
    box-sizing: border-box;
  }

  .resultats-row-top,
  .resultats-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
  }

  .result-card,
  .result-card-large {
    max-width: 340px;
    width: calc(100% - 32px);  /* Soustrait le padding total */
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }
}

@media (max-width: 359px) {
  .container-resultats {
    padding: 0 12px;
  }

  .result-card,
  .result-card-large {
    width: calc(100% - 24px);  /* Ajuste pour le padding plus petit */
    padding: 16px 12px;
    max-width: 100%;
  }
}

/* Badge pseudo */
.badge-ref.small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #FECE16;
  border: 1px solid #FECE16;
  border-radius: 999px;
  padding: 4px 16px 4px 30px;
  background-color: #131412;
  position: relative;
  line-height: 1;
  margin-bottom: 6px;
}

.badge-ref.small::before {
  content: "✦";
  font-size: 10px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  width: 14px;
  height: 14px;
  background: rgba(254, 206, 22, 0.15);
  color: #FECE16;
  border-radius: 50%;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  line-height: 14px;
  text-align: center;
}

.resultats-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom:25px;
  margin-top: 5px;
  line-height: 1.3;
}

.resultats-title .highlight {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.5px;
  /* ✅ dégradé animé */
  background: linear-gradient(120deg, #FECE16, #f5b301, #ff9800, #FECE16);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientText 6s ease-in-out infinite;
}


/* Ligne 1 : Morgan + Chloé */
.resultats-row-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 20px;
  align-items: stretch;
}

/* Morgan */
.result-card-large {
  background-color: #1C1C1C;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 24px;
  gap: 28px;
  min-height: 280px;
  grid-column: span 2;
}

.result-card-large .large-img {
  height: 100%;
  max-height: 280px;
  width: auto;
  object-fit: contain;
  border-radius: 10px;
  flex-shrink: 0;
  align-self: flex-end;
}

.result-card-large .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  text-align: left;
  flex: 1;
}

.result-card-large .badge-ref.small {
  margin-bottom: 16px;
  padding-left: 30px;
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
}

.result-card-large h3 {
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin: 0 0 14px;
  line-height: 1.3;
}

.result-card-large .desc {
  font-size: 12.5px;
  color: #dddddd;
  line-height: 1.4;
  font-weight: 400;
  margin: 0;
}

/* Cartes classiques */
.resultats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.result-card {
  background-color: #1C1C1C;
  border-radius: 14px;
  padding: 16px 14px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* centrage vertical */
  text-align: center;
  min-height: 250px;
}

.result-card img {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 6px;
}

.result-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin: 0 0 6px;
  line-height: 1.3;
}

.result-card .desc {
  font-size: 12.5px;
  color: #dddddd;
  line-height: 1.45;
  font-weight: 400;
  margin: 0;
}

/* Espacement spécifique pour CTA section résultats */
.cta-resultats {
  margin-top: 30px;
}

.section-resultats .badge-ref.badge-haut-section4 {
  margin-bottom: 0px !important;
}



/* === SECTION 5 : MODULES YOK ACADEMY (clean full rebuild) === */
.section-yok-modules {
  padding: 70px 20px;
}

.container-yok {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 12px;
  box-sizing: border-box;
}

.yok-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 60px;
  text-align: center;
}

.yok-title .highlight {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.5px;
  background: linear-gradient(120deg, #FECE16, #f5b301, #ff9800, #FECE16);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientText 6s ease-in-out infinite;
}

.yok-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  max-width: 100%;
  box-sizing: border-box;
}

/* === Colonne texte gauche === */
.yok-left {
  flex: 1 1 460px;
  max-width: 460px;
  text-align: left;
}

.yok-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #FECE16;
  border: 1px solid #FECE16;
  border-radius: 999px;
  padding: 7px 18px 7px 40px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
  position: relative;
  margin-bottom: 16px;
  background-color: #131412;
}

.yok-badge::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: rgba(254, 206, 22, 0.15);
  border-radius: 50%;
}

.yok-badge .badge-icon {
  font-size: 12px;
  font-weight: 600;
  color: #FECE16;
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Inter', sans-serif;
  z-index: 2;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
}

.yok-subtitle {
  font-size: 35px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  line-height: 1.25;
  letter-spacing: -0.5px;
}

.yok-subtitle .highlight {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.5px;
  background: linear-gradient(120deg, #FECE16, #f5b301, #ff9800, #FECE16);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientText 6s ease-in-out infinite;
}

.yok-description {
  font-size: 17px;
  color: #d0d0d0;
  line-height: 1.2;
  padding-right: 100px;
}

/* === Colonne modules à droite === */
.yok-right {
  flex: 1 1 360px; /* Réduit de 420px à 380px */
  position: relative;
  aspect-ratio: 1/1.15; /* Légèrement réduit de 1.2 à 1.15 */
}

.module-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.module-card {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 22px;
  border-radius: 18px;
  background-color: #191919;
  box-shadow: 0 0 12px rgba(254, 206, 22, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.6s ease-in-out;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-sizing: border-box;
  overflow: hidden;
  left: 50%;
  transform: translateX(-50%);
}

.module-card.active {
  opacity: 1;
  pointer-events: auto;
}

/* === Header : logo + bouton === */
.module-header {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 8px 12px;
  justify-content: space-between;
  background-color: #1C1C1C;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.01);
  border-radius: 10px;
  box-sizing: border-box;
}

.module-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.module-icon {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.module-logo {
  font-size: 16px;
  font-weight: 600;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.module-btn {
  background-color: #282828;
  color: white;
  font-weight: 600;
  font-size: 16px;
  border-radius: 8px;
  padding: 8px 18px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  flex-shrink: 0;
  margin-left: 12px;
}

/* === Jauges === */
.module-tabs {
  display: flex;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin: 8px 0;
}

.module-tab {
  height: 13px;
  flex: 1;
  background-color: #1c1c1c;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.01);
}

.module-fill {
  width: 100%;
  height: 100%;
  padding: 0 4px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.module-fill span {
  display: block;
  height: 50%;
  background-color: #686A6E;
  width: 0%;
  border-radius: 999px;
  transition: width 6s linear;
}

/* === Contenu module === */
.module-body {
  background-color: #1C1C1C;
  border-radius: 14px;
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.01);
  min-height: 0;
  width: 100%;
  box-sizing: border-box;
}

.module-title {
  font-size: 15px;
  font-weight: 600;
  color: white;
  margin-bottom: 5px;
  text-align: center;
  max-width: 90%;
}

.module-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 90%;
  max-width: 300px;
}

.module-list li {
  font-size: 13px;
  color: #ddd;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
  list-style-type: none;
}

@media (max-width: 767px) {
  .module-title {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .module-list {
    gap: 8px;
  }

  .module-list li {
    font-size: 12.5px;
  }
}

@media (max-width: 1023px) {
  .yok-right {
    max-width: 360px;
  }
}

@media (max-width: 767px) {
  .yok-right {
    max-width: 340px;
  }

  .module-card {
    padding: 16px;
  }

  .module-body {
    padding: 16px;
  }

  .module-title {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .module-list {
    gap: 8px;
  }

  .module-list li {
    font-size: 12.5px;
  }
}

/* Suppression du pseudo-élément qui ajoutait un second ✓ */
.module-list li::before {
  content: none;
}

@media (max-width: 767px) {
  .module-header {
    padding: 6px 10px;
  }
  
  .module-icon {
    width: 32px;
    height: 32px;
  }
  
  .module-logo {
    font-size: 14px;
  }
  
  .module-btn {
    padding: 6px 14px;
    font-size: 14px;
    margin-left: 8px;
  }
}

@media (max-width: 359px) {
  .module-header {
    padding: 8px;
    flex-direction: column;
    gap: 8px;
  }
  
  .module-brand {
    justify-content: center;
    width: 100%;
  }
  
  .module-btn {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
}

/* === RESPONSIVE === */
@media (max-width: 1023px) {
  .yok-left {
    padding: 0 16px;
    text-align: center;
    align-items: center;
  }

  .yok-description {
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
  }

  .yok-right {
    margin: 0 auto;
    max-width: 480px;
    aspect-ratio: 1/1.1;
  }
}

@media (max-width: 767px) {
  .yok-left {
    padding: 0 12px;
  }

  .yok-right {
    max-width: 400px;
    aspect-ratio: 1/1;
    margin: 0 auto;
  }

  .module-card {
    padding: 16px;
    gap: 12px;
  }

  .module-header {
    padding: 6px 10px; /* Réduit le padding sur mobile */
  }

  .module-icon {
    width: 32px;
    height: 32px;
  }

  .module-logo {
    font-size: 14px;
  }

  .module-btn {
    padding: 6px 14px;
    font-size: 14px;
    margin-left: 8px; /* Réduit la marge sur mobile */
  }

  .module-body {
    padding: 16px;
  }

  .module-title {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .module-list {
    gap: 6px;
  }

  .module-list li {
    font-size: 12.5px;
  }
}

@media (max-width: 359px) {
  .yok-right {
    max-width: 320px;
  }

  .module-card {
    padding: 12px;
    gap: 10px;
  }

  .module-header {
    padding: 8px;
    flex-direction: column;
    gap: 8px;
  }

  .module-brand {
    justify-content: center;
  }

  .module-btn {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }

  .module-body {
    padding: 12px;
  }

  .module-list li {
    font-size: 12px;
  }
}

/* === SECTION 6 DISCORD === */
.section-vocal {
  padding: 70px 0;
}

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

.voc-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
  justify-content: space-between;
}

.voc-left, .voc-right {
  flex: 1 1 420px;
  min-width: 0;
}

.voc-description {
  font-size: 17px;
  color: #d0d0d0;
  line-height: 1.2;
  padding-left: 100px;
}

.voc-right {
  text-align: right;
}

.discord-box {
  background: #1A1C1D;
  border-radius: 16px;
  max-width: 580px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.discord-header {
  background: #161819;
  padding: 10px 16px;
  border-radius: 12px 12px 0 0;
  position: relative;
  text-align: center;
  font-size: 13px;
  line-height: 1.2;
}

.discord-title {
  color: #A3A7AD;
  font-size: 13px;
  font-weight: 500;
}

.discord-close {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  width: 16px;           /* ← réduit le cercle */
  height: 16px;
  color: white;
  font-size: 11px;       /* ← réduit la croix */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
}


.discord-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 24px 20px;
}

.discord-avatars {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  margin-bottom: auto;
  transition: all 0.3s ease;
  gap: 0;
}

.avatar {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.35);
  transition: all 0.3s ease;
}

.avatar + .avatar {
  margin-left: -20px;
}

.avatar-center {
  z-index: 1;
}

.avatar-top {
  z-index: 2;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Badge audio */
.wave-badge {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(20%, -20%);
  width: 28px;
  height: 28px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.wave {
  display: flex;
  align-items: flex-end;
  gap: 1.5px;
}

.wave span {
  width: 2px;
  height: 5px;
  background: black;
  border-radius: 1px;
  animation: wave 1.2s infinite ease-in-out;
}

.wave span:nth-child(2) { animation-delay: 0.2s; }
.wave span:nth-child(3) { animation-delay: 0.4s; }
.wave span:nth-child(4) { animation-delay: 0.6s; }
.wave span:nth-child(5) { animation-delay: 0.8s; }

@keyframes wave {
  0%, 100% { height: 5px; }
  50% { height: 16px; }
}

.avatar-count {
  font-size: 30px;
  color: #999;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 12px;
  transform: translateY(1px);
  transition: all 0.3s ease;
}

.avatar-count .caret {
  font-size: 25px;
  line-height: 1;
  transform: translateY(1px);
}

/* Hover logique */
.hidden-hover,
.only-hover {
  display: none;
}
.only-default {
  display: block;
}

.discord-avatars:hover .hidden-hover,
.discord-avatars:hover .only-hover {
  display: flex;
}
.discord-avatars:hover .only-default,
.discord-avatars:hover .avatar-count {
  display: none;
}

.discord-avatars:hover {
  gap: 10px;
  justify-content: center;
}
.discord-avatars:hover .avatar {
  margin-left: 0 !important;
  z-index: initial;
}

.discord-btn {
  display: block;
  background: white;
  color: black;
  font-weight: 600;
  font-size: 13px;
  text-align: center;
  padding: 10px 20px;
  border-radius: 8px;
  margin: 0 auto 8px;  /* ← centre horizontalement */
  text-decoration: none;
  transition: 0.2s;
  width: auto;         /* ← permet le centrage naturel */
  min-width: 180px;    /* ← optionnel pour cohérence */
}

.discord-btn:hover {
  opacity: 0.9;
}
.discord-note {
  font-size: 12px;
  text-align: center;
  color: #888;
  margin: 0;
}



/* === SECTION 7 : EXPERTS DISCORD === */
.section-experts {
  padding: 70px 0;
}

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

.experts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: flex-start;
  justify-content: space-between;
}

.experts-left {
  flex: 1 1 420px;
  min-width: 0;
}

.experts-description {
  font-size: 17px;
  color: #d0d0d0;
  line-height: 1.2;
  padding-right: 100px;
}

.experts-right {
  flex: 1 1 420px;
  display: flex;
  justify-content: center;
}

.experts-module {
  background: #1B1B1B;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

/* Cartes experts */
.expert-card {
  background-color: #131313;
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 280px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.01);
}


.expert-left {
  align-self: flex-start;
}

.expert-right {
  align-self: flex-end;
}

.expert-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(254, 206, 22, 0.4);
}

.expert-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.expert-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.expert-status {
  font-size: 11px;
  color: #52ff52;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.status-dot {
  width: 7px;
  height: 7px;
  background-color: #52ff52;
  border-radius: 50%;
  display: inline-block;
}

.expert-name {
  font-size: 14px;
  font-weight: 600;
  color: white;
  margin: 0;
}

.expert-role {
  font-size: 12.5px;
  color: #aaa;
  margin: 0;
}

.expert-card {
  transition: transform 0.25s ease;
}

.expert-card:hover {
  transform: scale(1.1);
  z-index: 2;
}

.expert-wrapper {
  transition: transform 0.3s ease;
}

.expert-wrapper:hover {
  transform: scale(1.05);
}

/* section 8 slider 2*/

.section-intervenants {
  padding: 70px 0;
  overflow: hidden;
}

.container-intervenants {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.intervenants-title {
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin: 5px 0 12px;
  line-height: 1;
}

.intervenants-title .highlight {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.5px;
  /* ✅ dégradé animé */
  background: linear-gradient(120deg, #FECE16, #f5b301, #ff9800, #FECE16);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientText 6s ease-in-out infinite;
}

.intervenants-sub {
  font-size: 18px;
  color: #bcbcbc;
  margin-bottom: 40px;
  line-height: 1;
  max-width: 720px;         /* ← limite la largeur */
  margin-left: auto;        /* ← centre horizontalement */
  margin-right: auto;
}

.intervenants-carousel-wrapper {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
  padding: 20px 0;
}

.intervenants-track {
  display: flex;
  gap: 28px;
  animation: scroll-intervenants 50s linear infinite;
  width: max-content;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

@keyframes scroll-intervenants {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 14px)); }
}

.intervenant-card {
  position: relative;
  width: 220px;
  height: 220px;
  border-radius: 18px;
  overflow: hidden;
  flex-shrink: 0;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.intervenant-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.intervenant-card:hover img {
  transform: scale(1.08);
}

.intervenant-label {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 12px 10px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 60%, transparent);
  color: white;
  text-align: left;
}

.intervenant-name {
  font-size: 16px;
  font-weight: 600;
}

.intervenant-role {
  font-size: 13px;
  color: #ccc;
}

.intervenants-fade-left,
.intervenants-fade-right {
  display: none;
}

/* === SECTION 9 : COMMUNAUTÉ === */
.section-communaute {
  padding: 70px 0;
  text-align: center;
}

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

.communaute-title {
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin: 5px 0 40px;
  line-height: 1.2;
}

.communaute-title .highlight {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;

  /* ✅ dégradé animé */
  background: linear-gradient(120deg, #FECE16, #f5b301, #ff9800, #FECE16);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientText 6s ease-in-out infinite;
  letter-spacing: -0.5px;
}

.communaute-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: flex-start;
}

.comm-card {
  background: #1A1C1D;
  border-radius: 20px;
  padding: 30px 20px;
  width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.015);
}

.comm-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 16px;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

.comm-title {
  font-size: 22px;
  font-weight: 600;
  color: white;
  margin-bottom: 10px;
}

.comm-desc {
  font-size: 16px;
  color: #B4B4B4;
  line-height: 1.4;
}



/* === SECTION 10 : CAMPS PARTENAIRES CARROUSEL 3D === */
.section-camps-carousel {
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.container-carousel {
  width: 100%;
  max-width: 900px;
  height: 500px;
  margin: 0 auto;
  transform-style: preserve-3d;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.camps-title {
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin: 5px 0 40px;
  line-height: 1;
}

.camps-title .highlight {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.5px;
  /* ✅ dégradé animé */
  background: linear-gradient(120deg, #FECE16, #f5b301, #ff9800, #FECE16);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientText 6s ease-in-out infinite;
}

.camps-desc {
  font-size: 16px;
  color: #bcbcbc;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1;
}

input[type=radio] {
  display: none;
}

.cards {
  position: relative;
  width: 100%;
  height: 100%;
  margin-bottom: 20px;
}

.card {
  position: absolute;
  width: 60%;
  height: 100%;
  left: 0;
  right: 0;
  margin: auto;
  transition: transform 0.4s ease;
  cursor: pointer;
  background: transparent;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

/* 3D Position + Effet flou sur les côtés */
#item-1:checked ~ .cards #space-3,
#item-2:checked ~ .cards #space-1,
#item-3:checked ~ .cards #space-2 {
  transform: translateX(-40%) scale(0.8);
  opacity: 0.3;
  z-index: 0;
  filter: brightness(0.6) blur(2px);
}

#item-1:checked ~ .cards #space-2,
#item-2:checked ~ .cards #space-3,
#item-3:checked ~ .cards #space-1 {
  transform: translateX(40%) scale(0.8);
  opacity: 0.3;
  z-index: 0;
  filter: brightness(0.6) blur(2px);
}

#item-1:checked ~ .cards #space-1,
#item-2:checked ~ .cards #space-2,
#item-3:checked ~ .cards #space-3 {
  transform: translateX(0) scale(1);
  opacity: 1;
  z-index: 1;
  filter: none;
}


/* === SECTION 11 : OUTILS EXCLUSIFS === */
.section-outils {
  padding: 70px 0;
}

.container-outils {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.outils-title {
  font-size: 42px;
  font-weight: 700;
  margin: 5px 0 30px;
  line-height: 1.3;
}

.outils-title .highlight {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.5px;
  /* ✅ dégradé animé */
  background: linear-gradient(120deg, #FECE16, #f5b301, #ff9800, #FECE16);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientText 6s ease-in-out infinite;
}

.outils-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Cartes outils */
.outil-card {
  background: #00000077;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  text-align: left;
  flex-wrap: nowrap;
}

.outil-card.reverse {
  flex-direction: row-reverse;
}

.outil-text {
  flex: 1 1 33%;
  min-width: 280px;
}

.outil-img {
  flex: 1 1 66%;
  text-align: center;
}

.outil-img img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 0 24px rgba(254, 206, 22, 0.05);
}

.outil-title {
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 5px;
  margin-top: 0px;
}

.outil-subtitle {
  font-size: 15px;
  font-weight: 800;
  color: #E0E0E0;
  margin-bottom: 5px;
  margin-top: 0px;
  letter-spacing: -0.5px;
}

.outil-list {
  list-style: none;
  padding-left: 0;
  color: #B5B5B5;
  font-size: 15px;
}

.outil-list li {
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.icon-check {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  background: url('data:image/svg+xml;utf8,<svg fill="%23FECE16" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M20.285 6.709a1 1 0 00-1.414-1.418l-9.192 9.192-4.243-4.243a1 1 0 00-1.415 1.414l4.95 4.95a1 1 0 001.414 0l9.9-9.895z"/></svg>') no-repeat center;
  background-size: contain;
}

/* Bouton */
.cta-outils {
  margin-top: 30px;
}


/* === SECTION 12 : TÉMOIGNAGES CLIENTS === */
.clients-section {
  padding: 70px 0;
  overflow: hidden;
  position: relative;
}

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

.clients-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  color: white;
  margin-bottom: 60px;
}

.clients-title .clients-highlight {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.5px;
  /* ✅ dégradé animé */
  background: linear-gradient(120deg, #FECE16, #f5b301, #ff9800, #FECE16);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientText 6s ease-in-out infinite;
}

.clients-row {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
  padding: 6px 0;
  margin-bottom: 4px;
}

.clients-track {
  display: flex;
  gap: 24px;
  animation: clients-scroll-left 90s linear infinite;
  width: max-content;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}


.clients-ligne-2 .clients-track {
  animation: clients-scroll-right 90s linear infinite;
}

@keyframes clients-scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 12px)); }
}

@keyframes clients-scroll-right {
  0% { transform: translateX(calc(-50% - 12px)); }
  100% { transform: translateX(0); }
}

.clients-card {
  flex-shrink: 0;
  transform: translateZ(0);
  backface-visibility: hidden;
  background: #00000077;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  padding: 18px 20px;
  width: 360px;
  min-height: 140px;
  color: white;
  font-size: 10.5px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.clients-card p {
  margin: 0 0 14px;
  line-height: 1.4;
}

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

.clients-footer img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;

  image-rendering: auto;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.clients-identite {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.2;
}

.clients-nom {
  font-weight: 700;
  font-size: 14px;
  color: white;
}




/* === SECTION 13 : TARIFICATION === */
.pricing-section {
  padding: 70px 20px;
  display: flex;
  justify-content: center;
}

.pricing-container {    position: relative;    z-index: 1;    max-width: 1200px;    margin: 0 auto;    padding: 20px;    min-height: auto;    display: flex;    flex-direction: column;    justify-content: center;}

.pricing-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center; /* Centre verticalement les cartes */
    flex-wrap: wrap;
    perspective: 1000px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    max-width: 320px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.card-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.features {
    width: 100%;
    list-style: none;
    margin: 0 0 30px 0;
    padding: 0;
    text-align: left;
}

/* Nouveau conteneur pour le bouton */
.btn-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: auto;
}

.btn {
    width: 260px; /* Largeur fixe */
    padding: 15px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    display: block;
}

.btn-free {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn-premium {
    background: #FECE16;
    color: #000;
}

.btn svg {
    display: none;
}

.pricing-card .card-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-card .features {
    margin-bottom: 30px;
}

.feature-item,
.feature-disabled {
    padding: 10px 0;
    display: flex;
    align-items: center;
    font-size: 16px;
    gap: 10px;
}

.feature-item::before {
    content: "✓";
    color: #FECE16;
    font-weight: bold;
}

.feature-disabled {
    color: rgba(255, 255, 255, 0.4);
}

.feature-disabled::before {
    content: "×";
    color: rgba(255, 255, 255, 0.4);
    font-weight: bold;
}

.pricing-card.free {
    height: fit-content;
    align-self: center; /* Centre la carte gratuite par rapport à sa carte sœur */
}

.pricing-card.premium {
    background: linear-gradient(135deg, rgba(254, 206, 22, 0.1), rgba(245, 179, 1, 0.1));
    border: 1px solid rgba(254, 206, 22, 0.2);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #FECE16, #f5b301);
    color: #000;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
}

.card-header h2 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 15px;
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
  margin-bottom: 5px;
}

.price span {
    font-size: 16px;
    opacity: 0.7;
}

.no-engagement {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

.btn-free {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn-premium {
    background: #FECE16;
    color: #000;
}

.btn svg {
    display: none; /* On cache l'icône de flèche pour correspondre au design */
}

.pricing-card .card-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-card .features {
    margin-bottom: 30px;
}

.feature-item,
.feature-disabled {
    padding: 10px 0;
    display: flex;
    align-items: center;
    font-size: 16px;
    gap: 10px;
}

.feature-item::before {
    content: "✓";
    color: #FECE16;
    font-weight: bold;
}

.feature-disabled {
    color: rgba(255, 255, 255, 0.4);
}

.feature-disabled::before {
    content: "×";
    color: rgba(255, 255, 255, 0.4);
    font-weight: bold;
}

.btn {
    width: 260px;
    padding: 15px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-free {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn-free:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-premium {
    background: linear-gradient(135deg, #FECE16, #f5b301);
    color: #000;
}

.btn-premium:hover {
    transform: translateY(-2px) scale(1.02);
    background: linear-gradient(135deg, #ffdb47, #ffc234);
}

.btn svg {
    width: 20px;
    height: 20px;
    display: inline-block;
}

.btn-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: auto;
}

.pricing-card a.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

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

.pricing-card a.btn span {
    color: inherit;
}

.pricing-card a.btn-premium {
    color: #000;
}

.pricing-card a.btn-free {
    color: #fff;
}

.pricing-list {
  color: #000000;
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-listfree {
  color: #ffffff;
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-list li::before {
  content: "✔️";
  color: #FECE16;
  display: inline-block;
  margin-right: 10px;
}

.pricing-listfree li::before {
  content: "✔️";
  color: #ffffff;
  display: inline-block;
  margin-right: 10px;
}

.pricing-button {
  border: none;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  cursor: pointer;
}

.pricing-button.outline {
  background: white;
  color: black;
  border: 2px solid black;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 10px;
  cursor: pointer;
  letter-spacing: -0.3px;
  font-size: 14px;
  min-width: 240px;
  text-align: center;
  transition: background 1s ease, color 1s ease, border-color 1s ease;
}

.pricing-button.outline:hover {
  background: black;
  color: #FECE16;
  border-color: #FECE16;
}

.pricing-button.animated-gradient {
  position: relative;
  padding: 14px 24px;
  border-radius: 10px;
  border: 2px solid transparent; /* on va le faker avec before */
  background: linear-gradient(120deg, #FECE16, #f5b301, #ff9800, #FECE16);
  background-size: 300% 300%;
  animation: gradientBorder 8s ease-in-out infinite;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: -0.3px;
  min-width: 240px;
  text-align: center;
  overflow: hidden;
  transition: color 0.6s ease;
  z-index: 1;
}

.pricing-button-content {
  position: relative;
  z-index: 3;
  font-weight: 700;
  color: black;
}

/* ✅ contour simulé en couche externe */
.pricing-button.animated-gradient::before {
  content: "";
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  border-radius: 12px;
  background: linear-gradient(120deg, #FECE16, #f5b301, #ff9800, #FECE16);
  background-size: 300% 300%;
  animation: gradientBorder 8s ease-in-out infinite;
  z-index: 0;
}

/* ✅ voile blanc fondu */
.pricing-button.animated-gradient::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: white;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 2;
}

/* ✅ hover : fond blanc progressif, texte noir */
.pricing-button.animated-gradient:hover::after {
  opacity: 1;
}

.pricing-button.animated-gradient:hover .pricing-button-content {
  color: black;
}

/* ✅ anim */
@keyframes gradientBorder {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


/* === SECTION 14 : FAQ === */
.faq-section {
  padding: 70px 20px;
  color: white;
  text-align: center;
}

.faq-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 50px;
}

.faq-wrapper {
  max-width: 880px;
  margin: 0 auto 60px;
  text-align: left;
}

.faq-container {
  background-color: #131313;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  font-size: 24px;
  position: absolute;
  right: 20px;
  transition: 0.3s ease;
}

.faq-question.active::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  padding: 0 20px;
  font-size: 14px;
  line-height: 1.6;
  color: #ddd;
}

.faq-question.active + .faq-answer {
  padding-bottom: 20px;
}


/* === RESPONSIVE === */

/* === max-width: 1023px === */
@media (max-width: 1023px) {
  
  /* === section 1 === */
  .hero {
    padding: 80px 16px 30px;
  }


  .hero h1 {
    font-size: 42px;
  }

  .cta-block h2 {
    font-size: 26px;
  }

  .animated-button {
    padding: 12px 24px;
    font-size: 15px;
  }

  /* === section 2 === */
  .situation-alt {
    padding: 60px 16px 70px;
  }

  .situation-alt-title {
    font-size: 34px;
    margin-bottom: 40px;
  }

  .situation-alt-grid {
    gap: 48px 36px;
  }

  .situation-alt-item h3 {
    font-size: 18px;
  }

  .situation-alt-item p {
    font-size: 14px;
  }

  /* === section 3 === */
  .section-avis {
    padding: 60px 16px 70px;
  }

  .avis-title {
    font-size: 34px;
  }

  .carousel-track {
    gap: 24px;
  }

  .carousel-item img {
    width: 240px;
  }

  .carousel-wrapper {
    padding: 50px 0;
  }

  /* === section 4 === */

  .result-card-large {
    gap: 0px!important;
  }

  .resultats-row-top,
  .resultats-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .result-card,
  .result-card-large {
    width: 100%;
    max-width: 360px;
    background-color: #1C1C1C;
    border-radius: 14px;
    margin: 0 auto;
  }

  .result-card-large {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 16px;
  }

  .result-card-large .large-img {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 6px;
    align-self: center;
  }

  .result-card-large .badge-ref.small {
    margin-bottom: 6px;
  }


  .result-card-large .content {
    align-items: center;
    text-align: center;
  }

  .result-card-large h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .result-card-large .desc {
    font-size: 12.5px;
    line-height: 1.4;
  }

  /* === section 5 === */
  .yok-left {
    padding: 0 16px;
    text-align: center;
    align-items: center;
  }

  .yok-description {
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
  }

  .yok-right {
    margin: 0 auto;
    max-width: 480px;
    aspect-ratio: 1/1.1;
  }

  .module-slider {
    margin: 0 auto;
  }

  .yok-grid {
    justify-content: center;
    gap: 40px;
  }

  .yok-right {
    margin: 0;
    padding: 0;
  }

  .voc-left {
    order: 2;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .discord-box {    max-width: 520px;    width: 100%;    margin: 0 auto;  }

  .voc-right {
    order: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .voc-description {
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
  }

  .yok-badge {
    margin: 0 auto 16px;
  }

  .experts-left {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .experts-description {
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
  }

  .experts-right {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .experts-module {
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
  }

  /* Section 9 - Communauté */
  .communaute-title {
    font-size: 42px;
    margin-bottom: 35px;
  }

  .comm-card {
    padding: 25px 16px;
    width: 300px;
  }

  .comm-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 14px;
  }

  /* Section 10 - Camps partenaires */
  .camps-title {
    font-size: 42px;
    margin-bottom: 16px;
  }

  .camps-desc {
    font-size: 16px;
    max-width: 580px;
    margin: 0 auto;
  }

  .container-carousel {
    height: 420px;
  }

  /* Section 11 - Outils */
  .outils-title {
    font-size: 38px;
    margin-bottom: 25px;
  }

  .outil-card {
    padding: 30px;
    gap: 30px;
  }

  .outil-text {
    min-width: 240px;
  }

  .outil-img img {
    max-width: 450px;
  }

  /* Section 12 - Témoignages */
  .clients-title {
    font-size: 38px;
    margin-bottom: 40px;
    padding: 0 20px;
  }

  .clients-card {
    width: 320px;
    min-height: 160px;
    padding: 16px 18px;
  }

  .clients-card p {
    font-size: 10px;
  }

  .clients-footer img {
    width: 48px;
    height: 48px;
  }

  .clients-nom {
    font-size: 13px;
  }

  /* Section 13 - Tarification */
  .pricing-section {
    padding: 50px 16px;
  }

  .pricing-container {
    gap: 30px;
  }

  .pricing-card {
    width: 300px;
    padding: 28px 20px;
  }

  .pricing-subtitle,
  .pricing-subtitlefree {
    font-size: 18px;
  }

  .price-value {
    font-size: 46px;
  }

  .price-period {
    font-size: 16px;
  }

  /* Section 14 - FAQ */
  .faq-title {
    font-size: 38px;
    margin-bottom: 40px;
  }

  .faq-question {
    font-size: 15px;
    padding: 18px;
  }

  .faq-answer {
    font-size: 13px;
    line-height: 1.5;
  }

  .module-title {
    font-size: 14px;
    margin-bottom: 8px;
  }
}

@media (max-width: 767px) {
  
  /* === section 1 === */
  .hero {
    padding: 60px 16px 30px;
  }


  .hero h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  .cta-block h2 {
    font-size: 22px;
  }

  .animated-button {
    padding: 10px 20px;
    font-size: 14px;
  }

  .cta-block .infos {
    font-size: 11px;
  }

  /* === section 2 === */
  .situation-alt {
    padding: 50px 12px 60px;
  }

  .situation-alt-title {
    font-size: 28px;
    line-height: 1.25;
  }

  .situation-alt-grid {
    flex-direction: column;
    gap: 5px;
  }

  .situation-alt-item {
    max-width: 100%;
  }

  .icon-circle {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
  }

  .icon-circle img {
    width: 36px;
    height: 36px;
  }

  .situation-alt-item h3 {
    font-size: 16px;
  }

  .situation-alt-item p {
    font-size: 13px;
  }

  /* === section 3 === */
  .section-avis {
    padding: 50px 12px 60px;
  }

  .avis-title {
    font-size: 26px;
    line-height: 1.25;
  }

  .carousel-track {
    gap: 20px;
  }

  .carousel-item img {
    width: 180px;
  }

  .carousel-wrapper {
    padding: 40px 0;
  }

  .carousel-fade-left,
  .carousel-fade-right {
    width: 60px;
  }

  /* === section 4 === */
   .container-resultats {
    padding: 0 16px;
  }

  .resultats-title {
    font-size: 30px;
  }

  .result-card,
  .result-card-large {
    max-width: 340px;
    width: 100%;
    padding: 18px 16px;
  }

  .result-card img {
    width: 92px;
    height: 92px;
  }

  .resultats-row-top,
  .resultats-grid {
    gap: 24px;
  }

  .result-card h3,
  .result-card-large h3 {
    font-size: 15.5px;
  }

  .result-card .desc,
  .result-card-large .desc {
    font-size: 12px;
  }

  /* === section 5 === */
  .yok-left {
    padding: 0 12px;
  }

        .yok-subtitle {    font-size: 26px;    margin-top: 0;    margin-bottom: 6px;  }  .yok-description {    font-size: 17px;    line-height: 1.35;    max-width: 100%;    padding: 0 8px;  }

        .yok-badge {    font-size: 12px;    padding: 6px 14px 6px 36px;    margin-bottom: 0;  }  .yok-badge .badge-icon {    font-size: 11px;    width: 14px;    height: 14px;    left: 14px;  }  .yok-badge::before {    width: 14px;    height: 14px;    left: 14px;  }  .yok-right {    flex: 1 1 100%;    max-width: 100%;    padding: 0 16px;  }
  
  .module-slider {
    max-width: 360px;
  }
  
  .module-card {
    height: 360px !important;
    min-height: unset;
    max-height: 360px;
    overflow-y: auto;
  }

  .yok-right {    flex: 1 1 100%;    max-width: calc(100% - 48px); /* 24px de chaque côté */    padding: 0;    margin: 20px auto 0;    width: 480px;  }    .module-slider {    max-width: 100%;  }    .module-card {    max-width: 100%;    height: auto;    min-height: 350px;    padding: 24px 20px;  }

  .yok-subtitle {
    font-size: 24px;    /* Réduit de 26px à 24px */
    margin-bottom: 4px; /* Réduit de 6px à 4px */
    line-height: 1.15;  /* Réduit de 1.2 à 1.15 */
  }

  .yok-description {
    font-size: 17px;  /* Réduit de 14px à 17px */
    line-height: 1.3;   /* Réduit de 1.35 à 1.3 */
    padding: 0 4px;     /* Réduit de 8px à 4px */
  }

  .yok-badge {
    font-size: 11px;    /* Réduit de 12px à 11px */
    padding: 5px 12px 5px 32px; /* Réduit les paddings */
    margin-bottom: 1px; /* Réduit de 2px à 1px */
  }

  .yok-right {
    margin: 16px auto 0; /* Réduit de 20px à 16px */
  }

  .module-card {
    padding: 20px 16px; /* Réduit de 24px 20px à 20px 16px */
    min-height: 340px;  /* Réduit de 350px à 340px */
  }

  .module-header {
    padding: 6px;       /* Réduit de 8px à 6px */
    margin-bottom: 12px; /* Réduit de 16px à 12px */
  }

  .module-brand {
    gap: 6px;          /* Réduit de 8px à 6px */
  }

  .module-icon {
    width: 36px;       /* Réduit de 40px à 36px */
    height: 36px;
  }

  .module-logo {
    font-size: 14px;   /* Réduit de 16px à 14px */
  }

  .module-btn {
    padding: 6px 14px; /* Réduit de 8px 18px à 6px 14px */
    font-size: 14px;   /* Réduit de 16px à 14px */
    margin-left: 8px; /* Ajoute un espace à gauche du bouton */
  }

  .module-tabs {
    margin-bottom: 12px; /* Réduit de 16px à 12px */
    gap: 4px;           /* Réduit de 6px à 4px */
  }

  .module-title {
    font-size: 15px;    /* Réduit légèrement */
    margin-bottom: 8px; /* Ajout d'une marge bottom réduite */
  }

  .module-list {
    gap: 6px;          /* Réduit de 8px à 6px */
  }

  .module-list li {
    font-size: 13px;   /* Réduit de 14px à 13px */
  }

  .yok-badge {
    font-size: 12px;    /* Retour à 12px comme les autres badges */
    padding: 6px 16px 6px 36px; /* Ajustement des paddings */
    margin-bottom: 8px; /* Augmentation de la marge */
  }

  .yok-badge .badge-icon {
    font-size: 12px;   /* Retour à 12px */
    width: 16px;       /* Retour à 16px */
    height: 16px;
    left: 12px;        /* Ajustement de la position */
  }

  .yok-badge::before {
    width: 16px;       /* Retour à 16px */
    height: 16px;
    left: 12px;        /* Ajustement de la position */
  }

  .yok-badge {
    font-size: 13px;    /* Augmenté de 12px à 13px */
    padding: 8px 20px 8px 42px; /* Augmentation des paddings */
    margin-bottom: 10px; /* Augmentation de la marge */
  }

  .yok-badge .badge-icon {
    font-size: 13px;   /* Augmenté à 13px */
    width: 18px;       /* Augmenté à 18px */
    height: 18px;
    left: 14px;        /* Ajustement de la position */
  }

  .yok-badge::before {
    width: 18px;       /* Augmenté à 18px */
    height: 18px;
    left: 14px;        /* Ajustement de la position */
    background: rgba(254, 206, 22, 0.2); /* Légère augmentation de l'opacité du halo */
  }

  .yok-badge {
    font-size: 12.5px;    /* Réduit de 13px à 12.5px */
    padding: 7px 18px 7px 40px; /* Légère réduction des paddings */
    margin-bottom: 9px;   /* Ajustement de la marge */
  }

  .yok-badge .badge-icon {
    font-size: 12.5px;   /* Réduit à 12.5px */
    width: 17px;         /* Réduit à 17px */
    height: 17px;
    left: 13px;          /* Ajustement de la position */
  }

  .yok-badge::before {
    width: 17px;         /* Réduit à 17px */
    height: 17px;
    left: 13px;          /* Ajustement de la position */
  }

  .voc-left {
    order: 2;
    width: 100%;
    display: flex;
    justify-content: center;
  }

      .discord-box {    max-width: 480px;    width: 100%;    margin: 0 auto;  }

  .voc-right {
    order: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .voc-description {
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
  }

  .yok-badge {
    margin: 0 auto 16px;
  }

  .experts-left {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .experts-description {
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
  }

  .experts-right {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .experts-module {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
  }

  .yok-description {
    font-size: 15px;
    line-height: 1.35;
    max-width: 100%;
    padding: 0 8px;
  }

  .voc-description {
    font-size: 15px;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
  }

  .experts-description {
    font-size: 15px;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
  }

  .yok-title {
    font-size: 38px;
    margin-bottom: 40px;
  }

  /* Section 8 - Community Calls */
  .intervenants-title {
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .intervenants-sub {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .module-slider {
    height: 360px !important; /* Même hauteur que les cartes */
    max-width: 100%;
  }

  /* Section 9 - Communauté */
  .communaute-title {
    font-size: 34px;
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .comm-card {
    padding: 20px 14px;
    width: 280px;
  }

  .comm-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 12px;
  }

  .comm-title {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .comm-desc {
    font-size: 14px;
    line-height: 1.3;
  }

  /* Section 10 - Camps partenaires */
  .camps-title {
    font-size: 34px;
    margin-bottom: 14px;
    padding: 0 15px;
  }

  .camps-desc {
    font-size: 15px;
    max-width: 480px;
    padding: 0 20px;
    line-height: 1.4;
  }

  .container-carousel {
    height: 380px;
  }

  .card {
    width: 75%;
  }

  /* Section 11 - Outils */
  .outils-title {
    font-size: 34px;
    margin-bottom: 20px;
    padding: 0 15px;
  }

  .outil-card,
  .outil-card.reverse {
    flex-direction: column;
    padding: 24px;
    gap: 24px;
  }

  .outil-text {
    min-width: unset;
    width: 100%;
    text-align: center;
  }

  .outil-img {
    width: 100%;
  }

  .outil-img img {
    max-width: 100%;
  }

  .outil-title {
    font-size: 20px;
  }

  .outil-subtitle {
    font-size: 14px;
  }

    .outil-list {    font-size: 14px;    max-width: 400px;    margin: 0 auto;  }  .outil-list li {    justify-content: flex-start;    text-align: left;    padding-left: 10px;  }

  /* Section 12 - Témoignages */
  .clients-title {
    font-size: 32px;
    margin-bottom: 30px;
    padding: 0 15px;
  }

  .clients-card {
    width: 280px;
    min-height: 180px;
    padding: 14px 16px;
  }

  .clients-card p {
    font-size: 9.5px;
    line-height: 1.5;
  }

  .clients-footer {
    gap: 8px;
  }

  .clients-footer img {
    width: 42px;
    height: 42px;
  }

  .clients-nom {
    font-size: 12px;
  }

  .clients-row {
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  }
}

@media (max-width: 359px) {

  /* === section 1 === */
  .hero {
    padding: 50px 10px 24px;
  }



  .hero h1 {
    font-size: 26px;
    line-height: 1.15;
  }

  .cta-block h2 {
    font-size: 18px;
  }

  .animated-button {
    padding: 9px 16px;
    font-size: 13px;
  }

  .cta-block .infos {
    font-size: 10px;
  }

  /* === section 2 === */
   .situation-alt {
    padding: 40px 10px 50px;
  }

  .situation-alt-title {
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 32px;
  }

  .badge-ref {
    font-size: 12px;
    padding: 6px 14px 6px 30px;
  }

  .badge-ref::before {
    font-size: 10px;
    width: 18px;
    height: 18px;
    line-height: 18px;
    left: 8px;
  }

  .icon-circle {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
  }

  .icon-circle img {
    width: 30px;
    height: 30px;
  }

  .situation-alt-item h3 {
    font-size: 15px;
  }

  .situation-alt-item p {
    font-size: 12px;
  }

  /* === section 3 === */
  .section-avis {
    padding: 40px 10px 50px;
  }

  .avis-title {
    font-size: 20px;
    line-height: 1.2;
  }

  .carousel-track {
    gap: 14px;
  }

  .carousel-item img {
    width: 140px;
  }

  .carousel-wrapper {
    padding: 30px 0;
  }

  .carousel-fade-left,
  .carousel-fade-right {
    width: 40px;
  }

  /* === section 4 === */
   .resultats-title {
    font-size: 26px;
  }

  .badge-ref.small {
    font-size: 11px;
    padding: 4px 12px 4px 26px;
  }

  .result-card,
  .result-card-large {
    padding: 16px 12px;
    max-width: 100%;
  }

  .result-card-large .large-img {
    width: 80px;
    height: 80px;
    margin-bottom: 4px; /* ✅ réduit l'espace sous la photo */
  }

  .result-card h3,
  .result-card-large h3 {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .result-card .desc,
  .result-card-large .desc {
    font-size: 11.5px;
  }

  .module-header {
    flex-direction: column;
    gap: 12px;
    padding: 12px;
  }
  
  .module-brand {
    justify-content: center;
  }
  
  .module-btn {
    width: 100%;
  }

  .voc-left {
    order: 2;
    width: 100%;
    display: flex;
    justify-content: center;
  }

      .discord-box {    max-width: calc(100% - 20px);    width: 100%;    margin: 0 auto;  }

  .voc-right {
    order: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .voc-description {
    padding: 0;
    max-width: 100%; /* Changé pour les très petits écrans */
    margin: 0 auto;
    font-size: 14px; /* Réduction de la taille pour les très petits écrans */
  }

  .yok-badge {
    margin: 0 auto 12px; /* Marge réduite pour les très petits écrans */
  }

  .experts-left {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .experts-description {
    padding: 0;
    max-width: 100%;
    margin: 0 auto;
    font-size: 14px;
  }

  .experts-right {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .experts-module {
    max-width: calc(100% - 20px);
    width: 100%;
    margin: 0 auto;
  }

  /* Section 9 - Communauté */
  .communaute-title {
    font-size: 28px;
    margin-bottom: 25px;
  }

  .comm-card {
    padding: 16px 12px;
    width: 100%;
    max-width: 240px;
  }

  .comm-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }

  .comm-title {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .comm-desc {
    font-size: 13px;
    line-height: 1.25;
  }

  /* Section 10 - Camps partenaires */
  .camps-title {
    font-size: 28px;
    margin-bottom: 12px;
    padding: 0 10px;
  }

  .camps-desc {
    font-size: 14px;
    padding: 0 15px;
    line-height: 1.35;
  }

  .container-carousel {
    height: 340px;
  }

  .card {
    width: 85%;
  }

  /* Section 11 - Outils */
  .outils-title {
    font-size: 28px;
  }

  .outil-card {
    padding: 20px;
    gap: 20px;
  }

  /* Section 12 - Témoignages */
  .clients-title {
    font-size: 28px;
  }

  .clients-card {
    width: 260px;
    min-height: 200px;
    padding: 12px 14px;
  }

  .clients-card p {
    font-size: 9.5px;
    line-height: 1.5;
  }

  .clients-footer {
    gap: 8px;
  }

  .clients-footer img {
    width: 42px;
    height: 42px;
  }

  .clients-nom {
    font-size: 12px;
  }

  .clients-row {
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  }

  /* Section 13 - Tarification */
  .pricing-section {
    padding: 40px 12px;
  }

  .pricing-container {
    gap: 24px;
  }

  .pricing-card {
    width: 100%;
    max-width: 280px;
    padding: 24px 16px;
  }

  .pricing-subtitle,
  .pricing-subtitlefree {
    font-size: 16px;
  }

  .price-value {
    font-size: 40px;
  }

  .price-period {
    font-size: 14px;
  }

  .pricing-list,
  .pricing-listfree {
    font-size: 13px;
    gap: 8px;
  }

  .pricing-button {
    padding: 10px 16px;
    font-size: 13px;
  }

  /* Section 14 - FAQ */
  .faq-title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .faq-wrapper {
    margin-bottom: 40px;
  }

  .faq-container {
    margin-bottom: 12px;
  }

  .faq-question {
    font-size: 14px;
    padding: 16px;
  }

  .faq-answer {
    font-size: 12px;
    line-height: 1.4;
    padding: 0 16px;
  }

  .module-title {
    font-size: 13px;
    margin-bottom: 4px;
  }
}

@media (max-width: 767px) {
  .yok-right {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 0 12px;
    margin: 20px auto 0;
  }

  .module-slider {
    max-width: 100%;
  }

  .module-card {
    max-width: 100%;
    height: auto;
    min-height: 350px;
    padding: 20px;
    width: 100%;
  }

  .module-header {
    padding: 8px 12px;
    margin-bottom: 12px;
  }

  .module-brand {
    gap: 8px;
    flex: 1;
  }

  .module-icon {
    width: 38px;
    height: 38px;
  }

  .module-logo {
    font-size: 15px;
    white-space: normal;
    line-height: 1.2;
  }

  .module-btn {
    padding: 8px 16px;
    font-size: 14px;
    margin-left: 10px;
    white-space: nowrap;
  }
}

@media (max-width: 359px) {
  .yok-right {
    padding: 0 8px;
  }

  .module-card {
    padding: 16px;
  }

  .module-header {
    padding: 8px;
    flex-direction: column;
    gap: 8px;
  }

  .module-brand {
    justify-content: center;
    width: 100%;
  }

  .module-btn {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
}

/* === STYLES DU FOND ANIMÉ === */

/* VERSION iOS */
.background-ios {
    position: fixed;
    z-index: -1;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: #0c0c0c;
    overflow: hidden;
    display: none;
}

@keyframes move {
    100% {
        transform: rotate(360deg) scale(var(--scale, 1));
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes fade {
    0%, 100% {
        opacity: 0.2;
    }
    40% {
        opacity: 0.3;
    }
    60% {
        opacity: 0.4;
    }
}

@keyframes pulse {
    0%, 100% {
        --scale: 0.5;
    }
    50% {
        --scale: 1.3;
    }
}

.background-ios span {
    width: 50vmin;
    height: 50vmin;
    border-radius: 50%;
    position: absolute;
    background: linear-gradient(45deg, #FECE16, #f5b301, #FECE16);
    background-size: 400% 400%;
    filter: blur(80px);
    opacity: 0.5;
    pointer-events: none;
    --scale: 1;
    animation:
        move 30s linear infinite,
        gradientShift 10s ease-in-out infinite,
        fade 12s ease-in-out infinite,
        pulse 8s ease-in-out infinite alternate;
}

.background-ios span:nth-child(1) {
    top: 10%;
    left: 80%;
    transform-origin: 20vw 15vh;
    box-shadow: -100vmin 0 12vmin currentColor;
    color: #FECE16;
    animation-delay: -20s, 0s, 0s, 0s;
}

.background-ios span:nth-child(2) {
    top: 60%;
    left: 10%;
    transform-origin: -10vw 30vh;
    box-shadow: 100vmin 0 13vmin currentColor;
    color: #f5b301;
    animation-delay: -30s, 0s, 0s, -1s;
}

.background-ios span:nth-child(3) {
    top: 40%;
    left: 50%;
    transform-origin: 0vw 0vh;
    box-shadow: -100vmin 0 11vmin currentColor;
    color: #f5b301;
    animation-delay: -15s, 0s, 0s, -2s;
}

.background-ios span:nth-child(4) {
    top: 80%;
    left: 70%;
    transform-origin: 25vw -10vh;
    box-shadow: 100vmin 0 14vmin currentColor;
    color: #FECE16;
    animation-delay: -25s, 0s, 0s, -3s;
}

/* VERSION ANDROID */
.background-android {
    display: none;
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
}

:root {
    --color1: 245, 179, 1;    /* #f5b301 */
    --color2: 254, 206, 22;   /* #FECE16 */
    --color3: 245, 179, 1;    /* #f5b301 */
    --color4: 254, 206, 22;   /* #FECE16 */
    --circle-size: 80%;
    --blending: screen;
}

@keyframes moveInCircle {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes moveVertical {
    0% {
        transform: translateY(-50%);
    }
    50% {
        transform: translateY(50%);
    }
    100% {
        transform: translateY(-50%);
    }
}

@keyframes moveHorizontal {
    0% {
        transform: translateX(-50%) translateY(-10%);
    }
    50% {
        transform: translateX(50%) translateY(10%);
    }
    100% {
        transform: translateX(-50%) translateY(-10%);
    }
}

@keyframes fadeAndroid {
    0%, 100% {
        opacity: 0.2;
    }
    40% {
        opacity: 0.3;
    }
    60% {
        opacity: 0.4;
    }
}

.gradient-bg {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: #0c0c0c;
}

.gradient-bg svg {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
}

.gradients-container {
    filter: url(#goo) blur(40px);
    width: 100%;
    height: 100%;
}

.g1, .g2, .g3, .g4 {
    position: absolute;
    width: var(--circle-size);
    height: var(--circle-size);
    top: calc(50% - var(--circle-size) / 2);
    left: calc(50% - var(--circle-size) / 2);
    mix-blend-mode: var(--blending);
    opacity: 0.4;
    animation: fadeAndroid 12s ease-in-out infinite;
}

.g1 {
    background: radial-gradient(circle at center, rgba(var(--color1), 1) 0, rgba(var(--color1), 0) 50%) no-repeat;
    animation: 
        moveVertical 30s ease infinite,
        fadeAndroid 12s ease-in-out infinite;
}

.g2 {
    background: radial-gradient(circle at center, rgba(var(--color2), 1) 0, rgba(var(--color2), 0) 50%) no-repeat;
    transform-origin: calc(50% - 400px);
    animation: 
        moveInCircle 20s reverse infinite,
        fadeAndroid 12s ease-in-out infinite -3s;
}

.g3 {
    background: radial-gradient(circle at center, rgba(var(--color3), 1) 0, rgba(var(--color3), 0) 50%) no-repeat;
    transform-origin: calc(50% + 400px);
    animation: 
        moveInCircle 40s linear infinite,
        fadeAndroid 12s ease-in-out infinite -6s;
}

.g4 {
    background: radial-gradient(circle at center, rgba(var(--color4), 1) 0, rgba(var(--color4), 0) 50%) no-repeat;
    transform-origin: calc(50% - 200px);
    animation: 
        moveHorizontal 40s ease infinite,
        fadeAndroid 12s ease-in-out infinite -9s;
}

