.cta {
  background: #7a3ef0;
  color: #fff;
  padding: 40px 0;
  height: 85vh;
  border-radius: 15px;
}

.cta h2 {
  font-size: 42px;
  font-weight: 700;
}

.cta-steps .step {
  display: none;
  margin-top: 20px;
}

.cta-steps .step.visible {
  display: block;
}



.cta-images {
  position: relative;
}

.cta-phone {
  width: 265px;
  height: 545px;
  display: none;
  transition: opacity 0.5s ease;
}

.cta-phone.active {
  display: inline-block;
}

.cta-dots span {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  cursor: pointer;
}

.cta-dots .active {
  background: #fff;
}


/* =======================
   RESPONSIVE (MOBILE)
======================= */
@media (max-width: 991px) {
  .cta {
    padding: 40px 20px;
  }

  .cta-content h2 {
    font-size: 28px;
  }

  .cta-content p {
    margin: 0 auto;
  }

  .cta-dots {
    justify-content: center;
    
  }

  .cta-phone {
    max-width: 220px;
  }
}