/* CTA banner component styles (moved from inline) */
.cta-banner {
  position: relative;
  background: linear-gradient(90deg, #0b2b66 0%, #0b2d69 18%, #0f3f82 46%, #123f8d 65%, #0f4ea8 100%);
  padding: 18px 26px;
  border-radius: 7px;
  margin: -12px 25px;
  box-shadow: none;
  overflow: hidden;
}

/* Glowing blue wave effect */
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 8% 50%, rgba(59,130,246,0.15) 0%, transparent 35%),
    radial-gradient(circle at 12% 55%, rgba(96,165,250,0.10) 0%, transparent 28%);
  pointer-events: none;
  border-radius: 18px;
}

.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 92% 50%, rgba(29,78,216,0.08) 0%, transparent 40%);
  pointer-events: none;
  border-radius: 18px;
}

.cta-banner .container { max-width: 1200px; position: relative; z-index: 1; }

.cta-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  justify-content: space-between;
}

/* left icon */
.cta-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.12);
}

.cta-icon .icon-inner {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-icon svg { width: 28px; height: 28px; color: #0b2b66; }

/* text area */
.cta-text {
  flex: 1 1 auto;
  color: #fff;
  min-width: 0;
}
.cta-title {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 8px 0;
  line-height: 1.2;
}
.cta-sub {
  margin: 0;
  color: rgba(255,255,255,0.88);
  font-size: 15px;
  line-height: 1.6;
}

/* right button */
.cta-action {
  flex-shrink: 0;
}
.cta-action .btn-cta {
  background: #ffffff;
  color: #0b2b66;
  border-radius: 10px;
  padding: 13px 22px;
  font-weight: 700;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: none;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.cta-action .btn-cta .arrow {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: rgba(13, 45, 96, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.cta-action .btn-cta:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

/* Responsive layout */
@media (max-width: 991px) {
  .cta-inner { flex-direction: column; align-items: center; text-align: center; }
  .cta-icon { margin-bottom: 8px; }
  .cta-action { margin-top: 12px; }
  .cta-title { font-size: 22px; }
}

@media (max-width: 480px) {
  .cta-title { font-size: 18px; }
  .cta-sub { font-size: 14px; }
  .cta-icon { width: 56px; height: 56px; }
  .cta-icon .icon-inner { width: 40px; height: 40px; }
  .cta-action .btn-cta { padding: 10px 14px; }
}
