/* =============================================================================
   CTA.CSS — Call-to-Action Section
   ============================================================================= */

.cta-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f0ff 0%, #ede8ff 100%);
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(124, 58, 237, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 50%, rgba(15, 211, 172, 0.07) 0%, transparent 50%);
  pointer-events: none;
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  background: #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: 32px;
  padding: 64px 52px;
  box-shadow: 0 8px 48px rgba(124, 58, 237, 0.10);
}

.cta-inner .section-title {
  margin-bottom: 16px;
  color: var(--text-primary);
}

.cta-inner p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Stats Row ── */
.cta-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 60px;
}

.cta-stat {
  text-align: center;
}

.cta-stat .cta-stat-val {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-stat .cta-stat-label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-top: 4px;
}
