/* === CTA BANNER === */
.cta-banner {
  position: relative;
  background: #080C12;
  padding: 6rem 2rem;
  text-align: center;
  overflow: hidden;
}



.cta-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

/* Badge */
.cta-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #00E8FF;
  border: 1px solid rgba(0, 232, 255, 0.3);
  border-radius: 999px;
  padding: .35rem 1rem;
  margin-bottom: 1.75rem;
}

/* Headline */
.cta-headline {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: #EDEDED;
  margin: 0 0 1.25rem;
}

/* Subtext */
.cta-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(237, 237, 237, 0.5);
  margin: 0 auto 2.5rem;
  max-width: 560px;
}

/* Button */
.cta-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-weight: 600;
  font-size: 1rem;
  color: #0A0E14;
  background: linear-gradient(135deg, #00F5B5, #00E8FF);
  border-radius: 999px;
  padding: .9rem 2.2rem;
  text-decoration: none;
  box-shadow: 0 0 32px rgba(0, 232, 255, 0.2);
  transition: box-shadow .25s ease, transform .2s ease;
}

.cta-banner-btn:hover {
  box-shadow: 0 0 52px rgba(0, 232, 255, 0.38);
  transform: translateY(-2px);
}

.cta-banner-btn .arrow {
  display: inline-block;
  transition: transform .2s ease;
}

.cta-banner-btn:hover .arrow {
  transform: translateX(4px);
}

/* Mobile */
@media (max-width: 600px) {
  .cta-banner {
    padding: 4rem 1.5rem;
  }
}
