body.wizardBody {
  padding-top: 0;
  background: #dfe5eb;
}
.processWizard {
  min-height: 100vh;
}
.processWizard__shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(280px, 30vw) 1fr;
}
.processWizard__sidebar {
  background: var(--color-surface);
  padding: 52px clamp(20px, 4vw, 44px) 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 36px;
}
.processWizard__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(47, 77, 110, 0.8);
  margin-bottom: 16px;
}
.processWizard__sidebar h1 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.98;
  letter-spacing: -1.2px;
  margin-bottom: 18px;
}
.processWizard__sidebar p {
  font-size: 18px;
  line-height: 1.7;
  color: #556274;
  max-width: 420px;
}
.processWizard__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.processWizard__steps li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #5f6c7d;
  font-weight: 700;
}
.processWizard__steps li span {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: rgba(47, 77, 110, 0.08);
  color: var(--color-accent);
}
.processWizard__steps li.is-active,
.processWizard__steps li.is-complete {
  color: var(--color-text);
}
.processWizard__steps li.is-active span,
.processWizard__steps li.is-complete span {
  background: var(--color-primary);
  color: #fff;
}
.processWizard__brandLockup {
  padding-top: 10px;
  margin-top: auto;
}
.processWizard__home {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  color: var(--color-accent);
}
.processWizard__home img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.processWizard__main {
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px clamp(18px, 4vw, 64px);
}
.processWizard__form {
  width: min(860px, 100%);
}
.wizardPane {
  display: none;
}
.wizardPane.is-active {
  display: block;
}
.wizardPane__head {
  margin-bottom: 28px;
}
.wizardPane__count {
  color: rgba(47, 77, 110, 0.7);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  margin-bottom: 10px;
}
.wizardPane__head h2 {
  font-size: clamp(34px, 4vw, 62px);
  line-height: 0.98;
  letter-spacing: -1.4px;
  margin-bottom: 14px;
}
.wizardPane__head p {
  font-size: 18px;
  line-height: 1.7;
  color: #5a6677;
  max-width: 720px;
}
.wizardPane__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 24px;
}
.wizardPane__span2 {
  grid-column: span 2;
}
.wizardPane__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 28px;
}
.wizardPane__recaptcha {
  padding-top: 18px;
}
.wizardReview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.wizardReview__block {
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(47, 77, 110, 0.08);
  border-radius: 28px;
  padding: 24px;
}
.wizardReview__block h3 {
  font-size: 20px;
  margin-bottom: 14px;
}
.wizardReview__block dl {
  margin: 0;
  display: grid;
  gap: 14px;
}
.wizardReview__block dl div {
  display: grid;
  gap: 4px;
}
.wizardReview__block dt {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(47, 77, 110, 0.72);
}
.wizardReview__block dd {
  margin: 0;
  color: var(--color-text);
  font-weight: 700;
}
.consentCheck--standalone {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(47, 77, 110, 0.08);
}
.wizardPane--success {
  min-height: 60vh;
  display: none;
  align-items: center;
}
.wizardPane--success.is-active {
  display: flex;
}
.wizardSuccess {
  max-width: 620px;
}
.wizardSuccess__icon {
  width: 70px;
  height: 70px;
  border-radius: 999px;
  background: rgba(33, 196, 93, 0.12);
  color: var(--color-success);
  display: grid;
  place-items: center;
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 18px;
}
.wizardSuccess h2 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.98;
  margin-bottom: 16px;
}
.wizardSuccess p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 28px;
}

