@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-latin.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 200 800;
}

:root {
  --navy-950: #102337;
  --navy-900: #17324d;
  --navy-800: #21415f;
  --navy-700: #31566f;
  --teal-700: #0c716b;
  --teal-600: #13847c;
  --teal-100: #dff1ed;
  --gold-500: #e9aa46;
  --gold-400: #f4b860;
  --gold-100: #fff0d6;
  --cream-100: #f7f4ed;
  --cream-50: #fbfaf7;
  --slate-700: #4c5d6b;
  --slate-500: #758390;
  --line: #dce2e5;
  --white: #fff;
  --danger: #b4403a;
  --shadow-sm: 0 10px 30px rgba(16, 35, 55, .08);
  --shadow-lg: 0 28px 80px rgba(16, 35, 55, .14);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.valuation-page {
  margin: 0;
  color: var(--navy-950);
  background: var(--cream-50);
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.valuation-page button,
.valuation-page input,
.valuation-page select,
.valuation-page textarea {
  font: inherit;
}

.valuation-page button,
.valuation-page a {
  -webkit-tap-highlight-color: transparent;
}

.valuation-page a {
  color: inherit;
}

.valuation-page [hidden] {
  display: none !important;
}

.valuation-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 86px;
  padding: 0 clamp(24px, 5vw, 76px);
  border-bottom: 1px solid rgba(23, 50, 77, .1);
  background: rgba(251, 250, 247, .92);
  backdrop-filter: blur(14px);
}

.valuation-brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 12px;
  color: var(--navy-900);
  text-decoration: none;
}

.valuation-brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 12px;
  background: var(--navy-900);
  box-shadow: 0 8px 18px rgba(23, 50, 77, .18);
}

.valuation-brand-mark::before {
  position: absolute;
  inset: 11px 9px 8px;
  border: 2px solid var(--gold-400);
  border-top: 0;
  border-radius: 2px;
  content: "";
}

.valuation-brand-mark::after {
  position: absolute;
  top: 9px;
  left: 11px;
  width: 18px;
  height: 18px;
  border-top: 2px solid var(--gold-400);
  border-left: 2px solid var(--gold-400);
  transform: rotate(45deg);
  content: "";
}

.valuation-brand-mark i:first-child {
  position: absolute;
  z-index: 2;
  right: 8px;
  bottom: 7px;
  width: 11px;
  height: 11px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--navy-900);
}

.valuation-brand-mark i:first-child::after {
  position: absolute;
  right: -5px;
  bottom: -3px;
  width: 7px;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
  transform: rotate(45deg);
  content: "";
}

.valuation-brand-copy {
  display: grid;
  line-height: 1.05;
}

.valuation-brand-copy strong {
  font-size: 22px;
  font-weight: 760;
  letter-spacing: -.7px;
}

.valuation-brand-copy strong span {
  color: var(--teal-700);
}

.valuation-brand-copy small {
  margin-top: 5px;
  color: var(--slate-500);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.valuation-header nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.valuation-header nav a {
  position: relative;
  color: var(--navy-800);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.valuation-header nav a::after {
  position: absolute;
  right: 50%;
  bottom: -7px;
  left: 50%;
  height: 2px;
  border-radius: 2px;
  background: var(--gold-500);
  content: "";
  transition: right .2s, left .2s;
}

.valuation-header nav a:hover::after,
.valuation-header nav a:focus-visible::after {
  right: 0;
  left: 0;
}

.header-start {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 14px;
  padding: 11px 17px;
  border: 1px solid var(--navy-900);
  border-radius: 9px;
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
  transition: background .2s, color .2s, transform .2s;
}

.header-start:hover,
.header-start:focus-visible {
  color: var(--white);
  background: var(--navy-900);
  transform: translateY(-1px);
}

.valuation-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, .9fr);
  align-items: center;
  gap: clamp(40px, 7vw, 110px);
  min-height: 650px;
  padding: 70px max(24px, calc((100vw - 1280px) / 2)) 80px;
  overflow: hidden;
  background:
    radial-gradient(circle at 83% 15%, rgba(19, 132, 124, .1), transparent 26%),
    linear-gradient(115deg, #fbfaf7 0%, #fbfaf7 55%, #f1eee5 55%, #f1eee5 100%);
}

.valuation-hero::before {
  position: absolute;
  top: 0;
  left: calc(55% - 1px);
  width: 1px;
  height: 100%;
  background: rgba(23, 50, 77, .06);
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 670px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 18px;
  color: var(--teal-700);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 26px;
  height: 2px;
  background: var(--gold-500);
}

.valuation-hero h1 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 760;
  letter-spacing: -.055em;
  line-height: 1.04;
}

.valuation-hero h1 em {
  position: relative;
  color: var(--teal-700);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.valuation-hero h1 em::after {
  position: absolute;
  right: 2px;
  bottom: -5px;
  left: 4px;
  height: 8px;
  border-top: 2px solid var(--gold-500);
  border-radius: 50%;
  transform: rotate(-1deg);
  content: "";
}

.hero-lead {
  max-width: 630px;
  margin: 27px 0 0;
  color: var(--slate-700);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.valuation-page .primary-action,
.valuation-page .light-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 9px;
  color: var(--white);
  background: var(--navy-900);
  box-shadow: 0 12px 28px rgba(23, 50, 77, .2);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transition: transform .2s, background .2s, box-shadow .2s;
}

.valuation-page .primary-action:hover,
.valuation-page .primary-action:focus-visible {
  background: var(--teal-700);
  box-shadow: 0 16px 34px rgba(12, 113, 107, .24);
  transform: translateY(-2px);
}

.text-action {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--navy-800);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.text-action i {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--teal-700);
  font-style: normal;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  padding: 0;
  margin: 32px 0 0;
  list-style: none;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--slate-700);
  font-size: 11px;
  font-weight: 700;
}

.hero-trust span {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  color: var(--teal-700);
  background: var(--teal-100);
  font-size: 10px;
}

.hero-dossier {
  position: relative;
  width: min(100%, 560px);
  height: 510px;
  justify-self: center;
}

.dossier-map {
  position: absolute;
  inset: 24px 0 44px 36px;
  overflow: hidden;
  border: 1px solid rgba(23, 50, 77, .12);
  border-radius: 24px;
  background: #e8e5dc;
  box-shadow: var(--shadow-lg);
  transform: rotate(2deg);
}

.dossier-map::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(23, 50, 77, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 50, 77, .035) 1px, transparent 1px);
  background-size: 26px 26px;
  content: "";
}

.dossier-map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-line {
  fill: rgba(255, 255, 255, .45);
  stroke: #93a0a8;
  stroke-width: 2;
}

.map-road {
  fill: none;
  stroke: #fff;
  stroke-width: 38;
}

.map-active {
  fill: rgba(19, 132, 124, .28);
  stroke: var(--teal-700);
  stroke-width: 4;
}

.map-building {
  fill: var(--navy-900);
  opacity: .85;
}

.parcel-tag {
  position: absolute;
  z-index: 2;
  top: 46%;
  left: 55%;
  padding: 6px 10px;
  border-radius: 6px;
  color: var(--white);
  background: var(--teal-700);
  box-shadow: var(--shadow-sm);
  font-size: 9px;
  font-weight: 800;
  transform: translate(-50%, -50%) rotate(-2deg);
}

.value-card {
  position: absolute;
  z-index: 4;
  right: -16px;
  bottom: 0;
  width: 330px;
  padding: 25px 26px 22px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 24px 55px rgba(16, 35, 55, .22);
}

.value-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--teal-700);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.value-card-top i {
  padding: 4px 7px;
  border-radius: 4px;
  color: var(--slate-500);
  background: var(--cream-100);
  font-style: normal;
  letter-spacing: 0;
  text-transform: none;
}

.value-card > strong {
  display: block;
  margin-top: 12px;
  font-size: 19px;
  letter-spacing: -.02em;
}

