.cta-banner {
  background: linear-gradient(to right, #0ea5e9, #0D1B3E);
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
}

.cta-banner__container {
  width: 100%;
  max-width: 896px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}

.cta-banner__heading {
  font-family: "Inter", sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: 0.3691px;
  color: #ffffff;
  margin-bottom: 0;
}

.cta-banner__description {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.5px;
  letter-spacing: -0.5px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 24px;
  margin-bottom: 0;
}

.cta-banner__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.cta-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 50px;
  padding: 0 32px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.3125px;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s ease, background-color 0.2s ease;
}
.cta-banner__btn--primary {
  background-color: #ffffff;
  color: #0ea5e9;
  border: none;
}
.cta-banner__btn--primary:hover {
  opacity: 0.92;
}
.cta-banner__btn--secondary {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
}
.cta-banner__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
}

.cta-banner__btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .cta-banner {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .cta-banner__heading {
    font-size: 40px;
  }
  .cta-banner__actions {
    flex-direction: column;
    gap: 12px;
  }
  .cta-banner__btn {
    width: 100%;
    max-width: 320px;
  }
}