.nh-cta form {
  max-width: 480px;
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: left;
}

.nh-cta form label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.nh-cta form input,
.nh-cta form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.95rem;
}

.nh-cta form input::placeholder,
.nh-cta form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.nh-cta form input:focus,
.nh-cta form textarea:focus {
  outline: none;
  border-color: var(--gold, #C8993F);
  background: rgba(255, 255, 255, 0.12);
}

.nh-cta form textarea {
  min-height: 110px;
  resize: vertical;
}

.nh-cta form button[type="submit"] {
  align-self: center;
  margin-top: 0.5rem;
  background: linear-gradient(135deg, var(--gold, #C8993F), var(--gold-light, #E2B964));
  border: none;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;