.value-scale {
  position: relative;
  height: 7px;
  margin: 19px 0;
  border-radius: 8px;
  background: linear-gradient(90deg, #d9e4e1 0 22%, #87c2b7 22% 48%, var(--teal-600) 48% 77%, var(--gold-400) 77%);
}

.value-scale span {
  position: absolute;
  top: -5px;
  left: 66%;
  width: 17px;
  height: 17px;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--navy-900);
  box-shadow: 0 2px 7px rgba(16, 35, 55, .3);
}

.value-card dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0;
}

.value-card dl div {
  display: grid;
  gap: 3px;
}

.value-card dt {
  color: var(--slate-500);
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
}

.value-card dd {
  margin: 0;
  color: var(--navy-800);
  font-size: 10px;
  font-weight: 800;
}

.dossier-seal {
  position: absolute;
  z-index: 5;
  top: 2px;
  left: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 138px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 12px;
  color: var(--white);
  background: var(--navy-900);
  box-shadow: var(--shadow-sm);
}

.dossier-seal b {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  color: var(--gold-400);
  font-size: 16px;
}

.dossier-seal span {
  font-size: 9px;
  font-weight: 750;
  line-height: 1.35;
  text-transform: uppercase;
}

.confidence-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1280px;
  margin: 0 auto;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.confidence-strip div {
  display: grid;
  gap: 3px;
  padding: 21px 25px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.confidence-strip div:last-child {
  border-right: 0;
}

.confidence-strip strong {
  color: var(--navy-900);
  font-size: 12px;
}

.confidence-strip span {
  color: var(--slate-500);
  font-size: 9px;
  font-weight: 650;
}

.valuation-intake {
  max-width: 1280px;
  padding: 110px 0 125px;
  margin: 0 auto;
}

.intake-intro {
  max-width: 700px;
  margin-bottom: 38px;
}

.intake-intro h2,
.section-heading h2,
.report-copy h2,
.bottom-cta h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 730;
  letter-spacing: -.045em;
  line-height: 1.12;
}

.intake-intro > p:last-child,
.section-heading > p:last-child,
.report-copy > p,
.bottom-cta > div > p:last-child {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--slate-700);
  font-size: 15px;
  line-height: 1.7;
}

.valuation-form {
  display: grid;
  grid-template-columns: 285px minmax(0, 1fr);
  min-height: 720px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.valuation-form.complete {
  grid-template-columns: 1fr;
}

.honeypot {
  position: absolute;
  left: -10000px;
}

.step-navigation {
  display: flex;
  flex-direction: column;
  padding: 32px 27px 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 90%, rgba(19, 132, 124, .35), transparent 35%),
    linear-gradient(155deg, var(--navy-900), var(--navy-950));
}

.progress-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, .58);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.progress-label strong {
  color: var(--white);
  font-size: 10px;
}

.progress-label b {
  color: var(--gold-400);
  font-size: 14px;
}

.progress-track {
  height: 3px;
  margin: 12px 0 25px;
  overflow: hidden;
  border-radius: 5px;
  background: rgba(255, 255, 255, .14);
}

.progress-track i {
  display: block;
  width: calc(100% / 7);
  height: 100%;
  border-radius: 5px;
  background: var(--gold-400);
  transition: width .3s ease;
}

.step-navigation ol {
  display: grid;
  gap: 4px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.step-navigation li {
  position: relative;
}

.step-navigation li:not(:last-child)::after {
  position: absolute;
  z-index: 0;
  top: 39px;
  left: 15px;
  width: 1px;
  height: 17px;
  background: rgba(255, 255, 255, .14);
  content: "";
}

.step-navigation button {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 31px 1fr;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 8px 5px;
  border: 0;
  border-radius: 9px;
  color: rgba(255, 255, 255, .55);
  background: transparent;
  text-align: left;
  cursor: default;
}

.step-navigation button > i {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  background: var(--navy-950);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.step-navigation button > span {
  display: grid;
  gap: 1px;
}

.step-navigation button b {
  font-size: 11px;
  font-weight: 750;
}

.step-navigation button small {
  font-size: 8px;
}

.step-navigation li.active button,
.step-navigation li.completed button {
  color: var(--white);
}

.step-navigation li.active button {
  background: rgba(255, 255, 255, .07);
}

.step-navigation li.active button > i {
  border-color: var(--gold-400);
  color: var(--navy-950);
  background: var(--gold-400);
  box-shadow: 0 0 0 4px rgba(244, 184, 96, .1);
}

.step-navigation li.completed button {
  cursor: pointer;
}

.step-navigation li.completed button > i {
  border-color: var(--teal-600);
  color: transparent;
  background: var(--teal-600);
}

.step-navigation li.completed button > i::after {
  position: absolute;
  color: var(--white);
  content: "✓";
}

.privacy-note {
  display: grid;
  grid-template-columns: 27px 1fr;
  gap: 9px;
  padding: 14px;
  margin-top: auto;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  background: rgba(255, 255, 255, .05);
}

.privacy-note > span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  color: var(--gold-400);
  background: rgba(244, 184, 96, .12);
}

.privacy-note p {
  margin: 0;
  color: rgba(255, 255, 255, .58);
  font-size: 8px;
  line-height: 1.5;
}

.privacy-note b {
  display: block;
  color: rgba(255, 255, 255, .84);
}

.step-content {
  position: relative;
  min-width: 0;
  padding: 46px clamp(35px, 5vw, 70px) 35px;
}

.form-step {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
  animation: step-in .28s ease both;
}

@keyframes step-in {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}

.form-step legend {
  display: block;
  width: 100%;
  padding: 0;
  color: var(--navy-950);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 730;
  letter-spacing: -.035em;
  line-height: 1.18;
}

.form-step legend > span {
  display: block;
  margin-bottom: 8px;
  color: var(--teal-700);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.form-step legend small {
  color: var(--slate-500);
  font-size: 13px;
  font-weight: 600;
}

.step-lead {
  max-width: 690px;
  margin: 13px 0 31px;
  color: var(--slate-700);
  font-size: 13px;
  line-height: 1.65;
}

.address-grid {
  display: grid;
  grid-template-columns: 1fr 145px;
  gap: 18px;
}

.listing-link-field {
  margin-top: 18px;
}

.listing-link-field > small {
  margin-top: 6px;
  color: var(--slate-500);
  font-size: 8px;
  line-height: 1.45;
}

.three-column-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.two-column-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.field > span,
.group-label {
  color: var(--navy-800);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .02em;
}

.field > span small,
.group-label small {
  color: var(--slate-500);
  font-size: 8px;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 49px;
  padding: 0 15px;
  border: 1px solid #ccd5da;
  border-radius: 9px;
  outline: none;
  color: var(--navy-950);
  background: var(--white);
  font-size: 13px;
  transition: border .2s, box-shadow .2s, background .2s;
}

.field textarea {
  min-height: 105px;
  padding-top: 13px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #a3adb4;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--teal-600);
  box-shadow: 0 0 0 3px rgba(19, 132, 124, .11);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--danger);
  background: #fff9f8;
}

.select-field {
  position: relative;
}

.select-field select {
  appearance: none;
  padding-right: 40px;
  background-image: linear-gradient(45deg, transparent 50%, var(--navy-700) 50%), linear-gradient(135deg, var(--navy-700) 50%, transparent 50%);
  background-position: calc(100% - 19px) 21px, calc(100% - 14px) 21px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.inline-info,
.order-note,
.upload-limit {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 14px 15px;
  margin-top: 24px;
  border: 1px solid #d8e8e4;
  border-radius: 9px;
  background: #f5fbf9;
}

.inline-info i,
.order-note i {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  place-items: center;
  border-radius: 50%;
  color: var(--teal-700);
  background: var(--teal-100);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.inline-info p,
.order-note p,
.upload-limit p {
  margin: 1px 0 0;
  color: var(--slate-700);
  font-size: 10px;
}

.draft-benefit {
  margin: -12px 0 27px;
}

.step-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 26px;
  margin-top: 30px;
  border-top: 1px solid #edf0f1;
}

.next-button,
.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy-900);
  box-shadow: 0 8px 18px rgba(23, 50, 77, .16);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  transition: background .2s, transform .2s, opacity .2s;
}

