/* ================= CTA ================= */

.cta-section {
  padding: 120px 8%;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  text-align: center;
  color: #fff;
}

.cta-inner {
  max-width: 900px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 600;
}

.cta-section p {
  margin-top: 26px;
  font-size: 20px;
  opacity: 0.9;
}

.cta-btn {
  display: inline-block;
  margin-top: 40px;
  padding: 18px 64px;
  background: #fff;
  color: #111;
  font-size: 18px;
  font-weight: 600;
  border-radius: 14px;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}

/* MOBILE */
@media (max-width: 768px) {
  .cta-section h2 {
    font-size: 36px;
  }

  .cta-section p {
    font-size: 17px;
  }
}
