.cta {
  background: linear-gradient(135deg, #6B2D7E 0%, #A855D5 50%, #D84AB7 100%);
  padding: 100px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta__container {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta__title {
  font-size: 42px;
  font-weight: var(--font__gras);
  color: var(--color-white);
  margin-bottom: 20px;
  line-height: 1.3;
}

.cta__description {
  font-size: 15px;
  color: var(--color-white);
  margin-bottom: 35px;
  line-height: 1.6;
  opacity: 0.95;
}

.btn__cta {
  background-color: var(--color-cyan);
  color: var(--color-black);
  border: none;
  padding: 15px 50px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: var(--font__gras);
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: capitalize;
}

.btn__cta:hover {
  background-color: #00B8CC;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 217, 255, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .cta {
    padding: 60px 20px;
  }

  .cta__title {
    font-size: 28px;
  }

  .cta__description {
    font-size: 14px;
  }
}
