:root {
  --ink: #17212b;
  --muted: #52616f;
  --line: #d7e2e4;
  --paper: #ffffff;
  --wash: #f5f8f7;
  --teal: #0b4f54;
  --teal-dark: #08383c;
  --blue: #1f5f8b;
  --amber: #c98718;
  --clay: #8a4f33;
  --mint: #dff1ed;
  --shadow: 0 18px 50px rgba(18, 36, 45, 0.14);
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--blue);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: var(--ink);
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 6px;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 4vw;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(215, 226, 228, 0.72);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 28px rgba(24, 40, 50, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 10rem;
}

.brand-mark {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border-radius: 6px;
  background: var(--teal);
  color: white;
  font-weight: 800;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.nav a {
  padding: 0.55rem 0.7rem;
  border-radius: 6px;
  color: #263846;
  font-weight: 700;
  font-size: 0.9rem;
}

.nav a:hover,
.nav a[aria-current="page"] {
  background: var(--mint);
  color: var(--teal-dark);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.55rem;
  padding: 0 0.95rem;
  border-radius: 6px;
  background: var(--teal);
  color: white;
  font-weight: 800;
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--teal-dark);
  color: white;
}

.lead-strip {
  position: sticky;
  top: 4.35rem;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 4vw;
  border-bottom: 1px solid rgba(215, 226, 228, 0.82);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 26px rgba(24, 40, 50, 0.08);
  backdrop-filter: blur(12px);
}

.lead-strip-copy {
  display: grid;
  gap: 0.05rem;
  min-width: 0;
}

.lead-strip-copy strong {
  color: var(--teal-dark);
  font-size: 0.95rem;
}

.lead-strip-copy span {
  color: var(--muted);
  font-size: 0.86rem;
}

.lead-strip-actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem;
}

.lead-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  padding: 0 0.78rem;
  border: 1px solid rgba(11, 79, 84, 0.22);
  border-radius: 6px;
  background: var(--mint);
  color: var(--teal-dark);
  font-size: 0.86rem;
  font-weight: 850;
  white-space: nowrap;
}

.lead-pill.phone {
  background: var(--teal);
  color: white;
}

.lead-pill:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
  transform: translateY(-1px);
}

.lead-pill.phone:hover {
  color: white;
  background: var(--teal-dark);
}
.hero {
  position: relative;
  min-height: 620px;
  height: 76vh;
  max-height: 760px;
  overflow: hidden;
  color: white;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 26, 30, 0.86) 0%, rgba(6, 26, 30, 0.68) 42%, rgba(6, 26, 30, 0.12) 74%),
    linear-gradient(0deg, rgba(6, 26, 30, 0.32), rgba(6, 26, 30, 0.04));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 100%;
  width: min(1160px, 92vw);
  margin: 0 auto;
  padding: 4rem 0;
}

.hero-copy {
  width: min(690px, 100%);
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: #bee9e5;
  font-size: 0.79rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--teal);
}

h1,
h2,
h3 {
  line-height: 1.12;
  margin: 0;
  color: inherit;
}

h1 {
  max-width: 12ch;
  font-size: 3.7rem;
  font-weight: 850;
}

h2 {
  font-size: 2rem;
  font-weight: 820;
}

h3 {
  font-size: 1.15rem;
  font-weight: 820;
}

.hero-copy p.lead {
  max-width: 43rem;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0 1.05rem;
  border-radius: 6px;
  font-weight: 850;
}

.button.primary {
  background: var(--amber);
  color: #17120a;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.58);
  color: white;
}

.button.outline {
  border: 1px solid var(--teal);
  color: var(--teal);
}

.button:hover {
  transform: translateY(-1px);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  max-width: 44rem;
  margin-top: 2rem;
}

.hero-proof span {
  border-left: 3px solid var(--amber);
  padding-left: 0.7rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.93rem;
  font-weight: 700;
}

.intent-router {
  padding: 2.75rem 4vw;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fbfdfc 0%, #f4f8f7 100%);
}

.intent-router-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 1.5rem;
  align-items: center;
}

.intent-router-copy .large-copy {
  margin: 0.9rem 0 0;
}

.intent-router-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.intent-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.intent-option {
  display: grid;
  gap: 0.55rem;
  min-height: 10.5rem;
  padding: 1rem;
  border: 1px solid rgba(11, 79, 84, 0.14);
  border-radius: 8px;
  background: white;
  color: inherit;
  box-shadow: 0 10px 28px rgba(23, 33, 43, 0.06);
}

.intent-option:hover {
  border-color: rgba(201, 135, 24, 0.55);
  transform: translateY(-2px);
}

.intent-option h3 {
  color: var(--ink);
  font-size: 1.05rem;
}

.intent-option p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.intent-option .tag {
  width: fit-content;
}

