.cg-cta {
  margin: 50px 0;
}

.cg-cta__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;

  padding: 70px 50px 70px 25px;

  /* Dark banner + subtle blue glow (screenshot vibe) */
  /* background:
    radial-gradient(600px 220px at 85% 30%, rgba(54, 64, 255, 0.35), rgba(0,0,0,0) 60%),
    linear-gradient(135deg, #0b0b0f 0%, #0a0a12 35%, #070714 100%); */
  background-image: url("/wp-content/uploads/2024/07/ourvision.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;

  /* Keep it clean and crisp */
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06) inset;
}
.cg-cta__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  filter: brightness( 154% ) contrast( 103% ) saturate( 100% ) blur( 0px ) hue-rotate( 0deg );
  background-image: linear-gradient(88deg, #000 20%, #00000000 100%);
  z-index: 0;
}

.cg-cta__inner > * {
  position: relative;
  z-index: 1;
}

.cg-cta__content {
  max-width: 760px;
}

.cg-cta__content h4.cg-cta__title {
  color: #fff;
  font-weight: 700;
  line-height: 27px;
  font-size: 24px;
  margin: 0;
}

.cg-cta__text {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
  color: #fff;
}

.cg-cta__text > :last-child {
  border-bottom: none !important;
  margin-bottom: 0;
  padding-bottom: 0;
}

.cg-cta__action {
  flex: 0 0 auto;
}

.cg-cta__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 18px;
  border-radius: 2px;

  background: #0125dc;
  color: #fff;
  text-decoration: none;

  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;

  transition: transform .15s ease, filter .15s ease;
}

.cg-cta__button span {
  color: #fff;
}

.cg-cta__button:hover span {
  color: #07d799;
}

.cg-cta__arrow {
  font-size: 18px;
  line-height: 1;
}

/* Mobile */
@media (max-width: 720px) {
  .cg-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
