.cta-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.cta-feedback {
  display: grid;
  gap: 4px;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  border-radius: 18px;
  transform: translateY(8px);
  transition:
    max-height 0.25s ease,
    opacity 0.25s ease,
    padding 0.25s ease,
    transform 0.25s ease;
}

.cta-feedback strong {
  font-size: 15px;
}

.cta-feedback span {
  font-size: 14px;
  line-height: 1.45;
}

.cta-feedback.is-visible {
  max-height: 140px;
  opacity: 1;
  padding: 14px 16px;
  transform: translateY(0);
}

.cta-feedback.is-success {
  color: #14351a;
  background: linear-gradient(135deg, rgba(204, 241, 203, 0.96), rgba(170, 225, 169, 0.96));
  box-shadow: 0 16px 32px rgba(45, 125, 55, 0.18);
}

.cta-feedback.is-error {
  color: #fff5f5;
  background: linear-gradient(135deg, rgba(146, 37, 37, 0.92), rgba(197, 66, 66, 0.92));
  box-shadow: 0 16px 32px rgba(146, 37, 37, 0.22);
}

.cta-form .is-invalid {
  outline: 2px solid rgba(207, 77, 77, 0.9);
  outline-offset: 2px;
}

.cta-submit.is-loading {
  opacity: 0.9;
  pointer-events: none;
}

@media (max-width: 767px) {
  .cta-feedback strong {
    font-size: 14px;
  }

  .cta-feedback span {
    font-size: 13px;
  }
}