.intent-option-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  color: var(--teal-dark);
  font-size: 0.88rem;
}

.intent-option-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0 0.65rem;
  border-radius: 6px;
  background: var(--amber);
  color: #17120a;
  font-weight: 850;
  white-space: nowrap;
}
.band {
  padding: 4.5rem 4vw;
}

.band.compact {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.wash {
  background: var(--wash);
}

.teal-band {
  background: var(--teal-dark);
  color: white;
}

.container {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.narrow {
  width: min(850px, 100%);
}

.section-head {
  width: min(780px, 100%);
  margin-bottom: 2rem;
}

.section-head p,
.content-block p,
.card p,
.split-copy p {
  color: var(--muted);
}

.teal-band .section-head p,
.teal-band .card p,
.teal-band .split-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.large-copy {
  color: var(--muted);
  font-size: 1.12rem;
}
.quote-choice-band {
  background: #f8fbf7;
}

.quote-choice-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 520px);
  gap: 2rem;
  align-items: start;
}

.quote-choice-tool {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 30px rgba(23, 33, 43, 0.07);
}

.quote-choice-submit {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.quote-choice-result {
  display: grid;
  gap: 0.45rem;
  padding: 1rem;
  border: 1px solid rgba(11, 79, 84, 0.16);
  border-radius: 8px;
  background: var(--mint);
  color: var(--teal-dark);
}

.quote-choice-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.quote-choice-result strong {
  color: var(--teal-dark);
  font-size: 1.35rem;
  line-height: 1.12;
}

.quote-choice-result span[data-quote-choice-summary] {
  color: #31585c;
}

.quote-choice-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.quote-choice-badges span {
  display: inline-flex;
  padding: 0.28rem 0.52rem;
  border-radius: 4px;
  background: white;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 850;
}

.quote-choice-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.comparator-band {
  background: #f7fbfb;
}

.comparator-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 560px);
  gap: 2rem;
  align-items: start;
}

.comparator-tool {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 30px rgba(23, 33, 43, 0.07);
}

.comparator-offers fieldset {
  display: grid;
  gap: 0.75rem;
  min-width: 0;
  margin: 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.comparator-offers legend {
  padding: 0 0.35rem;
  color: var(--teal-dark);
  font-weight: 850;
}

.comparator-submit {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.comparator-result {
  display: grid;
  gap: 0.5rem;
  padding: 1rem;
  border: 1px solid rgba(11, 79, 84, 0.16);
  border-radius: 8px;
  background: var(--mint);
  color: var(--teal-dark);
}

.comparator-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.comparator-result strong {
  color: var(--teal-dark);
  font-size: 1.35rem;
  line-height: 1.12;
}

.comparator-result span[data-comparator-summary] {
  color: #31585c;
}

.comparator-scores {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.comparator-scores span {
  display: grid;
  gap: 0.2rem;
  padding: 0.7rem;
  border-radius: 6px;
  background: white;
  color: #31585c;
  font-weight: 800;
}

.comparator-scores strong {
  font-size: 1.55rem;
}

.comparator-list {
  display: grid;
  gap: 0.48rem;
  margin: 0.2rem 0 0;
  padding-left: 1.1rem;
  color: #31585c;
}

.comparator-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.renewal-band {
  background: #f7faf8;
}

.renewal-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 560px);
  gap: 2rem;
  align-items: start;
}

.renewal-tool {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 30px rgba(23, 33, 43, 0.07);
}

.renewal-submit {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.renewal-result {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
  border: 1px solid rgba(11, 79, 84, 0.16);
  border-radius: 8px;
  background: var(--mint);
  color: var(--teal-dark);
}

.renewal-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.renewal-result strong {
  color: var(--teal-dark);
  font-size: 1.35rem;
  line-height: 1.12;
}

.renewal-result span[data-renewal-summary] {
  color: #31585c;
}

.renewal-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.renewal-badges span {
  display: inline-flex;
  padding: 0.28rem 0.52rem;
  border-radius: 4px;
  background: white;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 850;
}

.renewal-steps {
  display: grid;
  gap: 0.48rem;
  margin: 0.2rem 0 0;
  padding-left: 1.25rem;
  color: #31585c;
}

.renewal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.urgent-band {
  background: #fff8ed;
}

.urgent-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 560px);
  gap: 2rem;
  align-items: start;
}

.urgent-tool {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(201, 135, 24, 0.24);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 30px rgba(23, 33, 43, 0.07);
}