.next-button:hover,
.next-button:focus-visible,
.submit-button:hover,
.submit-button:focus-visible {
  background: var(--teal-700);
  transform: translateY(-1px);
}

.submit-button[disabled] {
  opacity: .65;
  cursor: wait;
}

.back-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 4px;
  border: 0;
  color: var(--slate-700);
  background: transparent;
  font-size: 10px;
  font-weight: 750;
  cursor: pointer;
}

.choice-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.choice-card input,
.property-card input,
.condition-grid input,
.heat-distribution-grid input,
.feature-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-card > span {
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-rows: auto auto;
  column-gap: 13px;
  min-height: 98px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  transition: border .2s, background .2s, box-shadow .2s;
}

.choice-card i {
  display: grid;
  grid-row: 1 / 3;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 10px;
  color: var(--teal-700);
  background: var(--teal-100);
  font-size: 18px;
  font-style: normal;
}

.choice-card b {
  align-self: end;
  font-size: 12px;
}

.choice-card small {
  color: var(--slate-500);
  font-size: 9px;
}

.choice-card input:checked + span,
.choice-card input:focus-visible + span {
  border-color: var(--teal-600);
  background: #f7fcfb;
  box-shadow: 0 0 0 3px rgba(19, 132, 124, .09);
}

.conditional-fields {
  padding: 20px;
  margin-top: 20px;
  border-radius: 12px;
  background: var(--cream-50);
}

.parcel-lookup {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--cream-50);
}

.parcel-lookup-status {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  min-height: 74px;
  padding: 14px 17px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.parcel-status-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--teal-700);
  background: var(--teal-100);
  font-size: 17px;
  font-weight: 800;
}

.parcel-lookup.is-loading .parcel-status-icon {
  border: 2px solid #cfe5df;
  border-top-color: var(--teal-700);
  color: transparent;
  background: transparent;
  animation: parcel-spin .8s linear infinite;
}

@keyframes parcel-spin {
  to { transform: rotate(360deg); }
}

.parcel-lookup-status div {
  min-width: 0;
}

.parcel-lookup-status b {
  display: block;
  color: var(--navy-900);
  font-size: 12px;
}

.parcel-lookup-status p {
  margin: 4px 0 0;
  color: var(--slate-700);
  font-size: 9px;
  line-height: 1.5;
}

.parcel-match-badge {
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--teal-700);
  background: var(--teal-100);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .07em;
  text-transform: uppercase;
  white-space: nowrap;
}

.parcel-match-badge.nearby {
  color: #80531b;
  background: var(--gold-100);
}

.parcel-picker {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(235px, .65fr);
  min-height: 500px;
}

.parcel-map-column {
  min-width: 0;
  border-right: 1px solid var(--line);
  background: #e9efed;
}

.valuation-parcel-map {
  position: relative;
  min-height: 455px;
  overflow: hidden;
  background: #e9efed;
}

.valuation-parcel-map svg {
  display: block;
  width: 100%;
  min-height: 410px;
}

.parcel-map-help {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  margin: 0;
  border-top: 1px solid rgba(23, 50, 77, .1);
  color: var(--slate-700);
  background: rgba(255, 255, 255, .88);
  font-size: 8px;
  line-height: 1.5;
}

.parcel-map-help > span {
  color: var(--teal-700);
  font-size: 15px;
}

.parcel-summary {
  min-width: 0;
  padding: 24px 21px;
  background: var(--white);
}

.parcel-summary-kicker {
  color: var(--teal-700);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.parcel-summary h3 {
  margin: 8px 0 0;
  color: var(--navy-950);
  font-size: 17px;
  letter-spacing: -.02em;
  line-height: 1.3;
}

.parcel-summary > p {
  margin: 4px 0 18px;
  color: var(--slate-500);
  font-size: 10px;
}

.parcel-summary dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  margin: 0;
  background: var(--line);
}

.parcel-summary dl div {
  min-width: 0;
  padding: 11px;
  background: var(--cream-50);
}

.parcel-summary dt {
  color: var(--slate-500);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.parcel-summary dd {
  overflow: hidden;
  margin: 5px 0 0;
  color: var(--navy-900);
  font-size: 10px;
  font-weight: 800;
  text-overflow: ellipsis;
}

.parcel-selection-note {
  display: grid;
  gap: 4px;
  padding: 14px 0 11px;
  border-bottom: 1px solid var(--line);
}

.parcel-selection-note b {
  color: var(--teal-700);
  font-size: 10px;
}

.parcel-selection-note b.error {
  color: var(--danger);
}

.parcel-selection-note small {
  color: var(--slate-500);
  font-size: 8px;
  line-height: 1.45;
}

.selected-parcel-list {
  display: grid;
  gap: 6px;
  max-height: 154px;
  padding: 0;
  margin: 12px 0 0;
  overflow-y: auto;
  list-style: none;
}

.selected-parcel-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding: 8px 9px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--cream-50);
}

.selected-parcel-list span {
  display: grid;
  min-width: 0;
  color: var(--navy-900);
  font-size: 9px;
  font-weight: 800;
}

.selected-parcel-list small {
  overflow: hidden;
  color: var(--slate-500);
  font-size: 7px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.selected-parcel-list button {
  width: 24px;
  height: 24px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--slate-700);
  background: var(--white);
  cursor: pointer;
}

.address-correction,
.retry-parcel-button {
  padding: 0;
  margin-top: 15px;
  border: 0;
  color: var(--teal-700);
  background: transparent;
  font-size: 8px;
  font-weight: 800;
  cursor: pointer;
}

.parcel-fallback {
  padding: 23px;
  background: var(--white);
}

.parcel-fallback-copy {
  padding-left: 13px;
  margin-bottom: 20px;
  border-left: 3px solid var(--gold-500);
}

.parcel-fallback-copy b {
  color: var(--navy-900);
  font-size: 12px;
}

.parcel-fallback-copy p {
  margin: 5px 0 0;
  color: var(--slate-700);
  font-size: 9px;
  line-height: 1.55;
}

.auto-field-note {
  display: block;
  margin-top: 6px;
  color: var(--teal-700);
  font-size: 8px;
  font-weight: 700;
  line-height: 1.4;
}

