/* =============================================
   SECTION : CTA Pack Visibilité 360°
   Préfixe : fs-cta
============================================= */

.fs-cta {
  position: relative;
  width: 100%;
  min-height: 520px;
  background-image: url('https://www.karuweb.fr/wp-content/uploads/2024/02/creation-de-site-web-referencement-reseaux-sociaux-agence-web-karuweb.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

/* Overlay sombre sur la photo */
.fs-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 1, 24, 0.82) 0%,
    rgba(10, 1, 24, 0.55) 60%,
    rgba(10, 1, 24, 0.30) 100%
  );
  z-index: 0;
}

.fs-cta__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* Carte glassmorphisme */
.fs-cta__card {
  background: rgba(24, 2, 58, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid #241A30;
  border-radius: 16px;
  padding: 40px 36px;
  max-width: 950px;
}

.fs-cta__title-accent {
  display: block;
  color: #FF7FC2;
  font-size: 0.85em;
  font-weight: 600;
  margin-top: 8px;
  letter-spacing: 0.04em;
}

/* Titre */
.fs-cta__title {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.8rem !important;
  line-height: 1.25;
  color: #FFFFFF;
  margin: 0 0 24px 0;
}

/* Corps de texte */
.fs-cta__body {
  color: #ECE9F2;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
}

.fs-cta__body p {
  margin: 0 0 16px 0;
}

.fs-cta__body p:last-child {
  margin-bottom: 0;
}

.fs-cta__body strong {
  color: #FFFFFF;
  font-weight: 700;
}

.fs-cta__body a {
  color: #FF7FC2;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Bouton CTA */
.fs-cta__btn {
  margin-top: 32px;
}

.fs-btn-gradient {
  display: inline-block;
  background: linear-gradient(120deg, #b47cfd 0%, #ff7fc2 100%);
  border-radius: 30px;
  padding: 18px 28px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  color: #FFFFFF !important;
  text-decoration: none !important;
  letter-spacing: 0.04em;
}

/* =============================================
   RESPONSIVE — Tablette et Desktop
============================================= */

@media (min-width: 768px) {
  .fs-cta {
    min-height: 600px;
  }

  .fs-cta__title {
    font-size: 1.9rem;
  }

  .fs-cta__card {
    padding: 48px 44px;
  }
}

@media (min-width: 1024px) {
  .fs-cta {
    min-height: 680px;
  }

  .fs-cta__inner {
    padding: 80px 40px;
  }

  .fs-cta__title {
    font-size: 2.1rem;
  }
}