/* Contact us modal — topbar ⋮ menu (#90) */
.contact-modal {
  max-width: 420px;
  max-height: min(90vh, 720px);
  overflow-y: auto;
}
.contact-modal .contact-hint--sla {
  margin: 0 0 12px;
  color: var(--text-muted, #64748b);
  font-size: 12px;
  line-height: 1.45;
}
.contact-bug-links {
  display: none;
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: var(--pr, 12px);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  font-size: 12px;
  line-height: 1.45;
}
.contact-bug-links.open { display: block; }
.contact-bug-links p { margin: 0; }
.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.contact-attach-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.contact-attach-name {
  font-size: 12px;
  color: var(--text-muted, #64748b);
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.contact-turnstile-wrap {
  min-height: 68px;
  margin: 8px 0 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.contact-privacy-note {
  margin: 0 0 12px;
  font-size: 11px;
  color: var(--text-muted, #64748b);
  line-height: 1.4;
}
.contact-form-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.contact-form-actions .btn { flex: 1; min-width: 120px; justify-content: center; }
.contact-success-panel {
  display: none;
  text-align: center;
  padding: 12px 4px 4px;
}
.contact-success-panel.open { display: block; }
.contact-success-panel .ti {
  font-size: 36px;
  color: var(--ok, #16a34a);
  margin-bottom: 8px;
}
.contact-success-panel h3 {
  margin: 0 0 8px;
  font-size: 18px;
}
.contact-success-panel p {
  margin: 0 0 16px;
  font-size: 13px;
  color: var(--text-muted, #64748b);
  line-height: 1.45;
}
.contact-form-panel.hidden { display: none; }
.contact-error {
  margin: 0 0 10px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(239, 68, 68, 0.1);
  color: #b91c1c;
  font-size: 12px;
  display: none;
}
.contact-error.open { display: block; }
