/* ─── CTA Section ─── */
.cta-section {
  text-align: center;
  padding: 8rem 3rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.cta-section .orb-cta {
  position: absolute;
  width: 800px; height: 800px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(91, 79, 255, 0.2), transparent 60%);
  pointer-events: none;
}
.cta-section h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}
.cta-section p {
  font-size: 1rem;
  color: rgba(245, 242, 235, 0.5);
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}
.cta-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}
.badge {
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(245, 242, 235, 0.6);
}
.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  position: relative;
  z-index: 2;
}

/* ─── Footer ─── */
footer {
  padding: 2rem 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .logo {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--lime);
}
footer p {
  font-size: 0.78rem;
  color: rgba(245, 242, 235, 0.25);
  font-family: 'DM Mono', monospace;
}
