.cta-section {
    background: linear-gradient(145deg, var(--bg-dark) 0%, var(--bg-dark-secondary) 100%);
    color: var(--text-body);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(125, 61, 255, 0.2);
    margin: 0 auto;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: -30%;
  width: 160%;
  height: 100%;
  background: radial-gradient(circle at center, rgb(90 60 255 / 3%), transparent 70%);
  animation: glowMove 8s linear infinite;
  z-index: 0;
}

@keyframes glowMove {
  0% { transform: translateX(-10%); }
  50% { transform: translateX(10%); }
  100% { transform: translateX(-10%); }
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section .container.alignment-center {
  margin: 0 auto;
  text-align: center;
}

.cta-section h3 {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #00e5ff;
  margin-bottom: 10px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta-section h3 i {
  color: #00ffb3;
  font-size: 1.5rem;
  text-shadow: 0 0 10px rgba(0, 255, 179, 0.6);
  transition: all 0.3s ease;
}

.cta-section h3:hover i {
  color: #00e5ff;
  transform: scale(1.2);
}

.cta-section p {
  font-size: 1.6rem;
  font-weight: 600;
  color: #ffffff;
  margin-top: 10px;
}

.cta-section .cta-link {
  color: #8b5cf6;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.cta-section .cta-link:hover {
  color: #00e5ff;
  border-color: #00e5ff;
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.6);
}