/* ════════════════════════════════════════
   CTA.CSS — Call to Action Section
════════════════════════════════════════ */

#cta { background: var(--bg2); padding: 80px 2rem; }

.cta-card {
  max-width: 900px; margin: 0 auto;
  border-radius: 28px;
  background: linear-gradient(135deg,rgba(0,229,255,.06),rgba(168,85,247,.06));
  border: 1px solid rgba(0,229,255,.15);
  padding: 4rem 3rem; text-align: center;
  position: relative; overflow: hidden;
}

/* Glow orbs */
.cta-glow1 {
  position: absolute; width: 300px; height: 300px; border-radius: 50%;
  background: rgba(0,229,255,.1); filter: blur(80px);
  top: -100px; left: -80px; pointer-events: none;
}
.cta-glow2 {
  position: absolute; width: 250px; height: 250px; border-radius: 50%;
  background: rgba(168,85,247,.1); filter: blur(80px);
  bottom: -80px; right: -60px; pointer-events: none;
}

.cta-title {
  font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 900;
  letter-spacing: -.04em; margin-bottom: .8rem; position: relative; z-index: 1;
}
.cta-sub {
  color: var(--text2); font-size: 1rem;
  max-width: 460px; margin: 0 auto 2.2rem; line-height: 1.7;
  position: relative; z-index: 1;
}
.cta-btns {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  position: relative; z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-card { padding: 2.5rem 1.5rem; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn-glow, .cta-btns .btn-outline { width: 100%; justify-content: center; }
}