.urgent-submit {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.urgent-result {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
  border: 1px solid rgba(201, 135, 24, 0.28);
  border-radius: 8px;
  background: #fff3dd;
  color: var(--teal-dark);
}

.urgent-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.urgent-result strong {
  color: var(--teal-dark);
  font-size: 1.35rem;
  line-height: 1.12;
}

.urgent-result span[data-urgent-summary] {
  color: #31585c;
}

.urgent-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.urgent-badges span {
  display: inline-flex;
  padding: 0.28rem 0.52rem;
  border-radius: 4px;
  background: white;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 850;
}

.urgent-steps {
  display: grid;
  gap: 0.48rem;
  margin: 0.2rem 0 0;
  padding-left: 1.25rem;
  color: #31585c;
}

.urgent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.portfolio-band {
  background: #f4f9fb;
}

.portfolio-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 560px);
  gap: 2rem;
  align-items: start;
}

.portfolio-tool {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(43, 111, 120, 0.2);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 30px rgba(23, 33, 43, 0.07);
}

.portfolio-submit {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.portfolio-result {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
  border: 1px solid rgba(43, 111, 120, 0.22);
  border-radius: 8px;
  background: #eaf6f7;
  color: var(--teal-dark);
}

.portfolio-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.portfolio-result strong {
  color: var(--teal-dark);
  font-size: 1.35rem;
  line-height: 1.12;
}

.portfolio-result span[data-portfolio-summary] {
  color: #31585c;
}

.portfolio-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.portfolio-badges span {
  display: inline-flex;
  padding: 0.28rem 0.52rem;
  border-radius: 4px;
  background: white;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 850;
}

.portfolio-steps {
  display: grid;
  gap: 0.48rem;
  margin: 0.2rem 0 0;
  padding-left: 1.25rem;
  color: #31585c;
}

.portfolio-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.commercial-band {
  background: #fbf8f1;
}

.commercial-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 560px);
  gap: 2rem;
  align-items: start;
}

.commercial-tool {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(201, 135, 24, 0.22);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 30px rgba(23, 33, 43, 0.07);
}

.commercial-submit {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.commercial-result {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
  border: 1px solid rgba(201, 135, 24, 0.24);
  border-radius: 8px;
  background: #fff4df;
  color: var(--teal-dark);
}

.commercial-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.commercial-result strong {
  color: var(--teal-dark);
  font-size: 1.35rem;
  line-height: 1.12;
}

.commercial-result span[data-commercial-summary] {
  color: #31585c;
}

.commercial-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.commercial-badges span {
  display: inline-flex;
  padding: 0.28rem 0.52rem;
  border-radius: 4px;
  background: white;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 850;
}

.commercial-steps {
  display: grid;
  gap: 0.48rem;
  margin: 0.2rem 0 0;
  padding-left: 1.25rem;
  color: #31585c;
}

.commercial-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.localvacant-band {
  background: #f7f6ee;
}

.localvacant-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 560px);
  gap: 2rem;
  align-items: start;
}

.localvacant-tool {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(145, 118, 44, 0.24);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 30px rgba(23, 33, 43, 0.07);
}

.localvacant-submit {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.localvacant-result {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
  border: 1px solid rgba(145, 118, 44, 0.26);
  border-radius: 8px;
  background: #fff5d8;
  color: var(--teal-dark);
}

.localvacant-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.localvacant-result strong {
  color: var(--teal-dark);
  font-size: 1.35rem;
  line-height: 1.12;
}

.localvacant-result span[data-localvacant-summary] {
  color: #31585c;
}

.localvacant-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.localvacant-badges span {
  display: inline-flex;
  padding: 0.28rem 0.52rem;
  border-radius: 4px;
  background: white;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 850;
}

.localvacant-steps {
  display: grid;
  gap: 0.48rem;
  margin: 0.2rem 0 0;
  padding-left: 1.25rem;
  color: #31585c;
}

.localvacant-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.mixed-band {
  background: #f2f7f1;
}

.mixed-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 560px);
  gap: 2rem;
  align-items: start;
}

.mixed-tool {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(87, 137, 74, 0.24);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 30px rgba(23, 33, 43, 0.07);
}

.mixed-submit {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.mixed-result {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
  border: 1px solid rgba(87, 137, 74, 0.26);
  border-radius: 8px;
  background: #e6f3e1;
  color: var(--teal-dark);
}

.mixed-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.mixed-result strong {
  color: var(--teal-dark);
  font-size: 1.35rem;
  line-height: 1.12;
}

.mixed-result span[data-mixed-summary] {
  color: #31585c;
}

.mixed-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.mixed-badges span {
  display: inline-flex;
  padding: 0.28rem 0.52rem;
  border-radius: 4px;
  background: white;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 850;
}

.mixed-steps {
  display: grid;
  gap: 0.48rem;
  margin: 0.2rem 0 0;
  padding-left: 1.25rem;
  color: #31585c;
}

.mixed-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.professional-band {
  background: #eef8f9;
}

.professional-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 560px);
  gap: 2rem;
  align-items: start;
}

