/***** Code clean *****/
/*  SECTION HERO */
/* HERO */
.hero {
  position: relative;
  width: 100%;
  height: auto;
  background-color: #070322;
  overflow: hidden;
}

.overlap-6 {
  width: 100%;
  min-height: 100vh;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  padding-top: 120px; /* espace haut */
  padding-bottom: 100px; /* espace bas */
  background-image: url(../img/visuel-hero-index.png);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

/* TITRE HERO */
.hero-title {
  z-index: 2;
  max-width: 800px;
  width: 90%;
  text-align: center;
  position: relative;
  margin-bottom: 40px; /* Ajout espace sous le titre */
}

/* STATISTIQUES */
.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 60px; /* espace entre texte et stats */
  position: relative;
}

.hero-highlight {
  width: 150px;
  text-align: center;
}
.studio-fabio {
  font-family: 'MoonWalk', sans-serif;
  font-size: 70px;
  color: white;
  margin-top: 130px;
}

.animated-text {
  position: relative;
  font-family: 'MoonWalk', sans-serif;
  font-size: 48px;
  margin: 8px 0 24px;
  color: #ffffff;
}

.cursor {
  display: inline-block;
  margin-left: 5px;
  color: white;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}


.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 4px;
  position: relative;
}

.hero-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 200px;
  text-align: center;
}

.hero-highlight-2 {
  font-family: 'ClashDisplay-Bold', sans-serif;
  font-size: 50px;
  color: white;
  line-height: 1;
  margin-bottom: 10px;
}

.hero-highlight-label {
  font-family: 'ClashDisplay-Medium', sans-serif;
  font-size: 18px;
  color: #ffffffcc;
  text-align: center;
  line-height: 1.4;
}

/*Justifier centrer titre hro */ 
.hero-home {
  max-width: 800px; /* Ajustable selon ton goût */
  margin: 0 auto;
  text-align: center;
  padding: 0 20px; /* petit padding pour respirer sur les côtés */
}


/* Responsive pour petits écrans */
@media screen and (max-width: 768px) {
  .overlap-6 {
    background-position: center calc(100% - 160px); /* ✅ ajuste ton arrondi en bas */
  }
}

@media screen and (max-width: 768px) {
  .hero-highlights {
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
  }

  .hero-highlight {
    width: 100%;
  }

  .hero-highlight-2 {
    font-size: 40px;
  }

  .hero-highlight-label {
    font-size: 16px;
  }
}


/* RESPONSIVE ADAPTATION */
@media screen and (max-width: 768px) {
  .overlap-6 {
    min-height: auto;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .hero-title-main .studio-fabio {
    display: none;
  }

  .hero-title-main h1 {
    font-size: 20px;
    line-height: 1.4;
    padding: 0 20px;
  }

  .animated-text {
    font-size: 40px;
    margin: 30px 0 24px;
  }

  .hero-highlights {
    flex-direction: column;
    margin-top: 40px;
    gap: 20px;
  }

  .hero-highlight {
    width: 100%;
  }
}


/* Mobile petit écran */
@media screen and (max-width: 600px) {
  .hero-title {
    padding-top: 30px; /* Ajuste en fonction de la hauteur de ton header */
  }
}

@media screen and (max-width: 600px) {
  .studio-fabio {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .overlap-6 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .hero-title-main .studio-fabio {
    font-size: 32px;
  }

  .hero-title-main h1 {
    font-size: 18px;
  }

  .animated-text {
    font-size: 24px;
  }
}


/* SECTION PORTFOLIO */
/* --- Container principal --- */
.portfolio {
  background-color: #070322;
  padding: 0px 20px;
  color: white;
}
.portfolio-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
/* --- Filtres --- */
.portfolio-filters {
  display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 20px;
	width: 100%;
	margin: 0 auto;
	text-align: center;
}
.filter-btn {
  background: none;
  border: none;
  color: white;
  font-family: 'ClashDisplay-Regular', sans-serif;
  font-size: 16px;
  letter-spacing: 0.8px;
  cursor: pointer;
  padding: 10px 15px;
  transition: color 0.3s ease, opacity 0.3s ease;
  opacity: 0.5; /* Inactif par d�faut */
  text-decoration: none; /* Pas de soulignement sauf actif */
}
.filter-btn:hover {
  color: #ffcc00;
  opacity: 1; /* Plein sur hover */
}
.filter-btn.active {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 4px;
  color: white;
}
#portfolio-image {
  opacity: 1;
  transition: opacity 0.4s ease-in-out;
}
@media screen and (max-width: 1340px) and (min-width: 935px) {
  #portfolio-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    padding: 0 32px; /* un peu d'air à gauche et droite */
    box-sizing: border-box;
  }
}


