/* CTA SECTION */
.cta {
  min-height: 80vh;
  background: #8341E6;
  border-radius: 24px;
  border: 1px solid #eef2f7;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04),
    0 1px 2px rgba(15, 23, 42, 0.06);
  padding: 60px 0;
  margin: 40px 0;
  display: flex;
  align-items: center;
}

/* LEFT CONTENT */
.cta-content {
  color: #ffffff;
}

.cta-content h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 420px;
}

/* DOT INDICATORS */
.cta-dots {
  display: flex;
  gap: 8px;
  justify-content: flex-start;
}

.cta-dots span {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}

.cta-dots span:first-child {
  background: #ffffff;
}

/* PHONE IMAGE */
.cta-phone {
  max-width: 260px;
  width: 100%;
}

/* =======================
   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;
  }
}
