/* =====================================
   CTA – FULL WIDTH BACKGROUND (FINAL)
===================================== */

.cta-full {
  width: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Overlay exactly like design */
.cta-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(245, 249, 252, 0.96) 0%,
    rgba(245, 249, 252, 0.9) 55%,
    rgba(245, 249, 252, 0.65) 100%
  );
}

/* Inner wrapper */
.cta-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}

/* =====================================
   TEXT
===================================== */

.cta-heading {
  font-family: "Open Sans", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 32px;
  color: #1a1a1a;
  margin-bottom: 44px;
}

/* =====================================
   BUTTON GROUP
===================================== */

.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Base button */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 44px;

  padding: 0 24px;
  border-radius: 10px;

  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;

  text-decoration: none;
  transition: all 0.2s ease;
}

/* Primary – Red */
.cta-btn-primary {
  background: #ee304e;
  color: #ffffff;
}

.cta-btn-primary:hover {
  background: #d62843;
}

/* Secondary – Blue */
.cta-btn-secondary {
  background: #0a45bb;
  color: #ffffff;
}

.cta-btn-secondary:hover {
  background: #083a9c;
}

/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 768px) {
  .cta-inner {
    padding: 60px 20px;
  }

  .cta-heading {
    font-size: 24px;
    line-height: 28px;
  }

  .cta-buttons {
    gap: 12px;
  }

  .cta-btn {
    width: 100%;
    max-width: 280px;
  }
}
