/* ============================================
   CTA (Call-to-Action) Section
   ============================================ */

.cta-section {
  position: relative;
  z-index: 1;
  padding: 120px 0;
  background: #0d0d0d;
  overflow: hidden;
}

.cta-bg-blocks {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(199, 140, 25, .15) 0, transparent 65%),
    radial-gradient(ellipse 50% 40% at 20% 50%, rgba(245, 158, 11, .08) 0, transparent 50%),
    radial-gradient(ellipse 50% 40% at 80% 50%, rgba(217, 119, 6, .08) 0, transparent 50%);
  pointer-events: none;
}

.cta-content {
  text-align: center;
  position: relative;
  max-width: 620px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2.25rem, 4.5vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.03em;
  margin-bottom: 20px;
  color: #fff;
}

.cta-title .text-gradient {
  background: linear-gradient(135deg, #facc15, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.72;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-section {
    padding: 72px 0;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}
