/* ══════════════════════════════════════════════════
   Growth CTA Banner
   ══════════════════════════════════════════════════ */

.bh-growth-cta {
  background: #000;
  padding: clamp(16px, 3vw, 40px) clamp(24px, 4vw, 64px);
}

.bh-growth-cta-inner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  max-width: clamp(320px, 83.33vw, 1600px);
  margin: 0 auto;
  background: linear-gradient(135deg, #1a3a4a 0%, #4a9ab5 40%, #7dc4d6 70%, #a8dce8 100%);
}

/* Background image */
.bh-growth-cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Content — flex row */
.bh-growth-cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: clamp(36px, 4vw, 56px) clamp(32px, 4vw, 60px);
}

/* Left text */
.bh-growth-cta-text {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bh-growth-cta-heading {
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 400;
  color: #0a1628;
  line-height: 1.45;
  margin: 0;
}

.bh-growth-cta-heading strong {
  font-weight: 800;
}

.bh-growth-cta-sub {
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 500;
  color: rgba(0,0,0,0.55);
  line-height: 1.65;
  margin: 0;
}

.bh-growth-cta-sub strong {
  font-weight: 700;
  color: rgba(0,0,0,0.75);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* CTA Button — simple, clean */
.bh-growth-cta-btn-wrap {
  padding-top: 4px;
}

.bh-growth-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 40px;
  color: #0a1628;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  background: transparent;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.bh-growth-cta-btn:hover {
  border-color: rgba(0,0,0,0.4);
  background: rgba(0,0,0,0.06);
  color: #0a1628;
  text-decoration: none;
  transform: translateY(-2px);
}

.bh-growth-cta-arrow {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.bh-growth-cta-btn:hover .bh-growth-cta-arrow {
  transform: translate(2px, -2px);
}

/* Right graphic */
.bh-growth-cta-graphic {
  flex-shrink: 0;
  width: clamp(160px, 20vw, 280px);
  height: clamp(160px, 20vw, 280px);
  border-radius: 16px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px) scale(0.9);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.bh-growth-cta-graphic.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.bh-growth-cta-graphic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: bh-gcta-float 4s ease-in-out infinite;
}

@keyframes bh-gcta-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── Responsive ── */

@media (max-width: 1024px) {
  .bh-growth-cta-graphic {
    width: clamp(120px, 18vw, 200px);
    height: clamp(120px, 18vw, 200px);
  }
}

@media (max-width: 768px) {
  .bh-growth-cta-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .bh-growth-cta-text {
    max-width: 100%;
  }

  .bh-growth-cta-graphic {
    width: 140px;
    height: 140px;
    align-self: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bh-growth-cta-graphic img {
    animation: none;
  }
  .bh-growth-cta-graphic {
    opacity: 1;
    transform: none;
  }
}
