/* =============================================
   SECTION IDENTITÉ & EEAT — fs-identity
   ============================================= */
.fs-identity {
  width: 100%;
  background-color: #110426; /* Léger contraste avec le fond noir */
  color: #ECE9F2;
  padding: 6rem 2rem;
}

.fs-identity__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4rem;
}

/* Colonne Contenu */
.fs-identity__content {
  flex: 1.2;
}

.fs-identity__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.2;
  margin: 0 0 1.5rem;
}

.fs-identity__lead {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #ECE9F2;
  margin: 0 0 3rem;
}

/* Liste des Features */
.fs-identity__features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.fs-identity__feat-item {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}

/* 🟢 FIX VISUEL : Puce minimaliste en dégradé à la place des icônes clunky */
.fs-identity__feat-item::before {
  content: "";
  width: 8px;
  height: 8px;
  background: linear-gradient(120deg, #b47cfd 0%, #ff7fc2 100%);
  border-radius: 50%;
  margin-top: 0.6rem;
  flex-shrink: 0;
}

.fs-identity__feat-text h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0 0 0.5rem;
}

.fs-identity__feat-text p {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #ECE9F2;
  margin: 0;
}

/* Colonne Visuelle (La Box de droite) */
.fs-identity__visual {
  flex: 0.8;
  display: flex;
  justify-content: center;
}

.fs-identity__box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid #241A30;
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  max-width: 380px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.fs-identity__box img {
  display: block;
  margin: 0 auto 1.5rem;
  height: auto;
}

.fs-identity__badge-gov {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(120deg, #b47cfd 0%, #ff7fc2 100%);
  color: #FFFFFF;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

.fs-identity__box h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0 0 1rem;
}

.fs-identity__box p {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  line-height: 1.6;
  color: #ECE9F2;
  margin: 0 0 2rem;
}

.fs-identity__box .fs-btn {
  width: 100%;
  box-sizing: border-box;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 992px) {
  .fs-identity__inner {
    flex-direction: column;
    gap: 4rem;
  }
  .fs-identity__visual {
    width: 100%;
  }
  .fs-identity__box {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .fs-identity {
    padding: 4rem 1.25rem;
  }
}