/* --- Cartes --- */
.portfolio-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.portfolio-card {
  display: none;
}
.portfolio-card img {
  width: 100%;
  max-width: 1280px;
  border-radius: 16px;
  object-fit: cover;
}
.portfolio-card[data-category="Site Web"] {
  display: block;
}
/* --- CTA Button --- */
.portfolio-cta-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 28px;
  border: 2px solid transparent;
  border-radius: 999px;
  background-image: linear-gradient(90deg, #1d1c2a, #1d1c2a), linear-gradient(90deg, #d38bff, #8f5aff);
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
  color: white;
  font-family: 'ClashDisplay-Bold', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cta-button .arrow {
  font-size: 16px;
  transition: transform 0.3s ease;
}
.cta-button:hover {
  background-image: linear-gradient(90deg, #1d1c2a, #1d1c2a), linear-gradient(90deg, #8f5aff, #d38bff);
  box-shadow: 0 0 10px rgba(143, 90, 255, 0.4);
}
.cta-button:hover .arrow {
  transform: translateX(4px);
}
/* --- Avantages --- */
.portfolio-strengths {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 60px;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
	
}
.portfolio-strengths p {
  font-family: 'ClashDisplay-Medium', sans-serif;
}
/* Police pour le sous-titre */
.text-wrapper-28 {
  font-family: 'ClashDisplay-Regular', sans-serif !important;
}
/* Style filtre actif */
.portfolio-filters .active {
  text-decoration: underline;
  text-underline-offset: 4px;
  color: #ffffff;
}
/*d�filement point fort */
/* Conteneur masqu� avec d�grad� sur les bords */
.portfolio-strengths-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 40px;
  mask-image: linear-gradient(to right, transparent, #fff 10%, #fff 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #fff 10%, #fff 90%, transparent);
  height: 64px;
}
/* Piste d�animation */
.marquee-track {
  display: flex;
  animation: scroll-left 20s linear infinite;
  width: max-content;
  padding: 10px 0;
}
/* Contenu reel des points forts + clone */
.marquee-content {
  display: flex;
  gap: 40px; /* Ajuste l'espace entre les �l�ments */
  white-space: nowrap;
  font-family: 'ClashDisplay-Medium', sans-serif;
  font-size: 18px;
  font-weight: 500;
}
.marquee-content p {
  margin: 0;
  color: white;
}
/* Clone = identique mais avec espace suppl�mentaire au d�but */
.marquee-clone {
  margin-left: 40px; /* Espace entre original et clone */
}
/* Animation de defilement */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.portfolio-filters {
 display: flex;
  flex-wrap: nowrap; /* important */
  width: max-content; /* indispensable pour scroll */
  gap: 20px;
}

.portfolio-filters::-webkit-scrollbar {
  display: none;
}

.portfolio-filters .filter-button {
  flex: 0 0 auto;
  white-space: nowrap;
}

/*SEO CACHE ATOUT*/
.visually-hidden {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}


/* PORTFOLIO MOBILE */
@media screen and (max-width: 935px) {
  .portfolio-filters-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 20px; /* marge des c�t�s */
  }

  .portfolio-filters {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    gap: 16px;
    justify-content: flex-start;
  }

  .portfolio-filters::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 10px 20px;
  }
	.portfolio-filters-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 20px;
  scrollbar-width: none; /* Firefox */
}

