/* ============================================
   CTA Enhanced Section
   ============================================ */

.cta-enhanced {
  position: relative;
  padding: clamp(8rem, 14vh, 16rem) 0;
  background: linear-gradient(to bottom, #0A0E27 0%, #0C1230 100%);
  overflow: hidden;
}

.cta-enhanced__inner {
  position: relative;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 2;
}

/* Section Label */
.cta-enhanced .section-label {
  display: inline-block;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #4d65ff;
  text-transform: uppercase;
}

/* Glow Effect */
.cta-enhanced__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(77, 101, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* Massive Heading */
.cta-enhanced__heading {
  font-family: 'Bebas Neue', 'Anton SC', sans-serif;
  font-size: clamp(4rem, 10vw, 12rem);
  font-weight: 700;
  line-height: 0.9;
  color: #ffffff;
  margin: 0 0 2rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* Subtext */
.cta-enhanced__subtext {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 3rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Button Container */
.cta-enhanced__buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Button Base Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn--large {
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
}

.btn--primary {
  background: #4d65ff;
  color: #ffffff;
  border-color: #4d65ff;
}

.btn--primary:hover {
  background: #3d55ef;
  border-color: #3d55ef;
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(77, 101, 255, 0.4);
}

.btn--outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .cta-enhanced {
    padding: clamp(4rem, 10vh, 6rem) 0;
  }

  .cta-enhanced__heading {
    font-size: clamp(3rem, 12vw, 6rem);
    margin-bottom: 1.5rem;
  }

  .cta-enhanced__subtext {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .cta-enhanced__buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .btn--large {
    width: 100%;
    max-width: 320px;
  }

  .cta-enhanced__glow {
    width: 400px;
    height: 400px;
  }
}

@media (max-width: 480px) {
  .cta-enhanced__heading {
    font-size: clamp(2.5rem, 14vw, 4rem);
  }

  .btn--large {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

/* Enhanced orb glow */
.cta-enhanced__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(77, 101, 255, 0.18) 0%, rgba(77, 101, 255, 0.06) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.08); opacity: 0.8; }
}

/* Heading glow */
.cta-enhanced__heading {
  text-shadow: 0 0 80px rgba(77, 101, 255, 0.2);
}
