[data-mh-lead-form] {
  position: relative;
}

#product-inquiry,
#industry-inquiry {
  scroll-margin-top: calc(var(--header-height) + 1.5rem);
}

[data-mh-form-note] {
  margin-top: 0.25rem;
}

.mh-form-honeypot {
  position: absolute;
  left: -9999px;
}

.mh-form-note {
  display: none;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: hsl(var(--muted-foreground));
}

.mh-form-toast {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 80;
  max-width: min(22rem, calc(100% - 2rem));
  transform: translate(-50%, -50%) scale(0.98);
  border: 1px solid hsl(var(--border));
  border-radius: calc(var(--radius) - 2px);
  background: hsl(var(--foreground));
  color: hsl(var(--background));
  box-shadow: 0 18px 45px hsl(var(--foreground) / 0.18);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.mh-form-toast[data-visible="true"] {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.mh-form-toast[data-state="success"] {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.mh-form-toast[data-state="error"] {
  background: #b42318;
  color: #fff;
}

@media (max-width: 767px) {
  [data-mh-lead-form],
  .mh-form-section-inner,
  .mh-contact-layout {
    width: 100%;
  }
}