.professional-tool {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(22, 119, 127, 0.22);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 30px rgba(23, 33, 43, 0.07);
}

.professional-submit {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.professional-result {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
  border: 1px solid rgba(22, 119, 127, 0.24);
  border-radius: 8px;
  background: #e2f5f6;
  color: var(--teal-dark);
}

.professional-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.professional-result strong {
  color: var(--teal-dark);
  font-size: 1.35rem;
  line-height: 1.12;
}

.professional-result span[data-professional-summary] {
  color: #31585c;
}

.professional-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.professional-badges span {
  display: inline-flex;
  padding: 0.28rem 0.52rem;
  border-radius: 4px;
  background: white;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 850;
}

.professional-steps {
  display: grid;
  gap: 0.48rem;
  margin: 0.2rem 0 0;
  padding-left: 1.25rem;
  color: #31585c;
}

.professional-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.renovation-band {
  background: #f7f8f3;
}

.renovation-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 560px);
  gap: 2rem;
  align-items: start;
}

.renovation-tool {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(137, 113, 41, 0.22);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 30px rgba(23, 33, 43, 0.07);
}

.renovation-submit {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.renovation-result {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
  border: 1px solid rgba(137, 113, 41, 0.26);
  border-radius: 8px;
  background: #eef1df;
  color: var(--teal-dark);
}

.renovation-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.renovation-result strong {
  color: var(--teal-dark);
  font-size: 1.35rem;
  line-height: 1.12;
}

.renovation-result span[data-renovation-summary] {
  color: #31585c;
}

.renovation-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.renovation-badges span {
  display: inline-flex;
  padding: 0.28rem 0.52rem;
  border-radius: 4px;
  background: white;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 850;
}

.renovation-steps {
  display: grid;
  gap: 0.48rem;
  margin: 0.2rem 0 0;
  padding-left: 1.25rem;
  color: #31585c;
}

.renovation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}.acquisition-band {
  background: #f3f8fb;
}

.acquisition-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 560px);
  gap: 2rem;
  align-items: start;
}

.acquisition-tool {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(31, 95, 139, 0.2);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 30px rgba(23, 33, 43, 0.07);
}

.acquisition-submit {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.acquisition-result {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
  border: 1px solid rgba(31, 95, 139, 0.24);
  border-radius: 8px;
  background: #e8f3f7;
  color: var(--teal-dark);
}

.acquisition-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.acquisition-result strong {
  color: var(--teal-dark);
  font-size: 1.35rem;
  line-height: 1.12;
}

.acquisition-result span[data-acquisition-summary] {
  color: #31585c;
}

.acquisition-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.acquisition-badges span {
  display: inline-flex;
  padding: 0.28rem 0.52rem;
  border-radius: 4px;
  background: white;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 850;
}

.acquisition-steps {
  display: grid;
  gap: 0.48rem;
  margin: 0.2rem 0 0;
  padding-left: 1.25rem;
  color: #31585c;
}

.acquisition-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}.vacancy-band {
  background: #f4faf6;
}

.vacancy-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 560px);
  gap: 2rem;
  align-items: start;
}

.vacancy-tool {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(11, 79, 84, 0.18);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 30px rgba(23, 33, 43, 0.07);
}

.vacancy-submit {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.vacancy-result {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
  border: 1px solid rgba(11, 79, 84, 0.2);
  border-radius: 8px;
  background: var(--mint);
  color: var(--teal-dark);
}

.vacancy-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.vacancy-result strong {
  color: var(--teal-dark);
  font-size: 1.35rem;
  line-height: 1.12;
}

.vacancy-result span[data-vacancy-summary] {
  color: #31585c;
}

.vacancy-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.vacancy-badges span {
  display: inline-flex;
  padding: 0.28rem 0.52rem;
  border-radius: 4px;
  background: white;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 850;
}

.vacancy-steps {
  display: grid;
  gap: 0.48rem;
  margin: 0.2rem 0 0;
  padding-left: 1.25rem;
  color: #31585c;
}

.vacancy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.secondary-band {
  background: #f7f8f2;
}

.secondary-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 560px);
  gap: 2rem;
  align-items: start;
}

.secondary-tool {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(92, 111, 73, 0.24);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 30px rgba(23, 33, 43, 0.07);
}

.secondary-submit {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.secondary-result {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
  border: 1px solid rgba(92, 111, 73, 0.28);
  border-radius: 8px;
  background: #edf2df;
  color: var(--teal-dark);
}

.secondary-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.secondary-result strong {
  color: var(--teal-dark);
  font-size: 1.35rem;
  line-height: 1.12;
}

.secondary-result span[data-secondary-summary] {
  color: #31585c;
}

.secondary-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.secondary-badges span {
  display: inline-flex;
  padding: 0.28rem 0.52rem;
  border-radius: 4px;
  background: white;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 850;
}

.secondary-steps {
  display: grid;
  gap: 0.48rem;
  margin: 0.2rem 0 0;
  padding-left: 1.25rem;
  color: #31585c;
}

.secondary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.seasonal-band {
  background: #f4f7f6;
}

.seasonal-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 560px);
  gap: 2rem;
  align-items: start;
}

