/* Standalone enquiry dialog; the approved page remains unchanged when closed. */
.zp-enquiry {
  box-sizing: border-box;
  position: fixed;
  inset: 0;
  width: min(820px, calc(100vw - 48px));
  max-width: none;
  height: min(900px, calc(100dvh - 64px));
  max-height: none;
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid #3b4b5d;
  border-radius: 16px;
  background: #0c141f;
  color: #f4f4f0;
  font-family: Inter, Arial, sans-serif;
}
.zp-enquiry[open] { display: grid; grid-template-rows: auto minmax(0, 1fr) auto; }
.zp-enquiry::backdrop { background: rgba(1, 6, 12, .86); }
.zp-enquiry *, .zp-enquiry *::before, .zp-enquiry *::after { box-sizing: border-box; }
.zp-enquiry__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 24px;
  padding: 24px;
}
.zp-enquiry__eyebrow { margin: 0 0 10px; font-size: 10px; line-height: 1.5; letter-spacing: .18em; color: #8fb6f0; }
.zp-enquiry__title { margin: 0; font-family: 'Plus Jakarta Sans', Arial, sans-serif; font-size: 26px; font-weight: 600; line-height: 1.25; letter-spacing: -.025em; }
.zp-enquiry__context { margin: 10px 0 0; font-size: 13px; line-height: 1.5; color: #a9b7c7; }
.zp-enquiry__close {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid #526583;
  border-radius: 10px;
  background: transparent;
  color: #f4f4f0;
  font: 28px/1 Inter, Arial, sans-serif;
  cursor: pointer;
}
.zp-enquiry__close:hover { background: #192231; }
.zp-enquiry__body { position: relative; min-height: 0; overflow: hidden; background: #fff; color-scheme: light; }
.zp-enquiry__frame { display: block; width: 100%; height: 100%; border: 0; background: #fff; }
.zp-enquiry__status { position: absolute; inset: 0; display: grid; place-items: center; margin: 0; padding: 24px; background: #fff; color: #192231; font-size: 14px; line-height: 1.5; pointer-events: none; }
.zp-enquiry__status[hidden] { display: none; }
.zp-enquiry__footer { display: flex; justify-content: flex-end; padding: 8px 24px; border-top: 1px solid #263346; }
.zp-enquiry__external { display: inline-flex; align-items: center; min-height: 44px; color: #a9b7c7; font-size: 12px; line-height: 1.5; text-decoration: none; }
.zp-enquiry__external:hover { color: #f4f4f0; text-decoration: underline; text-underline-offset: 4px; }
.zp-enquiry :focus-visible { outline: 2px solid #8fb6f0; outline-offset: 4px; }
@media (max-width: 599px) {
  .zp-enquiry { width: calc(100vw - 16px); height: calc(100dvh - 16px); border-radius: 12px; }
  .zp-enquiry__header { gap: 12px; padding: 18px 16px; }
  .zp-enquiry__title { font-size: 22px; }
  .zp-enquiry__eyebrow { margin-bottom: 8px; }
  .zp-enquiry__context { margin-top: 8px; font-size: 12px; }
  .zp-enquiry__footer { padding-inline: 16px; }
}