.portfolio-filters-wrapper::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}
	/* -- img*/ 
	.portfolio-image {
  width: 100%;
  padding: 0 16px;
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.portfolio-image img {
  width: 100%;
  height: auto;
  max-width: 480px;
  border-radius: 16px;
}
	/* --- Description --- */
.portfolio-description {
  font-size: 28px;
  font-family: 'ClashDisplay-SemiBold', sans-serif;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 60%, rgba(7, 3, 34, 1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}
.portfolio-description .text-light {
  font-family: 'ClashDisplay-Medium', sans-serif;
  font-size: 28px;
  color: black;
}
}

/***** A PROPOS *****/
.about {
  background-color: #070322;
  padding: 0px 20px;
  color: white;
  margin-top: 9.313rem;
}
.about-container {
  display: flex;
  align-items: center;     /*  centre verticalement les enfants */
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;

  gap: 60px;                    /* Espace entre texte et image */
  max-width: 1280px;
  margin: 0 auto;
  flex-wrap: wrap;              /* Responsive */
  width: 100%;
  box-sizing: border-box;
}
.about-content {
  flex: 1 1 600px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.about-heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-subtitle {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #ffffff1a;
  font-size: 20px;
  font-family: 'ClashDisplay-Medium', sans-serif;
  border-radius: 99px;
  background: conic-gradient(
    from 195deg at 50% 50%,
    rgba(0, 0, 0, 0) 48%,
    rgba(73, 53, 130, 0.3) 78%,
    rgba(71, 47, 140, 0.12) 100%
  );
  margin-left: 0; /* ferr� � gauche */
  max-width: fit-content;
}
.about-title {
  font-size: 48px;
  font-family: 'ClashDisplay-SemiBold', sans-serif;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(7, 3, 34, 1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  margin: 0;
}
.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: white;
  max-width: 800px;  /* Limite la largeur maximale du bloc */
  width: 100%;       /* Assure que le bloc prend toute la largeur disponible, jusqu'� max-width */
  margin: 0 auto;    /* Centre le bloc horizontalement */
  text-align: left;  /* Assure que le texte reste align� � gauche */
}

.about li {
  font-size: 16px;
  line-height: 1.8;
  color: white;
  max-width: 800px;  
  width: 100%;
	padding-left: 20px;
  margin: 0 auto;    
  text-align: left;  
}

.about-image-block {
  position: relative;
  flex: 1 1 400px;
  height: 100%;
  width: auto;
  max-width: 408px;
  border-radius: 32px;
  overflow: hidden;
  background: conic-gradient(
    from 195deg at 50% 50%,
    rgba(0, 0, 0, 0) 48%,
    rgba(26, 13, 171, 0.3) 78%,
    rgba(51, 39, 182, 0.12) 100%
  );
  display: flex;
  justify-content: space-between;
  align-items: center; 
  gap: 40px;
  flex-wrap: wrap;
}
.about-image-block::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(153, 153, 153, 0.4));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
  pointer-events: none;
}
.about-image {
 width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  display: block;
  position: relative;
  z-index: 2;
  object-fit: cover;
}

@media screen and (max-width: 1133px) {
  .about-container {
    flex-direction: column;
    align-items: center;
  }

  .about-image-block {
    margin-top: 40px;
    width: 100%;
    max-width: 300px;
    aspect-ratio: 3 / 4;
    min-height: 360px; /*  assure qu'on a un fond visible */
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .about-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ✅ remplit tout, même en mobile */
    z-index: 2;
    border-radius: 0; /* héritera du bloc parent */
  }
}




