/* ===== CTA / CONTACT ===== */
.cta {
  text-align: center;
  position: relative;
  padding: 8rem 3rem;
  overflow: hidden;
}

.cta-bg-logo {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 200, 212, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 200, 212, .025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
  pointer-events: none;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 200, 212, .06) 0%, transparent 65%);
  pointer-events: none;
}

.cta .heading {
  margin-bottom: 1rem;
}

.cta .desc {
  margin: 0 auto 2.5rem;
  text-align: center;
  max-width: 480px;
}

/* Override clip-path on the email button so @ isn't clipped */
.cta .btn-p {
  clip-path: none;
  padding: .85rem 2.8rem;
}

.cta-socials {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1.2rem;
}