@media (max-width: 980px) {
  .processWizard__shell {
    grid-template-columns: 1fr;
  }
  .processWizard__sidebar {
    padding-bottom: 18px;
    gap: 22px;
  }
}
@media (max-width: 760px) {
  .processWizard__main {
    padding: 36px 18px 46px;
  }
  .wizardPane__grid,
  .wizardReview {
    grid-template-columns: 1fr;
  }
  .wizardPane__span2 {
    grid-column: auto;
  }
  .wizardPane__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .wizardPane__actions .btn {
    width: 100%;
  }
  .wizardPane__head p,
  .processWizard__sidebar p,
  .wizardSuccess p {
    font-size: 16px;
  }
  .wizardPane__grid--cityStateZip,
  .auctionPreview__grid {
    grid-template-columns: 1fr;
  }
  .auctionPreview__head {
    flex-direction: column;
  }
  .auctionPreview__badge {
    align-self: flex-start;
  }
  .recorderPreview__head {
    flex-direction: column;
  }
}


.propertyLookup {
  display: grid;
  gap: 18px;
  margin-bottom: 24px;
}
.propertyLookup__hint {
  margin: 10px 0 0;
  color: #5a6677;
  font-size: 14px;
}
.propertyLookup__actions {
  display: flex;
  justify-content: flex-start;
}
.suggest--wizard {
  position: relative;
}
.suggest__item--wizard {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.suggest__item--loading {
  cursor: default;
  opacity: 0.86;
}
.suggest__item--loading .suggest__sub {
  position: relative;
  overflow: hidden;
}
.suggest__item--loading .suggest__sub::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.7), transparent);
  animation: suggestShimmer 1s linear infinite;
}
.suggest__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
  font-size: 12px;
  color: #6b7482;
}
.suggest__flag {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(237, 120, 77, 0.12);
  color: var(--color-primary);
  font-weight: 800;
}
@keyframes suggestShimmer {
  100% {
    transform: translateX(100%);
  }
}
.manualAddressFields[hidden] {
  display: none !important;
}
.wizardPane__grid--address {
  grid-template-columns: 1fr;
  gap: 20px;
}
.wizardPane__grid--cityStateZip {
  grid-template-columns: 1.35fr 0.8fr 0.9fr;
  gap: 20px 24px;
}
.auctionPreview {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(47, 77, 110, 0.14);
  border-radius: 28px;
  padding: 24px;
}
.auctionPreview--urgent {
  background: rgba(237, 120, 77, 0.10);
  border-color: rgba(237, 120, 77, 0.35);
  box-shadow: 0 18px 36px rgba(237, 120, 77, 0.12);
}
.auctionPreview__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.auctionPreview__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(47, 77, 110, 0.72);
  margin-bottom: 8px;
}
.auctionPreview__head h3 {
  margin: 0 0 6px;
  font-size: 24px;
  line-height: 1.1;
}
.auctionPreview__head p {
  margin: 0;
  color: #5a6677;
}
.auctionPreview__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--color-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}
.auctionPreview__callout {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(237, 120, 77, 0.14);
  color: #8a3f1f;
  font-weight: 700;
}
.auctionPreview__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 18px;
}
.auctionPreview__grid div {
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(47, 77, 110, 0.08);
  border-radius: 18px;
  padding: 14px;
  min-height: 84px;
}
.auctionPreview__grid span {
  display: block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(47, 77, 110, 0.7);
  margin-bottom: 8px;
}
.auctionPreview__grid strong {
  display: block;
  font-size: 15px;
  line-height: 1.45;
  color: var(--color-text);
}


.recorderPreview {
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(47, 77, 110, 0.14);
  border-radius: 28px;
  padding: 24px;
}
.recorderPreview__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.recorderPreview__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.recorderPreview__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(47, 77, 110, 0.72);
  margin-bottom: 8px;
}
.recorderPreview__head h3 {
  margin: 0 0 6px;
  font-size: 24px;
  line-height: 1.1;
}
.recorderPreview__head p {
  margin: 0;
  color: #5a6677;
}
.recorderPreview__frameWrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(47, 77, 110, 0.10);
  background: #fff;
}
.recorderPreview__frameWrap iframe {
  display: block;
  width: 100%;
  min-height: 340px;
  border: 0;
  background: #fff;
}
