/* =============================================
   SECTION TARIFS — fs-pricing
   ============================================= */

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

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

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

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

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

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

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

.fs-pricing__intro a {
  display: inline-block;
  color: #FFFFFF !important;
  border: 1px solid #FFFFFF;
  border-radius: 30px;
  padding: 12px 24px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  margin-top: 0.5rem;
}

/* Grille */
.fs-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

/* Carte */
.fs-card {
  background: linear-gradient(#2B2338 0%, #0A0118 100%);
  border: 1px solid #241A30;
  border-radius: 16px;
  padding: 2rem 1.75rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Carte populaire */
.fs-card--popular {
  border-color: #B47CFD;
  background: #18023A;
}

.fs-card__plan {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0;
}

.fs-card__subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #FF7FC2;
  margin: 0;
}

.fs-card__desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #ECE9F2;
  margin: 0;
}

.fs-card__divider {
  border: none;
  border-top: 1px solid #241A30;
  margin: 0.5rem 0;
}

.fs-card--popular .fs-card__divider {
  border-color: #2d1a4a;
}

.fs-card__price-block {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.fs-card__price {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1;
}

.fs-card__billing {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #FF7FC2;
}

/* Liste features */
.fs-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.fs-card__features li {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #ECE9F2;
  padding-left: 1.5rem;
  position: relative;
}

.fs-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FF7FC2;
  font-weight: 600;
}

/* Bouton dans les cartes */
.fs-card .fs-btn {
  display: block;
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 16px 24px;
  border-radius: 30px;
  text-decoration: none;
  background: linear-gradient(120deg, #b47cfd 0%, #ff7fc2 100%);
  color: #FFFFFF !important;
  border: none;
  margin-top: 0.5rem;
}

/* Texte footer carte */
.fs-card__footer {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  line-height: 1.7;
  color: #ECE9F2;
  margin: 0.5rem 0 0;
}

.fs-card__footer strong {
  color: #ECE9F2;
  font-weight: 600;
}

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

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

  .fs-pricing__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
}

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