.ps-contact-form {
  display: grid;
  gap: 22px;
  margin-top: 42px;
  padding: clamp(24px, 5vw, 44px);
  border: 1px solid #dce7ee;
  border-radius: 18px;
  background: #f7fbfd;
}
.ps-contact-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.ps-contact-form label { display: grid; gap: 8px; color: #092c4c; font-size: 14px; font-weight: 700; }
.ps-contact-form label > span b { margin-left: 6px; color: #c73535; font-size: 11px; }
.ps-contact-form input[type="text"],
.ps-contact-form input[type="email"],
.ps-contact-form select,
.ps-contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: #101820;
  border: 1px solid #c9d8e1;
  border-radius: 9px;
  background: #fff;
}
.ps-contact-form textarea { resize: vertical; }
.ps-contact-form input:focus,
.ps-contact-form select:focus,
.ps-contact-form textarea:focus { border-color: #12a6f9; outline: 3px solid rgba(18, 166, 249, .16); }
.ps-contact-form .ps-contact-consent { display: flex; grid-template-columns: auto 1fr; align-items: center; gap: 10px; font-weight: 500; }
.ps-contact-consent input { width: 18px; height: 18px; margin: 0; }
.ps-contact-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.ps-contact-notice { margin: 30px 0 0; padding: 17px 19px; border-radius: 10px; font-size: 14px; }
.ps-contact-notice--success { color: #075f45; border: 1px solid #acdcca; background: #edf9f5; }
.ps-contact-notice--error { color: #872b2b; border: 1px solid #ecc2c2; background: #fff3f3; }
.ps-contact-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 560px;
  margin: 38px auto 0;
  padding: 0;
  color: #71808c;
  font-size: 12px;
  font-weight: 700;
  list-style: none;
}
.ps-contact-steps li { position: relative; display: grid; justify-items: center; gap: 7px; }
.ps-contact-steps li::before {
  position: absolute;
  z-index: 0;
  top: 16px;
  right: 50%;
  width: 100%;
  height: 2px;
  background: #dce7ee;
  content: "";
}
.ps-contact-steps li:first-child::before { display: none; }
.ps-contact-steps span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 34px;
  height: 34px;
  color: #71808c;
  border: 2px solid #dce7ee;
  border-radius: 50%;
  background: #fff;
  place-items: center;
}
.ps-contact-steps .is-current { color: #092c4c; }
.ps-contact-steps .is-current span { color: #fff; border-color: #129fe8; background: #129fe8; }
.ps-contact-steps .is-complete span { color: #fff; border-color: #0b7a5a; background: #0b7a5a; }
.ps-contact-steps .is-complete::before,
.ps-contact-steps .is-current::before { background: #8acdb9; }
.ps-contact-confirmation,
.ps-contact-completion {
  margin-top: 32px;
  padding: clamp(24px, 5vw, 44px);
  border: 1px solid #dce7ee;
  border-radius: 18px;
  background: #f7fbfd;
}
.ps-contact-confirmation > h2,
.ps-contact-completion > h2 { margin-top: 0; color: #092c4c; }
.ps-contact-summary { margin: 28px 0; border-top: 1px solid #dce7ee; }
.ps-contact-summary > div { display: grid; grid-template-columns: minmax(130px, .35fr) 1fr; border-bottom: 1px solid #dce7ee; }
.ps-contact-summary dt,
.ps-contact-summary dd { margin: 0; padding: 16px; }
.ps-contact-summary dt { color: #092c4c; background: #edf5f8; font-size: 13px; font-weight: 700; }
.ps-contact-summary dd { overflow-wrap: anywhere; white-space: normal; }
.ps-contact-recaptcha { max-width: 100%; margin: 24px 0; overflow-x: auto; }
.ps-contact-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; }
.ps-contact-actions .ps-contact-back { color: #092c4c; border-color: #b8cbd6; background: #fff; }
.ps-contact-completion { text-align: center; }
.ps-contact-completion-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  color: #fff;
  border-radius: 50%;
  background: #0b7a5a;
  font-size: 30px;
  font-weight: 700;
  place-items: center;
}
.ps-contact-completion-note { color: #71808c; font-size: 13px; }
.ps-contact-completion .button { display: inline-block; margin-top: 12px; }
@media (max-width: 680px) {
  .ps-contact-grid { grid-template-columns: 1fr; }
  .ps-contact-summary > div { grid-template-columns: 1fr; }
  .ps-contact-summary dt,
  .ps-contact-summary dd { padding: 12px 14px; }
  .ps-contact-actions { display: grid; grid-template-columns: 1fr; }
  .ps-contact-actions .button { width: 100%; }
}
.priscope-photo-credit { margin-top: 28px; color: #71808c; font-size: 11px; }
.priscope-photo-credit a { color: inherit; }
