/* ===== SECTION ALTERNATING ===== */
.fs-alternating {
  width: 100%;
  background:
    radial-gradient(ellipse at 50% 0%, #3D0A50 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, #3D0A50 0%, transparent 60%),
    #0A0118;
  box-sizing: border-box;
}

.fs-alternating__inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 20px 100px;
  box-sizing: border-box;
}

/* --- Intro centrée --- */
.fs-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.fs-intro-title {
  font-family: 'Outfit', sans-serif;
  font-size: 44px;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.2;
  margin: 0 0 12px 0;
}
.fs-intro-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #B47CFD;
  margin: 0 0 20px 0;
}
.fs-intro-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #ECE9F2;
  margin: 0;
}
.fs-intro-text strong {
  color: #FF7FC2;
  font-weight: 600;
}
.fs-intro-text a {
  color: #FF7FC2;
  text-decoration: none;
}

/* --- Row --- */
.fs-alt-row {
  display: flex;
  flex-direction: row;
  gap: 60px;
  align-items: center;
}

/* --- Alternance desktop --- */
.fs-alt-row.fs-alt-row--reverse .fs-alt-image {
  order: -1;
}

/* --- Colonnes --- */
.fs-alt-content,
.fs-alt-image {
  flex: 1;
  box-sizing: border-box;
}

/* --- Image --- */
.fs-alt-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* --- Eyebrow --- */
.fs-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #FF7FC2;
}

/* --- Titres --- */
.fs-alt-title {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.25;
  margin: 0 0 20px 0;
}
.fs-checklist-title {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
  margin: 24px 0 12px 0;
}

/* --- Texte --- */
.fs-alt-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #ECE9F2;
}
.fs-alt-text p {
  margin: 0 0 16px 0;
}
.fs-alt-text p:last-child {
  margin-bottom: 0;
}
.fs-alt-text strong {
  color: #FF7FC2;
  font-weight: 600;
}
.fs-alt-text a {
  color: #FF7FC2;
  text-decoration: none;
}

/* --- Checklist --- */
.fs-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fs-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #ECE9F2;
  line-height: 1.5;
}
.fs-checklist li strong {
  color: #FF7FC2;
}
.fs-check-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
}
.fs-check-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: #B47CFD;
}

/* --- Séparateur --- */
.fs-alternating .fs-divider {
  all: unset;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #241A30;
  margin: 0;
}

/* --- Liste numérotée --- */
.fs-numlist {
  margin: 16px 0 0 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fs-numlist li {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #ECE9F2;
  line-height: 1.5;
  padding-left: 6px;
}
.fs-numlist li strong {
  color: #FF7FC2;
}

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

/* Tablette ↓ 1024px */
@media (max-width: 1024px) {
  .fs-alternating__inner {
    gap: 60px;
    padding: 60px 20px;
  }
  .fs-alt-row {
    gap: 40px;
  }
}

/* Mobile ↓ 768px */
@media (max-width: 768px) {
  .fs-alternating__inner {
    gap: 40px;
    padding: 60px 16px;
  }
  .fs-intro-title {
    font-size: 28px;
  }
  .fs-alt-title {
    font-size: 24px;
  }
  .fs-alt-row {
    flex-direction: column;
    gap: 24px;
  }
  .fs-alt-row.fs-alt-row--reverse .fs-alt-image {
    order: unset;
  }
  .fs-alt-content,
  .fs-alt-image {
    flex: unset;
    width: 100%;
  }
}