/*CTA*/
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 28px;
  border: 2px solid transparent;
  border-radius: 999px;
  background-image: linear-gradient(90deg, #1d1c2a, #1d1c2a), linear-gradient(90deg, #d38bff, #8f5aff);
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
  color: white;
  font-family: 'ClashDisplay-Bold', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
	 max-width: fit-content;
  width: auto;
  height: auto;
}
.cta-button .arrow {
  font-size: 16px;
  transition: transform 0.3s ease;
}
.cta-button:hover {
  background-image: linear-gradient(90deg, #1d1c2a, #1d1c2a), linear-gradient(90deg, #8f5aff, #d38bff);
  box-shadow: 0 0 10px rgba(143, 90, 255, 0.4);
}
.cta-button:hover .arrow {
  transform: translateX(4px);
}
.about-trust {
  max-width: 1280px;
  margin: 80px auto 0;
  text-align: center;
}
.about-trust h3 {
  font-size: 20px;
  font-family: 'ClashDisplay-Bold', sans-serif;
  color: white;
  margin-bottom: 20px;
  text-align: left;
}
.about-logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.about-logos img {
  height: 40px;
  max-width: 160px;
  object-fit: contain;
}
/*Defilement logo a propos */ 
.about-trust-logos-marquee .portfolio-strengths-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 20px;
  mask-image: linear-gradient(to right, transparent, #fff 10%, #fff 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #fff 10%, #fff 90%, transparent);
  height: 64px;
}
.about-trust-logos-marquee .marquee-track {
  display: flex;
  width: fit-content;
  animation: scroll-logos 20s linear infinite;
}
.about-trust-logos-marquee .marquee-content {
  display: flex;
  gap: 60px;
  align-items: center;
  white-space: nowrap;
}
.about-trust-logos-marquee .marquee-content img {
  height: 30px;
  object-fit: contain;
  filter: none; /* plus de transformation de couleurs */
}
.about-trust-logos-marquee .marquee-content p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-family: 'ClashDisplay-Light', sans-serif;
  font-size: 16px;
}

