/* ══════════════════════════════════════════════════════════════
   LANDING PAGE: FINAL CALL-TO-ACTION SECTION
   
   Bottom-of-page CTA section with:
   - Centered radial gradient background
   - Heading and descriptive text
   - Action buttons layout
   
   Classes:
   - .vs-final-cta
   - .vs-final-cta__actions
   
   Depends on:
   - design-system.css (CSS custom properties)
   ══════════════════════════════════════════════════════════════ */

/* Final CTA */
.vs-final-cta {
  text-align: center;
  margin-bottom: var(--vs-space-4xl);
  padding: var(--vs-space-3xl) var(--vs-space-xl);
  background:
    radial-gradient(circle at center, rgba(230, 154, 71, 0.03) 0%, transparent 70%);
  border-radius: var(--vs-radius-2xl);
}

.vs-final-cta h2 {
  margin-bottom: var(--vs-space-md);
}

.vs-final-cta p {
  max-width: 580px;
  margin: 0 auto var(--vs-space-xl);
}

.vs-final-cta__actions {
  display: flex;
  justify-content: center;
  gap: var(--vs-space-md);
  flex-wrap: wrap;
  margin-top: var(--vs-space-xl);
}
