/* =============================================
   SECTION HERO — fs-hero
   ============================================= */
.fs-hero {
  width: 100%;
  color: #ECE9F2;
  background:
    radial-gradient(ellipse at 50% 0%, #3D0A50 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, #3D0A50 0%, transparent 60%),
    #0A0118;
  text-align: center;
}

.fs-hero__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 860px;
  margin: 0 auto;
  padding: 13rem 2rem 4rem;
}

/* Titre H1 */
.fs-hero__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.875rem, 5vw, 3rem);
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.15;
  margin: 0 0 1.5rem;
}

/* Sous-titre H2 */
.fs-hero .fs-hero__subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 1.75rem;
}

/* Paragraphe descriptif */
.fs-hero__desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #ECE9F2;
  margin: 0 0 1.75rem;
}

/* Prix */
.fs-hero__price {
  font-family: 'Outfit', sans-serif;
  font-size: 1.60rem;
  font-weight: 600;
  color: #FF7FC2;
  margin: 0 0 2rem;
}

/* CTA buttons */
.fs-hero__ctas {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.fs-btn {
  display: inline-block;
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 18px 28px;
  border-radius: 30px;
  text-decoration: none;
  cursor: pointer;
}

.fs-btn--pink {
  background: linear-gradient(120deg, #b47cfd 0%, #ff7fc2 100%);
  color: #FFFFFF !important;
  border: none;
}

.fs-btn--white {
  background: transparent;
  color: #FFFFFF !important;
  border: 1px solid #FFFFFF;
}

.fs-hero a:not(.fs-btn):not(:has(.fs-trust__badge)) {
  color: #FF7FC2 !important;
  text-decoration: underline;
}

.fs-hero a:has(.fs-trust__badge) {
  color: inherit;
  text-decoration: none;
}

/* === BANDE CONFIANCE === */
.fs-hero__bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid #241A30;
  border-radius: 12px;
  padding: 1.5rem 2rem;
}

.fs-trust__google img {
  display: block;
  width: 160px;
  height: auto;
}

.fs-trust__badges {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.fs-trust__badge {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #ECE9F2;
}

.fs-trust__badge a {
  text-decoration: none !important;
}

/* === SÉPARATEUR === */
.fs-hero__sep {
  height: 1px;
  background: linear-gradient(to right, transparent, #FFFFFF2B, transparent);
  margin: 1rem 36px;
}

/* === BLOC "POURQUOI" === */
.fs-hero__why-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.3;
  margin: 0 0 1.75rem;
}

.fs-hero__why-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.fs-hero__why-body p {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.75;
  color: #ECE9F2;
  margin: 0;
}

/* Gras en rose dans le bloc "Pourquoi" */
.fs-hero__why b {
  color: #FF7FC2;
  font-weight: 600;
}

/* =============================================
   RESPONSIVE
   ============================================= */

/* Tablette ↓ 1024px */
@media (max-width: 1024px) {
  .fs-hero__inner {
    padding: 10rem 2rem 3rem;
  }
}

/* Mobile ↓ 768px */
@media (max-width: 768px) {
  .fs-hero__inner {
    padding: 8rem 1.25rem 2rem;
  }
  .fs-hero__ctas {
    flex-direction: column;
  }
  .fs-hero__bottom {
    gap: 1.25rem;
    padding: 1.25rem;
  }
}