/* ── CTA Banner (Shared Component) ── */
.bosa-cta-banner {
  padding: 40px 0 60px;
}

.bosa-cta-banner-inner {
  background: var(--bosa-primary-dark);
  border-radius: 24px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}

.bosa-cta-banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.bosa-cta-banner-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(22, 163, 74, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.bosa-cta-banner-text {
  color: #fff;
}

.bosa-cta-banner-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--bosa-primary);
  margin-bottom: 12px;
}

.bosa-cta-banner-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  color: #ffffff;
}

.bosa-cta-banner-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.bosa-cta-banner-action .bosa-btn-primary {
  border-radius: 8px;
  padding: 16px 32px;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .bosa-cta-banner-inner {
    padding: 48px 32px;
  }
}

@media (min-width: 1024px) {
  .bosa-cta-banner {
    padding: 40px 0 100px;
  }
  .bosa-cta-banner-inner {
    flex-direction: row;
    text-align: left;
    padding: 32px 40px;
  }
  .bosa-cta-banner-content {
    flex-direction: row;
    align-items: center;
  }
}