.about-trust-logos-marquee .marquee-content p:last-child {
  margin-right: 60px; /* ou 80px selon l'espacement souhait� */
}
@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/****A PROPOS MOBILE***/
@media screen and (max-width: 935px) {
 .about-heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-subtitle {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #ffffff1a;
  font-size: 20px;
  font-family: 'ClashDisplay-Regular', sans-serif;
  border-radius: 99px;
  background: conic-gradient(
    from 195deg at 50% 50%,
    rgba(0, 0, 0, 0) 48%,
    rgba(73, 53, 130, 0.3) 78%,
    rgba(71, 47, 140, 0.12) 100%
  );
  margin-left: 0; /* ferr� � gauche */
  max-width: fit-content;
}
.about-title {
  font-size: 28px;
  font-family: 'ClashDisplay-SemiBold', sans-serif;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(7, 3, 34, 1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  margin: 0;
}
	/*CTA*/
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px solid transparent;
  border-radius: 999px;
  background-image: linear-gradient(90deg, #1d1c2a, #1d1c2a), linear-gradient(90deg, #d38bff, #8f5aff);
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
  color: white;
  font-family: 'ClashDisplay-Bold', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  max-width: 100%;
  width: 100%;
  height: 48px;
}
.cta-button .arrow {
  font-size: 16px;
  transition: transform 0.3s ease;
}
.cta-button:hover {
  background-image: linear-gradient(90deg, #1d1c2a, #1d1c2a), linear-gradient(90deg, #8f5aff, #d38bff);
  box-shadow: 0 0 10px rgba(143, 90, 255, 0.4);
}
.cta-button:hover .arrow {
  transform: translateX(4px);
}
.about-trust {
  max-width: 1280px;
  margin: 80px auto 0;
  text-align: center;
}
.about-trust h3 {
  font-size: 20px;
  font-family: 'ClashDisplay-Bold', sans-serif;
  color: white;
  margin-bottom: 20px;
  text-align: left;
}
.about-logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.about-logos img {
  height: 40px;
  max-width: 160px;
  object-fit: contain;
}
}


/***** SERVICES *****/
.services {
  background-color: #070322;
  padding: 0px 20px;
  color: white;
  position: relative;
  overflow: visible;
  margin-top: 148px;
}
.services::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 600px;
  background-image: url("img/clip-path-group.png"); /* ou path.svg si vectoriel */
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  opacity: 0.1; /* effet l�ger */
  z-index: 0;
}
.services-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.services-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
   padding: 0px 20px 0px 20px;;
}
.service-card {
  position: relative;
  width: 320px;
  padding: 35px 25px;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid #ffffff33;
  box-shadow: 0 4px 4px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.service-card.green {
  background: linear-gradient(90deg, rgba(43, 207, 126, 0.2) 0%, rgba(26, 107, 65, 1) 50%, rgba(43, 207, 126, 0.2) 100%);
}
.service-card.purple {
  background: linear-gradient(90deg, rgba(182, 44, 206, 0.2) 0%, rgba(107, 28, 124, 1) 50%, rgba(182, 44, 206, 0.2) 100%);
}
.service-card.blue {
  background: linear-gradient(90deg, rgba(96, 139, 227, 0.2) 0%, rgba(26, 13, 171, 1) 50%, rgba(96, 139, 227, 0.2) 100%);
}
.card-title {
  font-family: 'ClashDisplay-Medium', sans-serif;
  font-size: 28px;
  text-align: center;
}
.card-list {
  font-size: 15px;
  line-height: 25px;
  padding-left: 18px;
  color: white;
}
.card-image {
  position: absolute;
  right: -5px;
  bottom: -11px;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}
.card-image img {
  width: 250px;
  
}
.cta-button-white {
  align-self: start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 2px solid white;
  border-radius: 999px;
  color: white;
  font-family: 'ClashDisplay-Bold', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}
.cta-button-white:hover {
  background-color: rgba(255,255,255,0.1);
}
.cta-button-white .arrow {
  transition: transform 0.3s ease;
}
.cta-button-white:hover .arrow {
  transform: translateX(4px);
}
/* cards service list*/
.cards-list {
  list-style: none;
  padding-left: 0;
  font-family: 'ClashDisplay-Regular', sans-serif;
}
.cards-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: #fff;
}
.cards-list li::before {
  content: "�";
  position: absolute;
  left: 0;
  color: #fff;
}
/****SERVICES MOBILE***/
@media screen and (max-width: 935px) {
	/*titre*/
.services-title {
  font-size: 28px;
  font-family: 'ClashDisplay-SemiBold', sans-serif;
  background: linear-gradient(180deg, rgba(255,255,255,1) 60%, rgba(7,3,34,1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}
	.cta-button-white {
  align-self: start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0px 24px;
  border: 2px solid white;
  min-height: 48px; 
  width: 100%;
  border-radius: 999px;
  color: white;
  font-family: 'ClashDisplay-Bold', sans-serif;
  font-size: 14px;
  justify-content: center;
  text-align: center;      
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}
.cta-button-white:hover {
  background-color: rgba(255,255,255,0.1);
}
.cta-button-white .arrow {
  transition: transform 0.3s ease;
}
.cta-button-white:hover .arrow {
  transform: translateX(4px);
}
	/*CARDS SERVICES*/
 .services-cards-wrapper {
    overflow: hidden;
    position: relative;
  }

  .services-cards {
    display: flex;
    transition: transform 0.5s ease;
  }
.card-title {
  font-family: 'ClashDisplay-Medium', sans-serif;
  font-size: 28px;
  padding-left: 18px;
  text-align: left;
}
  .service-card {
    min-width: 100%;
    flex-shrink: 0;
  }
	
}





/*****Section Avis **/
.testimonials {
  position: relative;
  background-color: #070322;
  overflow: hidden;
  padding: 0px 20px;
  margin-top: 9.313rem;
  z-index: 1;
}

.slider-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%; /* pleine largeur */
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  overflow-x: visible;  /* OK pour d�border en horizontal */
  overflow-y: visible; /* �viter que le haut/bas soit coup� */
  padding: 60px 0; 
}
.testimonials-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 0;
}
.testimonial-card {
  flex: 1 1 300px;
  max-width: 350px;
  padding: 40px;
  border-radius: 24px;
  background: linear-gradient(180deg, #070322 0%, rgba(26, 13, 171, 0.4) 100%);
  border: 1px solid transparent;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0px 0px 100px #140f2a;
  backdrop-filter: blur(80px);
  transition: all 0.4s ease;
}

/* Contour d�grad� blanc > bleu */
.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 24px;
  background: linear-gradient(to bottom, #070322, #1A0DAB);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}
/* Carte centrale mise en avant */
.testimonial-card.active {
  opacity: 1;
  transform: scale(1.05);
  z-index: 2;
  background: linear-gradient(180deg, #070322 0%, rgba(51, 39, 182, 0.3) 100%);
  box-shadow:
    0 0 12px rgba(255, 255, 255, 0.08),
    0 0 20px rgba(26, 13, 171, 0.15),
    0 0 35px rgba(51, 39, 182, 0.1);
}
/* Contenu interne */
.testimonial-stars {
  font-size: 18px;
  color: #FFD700;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-family: 'ClashDisplay-Regular', sans-serif;
}
.testimonial-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: white;
  font-family: 'ClashDisplay-Medium', sans-serif;
}
.testimonial-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 20px;
}
.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid white;
  object-fit: cover;
}
.testimonial-name {
  font-size: 14px;
  color: white;
  font-family: 'ClashDisplay-Light', sans-serif;
}
/*Dots*/
.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
.testimonials-dots .dot {
  width: 40px;
  height: 8px; /* plus grand en hauteur */
  border-radius: 99px;
  background-color: #ffffff26;
  cursor: pointer;
  transition: background-color 0.3s ease, width 0.3s ease;
}
.testimonials-dots .dot.active {
  width: 100px;
	height: 7px;
  background-color: white;
}
/****AVIS MOBLIE*****/
@media screen and (max-width: 935px) {
	.testimonials-title {
  font-size: 28px;
  font-family: 'ClashDisplay-SemiBold', sans-serif;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 60%,
    rgba(7, 3, 34, 1) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  line-height: 1.1;
}
	.slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px; /* ou auto */
  margin: -50px auto;
  overflow: hidden;
}

