/* ===== CTA Banner ===== */
.cta-banner {
  background: var(--green);
  padding: 40px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bear {
  display: none;
}

@media (min-width: 900px) {
  .cta-bear {
    display: block;
    position: absolute;
    right: 5%;
    bottom: -4px;
    width: 100px;
    height: auto;
    opacity: 0.25;
  }
}

.cta-banner-text {
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.6;
}

.cta-banner-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--green);
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.cta-banner-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}