.seasonal-tool {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(31, 95, 103, 0.2);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 30px rgba(23, 33, 43, 0.07);
}

.seasonal-submit {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.seasonal-result {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
  border: 1px solid rgba(31, 95, 103, 0.24);
  border-radius: 8px;
  background: #e7f1ef;
  color: var(--teal-dark);
}

.seasonal-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.seasonal-result strong {
  color: var(--teal-dark);
  font-size: 1.35rem;
  line-height: 1.12;
}

.seasonal-result span[data-seasonal-summary] {
  color: #31585c;
}

.seasonal-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.seasonal-badges span {
  display: inline-flex;
  padding: 0.28rem 0.52rem;
  border-radius: 4px;
  background: white;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 850;
}

.seasonal-steps {
  display: grid;
  gap: 0.48rem;
  margin: 0.2rem 0 0;
  padding-left: 1.25rem;
  color: #31585c;
}

.seasonal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.furnished-band {
  background: #f4f7fb;
}

.furnished-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 560px);
  gap: 2rem;
  align-items: start;
}

.furnished-tool {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(31, 95, 139, 0.2);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 30px rgba(23, 33, 43, 0.07);
}

.furnished-submit {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.furnished-result {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
  border: 1px solid rgba(31, 95, 139, 0.22);
  border-radius: 8px;
  background: #e9f2fa;
  color: var(--teal-dark);
}

.furnished-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.furnished-result strong {
  color: var(--teal-dark);
  font-size: 1.35rem;
  line-height: 1.12;
}

.furnished-result span[data-furnished-summary] {
  color: #31585c;
}

.furnished-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.furnished-badges span {
  display: inline-flex;
  padding: 0.28rem 0.52rem;
  border-radius: 4px;
  background: white;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 850;
}

.furnished-steps {
  display: grid;
  gap: 0.48rem;
  margin: 0.2rem 0 0;
  padding-left: 1.25rem;
  color: #31585c;
}

.furnished-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.house-band {
  background: #f8fbf6;
}

.house-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 560px);
  gap: 2rem;
  align-items: start;
}

.house-tool {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(72, 116, 76, 0.2);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 30px rgba(23, 33, 43, 0.07);
}

.house-submit {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.house-result {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
  border: 1px solid rgba(72, 116, 76, 0.24);
  border-radius: 8px;
  background: #eaf4e8;
  color: var(--teal-dark);
}

.house-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.house-result strong {
  color: var(--teal-dark);
  font-size: 1.35rem;
  line-height: 1.12;
}

.house-result span[data-house-summary] {
  color: #31585c;
}

.house-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.house-badges span {
  display: inline-flex;
  padding: 0.28rem 0.52rem;
  border-radius: 4px;
  background: white;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 850;
}

.house-steps {
  display: grid;
  gap: 0.48rem;
  margin: 0.2rem 0 0;
  padding-left: 1.25rem;
  color: #31585c;
}

.house-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}.occupancy-band {
  background: #f6f9fc;
}

.occupancy-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 560px);
  gap: 2rem;
  align-items: start;
}

.occupancy-tool {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(32, 92, 146, 0.2);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 30px rgba(23, 33, 43, 0.07);
}

.occupancy-submit {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.occupancy-result {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
  border: 1px solid rgba(32, 92, 146, 0.24);
  border-radius: 8px;
  background: #e8f1fb;
  color: var(--teal-dark);
}

.occupancy-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.occupancy-result strong {
  color: var(--teal-dark);
  font-size: 1.35rem;
  line-height: 1.12;
}

.occupancy-result span[data-occupancy-summary] {
  color: #31585c;
}

.occupancy-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.occupancy-badges span {
  display: inline-flex;
  padding: 0.28rem 0.52rem;
  border-radius: 4px;
  background: white;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 850;
}

.occupancy-steps {
  display: grid;
  gap: 0.48rem;
  margin: 0.2rem 0 0;
  padding-left: 1.25rem;
  color: #31585c;
}

.occupancy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}.colocation-band {
  background: #f3f8f7;
}

.colocation-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 560px);
  gap: 2rem;
  align-items: start;
}

.colocation-tool {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(11, 79, 84, 0.2);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 30px rgba(23, 33, 43, 0.07);
}

