.cta-section {
  background: var(--s1);
  border-radius: 24px;
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 0 var(--pad);
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 65%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-section .section-title {
  margin-bottom: 2rem;
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-shadow: 0 0 50px rgba(255, 255, 255, 0.1);
  line-height: 1;
}

.cta-section .section-sub {
  margin: 0 auto 2.25rem;
  text-align: center;
}

.cta-btns {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .cta-section {
    margin: 0;
    border-radius: 0;
  }
}
