/* ================= CTA ================= */

.cta-section {
  background: #101010; /* matches hero tone */
  padding: 90px 60px;
  color: #ffffff;
}

.cta-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* HEADING */
.cta-container h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 14px;
}

/* TEXT */
.cta-text {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
}

/* BUTTON */
.cta-button {
  display: inline-block;
  padding: 14px 36px;
  background: #0ea5a4;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.cta-button:hover {
  background: #0c8f8e;
  transform: translateY(-2px);
}

/* ================= MOBILE ================= */

@media (max-width: 900px) {

  .cta-section {
    padding: 70px 24px;
  }

  .cta-container h2 {
    font-size: 28px;
  }

  .cta-text {
    margin-bottom: 28px;
  }

  .cta-button {
    padding: 14px 30px;
  }
}