.colocation-submit {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.colocation-result {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
  border: 1px solid rgba(11, 79, 84, 0.24);
  border-radius: 8px;
  background: #e5f1ee;
  color: var(--teal-dark);
}

.colocation-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.colocation-result strong {
  color: var(--teal-dark);
  font-size: 1.35rem;
  line-height: 1.12;
}

.colocation-result span[data-colocation-summary] {
  color: #31585c;
}

.colocation-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.colocation-badges span {
  display: inline-flex;
  padding: 0.28rem 0.52rem;
  border-radius: 4px;
  background: white;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 850;
}

.colocation-steps {
  display: grid;
  gap: 0.48rem;
  margin: 0.2rem 0 0;
  padding-left: 1.25rem;
  color: #31585c;
}

.colocation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}.rent-band {
  background: #fbf7f3;
}

.rent-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 560px);
  gap: 2rem;
  align-items: start;
}

.rent-tool {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(138, 79, 51, 0.2);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 30px rgba(23, 33, 43, 0.07);
}

.rent-submit {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.rent-result {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
  border: 1px solid rgba(138, 79, 51, 0.24);
  border-radius: 8px;
  background: #f7eadf;
  color: var(--teal-dark);
}

.rent-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.rent-result strong {
  color: var(--teal-dark);
  font-size: 1.35rem;
  line-height: 1.12;
}

.rent-result span[data-rent-summary] {
  color: #31585c;
}

.rent-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.rent-badges span {
  display: inline-flex;
  padding: 0.28rem 0.52rem;
  border-radius: 4px;
  background: white;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 850;
}

.rent-steps {
  display: grid;
  gap: 0.48rem;
  margin: 0.2rem 0 0;
  padding-left: 1.25rem;
  color: #31585c;
}

.rent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.guarantee-band {
  background: #fbfdfc;
}

.guarantee-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 540px);
  gap: 2rem;
  align-items: start;
}

.guarantee-tool {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 30px rgba(23, 33, 43, 0.07);
}

.guarantee-submit {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.guarantee-result {
  display: grid;
  gap: 0.5rem;
  padding: 1rem;
  border: 1px solid rgba(11, 79, 84, 0.16);
  border-radius: 8px;
  background: var(--mint);
  color: var(--teal-dark);
}

.guarantee-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.guarantee-result strong {
  color: var(--teal-dark);
  font-size: 1.35rem;
  line-height: 1.12;
}

.guarantee-result span[data-guarantee-summary] {
  color: #31585c;
}

.guarantee-list {
  display: grid;
  gap: 0.48rem;
  margin: 0.2rem 0 0;
  padding-left: 1.1rem;
  color: #31585c;
}

.guarantee-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.guarantee-badges span {
  display: inline-flex;
  padding: 0.28rem 0.52rem;
  border-radius: 4px;
  background: white;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 850;
}

.guarantee-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.document-band {
  background: #fbfdfc;
}

.document-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 520px);
  gap: 2rem;
  align-items: start;
}

.document-tool {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 30px rgba(23, 33, 43, 0.07);
}

.document-submit {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.document-result {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
  border: 1px solid rgba(11, 79, 84, 0.16);
  border-radius: 8px;
  background: var(--mint);
  color: var(--teal-dark);
}

.document-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.document-result strong {
  color: var(--teal-dark);
  font-size: 1.35rem;
  line-height: 1.12;
}

.document-list {
  display: grid;
  gap: 0.48rem;
  margin: 0.2rem 0 0;
  padding-left: 1.1rem;
  color: #31585c;
}

.document-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.document-print {
  border: 0;
  background: transparent;
  cursor: pointer;
}
.diagnostic-band {
  background: #f7fbfb;
}

.diagnostic-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 520px);
  gap: 2rem;
  align-items: start;
}

.diagnostic-tool {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 30px rgba(23, 33, 43, 0.07);
}

.diagnostic-submit {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.diagnostic-result {
  display: grid;
  gap: 0.45rem;
  padding: 1rem;
  border: 1px solid rgba(11, 79, 84, 0.16);
  border-radius: 8px;
  background: var(--mint);
  color: var(--teal-dark);
}

.diagnostic-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.diagnostic-result strong {
  color: var(--teal-dark);
  font-size: 1.35rem;
  line-height: 1.12;
}

.diagnostic-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.diagnostic-badges span {
  display: inline-flex;
  padding: 0.28rem 0.52rem;
  border-radius: 4px;
  background: white;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 850;
}

.diagnostic-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.estimator-band {
  background: #fbfdfc;
}

.estimator-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 520px);
  gap: 2rem;
  align-items: start;
}

.budget-estimator {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 30px rgba(23, 33, 43, 0.07);
}

