/* ═══════════════════════════════════════════
   CTA — full width dark
   ═══════════════════════════════════════════ */
.cta {
  padding: var(--section-pad) 2.4rem;
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.cta__orb--1 {
  width: 500px; height: 500px;
  background: var(--blue);
  top: -150px; left: -100px;
  opacity: 0.12;
}
.cta__orb--2 {
  width: 400px; height: 400px;
  background: var(--green);
  bottom: -120px; right: -80px;
  opacity: 0.1;
}

.cta__inner { position: relative; }

/* Euphoric-scale CTA heading: 4rem+ */
.cta__title {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.cta__sub {
  font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  max-width: 540px;
  margin: 0 auto 2.5rem;
}

.cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
}
.cta__fine {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.3);
}
