/* ==========================================================================
   CTA Section
   Monotics WordPress Theme
   ========================================================================== */

.cta-section {
  background: linear-gradient(135deg, #04102a, #081a3a);
  position: relative;
  overflow: hidden;
}

/* Glow orb background */
.cta-section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 87, 255, 0.12), transparent 70%);
  pointer-events: none;
}

/* --- CTA Inner --- */
.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* --- CTA Title --- */
.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.cta-title em {
  font-style: normal;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- CTA Description --- */
.cta-desc {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* --- CTA Buttons --- */
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
}