/* Cache toutes les cartes sauf la .active */
.testimonial-card {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  text-align: center;
}

.testimonial-card.active {
  display: block;
  opacity: 1;
}

/* Optionnel : recentre le contenu si n�cessaire */
.testimonial-content,
.testimonial-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
}
	 .testimonial-card.left,
  .testimonial-card.right {
    opacity: 1 !important;
    transform: scale(1);
  }
	
	.testimonials-dots .dot {
  min-width: 40px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  /* Optionnel : centrer la pastille si elle est petite */
}

.testimonials-dots .dot::before {
  content: '';
  width: 10px; /* taille r�elle du point */
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.testimonials-dots .dot.active::before {
  background-color: #070322; /* couleur active */
}

}
/* Section FAQ */
.faq {
  background-color: #070322;
  padding: 0px 20px;
  color: white;
  margin-top: 9.313rem;
  margin-bottom: 11.25rem;

  /* Ajout essentiel */
  width: 100vw;        /* occupe toute la largeur de l'�cran */
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;  /* recentre */
  margin-right: -50vw;

  /* Tu peux garder max-width sur le contenu, mais plus ici */
}
.faq-container {
  max-width: 1300px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 34px;
}
.faq-item {
  background-color: #070322;
  border: 1px solid #ffffff1a;
  border-radius: 24px;
  padding: 40px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.faq-item.active {
  background: linear-gradient(310deg, rgba(96, 139, 227, 0.25) 29%, rgba(96, 139, 227, 0.12) 70%, rgba(26, 13, 171, 0) 94%);
}
.faq-item.active::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 1%, rgba(16, 0, 176, 0.5) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
  pointer-events: none;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'ClashDisplay-Medium', sans-serif;
  font-size: 24px;
  cursor: pointer;
  z-index: 2;
  position: relative;
}
.faq-answer {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.6;
  color: #ffffffcc;
  display: none;
}
.faq-item.active .faq-answer {
  display: block;
}
/* Cache les r�ponses ferm�es */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}
/* Montre les r�ponses actives */
.faq-item.active .faq-answer {
  max-height: 400px;
  opacity: 1;
}
/* Transition fluide pour la rotation */
.faq-toggle {
  transition: transform 0.3s ease;
}
/* Animation de la rotation quand la carte est active */
.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}
/* Facultatif : animation du d�pliement */
.faq-answer {
  overflow: hidden;
  transition: max-height 0.4s ease;
  max-height: 0;
}
/* L�extension est g�r�e dynamiquement en JS */
/****FAQ MOBILE****/
@media screen and (max-width: 935px) {
	.faq-title {
  font-size: 28px;
  font-family: 'ClashDisplay-SemiBold', sans-serif;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 60%,
    rgba(7, 3, 34, 1) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  line-height: 1.1;
}
	
}
@media screen and (max-width: 375px) {
	.faq-title {
  font-size: 18px;
  font-family: 'ClashDisplay-SemiBold', sans-serif;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 60%,
    rgba(7, 3, 34, 1) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  line-height: 1.1;
}
.faq-item {
    padding: 25px;
}
	
}
/***** END Code clean *****/