.parcel-map-background { fill: #e9efed; }
.parcel-shape { vector-effect: non-scaling-stroke; }
.parcel-shape.neighbor { fill: #d7e0df; stroke: #81949b; stroke-width: .8; }
.parcel-shape.neighbor.same-address { fill: #f4d9bd; stroke: #b97833; stroke-width: 1.1; }
.parcel-shape.neighbor.selectable-adjacent { fill: #f6e4a8; stroke: #876817; stroke-width: 1.35; }
.parcel-shape.neighbor.selectable-unselected { fill: #d7e0df; stroke: #81949b; stroke-width: .8; }
.parcel-shape.access-context { fill: rgba(244, 184, 96, .3); stroke: #a46617; stroke-width: 1; pointer-events: none; }
.parcel-shape.access-context.path_access { fill: rgba(114, 91, 176, .18); stroke: #725bb0; }
.parcel-shape.selected-secondary { fill: #8ac8bd; fill-opacity: .82; stroke: #0c716b; stroke-width: 1.8; }
.parcel-shape.main { fill: #5daf9f; fill-opacity: .76; stroke: #075f5a; stroke-width: 2.2; }
.parcel-shape.selectable { cursor: pointer; transition: fill .14s, stroke-width .14s, filter .14s; }
.parcel-shape.selectable:hover,
.parcel-shape.selectable:focus,
.parcel-shape.selectable.interaction-hover { stroke-width: 3; outline: none; }
.parcel-shape.selectable:focus { stroke: var(--gold-500); }
.parcel-hit-area { fill: transparent; stroke: transparent; stroke-width: 24; vector-effect: non-scaling-stroke; pointer-events: all; cursor: pointer; }
.parcel-marker-leader { stroke: #34565f; stroke-width: 1.25; stroke-dasharray: 4 3; vector-effect: non-scaling-stroke; pointer-events: none; }
.parcel-marker-arrow-head { fill: #34565f; }
.parcel-map-street { pointer-events: none; filter: drop-shadow(0 2px 3px rgba(23, 50, 77, .16)); }
.parcel-map-street rect { fill: rgba(255, 255, 255, .96); stroke: #7da7a2; stroke-width: 1; vector-effect: non-scaling-stroke; }
.parcel-map-street text { fill: var(--navy-900); dominant-baseline: central; text-anchor: middle; font-size: 11px; font-weight: 850; }
.parcel-map-marker { cursor: pointer; filter: drop-shadow(0 2px 3px rgba(23, 50, 77, .2)); }
.parcel-map-marker rect { vector-effect: non-scaling-stroke; stroke-width: 1.2; }
.parcel-map-marker text { dominant-baseline: central; text-anchor: middle; font-size: 15px; font-weight: 850; pointer-events: none; }
.parcel-map-marker.selected rect { fill: #e4f3f0; stroke: #0c716b; }
.parcel-map-marker.selected text { fill: var(--navy-900); }
.parcel-map-marker.unselected rect { fill: #f0f2f2; stroke: #81949b; }
.parcel-map-marker.unselected text { fill: #455b64; }
.parcel-map-marker:hover rect { stroke-width: 2.2; }
.parcel-map-label { dominant-baseline: central; text-anchor: middle; font-weight: 850; pointer-events: none; }
.neighbor-label { fill: #556b72; font-size: 9px; }
.selected-label { fill: var(--navy-900); font-size: 11px; paint-order: stroke; stroke: #e5f4f1; stroke-width: 2px; }
.main-label { fill: var(--navy-900); font-size: 12px; paint-order: stroke; stroke: #d8eee9; stroke-width: 2.5px; }
.parcel-map-legend { display: flex; flex-wrap: wrap; gap: 8px 14px; padding: 10px 13px; color: var(--slate-700); background: rgba(255, 255, 255, .94); border-top: 1px solid var(--line); font-size: 8px; }
.parcel-map-legend i { display: inline-block; width: 14px; height: 9px; margin-right: 5px; vertical-align: -1px; border: 1px solid; }
.parcel-map-controls { position: absolute; z-index: 5; top: 12px; right: 12px; display: grid; overflow: hidden; border: 1px solid #7da7a2; border-radius: 9px; background: rgba(255, 255, 255, .96); box-shadow: 0 3px 10px rgba(23, 50, 77, .18); }
.parcel-map-controls button { width: 38px; height: 36px; padding: 0; border: 0; border-bottom: 1px solid var(--line); color: var(--navy-900); background: transparent; font-size: 24px; font-weight: 700; line-height: 1; cursor: pointer; }
.parcel-map-controls button:last-child { border-bottom: 0; }
.parcel-map-radius { display: grid; min-height: 24px; place-items: center; border-bottom: 1px solid var(--line); color: var(--slate-500); font-size: 8px; font-weight: 850; }
.parcel-map-controls button:hover:not(:disabled),
.parcel-map-controls button:focus-visible { color: var(--white); background: var(--teal-700); outline: none; }
.parcel-map-controls button:disabled { color: #9baca9; cursor: default; opacity: .55; }
.main-key { background: #5daf9f; border-color: #075f5a !important; }
.neighbor-key { background: #d7e0df; border-color: #81949b !important; }
.traffic-key { background: rgba(244, 184, 96, .4); border-color: #a46617 !important; }
.path-key { background: rgba(114, 91, 176, .26); border-color: #725bb0 !important; }
.map-empty { padding: 35px; color: var(--slate-700); font-size: 10px; }

.field-hint {
  margin: 12px 0 0;
  color: var(--slate-500);
  font-size: 9px;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 11px;
}

.property-card > span {
  display: grid;
  min-height: 119px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 11px;
  cursor: pointer;
  transition: border .2s, background .2s, box-shadow .2s, transform .2s;
}

.property-card i {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin-bottom: 11px;
  border-radius: 9px;
  color: var(--teal-700);
  background: var(--teal-100);
  font-size: 19px;
  font-style: normal;
}

.property-card b {
  font-size: 10px;
  line-height: 1.3;
}

.property-card small {
  align-self: end;
  margin-top: 5px;
  color: var(--slate-500);
  font-size: 8px;
}

.property-card input:checked + span,
.property-card input:focus-visible + span {
  border-color: var(--teal-600);
  background: #f7fcfb;
  box-shadow: 0 0 0 3px rgba(19, 132, 124, .09);
  transform: translateY(-1px);
}

.property-card input:checked + span::after {
  position: absolute;
  align-self: start;
  justify-self: end;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal-600);
  font-size: 9px;
  content: "✓";
}

.detail-grid {
  align-items: end;
}

.group-label {
  display: block;
  margin-bottom: 12px;
}

.condition-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.condition-grid label > span {
  display: grid;
  gap: 4px;
  min-height: 76px;
  padding: 13px 11px;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  transition: border .2s, background .2s;
}

.condition-grid span {
  font-size: 9px;
  font-weight: 800;
}

.condition-grid small {
  color: var(--slate-500);
  font-size: 7.5px;
  font-weight: 550;
  line-height: 1.35;
}

.condition-grid input:checked + span,
.condition-grid input:focus-visible + span {
  border-color: var(--teal-600);
  background: #f4fbf9;
}

.modernization-fields {
  margin: 20px 0 25px;
}

.heating-panel {
  padding: 22px;
  margin: 2px 0 25px;
  border: 1px solid #d8e8e4;
  border-radius: 13px;
  background: #f7fbfa;
}

.heating-heading {
  display: grid;
  grid-template-columns: 39px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.heating-heading > span {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 10px;
  color: var(--teal-700);
  background: var(--teal-100);
  font-size: 18px;
}

.heating-heading div {
  display: grid;
  gap: 3px;
}

.heating-heading b {
  color: var(--navy-900);
  font-size: 12px;
}

.heating-heading small {
  color: var(--slate-500);
  font-size: 8px;
  line-height: 1.45;
}

.heating-fields {
  margin-bottom: 20px;
}

.heating-panel .group-label {
  margin-top: 3px;
  color: var(--navy-900);
  font-size: 10px;
}

.heating-panel .group-label small {
  color: var(--slate-500);
  font-size: 8px;
  font-weight: 550;
}

.heat-distribution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.heat-distribution-grid label > span {
  position: relative;
  display: grid;
  gap: 3px;
  min-height: 63px;
  padding: 11px 28px 10px 11px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--white);
  cursor: pointer;
  transition: color .2s, border .2s, background .2s;
}

.heat-distribution-grid b {
  color: var(--navy-900);
  font-size: 9px;
}

.heat-distribution-grid small {
  color: var(--slate-500);
  font-size: 7px;
  line-height: 1.35;
}

.heat-distribution-grid label > span::after {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  width: 15px;
  height: 15px;
  place-items: center;
  border: 1px solid #b8c6cb;
  border-radius: 4px;
  color: transparent;
  font-size: 8px;
  content: "✓";
}

.heat-distribution-grid input:checked + span,
.heat-distribution-grid input:focus-visible + span {
  border-color: var(--teal-600);
  background: #eef8f6;
}

.heat-distribution-grid input:checked + span::after {
  border-color: var(--teal-700);
  color: var(--white);
  background: var(--teal-700);
}

.heat-distribution-grid input[aria-invalid="true"] + span {
  border-color: var(--danger);
  background: #fff8f7;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-grid label > span {
  display: block;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 30px;
  color: var(--slate-700);
  background: var(--white);
  font-size: 9px;
  font-weight: 700;
  cursor: pointer;
  transition: color .2s, border .2s, background .2s;
}

.feature-grid input:checked + span,
.feature-grid input:focus-visible + span {
  border-color: var(--teal-700);
  color: var(--white);
  background: var(--teal-700);
}

.textarea-field {
  margin-top: 20px;
}

.upload-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
}

.upload-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 222px;
  padding: 20px 14px 14px;
  border: 1px dashed #b8c6cb;
  border-radius: 13px;
  background: var(--cream-50);
  text-align: center;
  cursor: pointer;
  transition: border .2s, background .2s, transform .2s;
}

.upload-card:hover,
.upload-card:focus-within,
.upload-card.dragover {
  border-color: var(--teal-600);
  background: #f2faf8;
  transform: translateY(-1px);
}

.upload-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.upload-icon {
  display: grid;
  width: 47px;
  height: 47px;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 12px;
  color: var(--teal-700);
  background: var(--teal-100);
  font-size: 21px;
}

.upload-card b {
  font-size: 11px;
}

.upload-card > small {
  margin-top: 3px;
  color: var(--slate-500);
  font-size: 8px;
}

.upload-card em {
  padding: 6px 10px;
  margin-top: 11px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--navy-800);
  background: var(--white);
  font-size: 8px;
  font-style: normal;
  font-weight: 750;
}

.file-list {
  display: grid;
  width: 100%;
  gap: 3px;
  margin-top: 10px;
}

.file-list small {
  display: block;
  overflow: hidden;
  padding: 3px 6px;
  border-radius: 5px;
  color: var(--slate-700);
  background: var(--white);
  font-size: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.upload-limit {
  margin-top: 14px;
}

.upload-limit > span {
  display: grid;
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  place-items: center;
  border-radius: 50%;
  color: var(--teal-700);
  background: var(--teal-100);
  font-size: 8px;
}

.review-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--line);
}

.review-item {
  display: grid;
  gap: 4px;
  min-height: 70px;
  padding: 13px 15px;
  background: var(--cream-50);
}

.review-item span {
  color: var(--slate-500);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.review-item strong {
  font-size: 10px;
  line-height: 1.45;
}

.contact-title {
  margin: 25px 0 14px;
  font-size: 14px;
}

.consent-field {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  margin-top: 17px;
  color: var(--slate-700);
  font-size: 9px;
  line-height: 1.55;
}

.consent-field input {
  width: 17px;
  height: 17px;
  margin: 0;
  accent-color: var(--teal-700);
}

.consent-field a {
  color: var(--teal-700);
  font-weight: 750;
}

.order-note {
  border-color: #f0dfc1;
  background: #fffaf0;
}

.order-note i {
  color: #9b681c;
  background: var(--gold-100);
}

.form-message {
  padding: 11px 13px;
  margin-bottom: 18px;
  border: 1px solid #e4b1ad;
  border-radius: 8px;
  color: #83342f;
  background: #fff5f4;
  font-size: 10px;
  font-weight: 700;
}

.draft-resume {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  padding: 17px 18px;
  margin-bottom: 28px;
  border: 1px solid #c9e4de;
  border-radius: 12px;
  background: linear-gradient(135deg, #f3fbf8, #f8fcfb);
  box-shadow: 0 8px 25px rgba(25, 65, 77, .06);
}

.draft-resume-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal-700);
  font-size: 17px;
  font-weight: 800;
}

.draft-resume-copy {
  min-width: 0;
}

.draft-resume-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.draft-resume-heading h3 {
  margin: 0;
  color: var(--navy-950);
  font-size: 14px;
}

.draft-resume-heading span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--teal-700);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.draft-resume-heading span::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.draft-resume[data-state="saving"] .draft-resume-heading span {
  color: #9b681c;
}

.draft-resume[data-state="error"] .draft-resume-heading span {
  color: var(--danger);
}

.draft-resume-copy > p {
  margin: 5px 0 11px;
  color: var(--slate-700);
  font-size: 9px;
  line-height: 1.55;
}

.draft-link-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.draft-link-row input {
  min-width: 0;
  height: 38px;
  padding: 0 11px;
  border: 1px solid #c7d6d3;
  border-radius: 7px;
  outline: none;
  color: var(--navy-800);
  background: var(--white);
  font-size: 9px;
}

.draft-link-row input:focus {
  border-color: var(--teal-600);
  box-shadow: 0 0 0 3px rgba(19, 132, 124, .1);
}

.draft-link-row button {
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 7px;
  color: var(--white);
  background: var(--navy-900);
  font-size: 9px;
  font-weight: 800;
  cursor: pointer;
}

.draft-link-row button:hover,
.draft-link-row button:focus-visible {
  background: var(--teal-700);
}

.draft-resume-copy > small {
  display: block;
  margin-top: 7px;
  color: var(--slate-500);
  font-size: 7px;
  line-height: 1.5;
}

.success-state {
  max-width: 610px;
  padding: 40px 0;
  margin: 0 auto;
  text-align: center;
  animation: step-in .35s ease both;
}

.success-check {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  margin: 0 auto 24px;
  border: 7px solid #e4f2ef;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal-700);
  font-size: 27px;
}

.success-state .eyebrow {
  justify-content: center;
  margin-bottom: 8px;
}

.success-state h3 {
  margin: 0;
  font-size: 32px;
  letter-spacing: -.04em;
}

.success-state > p:not(.eyebrow) {
  color: var(--slate-700);
  font-size: 13px;
}

.reference-box {
  display: grid;
  gap: 4px;
  padding: 14px;
  margin: 23px auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--cream-50);
}

.reference-box span {
  color: var(--slate-500);
  font-size: 8px;
  font-weight: 750;
  text-transform: uppercase;
}

.reference-box strong {
  color: var(--teal-700);
  font-size: 17px;
  letter-spacing: .05em;
}

.success-state ol {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0 0 27px;
  list-style: none;
  text-align: left;
}

.success-state li {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 10px;
  color: var(--slate-700);
  font-size: 10px;
}

.success-state li b {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--teal-700);
  background: var(--teal-100);
}

.private-portal {
  padding: 115px max(24px, calc((100vw - 1180px) / 2));
  background: var(--white);
}

.private-portal .section-heading {
  max-width: 830px;
}

.private-role-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 46px;
}

.private-role-card {
  position: relative;
  display: flex;
  min-height: 455px;
  flex-direction: column;
  padding: clamp(25px, 4vw, 39px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--cream-50);
  box-shadow: var(--shadow-sm);
}

.private-role-card::after {
  position: absolute;
  top: -75px;
  right: -65px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(19, 132, 124, .07);
  content: "";
}

.seller-card::after {
  background: rgba(233, 170, 70, .1);
}

.role-card-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 15px;
}

.role-card-heading > span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  background: var(--teal-700);
  font-size: 22px;
  font-weight: 800;
}

.seller-card .role-card-heading > span {
  color: var(--navy-950);
  background: var(--gold-400);
}

.role-card-heading small {
  color: var(--teal-700);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.role-card-heading h3 {
  margin: 3px 0 0;
  font-size: clamp(20px, 2.4vw, 27px);
  letter-spacing: -.035em;
}

.private-role-card > p {
  margin: 27px 0 22px;
  color: var(--slate-700);
  font-size: 11px;
  line-height: 1.7;
}

.private-role-card > ul {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 0 0 30px;
  list-style: none;
}

.private-role-card li {
  display: grid;
  grid-template-columns: 25px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--navy-800);
  font-size: 10px;
  line-height: 1.55;
}

.private-role-card li i {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  color: var(--teal-700);
  background: var(--teal-100);
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
}

.private-role-card > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  padding-bottom: 4px;
  margin-top: auto;
  border-bottom: 2px solid var(--gold-500);
  color: var(--navy-900);
  font-size: 10px;
  font-weight: 800;
  text-decoration: none;
}

.checkpoint-band {
  display: grid;
  grid-template-columns: 1.05fr 1.2fr auto;
  align-items: center;
  gap: 35px;
  padding: 34px 38px;
  margin-top: 22px;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-950), var(--navy-900));
}

.checkpoint-band small {
  color: var(--gold-400);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.checkpoint-band h3 {
  margin: 5px 0 7px;
  font-size: 18px;
  line-height: 1.3;
}

.checkpoint-band p {
  margin: 0;
  color: rgba(255, 255, 255, .58);
  font-size: 9px;
  line-height: 1.6;
}

.checkpoint-band ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.checkpoint-band li {
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 999px;
  color: rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .05);
  font-size: 7px;
  font-weight: 700;
}

.checkpoint-band .primary-action {
  padding: 13px 17px;
  white-space: nowrap;
}

.portal-boundary {
  max-width: 950px;
  padding-left: 15px;
  margin: 22px 0 0;
  border-left: 3px solid var(--gold-500);
  color: var(--slate-700);
  font-size: 9px;
  line-height: 1.65;
}

/* Private buyer/seller checklist portal */
.checklist-page {
  background: var(--cream-50);
}

.checklist-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr);
  align-items: center;
  gap: clamp(45px, 7vw, 100px);
  padding: 105px max(24px, calc((100vw - 1180px) / 2));
  background: linear-gradient(145deg, var(--cream-50), var(--cream-100));
}

.checklist-hero > div {
  max-width: 730px;
}

.checklist-hero h1 {
  margin: 15px 0 22px;
  font-size: clamp(39px, 5.4vw, 68px);
  font-weight: 750;
  letter-spacing: -.055em;
  line-height: 1.03;
}

.checklist-hero > div > p:last-of-type {
  max-width: 670px;
  color: var(--slate-700);
  font-size: 14px;
  line-height: 1.75;
}

.checklist-hero-actions {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 31px;
}

.checklist-secondary-action {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--navy-900);
  border-radius: 8px;
  color: var(--navy-900);
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}

.checklist-hero > aside {
  padding: 34px;
  border-radius: 20px;
  color: var(--white);
  background: var(--navy-950);
  box-shadow: var(--shadow-lg);
}

.checklist-hero > aside > b {
  color: var(--gold-400);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.checklist-hero > aside p {
  margin: 16px 0 23px;
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  line-height: 1.7;
}

.checklist-hero > aside ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.checklist-hero > aside li {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 7px;
  color: rgba(255, 255, 255, .76);
  font-size: 8px;
  font-weight: 700;
}

.checklist-role-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1180px;
  margin: -25px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.checklist-role-nav a {
  display: grid;
  grid-template-columns: 40px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 1px 11px;
  min-height: 88px;
  padding: 18px;
  border-right: 1px solid var(--line);
  text-decoration: none;
}

.checklist-role-nav a:last-child {
  border-right: 0;
}

.checklist-role-nav a > span {
  display: grid;
  grid-row: 1 / 3;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 10px;
  color: var(--teal-700);
  background: var(--teal-100);
  font-size: 17px;
  font-weight: 800;
}

.checklist-role-nav b {
  font-size: 11px;
}

.checklist-role-nav small {
  color: var(--slate-500);
  font-size: 8px;
}

.working-checklist,
.red-flags,
.expert-help {
  scroll-margin-top: 30px;
  padding: 120px max(24px, calc((100vw - 1180px) / 2));
}

.working-checklist + .working-checklist {
  background: var(--white);
}

.working-checklist-header {
  display: grid;
  grid-template-columns: 1fr 230px;
  align-items: end;
  gap: 45px;
}

.working-checklist-header > div:first-child {
  max-width: 780px;
}

.working-checklist-header h2,
.red-flags h2,
.expert-help h2 {
  margin: 10px 0 0;
  font-size: clamp(34px, 4vw, 51px);
  letter-spacing: -.045em;
  line-height: 1.12;
}

.working-checklist-header > div:first-child > p:last-child {
  margin: 14px 0 0;
  color: var(--slate-700);
  font-size: 11px;
  line-height: 1.7;
}

.checklist-progress {
  display: grid;
  gap: 8px;
}

.checklist-progress strong {
  color: var(--teal-700);
  font-size: 18px;
}

.checklist-progress > span {
  height: 7px;
  overflow: hidden;
  border-radius: 99px;
  background: var(--line);
}

.checklist-progress i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal-700), var(--gold-500));
  transition: width .25s ease;
}

.checklist-progress small {
  color: var(--slate-500);
  font-size: 7px;
}

.checklist-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 45px;
}

.checklist-group {
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(16, 35, 55, .045);
}

.working-checklist + .working-checklist .checklist-group {
  background: var(--cream-50);
}

.checklist-group-heading {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.checklist-group-heading > span {
  color: var(--gold-500);
  font-size: 21px;
  font-weight: 800;
}

.checklist-group-heading small {
  color: var(--teal-700);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.checklist-group-heading h3 {
  margin: 2px 0 0;
  font-size: 16px;
}

.checklist-items {
  display: grid;
  gap: 0;
}

.checklist-items label {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 11px;
  padding: 16px 0;
  border-bottom: 1px solid #edf0f1;
  cursor: pointer;
}

.checklist-items label:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.checklist-items input {
  width: 19px;
  height: 19px;
  margin: 1px 0 0;
  accent-color: var(--teal-700);
}

.checklist-items span {
  display: grid;
  gap: 4px;
}

.checklist-items b {
  font-size: 10px;
}

.checklist-items small {
  color: var(--slate-700);
  font-size: 8px;
  line-height: 1.55;
}

.checklist-items input:checked + span b {
  color: var(--slate-500);
  text-decoration: line-through;
}

.checklist-tools {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-top: 28px;
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.checklist-tools button,
.checklist-tools a {
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy-800);
  background: var(--white);
  font-size: 8px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.checklist-tools a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-left: auto;
  border-color: var(--teal-700);
  color: var(--white);
  background: var(--teal-700);
}

.red-flags {
  color: var(--white);
  background: var(--navy-950);
}

.red-flags .section-heading {
  max-width: 800px;
}

.red-flags .section-heading h2 {
  color: var(--white);
}

.red-flags .section-heading > p:last-child {
  color: rgba(255, 255, 255, .58);
}

.red-flag-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 43px;
}

.red-flag-grid article {
  min-height: 210px;
  padding: 23px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 13px;
  background: rgba(255, 255, 255, .035);
}

.red-flag-grid span {
  display: grid;
  width: 33px;
  height: 33px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-950);
  background: var(--gold-400);
  font-weight: 800;
}

.red-flag-grid h3 {
  margin: 35px 0 8px;
  font-size: 13px;
}

.red-flag-grid p {
  margin: 0;
  color: rgba(255, 255, 255, .55);
  font-size: 9px;
  line-height: 1.65;
}

.expert-help {
  background: var(--cream-100);
}

.expert-help .section-heading {
  max-width: 820px;
}

.expert-help-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 17px;
  margin-top: 43px;
}

.expert-help-grid article {
  min-height: 220px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.expert-help-grid article > span {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 10px;
  color: var(--teal-700);
  background: var(--teal-100);
  font-size: 15px;
  font-weight: 800;
}

.expert-help-grid h3 {
  margin: 31px 0 8px;
  font-size: 14px;
}

.expert-help-grid p {
  margin: 0;
  color: var(--slate-700);
  font-size: 9px;
  line-height: 1.65;
}

.process-section,
.principles-section,
.faq-section {
  padding: 110px max(24px, calc((100vw - 1280px) / 2));
}

.process-section {
  background: var(--navy-950);
}

.process-section .section-heading {
  max-width: 720px;
}

.process-section .section-heading h2,
.process-section .section-heading > p:last-child {
  color: var(--white);
}

.process-section .section-heading > p:last-child {
  color: rgba(255, 255, 255, .6);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 52px;
  background: rgba(255, 255, 255, .1);
}

.process-grid article {
  position: relative;
  min-height: 280px;
  padding: 30px 25px;
  background: var(--navy-950);
}

.process-grid article > span {
  position: absolute;
  top: 24px;
  right: 24px;
  color: rgba(255, 255, 255, .22);
  font-size: 10px;
  font-weight: 800;
}

.process-grid i {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 12px;
  color: var(--gold-400);
  background: rgba(255, 255, 255, .04);
  font-size: 21px;
  font-style: normal;
}

.process-grid h3 {
  margin: 50px 0 10px;
  color: var(--white);
  font-size: 16px;
}

.process-grid p {
  margin: 0;
  color: rgba(255, 255, 255, .55);
  font-size: 11px;
  line-height: 1.65;
}

.report-section {
  display: grid;
  grid-template-columns: .9fr 1fr;
  align-items: center;
  gap: clamp(60px, 9vw, 140px);
  padding: 130px max(24px, calc((100vw - 1180px) / 2));
  overflow: hidden;
  background: var(--cream-100);
}

.report-preview {
  position: relative;
  width: 420px;
  height: 510px;
  justify-self: center;
}

.report-sheet {
  position: absolute;
  width: 330px;
  height: 445px;
  border-radius: 4px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.report-sheet.back {
  top: 40px;
  left: 80px;
  background: #dfe5e4;
  transform: rotate(8deg);
}

.report-sheet.middle {
  top: 25px;
  left: 48px;
  background: #f8f7f2;
  transform: rotate(2deg);
}

.report-sheet.front {
  top: 0;
  left: 10px;
  padding: 37px 34px;
  background: var(--white);
  transform: rotate(-3deg);
}

.mini-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--navy-900);
  font-size: 12px;
}

.mini-brand i {
  width: 18px;
  height: 18px;
  border: 5px solid var(--navy-900);
  border-top-color: var(--gold-500);
  border-radius: 5px;
}

.mini-brand span {
  color: var(--teal-700);
}

.report-sheet.front > small {
  display: block;
  margin-top: 56px;
  color: var(--teal-700);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.report-sheet h3 {
  margin: 8px 0 0;
  font-size: 22px;
  line-height: 1.3;
}

.report-sheet h3 span {
  color: var(--slate-500);
  font-size: 14px;
  font-weight: 550;
}

.report-rule {
  width: 50px;
  height: 3px;
  margin: 21px 0;
  background: var(--gold-500);
}

.report-sheet dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.report-sheet dl div {
  display: flex;
  justify-content: space-between;
  padding-bottom: 6px;
  border-bottom: 1px solid #edf0f1;
  font-size: 7px;
}

.report-sheet dt {
  color: var(--slate-500);
}

.report-sheet dd {
  margin: 0;
  font-weight: 750;
}

.report-chart {
  display: flex;
  align-items: end;
  gap: 7px;
  height: 62px;
  padding: 10px;
  margin-top: 20px;
  background: var(--cream-50);
}

.report-chart i {
  width: 20%;
  background: var(--teal-600);
  opacity: .35;
}

.report-chart i:nth-child(1) { height: 32%; }
.report-chart i:nth-child(2) { height: 55%; }
.report-chart i:nth-child(3) { height: 85%; opacity: 1; background: var(--gold-500); }
.report-chart i:nth-child(4) { height: 72%; }
.report-chart i:nth-child(5) { height: 46%; }

.report-copy {
  max-width: 600px;
}

.report-copy > ul {
  display: grid;
  gap: 15px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.report-copy li {
  display: grid;
  grid-template-columns: 31px 1fr;
  gap: 12px;
}

.report-copy li > i {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 50%;
  color: var(--teal-700);
  background: var(--teal-100);
  font-size: 10px;
  font-style: normal;
}

.report-copy li span {
  display: grid;
  gap: 3px;
}

.report-copy li b {
  font-size: 12px;
}

.report-copy li small {
  color: var(--slate-700);
  font-size: 10px;
  line-height: 1.5;
}

.principles-section {
  background: var(--white);
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 42px;
}

.principles-grid article {
  min-height: 230px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--cream-50);
}

.principles-grid article > b {
  color: var(--gold-500);
  font-size: 10px;
  letter-spacing: .12em;
}

.principles-grid h3 {
  margin: 50px 0 9px;
  font-size: 17px;
}

.principles-grid p {
  margin: 0;
  color: var(--slate-700);
  font-size: 11px;
  line-height: 1.65;
}

.faq-section {
  background: var(--cream-50);
}

.faq-list {
  max-width: 920px;
  margin-top: 40px;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  font-size: 13px;
  font-weight: 750;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  place-items: center;
  border-radius: 50%;
  color: var(--teal-700);
  background: var(--teal-100);
  font-size: 15px;
  transition: transform .2s;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 760px;
  padding: 0 0 23px;
  margin: 0;
  color: var(--slate-700);
  font-size: 11px;
  line-height: 1.7;
}

.bottom-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 76px max(24px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(19, 132, 124, .45), transparent 30%),
    var(--navy-900);
}

.bottom-cta > div {
  max-width: 680px;
}

.bottom-cta .eyebrow {
  color: var(--gold-400);
}

.bottom-cta > div > p:last-child {
  color: rgba(255, 255, 255, .62);
}

.valuation-page .light-action {
  flex: 0 0 auto;
  color: var(--navy-900);
  background: var(--white);
}

.valuation-page .light-action:hover,
.valuation-page .light-action:focus-visible {
  color: var(--white);
  background: var(--teal-600);
  transform: translateY(-2px);
}

.valuation-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 40px;
  padding: 43px max(24px, calc((100vw - 1280px) / 2));
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .65);
  background: var(--navy-950);
}

.valuation-footer-main {
  display: flex;
  align-items: center;
  gap: 24px;
}

.valuation-footer-brand {
  color: var(--white);
}

.valuation-footer-brand .valuation-brand-copy strong {
  color: var(--white);
}

.valuation-footer-main > p {
  max-width: 390px;
  padding-left: 23px;
  margin: 0;
  border-left: 1px solid rgba(255, 255, 255, .12);
  font-size: 9px;
}

.valuation-footer nav {
  display: flex;
  gap: 20px;
}

.valuation-footer nav a {
  font-size: 9px;
  font-weight: 700;
  text-decoration: none;
}

.valuation-footer nav a:hover {
  color: var(--white);
}

.valuation-footer > small {
  font-size: 8px;
}

.valuation-page .legal-page {
  min-height: 65vh;
  padding: 85px max(24px, calc((100vw - 920px) / 2));
}

.valuation-page .legal-page section {
  padding: clamp(28px, 5vw, 55px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.valuation-page .legal-page h1 {
  margin: 0 0 30px;
  font-size: clamp(36px, 5vw, 54px);
  letter-spacing: -.045em;
}

.valuation-page .legal-page h2 {
  margin: 31px 0 9px;
  font-size: 18px;
}

.valuation-page .legal-page p,
.valuation-page .legal-page li {
  color: var(--slate-700);
  font-size: 12px;
  line-height: 1.75;
}

.valuation-page .legal-page a {
  color: var(--teal-700);
}

@media (max-width: 1320px) {
  .valuation-intake,
  .confidence-strip {
    margin-right: 24px;
    margin-left: 24px;
  }
}

@media (max-width: 1080px) {
  .valuation-header {
    grid-template-columns: 1fr auto;
  }

  .valuation-header nav {
    display: none;
  }

  .valuation-hero {
    grid-template-columns: 1fr .8fr;
    gap: 35px;
  }

  .hero-dossier {
    width: 440px;
    height: 450px;
  }

  .value-card {
    right: 0;
    width: 290px;
  }

  .property-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .condition-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .heat-distribution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .parcel-picker {
    grid-template-columns: 1fr;
  }

  .parcel-map-column {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .report-section {
    grid-template-columns: .75fr 1fr;
    gap: 35px;
  }

  .report-preview {
    transform: scale(.88);
  }

  .valuation-footer {
    grid-template-columns: 1fr auto;
  }

  .valuation-footer > small {
    grid-column: 1 / -1;
  }

  .checkpoint-band {
    grid-template-columns: 1fr 1fr;
  }

  .checkpoint-band .primary-action {
    justify-self: start;
  }

  .checklist-role-nav {
    margin-right: 24px;
    margin-left: 24px;
  }

  .red-flag-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .valuation-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 65px;
  }

  .valuation-hero::before {
    display: none;
  }

  .hero-dossier {
    width: min(100%, 560px);
    justify-self: center;
  }

  .confidence-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .confidence-strip div:nth-child(2) {
    border-right: 0;
  }

  .confidence-strip div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .valuation-intake {
    padding-top: 85px;
  }

  .valuation-form {
    grid-template-columns: 1fr;
  }

  .step-navigation {
    display: block;
    padding: 22px 25px;
  }

  .step-navigation ol {
    display: flex;
    justify-content: space-between;
    gap: 5px;
  }

  .step-navigation li {
    flex: 1;
  }

  .step-navigation li:not(:last-child)::after {
    top: 20px;
    left: calc(50% + 17px);
    width: calc(100% - 27px);
    height: 1px;
  }

  .step-navigation button {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 5px;
    text-align: center;
  }

  .step-navigation button > span {
    display: none;
  }

  .privacy-note {
    display: none;
  }

  .report-section {
    grid-template-columns: 1fr;
  }

  .private-role-grid,
  .checklist-hero,
  .working-checklist-header {
    grid-template-columns: 1fr;
  }

  .checkpoint-band {
    grid-template-columns: 1fr;
  }

  .checklist-role-nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .checklist-role-nav a:nth-child(2) {
    border-right: 0;
  }

  .checklist-role-nav a:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .working-checklist-header {
    align-items: start;
  }

  .checklist-progress {
    max-width: 340px;
  }

  .checklist-groups {
    grid-template-columns: 1fr;
  }

  .expert-help-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .report-preview {
    order: 2;
  }
}

@media (max-width: 700px) {
  .valuation-header {
    min-height: 74px;
    padding: 0 18px;
  }

  .valuation-brand-copy small {
    display: none;
  }

  .header-start {
    padding: 9px 12px;
    font-size: 10px;
  }

  .header-start span {
    display: none;
  }

  .valuation-hero {
    padding: 55px 20px 65px;
  }

  .valuation-hero h1 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 15px;
  }

  .text-action {
    justify-content: center;
  }

  .hero-trust {
    display: grid;
  }

  .hero-dossier {
    height: 385px;
  }

  .dossier-map {
    inset: 18px 0 36px 10px;
  }

  .value-card {
    width: min(92%, 310px);
    padding: 20px;
  }

  .dossier-seal {
    left: 0;
  }

  .confidence-strip,
  .valuation-intake {
    margin-right: 14px;
    margin-left: 14px;
  }

  .confidence-strip {
    grid-template-columns: 1fr;
  }

  .confidence-strip div,
  .confidence-strip div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .confidence-strip div:last-child {
    border-bottom: 0;
  }

  .valuation-intake {
    padding-top: 75px;
    padding-bottom: 85px;
  }

  .valuation-form {
    border-radius: 18px;
  }

  .step-navigation {
    padding: 18px;
  }

  .step-navigation ol {
    overflow: hidden;
  }

  .step-navigation button > i {
    width: 27px;
    height: 27px;
  }

  .step-navigation li:not(:last-child)::after {
    top: 18px;
  }

  .step-content {
    padding: 31px 20px 24px;
  }

  .draft-resume {
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 14px;
  }

  .draft-resume-icon {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .draft-resume-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .draft-link-row {
    grid-template-columns: 1fr;
  }

  .address-grid,
  .three-column-grid,
  .two-column-grid,
  .choice-row,
  .review-card {
    grid-template-columns: 1fr;
  }

  .parcel-lookup-status {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .parcel-match-badge {
    grid-column: 2;
    justify-self: start;
  }

  .parcel-picker {
    min-height: 0;
  }

  .valuation-parcel-map {
    min-height: 350px;
  }

  .valuation-parcel-map svg {
    min-height: 310px;
  }

  .parcel-summary,
  .parcel-fallback {
    padding: 19px 16px;
  }

  .property-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .condition-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .heat-distribution-grid {
    grid-template-columns: 1fr;
  }

  .heating-panel {
    padding: 17px 14px;
  }

  .upload-grid {
    grid-template-columns: 1fr;
  }

  .upload-card {
    min-height: 190px;
  }

  .step-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .step-actions > span {
    display: none;
  }

  .next-button,
  .submit-button {
    width: 100%;
  }

  .back-button {
    justify-content: center;
  }

  .process-section,
  .principles-section,
  .faq-section,
  .report-section {
    padding: 80px 20px;
  }

  .private-portal,
  .checklist-hero,
  .working-checklist,
  .red-flags,
  .expert-help {
    padding: 78px 20px;
  }

  .private-role-card {
    min-height: 0;
    padding: 23px;
  }

  .role-card-heading {
    grid-template-columns: 45px 1fr;
  }

  .role-card-heading > span {
    width: 45px;
    height: 45px;
  }

  .checkpoint-band {
    padding: 24px 20px;
  }

  .checklist-hero-actions,
  .checklist-tools {
    align-items: stretch;
    flex-direction: column;
  }

  .checklist-hero-actions > a {
    justify-content: center;
  }

  .checklist-hero > aside {
    padding: 24px;
  }

  .checklist-role-nav {
    margin: -20px 14px 0;
  }

  .checklist-role-nav a {
    grid-template-columns: 34px 1fr;
    min-height: 77px;
    padding: 12px;
  }

  .checklist-role-nav a > span {
    width: 34px;
    height: 34px;
  }

  .checklist-group {
    padding: 20px;
  }

  .checklist-tools a {
    justify-content: center;
    margin-left: 0;
  }

  .red-flag-grid,
  .expert-help-grid {
    grid-template-columns: 1fr;
  }

  .red-flag-grid article,
  .expert-help-grid article {
    min-height: 0;
  }

  .process-grid,
  .principles-grid {
    grid-template-columns: 1fr;
  }

  .process-grid article {
    min-height: 230px;
  }

  .report-preview {
    width: 360px;
    max-width: 100%;
    height: 460px;
    transform: scale(.82);
    transform-origin: top center;
  }

  .bottom-cta {
    align-items: stretch;
    flex-direction: column;
    padding: 65px 20px;
  }

  .valuation-footer {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 40px 20px;
  }

  .valuation-footer-main {
    align-items: flex-start;
    flex-direction: column;
  }

  .valuation-footer-main > p {
    padding: 0;
    border: 0;
  }
}

@media print {
  body.valuation-page {
    color: #111;
    background: #fff;
  }

  body.printing-checklist .valuation-header,
  body.printing-checklist .valuation-footer,
  body.printing-checklist .checklist-hero,
  body.printing-checklist .checklist-role-nav,
  body.printing-checklist .red-flags,
  body.printing-checklist .expert-help,
  body.printing-checklist .bottom-cta,
  body.printing-checklist .working-checklist:not(.print-target),
  body.printing-checklist .checklist-tools {
    display: none !important;
  }

  body.printing-checklist .working-checklist.print-target {
    display: block !important;
    padding: 0;
    background: #fff;
  }

  body.printing-checklist .working-checklist-header {
    display: block;
  }

  body.printing-checklist .checklist-progress {
    width: 220px;
    margin-top: 18px;
  }

  body.printing-checklist .checklist-groups {
    display: block;
    margin-top: 25px;
  }

  body.printing-checklist .checklist-group {
    margin-bottom: 14px;
    border: 1px solid #bbb;
    box-shadow: none;
    break-inside: avoid;
  }

  body.printing-checklist .checklist-items label {
    padding: 10px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .parcel-lookup.is-loading .parcel-status-icon {
    animation-duration: 1.6s;
  }
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
