/* =====================================================
   §8 — cta-final.css  v1
   CTA Final : "Commencer par une conversation"
   Fond : #2A3836
   Scrub GSAP 4 étapes : eyebrow → titre → corps → CTA
   Mobile : même séquence, layout colonne unique
   Police : Rajdhani uniquement
   Palette : --dark #2A3836 / --mid #3C534D
             --sage #4A6B61 / --light #CAD5D3
===================================================== */

/* ─── Section wrapper ─────────────────────────────── */
#cta-final {
  background: var(--dark, #2A3836);
  position: relative;
  overflow: hidden;
}

/* Grain de fond subtil — profondeur sur le dark */
#cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      ellipse 70% 60% at 50% 50%,
      rgba(74, 107, 97, 0.13) 0%,
      transparent 70%
    );
  pointer-events: none;
  z-index: 0;
}

/* Trait décoratif haut — continuité visuelle avec §7 */
#cta-final::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 1px;
  background: rgba(202, 213, 211, 0.25);
  pointer-events: none;
  z-index: 1;
}

/* ─── Inner ──────────────────────────────────────── */
.ctaf-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  padding: 7rem 2.4rem 6rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}

/* ─── Eyebrow ────────────────────────────────────── */
.ctaf-eyebrow {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--sage, #4A6B61);
  margin: 0 0 1.6rem;
}

/* ─── Titre ──────────────────────────────────────── */
.ctaf-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  margin: 0 0 2rem;
  max-width: 640px;
}

/* Point final sage — signature typographique */
.ctaf-title .ctaf-dot {
  color: var(--sage, #4A6B61);
}

/* ─── Corps ──────────────────────────────────────── */
.ctaf-body {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(202, 213, 211, 0.72);
  max-width: 520px;
  margin: 0 auto 3rem;
}

/* ─── Bloc CTA ───────────────────────────────────── */
.ctaf-cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}

/* Bouton principal */
.ctaf-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dark, #2A3836);
  background: var(--light, #CAD5D3);
  border: none;
  border-radius: 3px;
  padding: 1.1rem 2.4rem;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.2s ease,
    box-shadow 0.25s ease;
}

.ctaf-btn:hover {
  background: #FFFFFF;
  color: var(--dark, #2A3836);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.22);
}

.ctaf-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Flèche SVG inline */
.ctaf-btn-arrow {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.ctaf-btn:hover .ctaf-btn-arrow {
  transform: translateX(3px);
}

/* Note basse */
.ctaf-note {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  line-height: 1.55;
  color: rgba(202, 213, 211, 0.4);
  letter-spacing: 0.04em;
  margin: 0;
}

/* ─── Séparateur bas ─────────────────────────────── */
.ctaf-separator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}

.ctaf-separator-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(
    to bottom,
    rgba(202, 213, 211, 0.3),
    transparent
  );
}

.ctaf-separator-label {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(202, 213, 211, 0.35);
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════
   MOBILE ≤768px
═══════════════════════════════════════════════════ */
@media (max-width: 768px) {

  .ctaf-inner {
    padding: 5rem 1.8rem 4.5rem;
    min-height: 100vh;
    justify-content: center;
  }

  .ctaf-title {
    font-size: clamp(1.7rem, 6.5vw, 2.2rem);
    max-width: 100%;
  }

  .ctaf-body {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 2.4rem;
    max-width: 340px;
  }

  .ctaf-btn {
    padding: 1rem 2rem;
    font-size: 0.78rem;
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .ctaf-separator {
    bottom: 2rem;
  }
}