.estimator-submit {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.estimator-result {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  border: 1px solid rgba(11, 79, 84, 0.16);
  border-radius: 8px;
  background: var(--mint);
  color: var(--teal-dark);
}

.estimator-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.estimator-result strong {
  color: var(--teal-dark);
  font-size: 1.75rem;
  line-height: 1.1;
}

.estimator-result span:last-child {
  color: #31585c;
}

.estimator-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.answer-band {
  border-bottom: 1px solid var(--line);
  background: #fbfdfc;
}

.answer-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.4fr);
  gap: 1.4rem;
  align-items: start;
}

.answer-main {
  position: sticky;
  top: 5.5rem;
}

.review-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.intent-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.intent-tags span {
  display: inline-flex;
  padding: 0.28rem 0.52rem;
  border: 1px solid rgba(11, 79, 84, 0.18);
  border-radius: 4px;
  background: var(--mint);
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.answer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.answer-card {
  min-height: 100%;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 6px 22px rgba(23, 33, 43, 0.05);
}

.answer-card h3 {
  font-size: 1rem;
}

.answer-card .check-list {
  gap: 0.55rem;
  margin-top: 0.85rem;
  font-size: 0.94rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: 2rem;
  align-items: start;
}

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

.card,
.quote-panel,
.source-list,
.notice {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 6px 22px rgba(23, 33, 43, 0.05);
}

.card {
  padding: 1.25rem;
}

.card .tag {
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  background: var(--mint);
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 850;
}

.card a {
  color: var(--teal-dark);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

th,
td {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: #eef7f5;
  color: var(--teal-dark);
}

tr:last-child td {
  border-bottom: 0;
}

.check-list {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 1.25rem 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.7rem;
}

.check-list li::before {
  content: "âœ“";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
  font-weight: 900;
}

.quote-panel {
  padding: 1.25rem;
}

.quote-panel h2 {
  font-size: 1.45rem;
}


.form-intent {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.form-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  margin: 0.85rem 0 0.2rem;
}

.lead-extra {
  margin-top: 0.85rem;
  padding: 0.85rem;
  background: #f8fbfa;
}

.lead-extra summary {
  font-size: 0.92rem;
}

.lead-extra .field-grid {
  margin-top: 0.55rem;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

label {
  display: grid;
  gap: 0.35rem;
  margin-top: 0.85rem;
  color: #243847;
  font-weight: 760;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c8d8dc;
  border-radius: 6px;
  padding: 0.78rem 0.85rem;
  color: var(--ink);
  font: inherit;
  background: white;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(11, 79, 84, 0.18);
  border-color: var(--teal);
}

textarea {
  resize: vertical;
}

.consent-row {
  grid-template-columns: auto 1fr;
  align-items: start;
  font-size: 0.9rem;
  color: var(--muted);
}

.consent-row input {
  width: 1rem;
  margin-top: 0.28rem;
}

.consent-options {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.65rem;
  padding: 0.7rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfa;
}

.consent-options .consent-row {
  margin-top: 0;
  font-size: 0.84rem;
}

.preference-list {
  margin-top: 1rem;
}

.revoke-row {
  padding-top: 0.55rem;
  border-top: 1px solid var(--line);
  color: #7c2d12;
}

.turnstile-wrap {
  min-height: 65px;
  margin-top: 0.85rem;
}

.client-console .card-grid {
  margin-top: 0.5rem;
}

.submit-button {
  width: 100%;
  min-height: 3rem;
  margin-top: 1rem;
  border: 0;
  border-radius: 6px;
  background: var(--teal);
  color: white;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.submit-button:hover {
  background: var(--teal-dark);
}

.hp-field {
  position: absolute;
  left: -999rem;
}

.form-note,
.form-status {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.form-status[data-state="error"] {
  color: #9f1d20;
  font-weight: 700;
}

[data-lead-form] [aria-invalid="true"] {
  border-color: #b4232a;
  box-shadow: 0 0 0 3px rgba(180, 35, 42, 0.14);
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 1rem;
}

summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
}

details p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.source-list {
  padding: 1rem 1.25rem;
}

.source-list a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.source-list li + li {
  margin-top: 0.5rem;
}

.notice {
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--amber);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  padding: 2rem 4vw;
  background: #15202b;
  color: white;
}

.site-footer p,
.site-footer small {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer nav,
.site-footer address {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
  align-items: center;
  font-style: normal;
}

.legal main {
  background: var(--wash);
}

.legal .content-block {
  width: min(900px, 92vw);
  margin: 0 auto;
  padding: 4rem 0;
}

.content-block h1 {
  max-width: 18ch;
  color: var(--ink);
  font-size: 2.5rem;
}

.content-block h2 {
  margin-top: 2rem;
}

.content-block a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

  .lead-strip {
    position: static;
    align-items: stretch;
    flex-direction: column;
  }

  .lead-strip-actions {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hero {
    min-height: 610px;
    height: auto;
  }

  .hero-inner {
    padding: 4.5rem 0 3.5rem;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.65rem;
  }

  .split,
  .card-grid,
  .intent-router-panel,
  .quote-choice-layout,
  .comparator-layout,
  .renewal-layout,
  .urgent-layout,
  .portfolio-layout,
  .commercial-layout,
  .professional-layout,
  .localvacant-layout,
  .mixed-layout,
  .acquisition-layout,
  .renovation-layout,
  .vacancy-layout,
  .house-layout,
  .secondary-layout,
  .seasonal-layout,
  .furnished-layout,
  .occupancy-layout,
  .colocation-layout,
  .rent-layout,
  .guarantee-layout,
  .document-layout,
  .diagnostic-layout,
  .estimator-layout,
  .answer-layout,
  .answer-grid,
  .hero-proof {
    grid-template-columns: 1fr;
  }

  .answer-main {
    position: static;
  }

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

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .site-header {
    padding: 0.75rem 1rem;
  }

  .nav a {
    padding: 0.5rem 0.45rem;
    font-size: 0.85rem;
  }

  .header-cta {
    width: 100%;
  }

  .lead-strip {
    padding: 0.7rem 1rem;
  }

  .lead-strip-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lead-pill {
    min-height: 2.35rem;
  }

  .hero {
    min-height: 660px;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(6, 26, 30, 0.9), rgba(6, 26, 30, 0.52));
  }

  .hero-copy p.lead {
    font-size: 1rem;
  }

  h1 {
    max-width: 13ch;
    font-size: 2.05rem;
  }

  .band {
    padding: 3rem 1rem;
  }

  .field-grid,
  .comparator-scores,
  .intent-options,
  .quote-choice-actions,
  .comparator-actions,
  .renewal-actions,
  .urgent-actions,
  .portfolio-actions,
  .commercial-actions,
  .professional-actions,
  .localvacant-actions,
  .mixed-actions,
  .acquisition-actions,
  .renovation-actions,
  .vacancy-actions,
  .house-actions,
  .secondary-actions,
  .seasonal-actions,
  .furnished-actions,
  .occupancy-actions,
  .colocation-actions,
  .rent-actions,
  .guarantee-actions,
  .document-actions,
  .diagnostic-actions,
  .estimator-actions {
    grid-template-columns: 1fr;
  }

  .quote-choice-actions,
  .comparator-actions,
  .renewal-actions,
  .urgent-actions,
  .portfolio-actions,
  .commercial-actions,
  .professional-actions,
  .localvacant-actions,
  .mixed-actions,
  .acquisition-actions,
  .renovation-actions,
  .vacancy-actions,
  .house-actions,
  .secondary-actions,
  .seasonal-actions,
  .furnished-actions,
  .occupancy-actions,
  .colocation-actions,
  .rent-actions,
  .guarantee-actions,
  .document-actions,
  .diagnostic-actions,
  .estimator-actions {
    display: grid;
  }

  .quote-choice-submit,
  .comparator-submit,
  .renewal-submit,
  .urgent-submit,
  .portfolio-submit,
  .commercial-submit,
  .professional-submit,
  .localvacant-submit,
  .mixed-submit,
  .acquisition-submit,
  .renovation-submit,
  .vacancy-submit,
  .house-submit,
  .secondary-submit,
  .seasonal-submit,
  .furnished-submit,
  .occupancy-submit,
  .colocation-submit,
  .rent-submit,
  .guarantee-submit,
  .document-submit,
  .diagnostic-submit,
  .estimator-submit {
    width: 100%;
  }
}
.consent-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(760px, calc(100vw - 2rem));
  margin: 0 auto;
  padding: 1rem;
  border: 1px solid rgba(21, 32, 43, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 48px rgba(21, 32, 43, 0.2);
}

.consent-banner[hidden] {
  display: none;
}

.consent-banner strong {
  color: var(--ink);
}

.consent-banner p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.consent-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 0.6rem;
}

@media (max-width: 560px) {
  .consent-banner {
    align-items: stretch;
    flex-direction: column;
  }

  .consent-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.lead-playbook {
  border-top: 1px solid var(--line);
}

.lead-playbook .card-grid {
  margin-bottom: 1rem;
}

.lead-playbook-note {
  margin-top: 1rem;
}

.lead-playbook-note .check-list {
  margin-top: 0.8rem;
}
.consent-toggle {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 59;
  min-height: 2.45rem;
  padding: 0 0.85rem;
  border: 1px solid rgba(21, 32, 43, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--teal-dark);
  box-shadow: 0 10px 28px rgba(21, 32, 43, 0.16);
  font-weight: 800;
}

.consent-toggle[hidden] {
  display: none;
}
