/* =============================================
   SECTION EXPERTISE — fs-expertise
   ============================================= */
.fs-expertise {
  background:
    radial-gradient(ellipse at 50% 0%, #3D0A50 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, #3D0A50 0%, transparent 60%),
    #0A0118;
  padding: 3rem 2rem 5rem;
  text-align: center;
  color: #ECE9F2;
}

/* En-tête */
.fs-expertise__header {
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

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

.fs-expertise__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 600;
  color: #FFFFFF;
  margin: 0 0 0.75rem;
}

.fs-expertise__subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #FFFFFF;
  margin: 0;
}

/* Grille */
.fs-expertise__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 1080px;
  margin: 0 auto;
}

/* Carte */
.fs-expertise__card {
  background-image:
    linear-gradient(115deg, #2B233880 0%, #2B2338 100%),
    linear-gradient(#241A30 1px, transparent 1px),
    linear-gradient(90deg, #241A30 1px, transparent 1px);
  background-size: auto, 50px 50px, 50px 50px;
  background-color: #0F0520;
  border: 1px solid #241A30;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* Icône */
.fs-expertise__icon {
  width: 48px;
  height: 48px;
  color: #FF7FC2;
}

.fs-expertise__icon svg {
  width: 100%;
  height: 100%;
}

/* Titre carte */
.fs-expertise__card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0;
}

/* Description carte */
.fs-expertise__card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.75;
  color: #ECE9F2;
  margin: 0;
}

.fs-expertise__card-desc strong {
  color: #FF7FC2;
  font-weight: 600;
}

.fs-expertise__card-desc a {
  color: #FF7FC2 !important;
  text-decoration: none;
}

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

/* Tablette 1024px */
@media (max-width: 1024px) {
  .fs-expertise {
    padding: 3rem 1.5rem;
  }
}

/* Mobile 768px */
@media (max-width: 768px) {
  .fs-expertise {
    padding: 1rem 1rem;
  }

  .fs-expertise__grid {
    grid-template-columns: 1fr;
  }
}