@font-face {
  font-family: "Archivo Black";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/archivo-black-latin-400-5fb4fed8.woff2") format("woff2");
}

@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/dm-sans-latin-400-255f7206.woff2") format("woff2");
}

@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/dm-sans-latin-500-e4a6a660.woff2") format("woff2");
}

@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/dm-sans-latin-600-07026249.woff2") format("woff2");
}

@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/dm-sans-latin-700-18626595.woff2") format("woff2");
}

@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/assets/dm-sans-latin-800-0b653358.woff2") format("woff2");
}

:root {
  --ink: #20352e;
  --ink-soft: #536860;
  --green-900: #164f40;
  --green-800: #1d6653;
  --green-700: #287762;
  --green-100: #dcece5;
  --green-50: #eef6f1;
  --blue-100: #e2ebf1;
  --peach-100: #f5e8dd;
  --canvas: #f6f8f5;
  --surface: #fbfcfa;
  --white: #fff;
  --line: #dfe8e2;
  --shadow-soft: 18px 18px 44px rgba(33, 65, 54, .1), -12px -12px 30px rgba(255, 255, 255, .92);
  --shadow-card: 0 24px 70px rgba(31, 67, 55, .11);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image: radial-gradient(rgba(22, 79, 64, .035) .7px, transparent .7px);
  background-size: 8px 8px;
}

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

button,
input,
select {
  font: inherit;
}

svg {
  display: block;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  color: white;
  background: var(--green-900);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(246, 248, 245, .84);
  border-bottom: 1px solid rgba(45, 79, 67, .07);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.04em;
}

.brand > span:last-child > span {
  color: var(--green-700);
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--green-700);
  background: linear-gradient(145deg, #fff, #e7efea);
  border: 1px solid rgba(40, 119, 98, .12);
  border-radius: 12px;
  box-shadow: 4px 5px 12px rgba(34, 78, 64, .12), -3px -3px 8px #fff;
}

.brand-mark svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.brand-mark .brand-check {
  stroke: #f3a774;
  stroke-width: 2.2;
}

.desktop-nav {
  display: flex;
  gap: 34px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a {
  transition: color .2s ease;
}

.desktop-nav a:hover {
  color: var(--green-700);
}

.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.locale-menu {
  position: relative;
}

.locale-menu summary {
  display: flex;
  gap: 7px;
  align-items: center;
  min-height: 43px;
  padding: 9px 12px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, .68);
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  list-style: none;
}

.locale-menu summary::-webkit-details-marker {
  display: none;
}

.locale-menu summary > svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.locale-menu summary .locale-chevron {
  width: 14px;
  transition: transform .2s ease;
}

.locale-menu[open] .locale-chevron {
  transform: rotate(180deg);
}

.locale-options {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: grid;
  width: 210px;
  max-height: min(470px, calc(100vh - 110px));
  padding: 8px;
  overflow-y: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
}

[dir="rtl"] .locale-options {
  right: auto;
  left: 0;
}

.locale-options a {
  padding: 9px 11px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
}

.locale-options a:hover,
.locale-options a[aria-current="page"] {
  color: var(--green-900);
  background: var(--green-50);
}

.button {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.button:focus-visible,
.text-link:focus-visible,
.desktop-nav a:focus-visible,
.brand:focus-visible {
  outline: 3px solid rgba(243, 167, 116, .55);
  outline-offset: 3px;
}

.button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button-small {
  min-height: 43px;
  padding: 10px 18px;
  font-size: 14px;
}

.button-large {
  min-height: 58px;
  padding: 16px 25px;
}

.button-primary {
  color: white;
  background: linear-gradient(145deg, var(--green-700), var(--green-900));
  box-shadow: 0 12px 24px rgba(22, 79, 64, .2), inset 0 1px rgba(255, 255, 255, .18);
}

.button-primary:hover {
  box-shadow: 0 15px 28px rgba(22, 79, 64, .28), inset 0 1px rgba(255, 255, 255, .18);
}

.button-white {
  color: var(--green-900);
  background: white;
  box-shadow: 0 14px 30px rgba(6, 39, 30, .18);
}

.button-block {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 710px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, rgba(246, 248, 245, .98) 15%, rgba(246, 248, 245, .75) 58%, rgba(232, 241, 235, .62)),
    radial-gradient(circle at 90% 25%, #e8f2ec 0, transparent 42%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(3px);
  pointer-events: none;
}

.hero-glow-one {
  top: 80px;
  right: -130px;
  width: 430px;
  height: 430px;
  background: rgba(188, 220, 206, .22);
}

.hero-glow-two {
  right: 32%;
  bottom: -80px;
  width: 220px;
  height: 220px;
  background: rgba(244, 216, 196, .2);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 74px;
  align-items: center;
  min-height: 690px;
  padding-block: 72px 84px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--green-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  background: #efad7f;
  border: 3px solid #f9e4d4;
  border-radius: 50%;
  box-sizing: content-box;
}

.eyebrow-soft {
  padding: 7px 11px;
  background: var(--green-50);
  border-radius: 999px;
}

.eyebrow-light {
  color: #c9e4d8;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  letter-spacing: -.045em;
  line-height: 1.12;
}

h1 {
  max-width: 680px;
  font-size: clamp(48px, 5.3vw, 72px);
  font-weight: 800;
}

h1 span {
  color: var(--green-700);
}

h2 {
  font-size: clamp(36px, 4vw, 50px);
}

h3 {
  font-size: 21px;
}

.hero-lead {
  max-width: 600px;
  margin: 25px 0 28px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 21px;
  align-items: center;
}

.microcopy {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
}

.microcopy svg {
  width: 19px;
  fill: none;
  stroke: var(--green-700);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.trust-row {
  display: flex;
  gap: 0;
  margin-top: 46px;
}

.trust-row > div {
  display: flex;
  flex-direction: column;
  min-width: 122px;
  padding-right: 26px;
}

.trust-row > div + div {
  padding-left: 26px;
  border-left: 1px solid var(--line);
}

.trust-row strong {
  color: var(--green-900);
  font-family: "Manrope", sans-serif;
  font-size: 20px;
}

.trust-row span {
  color: #71827c;
  font-size: 12px;
}

.hero-visual {
  position: relative;
  min-height: 500px;
}

.soft-orbit {
  position: absolute;
  border: 1px solid rgba(40, 119, 98, .08);
  border-radius: 50%;
}

.orbit-one {
  inset: 10px -30px 10px 0;
}

.orbit-two {
  inset: 65px 25px 55px 60px;
}

.estimate-card {
  position: absolute;
  top: 65px;
  right: 25px;
  left: 35px;
  z-index: 2;
  padding: 29px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 27px;
  box-shadow: 26px 30px 70px rgba(39, 73, 61, .14), -16px -12px 36px rgba(255, 255, 255, .95);
  backdrop-filter: blur(12px);
  transform: rotate(-1.5deg);
}

.estimate-card-header {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-bottom: 23px;
  border-bottom: 1px solid #e8eeea;
}

.estimate-card-header > div {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.estimate-card-header span,
.value-comparison span,
.chart-label span {
  color: #7a8b85;
  font-size: 11px;
}

.estimate-card-header strong {
  margin-top: 2px;
  color: var(--green-900);
  font-family: "Manrope", sans-serif;
  font-size: 28px;
  line-height: 1.1;
}

.mini-home {
  display: grid;
  width: 51px;
  height: 51px;
  place-items: center;
  color: var(--green-700) !important;
  background: #e5f0e9;
  border-radius: 15px;
  box-shadow: inset 2px 2px 5px rgba(33, 76, 62, .08), 3px 3px 9px rgba(36, 76, 63, .08);
}

.mini-home svg {
  width: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.status-pill {
  flex: none !important;
  padding: 5px 9px;
  color: var(--green-700) !important;
  background: #edf6f1;
  border-radius: 99px;
  font-size: 10px !important;
  font-weight: 700;
}

.value-comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 25px 0;
}

.value-comparison > div {
  display: flex;
  flex-direction: column;
}

.value-comparison strong {
  font-size: 17px;
}

.value-arrow {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  background: #f4f7f5;
  border-radius: 10px;
}

.value-arrow svg {
  width: 17px;
  fill: none;
  stroke: var(--ink-soft);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.chart-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chart-label strong {
  color: var(--green-700);
}

.chart-track {
  height: 9px;
  margin-top: 11px;
  overflow: hidden;
  background: #e8eeea;
  border-radius: 99px;
  box-shadow: inset 2px 2px 4px rgba(36, 70, 59, .1);
}

.chart-track span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #efb68d, #e99a67);
  border-radius: inherit;
}

.estimate-note {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 24px;
  padding: 12px 14px;
  color: var(--green-900);
  background: #eef6f1;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.estimate-note svg {
  width: 18px;
  fill: none;
  stroke: var(--green-700);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 11px 15px;
  color: #6d7f78;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255, 255, 255, .95);
  border-radius: 14px;
  box-shadow: 10px 12px 30px rgba(40, 77, 64, .12), -7px -7px 20px #fff;
  font-size: 11px;
}

.floating-card strong {
  color: var(--ink);
}

.floating-card-top {
  top: 40px;
  right: -16px;
}

.floating-card-bottom {
  bottom: 62px;
  left: 1px;
}

.floating-icon {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: var(--green-700);
  background: #e7f1ec;
  border-radius: 9px;
  font-weight: 800;
}

.floating-icon-warm {
  color: #ca7645;
  background: #f9eadf;
}

.floating-icon svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.quiet-strip {
  padding: 28px 0;
  background: rgba(255, 255, 255, .62);
  border-block: 1px solid rgba(36, 84, 68, .06);
}

.quiet-strip .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.quiet-strip p {
  margin: 0;
  color: #76857f;
  font-size: 12px;
}

.proof-points {
  display: flex;
  gap: 25px;
}

.proof-points span {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 600;
}

.proof-points svg {
  width: 16px;
  fill: none;
  stroke: var(--green-700);
  stroke-width: 2;
}

.section {
  padding: 118px 0;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 58px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 18px;
}

.section-heading p,
.pricing-copy > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  position: relative;
  min-height: 355px;
  padding: 33px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, .8), rgba(239, 244, 240, .74));
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 25px;
  box-shadow: 12px 14px 32px rgba(36, 71, 60, .08), -9px -9px 24px rgba(255, 255, 255, .85);
}

.step-card-featured {
  transform: translateY(-12px);
}

.step-number {
  position: absolute;
  top: 21px;
  right: 25px;
  color: rgba(31, 70, 57, .08);
  font-family: "Manrope", sans-serif;
  font-size: 49px;
  font-weight: 800;
}

.step-icon {
  display: grid;
  width: 68px;
  height: 68px;
  margin-bottom: 31px;
  place-items: center;
  border-radius: 20px;
  box-shadow: inset 3px 3px 7px rgba(33, 70, 58, .07), 5px 6px 14px rgba(40, 78, 65, .09), -3px -3px 8px white;
}

.step-icon svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.step-icon-mint {
  color: var(--green-700);
  background: #dfeee7;
}

.step-icon-blue {
  color: #4c7186;
  background: var(--blue-100);
}

.step-icon-peach {
  color: #b66e46;
  background: var(--peach-100);
}

.step-card p {
  min-height: 76px;
  margin: 13px 0 22px;
  color: var(--ink-soft);
  font-size: 14px;
}

.step-time {
  display: inline-block;
  padding: 6px 10px;
  color: var(--green-700);
  background: rgba(223, 238, 231, .75);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
}

.explanation-section {
  background: rgba(255, 255, 255, .52);
}

.explanation-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 90px;
  align-items: center;
}

.house-scene {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background: linear-gradient(145deg, #f5f8f4, #e9f0eb);
  border: 1px solid white;
  border-radius: 34px;
  box-shadow: var(--shadow-soft);
}

.sun {
  position: absolute;
  top: 50px;
  right: 60px;
  width: 54px;
  height: 54px;
  background: #f8d8a5;
  border: 9px solid rgba(255, 242, 217, .85);
  border-radius: 50%;
  box-shadow: 0 0 0 14px rgba(255, 242, 217, .34);
}

.cloud {
  position: absolute;
  width: 55px;
  height: 13px;
  background: rgba(255, 255, 255, .75);
  border-radius: 99px;
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  bottom: 0;
  background: inherit;
  border-radius: 50%;
}

.cloud::before {
  left: 9px;
  width: 24px;
  height: 24px;
}

.cloud::after {
  right: 8px;
  width: 17px;
  height: 18px;
}

.cloud-one {
  top: 85px;
  left: 55px;
}

.cloud-two {
  top: 132px;
  right: 40px;
  transform: scale(.7);
}

.house-illustration {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  width: 100%;
}

.ground {
  fill: #cedfd5;
}

.house-body {
  fill: #f7f4ec;
}

.house-roof {
  fill: #397561;
}

.house-chimney {
  fill: #d68c61;
}

.house-door {
  fill: #e7a97e;
}

.house-window {
  fill: #cde1e5;
  stroke: #618c83;
  stroke-width: 3;
}

.window-line {
  fill: none;
  stroke: #83a59d;
  stroke-width: 2;
}

.door-knob {
  fill: #426a5c;
}

.shrub {
  fill: #6e9b7e;
}

.scene-badge {
  position: absolute;
  bottom: 27px;
  left: 26px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 13px 16px;
  background: rgba(255, 255, 255, .89);
  border: 1px solid white;
  border-radius: 13px;
  box-shadow: 7px 9px 22px rgba(35, 70, 58, .12);
  backdrop-filter: blur(8px);
}

.scene-badge span {
  color: var(--green-700);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.scene-badge strong {
  font-size: 13px;
}

.explanation-copy h2 {
  margin: 4px 0 23px;
}

.large-copy {
  color: var(--ink-soft);
  font-size: 18px;
}

.info-list {
  display: grid;
  gap: 21px;
  margin: 31px 0;
}

.info-list > div {
  display: grid;
  grid-template-columns: 27px 1fr;
  gap: 13px;
}

.info-check {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: var(--green-700);
  background: #e2f0e9;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
}

.info-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.info-list strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 15px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--green-700);
  border-bottom: 1px solid currentColor;
  font-weight: 700;
}

.pricing-section {
  overflow: hidden;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 90px;
  align-items: center;
}

.pricing-copy h2 {
  max-width: 620px;
  margin: 2px 0 20px;
}

.pricing-copy > p {
  max-width: 630px;
}

.price-line {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 35px;
}

.price-line strong {
  color: var(--green-700);
  font-family: "Manrope", sans-serif;
  font-size: 48px;
  letter-spacing: -.05em;
}

.price-line span {
  color: #71827c;
  font-size: 12px;
  line-height: 1.4;
}

.pricing-card {
  position: relative;
  padding: 39px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .94), rgba(239, 245, 241, .86));
  border: 1px solid white;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.pricing-card::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -80px;
  z-index: -1;
  width: 230px;
  height: 230px;
  background: rgba(205, 226, 215, .44);
  border-radius: 50%;
}

.pricing-label {
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 19px;
  font-weight: 800;
}

.pricing-card ul {
  display: grid;
  gap: 15px;
  margin: 25px 0 30px;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--ink-soft);
  font-size: 14px;
}

.pricing-card li span {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  color: var(--green-700);
  background: #e5f1ea;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
}

.pricing-card small {
  display: block;
  margin-top: 13px;
  color: #81908b;
  text-align: center;
}

.closing-cta {
  padding: 20px 0 100px;
}

.closing-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 270px;
  padding: 58px 65px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 85% 10%, rgba(100, 168, 143, .35), transparent 35%),
    linear-gradient(135deg, #164e40, #0e3c31);
  border-radius: 32px;
  box-shadow: 0 25px 60px rgba(18, 67, 53, .24);
}

.closing-card::before,
.closing-card::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
}

.closing-card::before {
  top: -120px;
  right: 80px;
  width: 350px;
  height: 350px;
}

.closing-card::after {
  right: -50px;
  bottom: -170px;
  width: 420px;
  height: 420px;
}

.closing-card > * {
  position: relative;
  z-index: 1;
}

.closing-card h2 {
  max-width: 700px;
  margin-bottom: 10px;
  font-size: clamp(33px, 4vw, 47px);
}

.closing-card p {
  margin: 0;
  color: rgba(255, 255, 255, .7);
}

.site-footer {
  padding: 42px 0;
  background: #eef3ef;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
}

.brand-footer {
  font-size: 18px;
}

.brand-footer .brand-mark {
  width: 34px;
  height: 34px;
}

.footer-note {
  margin: 12px 0 0;
  color: #76857f;
  font-size: 13px;
}

.footer-disclaimer {
  color: #7e8d87;
  font-size: 11px;
  text-align: right;
}

.footer-disclaimer p {
  margin: 6px 0;
}

/* Filing flow */
.flow-page {
  min-height: calc(100vh - 82px);
  padding: 60px 0 90px;
  background:
    radial-gradient(circle at 0 10%, rgba(213, 233, 222, .42), transparent 30%),
    radial-gradient(circle at 100% 90%, rgba(244, 222, 205, .35), transparent 28%);
}

.flow-shell {
  width: min(calc(100% - 40px), 1030px);
  margin-inline: auto;
}

.flow-heading {
  margin-bottom: 28px;
  text-align: center;
}

.flow-heading h1 {
  margin-inline: auto;
  font-size: clamp(35px, 5vw, 49px);
}

.flow-heading p {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.review-form-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  min-height: 570px;
  overflow: hidden;
  background: rgba(255, 255, 255, .88);
  border: 1px solid white;
  border-radius: 30px;
  box-shadow: var(--shadow-card);
}

.form-main {
  display: flex;
  flex-direction: column;
  padding: 36px 42px 30px;
}

.form-steps {
  display: flex;
  gap: 0;
  margin-bottom: 35px;
}

.form-step {
  display: flex;
  flex: 1;
  gap: 9px;
  align-items: center;
  color: #899791;
  font-size: 11px;
  font-weight: 700;
}

.form-step::after {
  content: "";
  flex: 1;
  height: 1px;
  margin-inline: 9px;
  background: var(--line);
}

.form-step:last-child::after {
  display: none;
}

.form-step span {
  display: grid;
  width: 26px;
  height: 26px;
  flex: none;
  place-items: center;
  background: #eef2ef;
  border-radius: 8px;
}

.form-step.is-active {
  color: var(--green-700);
}

.form-step.is-active span,
.form-step.is-complete span {
  color: white;
  background: var(--green-700);
}

.form-panel {
  flex: 1;
}

.form-panel[hidden] {
  display: none;
}

.form-panel h2 {
  font-size: 28px;
}

.form-panel > p {
  margin: 8px 0 26px;
  color: var(--ink-soft);
  font-size: 14px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 19px;
}

.field {
  display: grid;
  gap: 7px;
}

.field-wide {
  grid-column: 1 / -1;
}

.field label,
.field > span:first-child {
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.field input,
.field select {
  width: 100%;
  height: 49px;
  padding: 0 14px;
  color: var(--ink);
  background: #f3f6f3;
  border: 1px solid #e1e8e3;
  border-radius: 12px;
  outline: 0;
  transition: background .2s, border-color .2s, box-shadow .2s;
}

.field input:focus,
.field select:focus {
  background: white;
  border-color: #72aa98;
  box-shadow: 0 0 0 4px rgba(71, 138, 116, .12);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: #c86e5d;
}

.field-help {
  color: #8a9993;
  font-size: 10px;
}

@keyframes lookup-pulse {
  from {
    opacity: .4;
    transform: scale(.9);
  }

  to {
    opacity: 1;
    transform: scale(1.05);
  }
}

.currency-field {
  position: relative;
}

.currency-field::before {
  content: "$";
  position: absolute;
  top: 13px;
  left: 15px;
  color: #7a8b85;
  font-weight: 600;
}

.currency-field input {
  padding-left: 29px;
}

.choice-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.choice {
  position: relative;
}

.choice input {
  position: absolute;
  opacity: 0;
}

.choice label {
  display: flex;
  gap: 9px;
  align-items: center;
  min-height: 49px;
  padding: 10px 13px;
  background: #f3f6f3;
  border: 1px solid #e1e8e3;
  border-radius: 12px;
  cursor: pointer;
}

.choice input:checked + label {
  color: var(--green-900);
  background: #ebf4ef;
  border-color: #75ab99;
  box-shadow: 0 0 0 3px rgba(71, 138, 116, .09);
}

.choice-dot {
  width: 16px;
  height: 16px;
  border: 1px solid #a7b4af;
  border-radius: 50%;
}

.choice input:checked + label .choice-dot {
  background: var(--green-700);
  border: 4px solid #dff0e8;
  box-shadow: 0 0 0 1px var(--green-700);
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid #e9eeeb;
}

.button-quiet {
  color: var(--ink-soft);
  background: #edf2ee;
}

.button[hidden] {
  display: none;
}

.estimate-sidebar {
  padding: 36px 27px;
  color: white;
  background:
    radial-gradient(circle at 100% 0, rgba(106, 169, 145, .25), transparent 38%),
    linear-gradient(155deg, #1e6452, #124538);
}

.estimate-sidebar > p {
  margin: 25px 0;
  color: rgba(255, 255, 255, .73);
  font-size: 12px;
}

.checkbox-field {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 4px;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: var(--green-700);
}

.checkbox-field label {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 400;
}

.error-summary {
  margin: 0 0 22px;
  padding: 14px 16px;
  color: #8a3e33;
  background: #fcece8;
  border: 1px solid #f3d3cb;
  border-radius: 12px;
  font-size: 12px;
}

.error-summary strong {
  display: block;
}

.error-summary ul {
  margin: 5px 0 0;
  padding-left: 18px;
}

.next-steps {
  margin: 30px 0;
  padding: 25px;
  text-align: left;
  background: #f8faf8;
  border-radius: 18px;
}

.next-steps h2 {
  margin-bottom: 14px;
  font-size: 20px;
}

.next-steps ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 21px;
  color: var(--ink-soft);
  font-size: 13px;
}

[dir="rtl"] .next-steps {
  text-align: right;
}

[dir="rtl"] .next-steps ol {
  padding-right: 21px;
  padding-left: 0;
}

@media (max-width: 960px) {
  .desktop-nav {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 65px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions,
  .trust-row {
    justify-content: center;
  }

  .hero-visual {
    width: min(100%, 600px);
    margin-inline: auto;
  }

  .quiet-strip .shell {
    flex-direction: column;
    gap: 15px;
  }

  .proof-points {
    flex-wrap: wrap;
    justify-content: center;
  }

  .explanation-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .explanation-visual {
    width: min(100%, 600px);
    margin-inline: auto;
  }

  .pricing-card {
    width: min(100%, 520px);
  }

  .closing-card {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .header-inner {
    min-height: 70px;
  }

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

  .locale-menu summary > span {
    display: none;
  }

  .hero-grid {
    min-height: auto;
    padding-block: 52px 65px;
  }

  h1 {
    font-size: 43px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .trust-row {
    margin-top: 35px;
  }

  .trust-row > div {
    min-width: 0;
    padding-right: 15px;
  }

  .trust-row > div + div {
    padding-left: 15px;
  }

  .hero-visual {
    min-height: 445px;
  }

  .estimate-card {
    right: 8px;
    left: 8px;
    padding: 21px;
  }

  .floating-card-top {
    right: 0;
  }

  .floating-card-bottom {
    left: 0;
    bottom: 35px;
  }

  .proof-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .section {
    padding: 80px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

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

  .step-card {
    min-height: 0;
  }

  .step-card-featured {
    transform: none;
  }

  .step-card p {
    min-height: 0;
  }

  .house-scene {
    min-height: 390px;
  }

  .pricing-grid {
    gap: 40px;
  }

  .closing-cta {
    padding-bottom: 70px;
  }

  .closing-card {
    padding: 40px 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-disclaimer {
    text-align: left;
  }

  .flow-page {
    padding: 40px 0 70px;
  }

  .review-form-card {
    display: block;
  }

  .form-main {
    padding: 28px 22px;
  }

  .form-steps {
    display: none;
  }

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

  .field-wide {
    grid-column: auto;
  }

  .estimate-sidebar {
    padding: 27px 22px;
  }
}

@media (max-width: 440px) {
  .brand {
    font-size: 17px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  h1 {
    font-size: 37px;
  }

  .header-cta {
    min-height: 40px;
  }

  .header-cta {
    display: none;
  }

  .value-comparison {
    grid-template-columns: 1fr;
  }

  .value-arrow {
    display: none;
  }

  .floating-card {
    display: none;
  }

  .trust-row {
    gap: 14px;
  }

  .trust-row > div,
  .trust-row > div + div {
    padding: 0;
    border: 0;
  }

  .trust-row strong {
    font-size: 17px;
  }

  .proof-points {
    grid-template-columns: 1fr;
  }

  .house-scene {
    min-height: 330px;
  }

  .price-line strong {
    font-size: 42px;
  }

  .pricing-card {
    padding: 28px 22px;
  }

  .form-actions {
    gap: 10px;
  }

  .form-actions .button {
    padding-inline: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
  }
}

/* Playful Consumer App direction */
:root {
  --play-cream: #f8f0dc;
  --play-paper: #fffaf0;
  --play-coral: #f0442d;
  --play-coral-dark: #d93420;
  --play-blue: #073dcc;
  --play-blue-dark: #072b91;
  --play-teal: #008d80;
  --play-mint: #49d5be;
  --play-ink: #111a25;
  --play-muted: #58616a;
  --play-line: #17202a;
  --play-white: #fffdf7;
  --play-shadow: 8px 9px 0 rgba(17, 26, 37, .14);
  --shell: 1180px;
}

html {
  scroll-padding-top: 76px;
}

body {
  color: var(--play-ink);
  background: var(--play-cream);
  font-family: "DM Sans", system-ui, sans-serif;
}

body::before {
  display: none;
}

[hidden] {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
}

h1,
h2,
h3 {
  color: var(--play-ink);
  font-family: "Archivo Black", "Arial Black", sans-serif;
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .98;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 240, 220, .95);
  border-bottom: 1px solid rgba(17, 26, 37, .18);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 74px;
}

.brand {
  gap: 0;
  color: var(--play-ink);
  font-family: "Archivo Black", "Arial Black", sans-serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -.075em;
}

.brand > span:last-child > span,
.brand > span:first-child > span {
  color: var(--play-coral);
}

.brand-house {
  display: grid;
  width: 34px;
  height: 34px;
  margin-inline-end: 9px;
  place-items: center;
  color: var(--play-teal);
}

.brand-house svg {
  width: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.desktop-nav {
  gap: 32px;
  color: var(--play-ink);
  font-size: 13px;
  font-weight: 800;
}

.desktop-nav a:hover {
  color: var(--play-coral);
}

.locale-menu summary {
  min-height: 42px;
  color: var(--play-ink);
  background: var(--play-paper);
  border: 1.5px solid var(--play-ink);
  border-radius: 10px;
}

.locale-options {
  background: var(--play-paper);
  border: 1.5px solid var(--play-ink);
  border-radius: 10px;
  box-shadow: var(--play-shadow);
}

.locale-options a:hover,
.locale-options a[aria-current="page"] {
  color: var(--play-blue);
  background: #e6ecff;
}

.button {
  min-height: 48px;
  padding: 12px 22px;
  color: var(--play-white);
  background: var(--play-ink);
  border: 1.5px solid var(--play-ink);
  border-radius: 8px;
  box-shadow: 3px 4px 0 rgba(17, 26, 37, .13);
  font-weight: 800;
  line-height: 1.2;
}

.button:hover {
  transform: translateY(-2px) rotate(-.3deg);
  box-shadow: 5px 7px 0 rgba(17, 26, 37, .14);
}

.button-primary,
.button-coral {
  color: var(--play-white);
  background: var(--play-coral);
  border-color: var(--play-ink);
  box-shadow: 3px 4px 0 rgba(17, 26, 37, .16);
}

.button-primary:hover,
.button-coral:hover {
  background: var(--play-coral-dark);
  box-shadow: 5px 7px 0 rgba(17, 26, 37, .16);
}

.button-teal {
  color: white;
  background: var(--play-teal);
}

.button-blue {
  color: white;
  background: var(--play-blue);
}

.button-outline-blue {
  color: var(--play-blue);
  background: transparent;
  border-color: var(--play-blue);
  box-shadow: none;
}

.button-outline-light {
  color: var(--play-white);
  background: transparent;
  border-color: var(--play-white);
  box-shadow: none;
}

.button-quiet {
  color: var(--play-ink);
  background: transparent;
  border-color: var(--play-ink);
  box-shadow: none;
}

.button-block {
  width: 100%;
}

.button-large {
  min-height: 55px;
  padding-inline: 26px;
}

.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--play-teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .11em;
}

.eyebrow-mint {
  color: var(--play-mint);
}

.eyebrow-light {
  color: var(--play-paper);
}

.eyebrow-soft {
  padding: 7px 10px;
  color: var(--play-blue);
  background: #e9edff;
}

.play-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
  overflow: hidden;
  border-bottom: 2px solid var(--play-ink);
}

.play-hero-collage {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: var(--play-blue);
}

.play-hero-collage::after {
  position: absolute;
  right: -38px;
  bottom: -68px;
  width: 270px;
  height: 170px;
  content: "";
  border: 24px solid var(--play-cream);
  border-radius: 50%;
  opacity: .98;
  transform: rotate(-14deg);
}

.play-hero-copy {
  display: grid;
  align-items: center;
  background: var(--play-cream);
}

.play-hero-copy-inner {
  width: min(100% - 80px, 570px);
  padding: 66px 0 74px 46px;
}

[dir="rtl"] .play-hero-copy-inner {
  padding-right: 46px;
  padding-left: 0;
}

.play-hero h1 {
  max-width: 570px;
  font-size: clamp(50px, 5.25vw, 76px);
}

.play-hero h1 span {
  color: var(--play-coral);
}

.play-hero-copy-inner > p {
  max-width: 490px;
  margin: 24px 0 28px;
  color: var(--play-ink);
  font-size: 17px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.text-arrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--play-teal);
  font-size: 14px;
  font-weight: 800;
}

.text-arrow svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 40px;
}

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

.hero-trust svg {
  width: 19px;
  color: var(--play-teal);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.polaroid {
  position: absolute;
  z-index: 2;
  width: 188px;
  height: 215px;
  padding: 10px 10px 30px;
  color: var(--play-teal);
  background: var(--play-paper);
  box-shadow: 8px 10px 20px rgba(1, 15, 59, .23);
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-style: italic;
  font-weight: 700;
  text-align: center;
}

.polaroid-one {
  top: 74px;
  left: 40px;
  transform: rotate(-9deg);
}

.polaroid-two {
  top: 56px;
  left: 219px;
  z-index: 3;
  transform: rotate(3deg);
}

.polaroid-three {
  top: 91px;
  left: 397px;
  transform: rotate(9deg);
}

.polaroid-photo {
  height: 164px;
  margin-bottom: 7px;
  overflow: hidden;
  background: #d9e1d5;
}

.home-strip {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-strip-one {
  object-position: left center;
}

.home-strip-two {
  object-position: center center;
}

.home-strip-three {
  object-position: right center;
}

.parcel-card,
.county-paper {
  position: absolute;
  z-index: 4;
  overflow: hidden;
  color: var(--play-ink);
  background: var(--play-paper);
  border: 1.5px solid var(--play-ink);
  border-radius: 7px;
  box-shadow: 5px 7px 0 rgba(17, 26, 37, .19);
}

.parcel-card {
  bottom: 86px;
  left: 48px;
  width: 165px;
  height: 178px;
  transform: rotate(-7deg);
}

.parcel-card small {
  position: absolute;
  right: 8px;
  bottom: 7px;
  left: 8px;
  color: var(--play-teal);
  font-size: 9px;
  font-weight: 800;
}

.parcel-map-lines,
.parcel-preview {
  position: absolute;
  inset: 0 0 25px;
  background:
    linear-gradient(28deg, transparent 47%, #88aeb0 48% 49.5%, transparent 50%),
    linear-gradient(92deg, transparent 28%, #b0c6c1 29% 30%, transparent 31%),
    linear-gradient(157deg, transparent 59%, #b0c6c1 60% 61%, transparent 62%),
    repeating-linear-gradient(0deg, #e8efe7 0 28px, #b8ccc8 29px 30px),
    repeating-linear-gradient(90deg, transparent 0 38px, #b8ccc8 39px 40px);
}

.parcel-pin {
  position: absolute;
  top: 58px;
  left: 69px;
  display: grid;
  width: 32px;
  height: 32px;
  color: white;
  background: var(--play-coral);
  border: 3px solid white;
  border-radius: 50%;
  place-items: center;
}

.parcel-pin svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.county-paper {
  right: 28px;
  bottom: 84px;
  width: 153px;
  height: 194px;
  padding: 18px 14px;
  transform: rotate(7deg);
}

.county-paper span,
.county-paper strong {
  display: block;
  text-transform: uppercase;
}

.county-paper span {
  color: var(--play-coral);
  font-size: 8px;
  font-weight: 800;
}

.county-paper strong {
  margin: 4px 0 18px;
  font-size: 11px;
}

.county-paper i,
.form-preview i,
.review-document i {
  display: block;
  height: 5px;
  margin-top: 9px;
  background: #c8c0ad;
  border-radius: 4px;
}

.hero-address-card {
  position: absolute;
  z-index: 7;
  right: 115px;
  bottom: 46px;
  width: 330px;
  padding: 22px;
  background: var(--play-paper);
  border: 2px solid var(--play-ink);
  border-radius: 13px;
  box-shadow: 7px 9px 0 rgba(17, 26, 37, .2);
}

.hero-address-card > strong {
  display: block;
  margin-bottom: 12px;
  font-size: 15px;
  text-align: center;
}

.address-input {
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 49px;
  margin-bottom: 10px;
  padding: 0 13px;
  background: white;
  border: 1.5px solid var(--play-ink);
  border-radius: 7px;
}

.address-input svg {
  width: 20px;
  flex: 0 0 auto;
  color: var(--play-teal);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.address-input input {
  width: 100%;
  padding: 12px 0;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 13px;
}

.time-note {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  color: var(--play-muted);
  font-size: 10px;
  font-weight: 700;
}

.time-note svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.journey-section {
  position: relative;
  min-height: 720px;
  padding: 66px 0 56px;
  overflow: hidden;
  color: white;
  background: var(--play-blue);
  border-bottom: 2px solid var(--play-ink);
}

.journey-heading {
  position: relative;
  z-index: 3;
  max-width: 650px;
  margin-inline: auto;
  text-align: center;
}

.journey-heading h2 {
  color: white;
  font-size: clamp(44px, 6vw, 72px);
}

.journey-path {
  position: absolute;
  top: 140px;
  right: -3%;
  width: 106%;
  height: 430px;
  fill: none;
  stroke: var(--play-cream);
  stroke-linecap: round;
  stroke-width: 56px;
}

.journey-cards {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 120px;
  align-items: center;
  margin-top: 38px;
}

.journey-card {
  position: relative;
  padding: 25px 22px 22px;
  color: var(--play-ink);
  background: var(--play-paper);
  border: 2px solid var(--play-ink);
  border-radius: 10px;
  box-shadow: 7px 9px 0 rgba(0, 17, 76, .24);
}

.journey-card-one {
  transform: rotate(-2deg);
}

.journey-card-two {
  transform: translateY(76px) rotate(2deg);
}

.journey-card-three {
  transform: translateY(-12px) rotate(1deg);
}

.journey-number {
  position: absolute;
  top: -19px;
  left: 50%;
  display: grid;
  width: 38px;
  height: 38px;
  color: white;
  background: var(--play-coral);
  border: 3px solid var(--play-paper);
  border-radius: 50%;
  box-shadow: 0 0 0 1.5px var(--play-ink);
  font-family: "Archivo Black", sans-serif;
  place-items: center;
  transform: translateX(-50%);
}

.journey-card small {
  display: block;
  margin: 4px 0 7px;
  color: var(--play-coral);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.journey-card h3 {
  margin-bottom: 13px;
  font-size: 24px;
}

.journey-card p {
  margin: 8px 0 0;
  color: var(--play-muted);
  font-size: 11px;
  line-height: 1.45;
}

.mini-address {
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 11px;
  color: white;
  background: var(--play-teal);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
}

.mini-address svg {
  width: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.journey-photo {
  height: 118px;
  margin: -7px -6px 14px;
  overflow: hidden;
  border: 1.5px solid var(--play-ink);
  border-radius: 4px;
}

.journey-card ul {
  padding: 0;
  margin: 12px 0;
  list-style: none;
}

.journey-card li {
  display: flex;
  gap: 7px;
  align-items: center;
  padding: 5px 0;
  border-bottom: 1px solid #d8d1c0;
  font-size: 10px;
  font-weight: 700;
}

.journey-card li span {
  display: grid;
  width: 15px;
  height: 15px;
  color: white;
  background: var(--play-teal);
  border-radius: 50%;
  font-size: 9px;
  place-items: center;
}

.review-stamp {
  display: block;
  padding: 7px;
  color: var(--play-teal);
  border: 2px solid var(--play-teal);
  font-size: 11px;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

.journey-footer {
  position: relative;
  z-index: 5;
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 118px;
}

.journey-footer p {
  max-width: 320px;
  margin: 0;
  color: #dbe4ff;
  font-size: 13px;
}

.packet-section {
  padding: 80px 0 74px;
  background: var(--play-cream);
  border-bottom: 2px solid var(--play-ink);
  text-align: center;
}

.packet-heading {
  max-width: 760px;
  margin: 0 auto 40px;
}

.packet-heading h2 {
  font-size: clamp(42px, 5vw, 64px);
}

.packet-heading h2::after {
  color: var(--play-coral);
  content: ".";
}

.packet-heading p {
  max-width: 610px;
  margin: 16px auto 0;
  color: var(--play-muted);
}

.packet-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.05fr;
  gap: 7px;
  text-align: left;
}

.packet-card {
  position: relative;
  display: flex;
  min-height: 360px;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  border: 2px solid var(--play-ink);
  border-radius: 9px;
}

.packet-card > div:first-child {
  padding: 22px 22px 6px;
}

.packet-card h3 {
  color: white;
  font-size: 25px;
}

.packet-card p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, .84);
  font-size: 11px;
}

.packet-card-coral {
  background: var(--play-coral);
}

.packet-card-teal {
  background: var(--play-teal);
}

.packet-card-blue {
  background: var(--play-blue);
}

.packet-card-ink {
  background: var(--play-ink);
}

.packet-home-photo {
  height: 245px;
  overflow: hidden;
}

.form-preview {
  width: 77%;
  min-height: 252px;
  padding: 22px;
  margin: 0 auto -24px;
  color: var(--play-ink);
  background: var(--play-paper);
  border: 1.5px solid var(--play-ink);
  box-shadow: 5px 6px 0 rgba(0, 0, 0, .18);
  transform: rotate(-7deg);
}

.form-preview small,
.form-preview strong {
  display: block;
  text-align: center;
  text-transform: uppercase;
}

.form-preview small {
  font-size: 8px;
  font-weight: 700;
}

.form-preview strong {
  margin: 5px 0 14px;
  font-size: 11px;
}

.form-preview span {
  display: grid;
  width: 28px;
  height: 28px;
  margin: 18px auto 0;
  color: white;
  background: var(--play-teal);
  border-radius: 50%;
  place-items: center;
}

.packet-stack {
  display: grid;
  gap: 7px;
}

.packet-stack .packet-card {
  min-height: 176px;
}

.packet-stack .packet-card > div:first-child {
  position: relative;
  z-index: 2;
  width: 55%;
}

.parcel-preview {
  top: 63px;
  right: -15px;
  bottom: -15px;
  left: auto;
  width: 54%;
  background-color: var(--play-paper);
  border: 1.5px solid var(--play-ink);
  transform: rotate(3deg);
}

.parcel-preview strong {
  position: absolute;
  bottom: 9px;
  left: 9px;
  color: var(--play-blue);
  font-size: 7px;
}

.calendar-preview {
  display: grid;
  width: 52%;
  padding: 14px;
  margin: 0 10px 11px auto;
  grid-template-columns: repeat(4, 1fr);
  color: var(--play-ink);
  background: var(--play-paper);
  border: 1.5px solid var(--play-ink);
  border-radius: 5px;
  gap: 4px;
}

.calendar-preview span,
.calendar-preview strong {
  display: grid;
  height: 24px;
  border-radius: 50%;
  font-size: 9px;
  place-items: center;
}

.calendar-preview strong {
  color: white;
  background: var(--play-coral);
}

.packet-cta {
  margin-top: 30px;
}

.packet-source {
  display: block;
  margin-top: 12px;
  color: var(--play-teal);
  font-weight: 700;
}

.review-section {
  padding: 76px 0;
  color: white;
  background: var(--play-coral);
  border-bottom: 2px solid var(--play-ink);
}

.review-grid {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 58px;
  align-items: center;
}

.review-copy h2 {
  max-width: 370px;
  color: white;
  font-size: clamp(45px, 5vw, 67px);
}

.review-copy p {
  max-width: 330px;
  margin: 22px 0 26px;
  color: #ffe5dc;
}

.review-window {
  padding: 25px;
  color: var(--play-ink);
  background: var(--play-paper);
  border: 2px solid var(--play-ink);
  border-radius: 13px;
  box-shadow: 10px 12px 0 rgba(94, 10, 0, .25);
  transform: rotate(-1.3deg);
}

.review-window-header,
.review-window-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.review-window-header h3 {
  font-size: 24px;
}

.review-window-header span {
  color: var(--play-muted);
  font-size: 11px;
}

.review-progress {
  display: flex;
  gap: 4px;
  align-items: center;
  color: var(--play-teal);
}

.review-progress span,
.review-progress strong {
  display: grid;
  width: 23px;
  height: 23px;
  color: white;
  background: var(--play-teal);
  border-radius: 50%;
  font-size: 10px;
  place-items: center;
}

.review-progress strong {
  background: var(--play-blue);
}

.review-progress i {
  width: 22px;
  height: 2px;
  background: #a4b6ad;
}

.review-tabs {
  display: flex;
  gap: 24px;
  padding: 18px 0 10px;
  border-bottom: 1px solid #cfc5b2;
  color: var(--play-muted);
  font-size: 10px;
}

.review-tabs strong {
  color: var(--play-blue);
}

.review-window-body {
  display: grid;
  grid-template-columns: .9fr 1.1fr .8fr;
  gap: 10px;
  min-height: 240px;
  padding: 14px 0;
}

.review-stats {
  display: grid;
  gap: 8px;
}

.review-stats > div {
  display: grid;
  padding: 10px;
  border: 1px solid #d4ccbd;
  border-radius: 6px;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  column-gap: 7px;
}

.review-stats > div > span {
  display: grid;
  width: 26px;
  height: 26px;
  color: white;
  background: var(--play-teal);
  border-radius: 50%;
  font-weight: 800;
  place-items: center;
}

.review-stats small {
  color: var(--play-muted);
  font-size: 8px;
}

.review-stats strong {
  font-size: 11px;
}

.review-property-photo {
  overflow: hidden;
  border: 1.5px solid var(--play-ink);
  border-radius: 5px;
}

.review-document {
  padding: 17px 12px;
  background: #f4ecd9;
  border: 1.5px solid var(--play-ink);
  border-radius: 5px;
}

.review-document small,
.review-document strong {
  display: block;
  text-align: center;
  text-transform: uppercase;
}

.review-document small {
  font-size: 7px;
}

.review-document strong {
  margin: 8px 0 18px;
  font-size: 17px;
}

.review-window-actions {
  justify-content: flex-start;
  padding-top: 11px;
  border-top: 1px solid #d4ccbd;
}

.review-window-actions .button {
  min-height: 38px;
  padding: 8px 16px;
  font-size: 10px;
}

.review-window-actions > span {
  margin-inline-start: auto;
  color: var(--play-muted);
  font-size: 9px;
}

.relief-section {
  padding: 76px 0;
  background: var(--play-cream);
  border-bottom: 2px solid var(--play-blue);
}

.relief-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.relief-copy blockquote {
  margin: 0;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(36px, 4.5vw, 59px);
  letter-spacing: -.055em;
  line-height: 1.02;
}

.testimonial-name {
  color: var(--play-ink) !important;
  font-size: 13px;
  font-weight: 800;
}

.testimonial-name span {
  margin-inline: 6px;
}

.relief-copy hr {
  width: 42px;
  margin: 26px 0 22px;
  border: 0;
  border-top: 2px solid var(--play-teal);
}

.relief-copy > p:not(.testimonial-name) {
  max-width: 410px;
  color: var(--play-muted);
}

.relief-photo {
  position: relative;
  height: 530px;
  margin: 0;
  overflow: hidden;
  background: var(--play-blue);
  border: 2px solid var(--play-blue);
  border-radius: 52% 0 0;
}

[dir="rtl"] .relief-photo {
  border-radius: 0 52% 0 0;
}

.relief-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.relief-photo figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 10px 17px;
  color: white;
  background: var(--play-coral);
  font-size: 10px;
  font-weight: 700;
}

.help-bubble {
  position: absolute;
  top: 38%;
  left: 20px;
  width: 235px;
  padding: 18px 18px 17px 54px;
  color: white;
  background: var(--play-teal);
  border: 2px solid var(--play-ink);
  border-radius: 9px;
  box-shadow: 5px 6px 0 rgba(17, 26, 37, .2);
}

.help-bubble > span {
  position: absolute;
  top: 17px;
  left: 15px;
  display: grid;
  width: 27px;
  height: 27px;
  color: var(--play-teal);
  background: white;
  border-radius: 50%;
  font-weight: 800;
  place-items: center;
}

.help-bubble strong {
  display: block;
  font-size: 12px;
}

.help-bubble p {
  margin: 6px 0 0;
  font-size: 10px;
  line-height: 1.4;
}

.final-check {
  position: relative;
  padding: 80px 0 42px;
  overflow: hidden;
  background: var(--play-cream);
}

.final-check::before {
  position: absolute;
  right: -4%;
  bottom: 38px;
  left: 36%;
  height: 70px;
  content: "";
  background: var(--play-coral);
  border: 2px solid var(--play-ink);
  transform: rotate(-5deg);
}

.final-check-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 80px;
  align-items: center;
}

.final-check h2 {
  max-width: 650px;
  font-size: clamp(54px, 7vw, 88px);
}

.final-check p {
  max-width: 460px;
  color: var(--play-muted);
  font-size: 17px;
}

.final-address-card {
  padding: 22px;
  background: var(--play-blue);
  border: 2px solid var(--play-ink);
  border-radius: 11px;
  box-shadow: 8px 9px 0 rgba(17, 26, 37, .17);
}

.final-address-card input {
  width: 100%;
  min-height: 51px;
  padding: 13px 15px;
  margin-bottom: 11px;
  color: var(--play-ink);
  background: var(--play-paper);
  border: 1.5px solid var(--play-ink);
  border-radius: 7px;
  outline: 0;
}

.final-address-card small {
  display: block;
  margin-top: 11px;
  color: white;
  font-size: 9px;
  text-align: center;
}

.site-footer {
  padding: 28px 0;
  background: var(--play-cream);
  border-top: 1px solid rgba(17, 26, 37, .25);
}

.footer-note,
.footer-disclaimer {
  color: var(--play-muted);
  font-size: 11px;
}

/* Guided application and result */
.flow-page {
  min-height: calc(100vh - 74px);
  padding: 58px 0 80px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, .16) 0 5%, transparent 5.2%),
    var(--play-blue);
}

.flow-shell {
  width: min(calc(100% - 48px), 1080px);
  margin-inline: auto;
}

.flow-heading {
  max-width: 720px;
  margin: 0 auto 34px;
  color: white;
  text-align: center;
}

.flow-heading .eyebrow {
  color: var(--play-mint);
  background: transparent;
}

.flow-heading h1 {
  color: white;
  font-size: clamp(44px, 6vw, 68px);
}

.flow-heading p {
  max-width: 560px;
  margin: 17px auto 0;
  color: #dce5ff;
}

.review-form-card {
  display: grid;
  overflow: hidden;
  background: var(--play-paper);
  border: 2px solid var(--play-ink);
  border-radius: 14px;
  box-shadow: 11px 13px 0 rgba(0, 15, 75, .26);
  grid-template-columns: 1fr 310px;
}

.form-main {
  min-width: 0;
  padding: 31px 34px 28px;
}

.form-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 31px;
  counter-reset: formstep;
}

.form-step {
  position: relative;
  display: flex;
  gap: 9px;
  align-items: center;
  color: #8d8b82;
  font-size: 11px;
  font-weight: 800;
}

.form-step::after {
  height: 2px;
  margin-inline: 10px;
  content: "";
  flex: 1;
  background: #d6d0c1;
}

.form-step:last-child::after {
  display: none;
}

.form-step > span {
  display: grid;
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  color: var(--play-muted);
  border: 1.5px solid #b7b0a1;
  border-radius: 50%;
  place-items: center;
}

.form-step.is-active {
  color: var(--play-blue);
}

.form-step.is-active > span {
  color: white;
  background: var(--play-blue);
  border-color: var(--play-blue);
}

.form-step.is-complete > span {
  color: white;
  background: var(--play-teal);
  border-color: var(--play-teal);
}

.form-panel h2 {
  font-size: clamp(32px, 4vw, 46px);
}

.form-panel > p {
  margin: 12px 0 25px;
  color: var(--play-muted);
}

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

.field-wide {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--play-ink);
  font-size: 11px;
  font-weight: 800;
}

.field input,
.field select {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  color: var(--play-ink);
  background: white;
  border: 1.5px solid var(--play-ink);
  border-radius: 7px;
  outline: 0;
  transition: box-shadow .18s ease, transform .18s ease;
}

.field input:focus,
.field select:focus,
.final-address-card input:focus,
.address-input:focus-within {
  border-color: var(--play-blue);
  box-shadow: 3px 4px 0 rgba(7, 61, 204, .2);
  transform: translateY(-1px);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: var(--play-coral);
}

.currency-field {
  position: relative;
}

.currency-field::before {
  position: absolute;
  top: 50%;
  left: 13px;
  z-index: 1;
  content: "$";
  font-weight: 800;
  transform: translateY(-50%);
}

.currency-field input {
  padding-inline-start: 29px;
}

.field-help {
  display: block;
  margin-top: 6px;
  color: var(--play-muted);
  font-size: 10px;
}

.checkbox-field {
  display: grid;
  padding: 14px;
  background: #f0eadc;
  border: 1px solid #d4ccbc;
  border-radius: 7px;
  grid-template-columns: 20px 1fr;
  gap: 10px;
}

.checkbox-field input {
  width: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  accent-color: var(--play-teal);
}

.checkbox-field label {
  margin: 0;
  font-weight: 600;
  line-height: 1.45;
}

.error-summary {
  padding: 15px 17px;
  margin-bottom: 22px;
  color: #7a180e;
  background: #ffe2da;
  border: 1.5px solid var(--play-coral);
  border-radius: 7px;
}

.error-summary ul {
  margin-bottom: 0;
}

.form-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid #d6d0c1;
}

.form-actions > span {
  flex: 1;
}

.estimate-sidebar {
  padding: 31px 24px;
  color: white;
  background: var(--play-blue);
  border-inline-start: 2px solid var(--play-ink);
}

.estimate-sidebar > p {
  padding: 14px;
  margin: 20px 0;
  color: var(--play-ink);
  background: var(--play-paper);
  border: 1.5px solid var(--play-ink);
  border-radius: 7px;
  box-shadow: 4px 5px 0 rgba(0, 15, 75, .2);
  font-size: 11px;
  font-weight: 700;
}

.next-steps {
  margin: 28px 0;
}

.next-steps h2 {
  font-size: 29px;
}

.next-steps ol {
  display: grid;
  padding: 0;
  list-style: none;
  counter-reset: nextsteps;
  gap: 8px;
}

.next-steps li {
  display: grid;
  padding: 13px;
  background: #f2ecdf;
  border: 1px solid #d9d0be;
  border-radius: 7px;
  counter-increment: nextsteps;
  grid-template-columns: 28px 1fr;
  gap: 10px;
}

.next-steps li::before {
  display: grid;
  width: 25px;
  height: 25px;
  color: white;
  content: counter(nextsteps);
  background: var(--play-coral);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  place-items: center;
}

@media (max-width: 1120px) {
  .play-hero {
    grid-template-columns: .95fr 1.05fr;
  }

  .polaroid {
    width: 158px;
    height: 190px;
  }

  .polaroid-photo {
    height: 142px;
  }

  .polaroid-two {
    left: 181px;
  }

  .polaroid-three {
    left: 322px;
  }

  .hero-address-card {
    right: 60px;
  }

  .journey-cards {
    gap: 70px;
  }
}

@media (max-width: 900px) {
  .play-hero {
    grid-template-columns: 1fr;
  }

  .play-hero-copy {
    grid-row: 1;
  }

  .play-hero-copy-inner {
    width: min(100% - 48px, 680px);
    padding: 64px 0 70px;
    margin-inline: auto;
  }

  .play-hero-collage {
    min-height: 640px;
  }

  .polaroid-one {
    left: 9%;
  }

  .polaroid-two {
    left: calc(50% - 79px);
  }

  .polaroid-three {
    right: 9%;
    left: auto;
  }

  .hero-address-card {
    right: calc(50% - 165px);
  }

  .parcel-card {
    left: 10%;
  }

  .county-paper {
    right: 10%;
  }

  .journey-section {
    padding-bottom: 76px;
  }

  .journey-path {
    display: none;
  }

  .journey-cards {
    gap: 18px;
  }

  .journey-card-two,
  .journey-card-three {
    transform: none;
  }

  .journey-footer {
    margin-top: 35px;
  }

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

  .packet-stack {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
  }

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

  .review-copy {
    max-width: 570px;
  }

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

  .relief-photo {
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .final-check-grid {
    gap: 40px;
    grid-template-columns: 1fr;
  }

  .final-address-card {
    width: min(100%, 520px);
  }

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

  .estimate-sidebar {
    border-top: 2px solid var(--play-ink);
    border-inline-start: 0;
  }

  .estimate-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 24px;
  }
}

@media (max-width: 720px) {
  .shell,
  .flow-shell {
    width: min(calc(100% - 30px), var(--shell));
  }

  .desktop-nav {
    display: none;
  }

  .locale-menu summary > span,
  .locale-chevron {
    display: none;
  }

  .locale-menu summary {
    padding: 8px 10px;
  }

  .play-hero-copy-inner {
    width: calc(100% - 30px);
    padding: 48px 0 56px;
  }

  .play-hero h1 {
    font-size: clamp(43px, 14vw, 64px);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-trust {
    align-items: flex-start;
    flex-direction: column;
  }

  .play-hero-collage {
    min-height: 590px;
  }

  .polaroid {
    width: 128px;
    height: 157px;
    padding: 7px 7px 24px;
  }

  .polaroid-photo {
    height: 118px;
  }

  .polaroid-one {
    top: 44px;
    left: 4%;
  }

  .polaroid-two {
    top: 34px;
    left: calc(50% - 64px);
  }

  .polaroid-three {
    top: 49px;
    right: 4%;
  }

  .parcel-card {
    bottom: 63px;
    left: 3%;
    width: 116px;
    height: 144px;
  }

  .parcel-pin {
    top: 45px;
    left: 45px;
  }

  .county-paper {
    right: 3%;
    bottom: 61px;
    width: 110px;
    height: 151px;
  }

  .hero-address-card {
    right: 50%;
    bottom: 111px;
    width: min(290px, calc(100% - 86px));
    padding: 16px;
    transform: translateX(50%);
  }

  .journey-section {
    padding: 54px 0;
  }

  .journey-heading h2 {
    font-size: 45px;
  }

  .journey-cards {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .journey-card {
    max-width: 380px;
    margin-inline: auto;
    transform: none;
  }

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

  .packet-section,
  .review-section,
  .relief-section,
  .final-check {
    padding: 55px 0;
  }

  .packet-grid,
  .packet-stack {
    grid-template-columns: 1fr;
  }

  .packet-stack {
    grid-column: auto;
  }

  .review-window {
    padding: 16px;
    transform: none;
  }

  .review-window-header,
  .review-window-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .review-progress {
    display: none;
  }

  .review-tabs {
    overflow-x: auto;
  }

  .review-window-body {
    grid-template-columns: 1fr;
  }

  .review-property-photo {
    min-height: 220px;
  }

  .review-window-actions > span {
    margin-inline-start: 0;
  }

  .relief-photo {
    height: 420px;
    border-radius: 90px 0 0;
  }

  .help-bubble {
    top: auto;
    right: 15px;
    bottom: 44px;
    left: 15px;
    width: auto;
  }

  .final-check::before {
    right: -20%;
    left: 25%;
  }

  .final-check h2 {
    font-size: clamp(48px, 15vw, 70px);
  }

  .flow-page {
    padding: 40px 0 60px;
  }

  .review-form-card {
    border-radius: 10px;
  }

  .form-main {
    padding: 24px 18px;
  }

  .form-steps {
    display: none;
  }

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

  .field-wide {
    grid-column: auto;
  }

  .estimate-sidebar {
    display: block;
  }
}

.paper-tab {
  position: absolute;
  top: -18px;
  right: 26px;
  display: flex;
  min-height: 36px;
  padding: 7px 14px 7px 8px;
  color: var(--play-ink);
  background: var(--play-paper);
  border: 2px solid var(--play-ink);
  border-radius: 7px 7px 0 0;
  box-shadow: 4px -3px 0 rgba(17, 26, 37, .1);
  gap: 8px;
  align-items: center;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.paper-tab span {
  display: grid;
  width: 21px;
  height: 21px;
  color: white;
  background: var(--play-coral);
  border-radius: 50%;
  place-items: center;
}

[dir="rtl"] .currency-field::before {
  right: 13px;
  left: auto;
}

[dir="rtl"] .currency-field input {
  padding-right: 29px;
  padding-left: 13px;
}

@media (max-width: 1020px) {
}

@media (max-width: 740px) {

  .paper-tab {
    right: 15px;
  }
}

/* Address-first report flow */
.report-address-form,
.hero-report-form,
.closing-report-form {
  display: grid;
  gap: 10px;
}

.report-address-control {
  position: relative;
  min-width: 0;
}

.report-address-control > input,
.parcel-address-widget {
  display: block;
  width: 100%;
  min-height: 52px;
  padding: 0 16px 0 43px;
  color: var(--play-ink);
  background: #fffdf5;
  border: 2px solid var(--play-ink);
  border-radius: 7px;
  font: 600 14px/1.2 "DM Sans", sans-serif;
  box-shadow: 3px 4px 0 rgba(17, 26, 37, .16);
}

.parcel-address-widget {
  position: absolute;
  z-index: 10;
  top: calc(100% + 7px);
  left: 0;
  max-height: 330px;
  padding: 6px;
  overflow: hidden;
  overflow-y: auto;
  border-width: 1.5px;
  box-shadow: 5px 7px 0 rgba(17, 26, 37, .14);
}

.parcel-address-widget[hidden] {
  display: none;
}

.parcel-address-option {
  display: flex;
  width: 100%;
  padding: 10px 11px;
  color: var(--play-ink);
  background: transparent;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  flex-direction: column;
  font: inherit;
  text-align: left;
}

.parcel-address-option:hover,
.parcel-address-option.is-active {
  background: #f2ead6;
}

.parcel-address-option strong {
  font-size: 13px;
}

.parcel-address-option span {
  margin-top: 2px;
  color: var(--play-muted);
  font-size: 10px;
  font-weight: 600;
}

.report-address-pin {
  position: absolute;
  z-index: 3;
  top: 15px;
  left: 14px;
  width: 22px;
  height: 22px;
  pointer-events: none;
}

.report-address-pin svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--play-coral);
  stroke-width: 2;
}

.report-address-submit {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.report-address-submit svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.report-address-form > small {
  color: var(--play-muted);
  font-size: 9px;
  text-align: center;
}

.report-address-error:empty {
  display: none;
}

.report-address-error {
  margin: 0;
  color: #9e2418;
  font-size: 11px;
  font-weight: 700;
}

.hero-address-card .report-address-control > input,
.hero-address-card .parcel-address-widget {
  min-height: 46px;
}

.hero-address-card .report-address-pin {
  top: 12px;
}

.hero-address-card .report-address-submit {
  min-height: 43px;
}

.final-address-card .closing-report-form {
  width: 100%;
}

.report-entry {
  display: grid;
  min-height: calc(100vh - 74px);
  padding: 86px max(24px, calc((100vw - 1120px) / 2));
  color: white;
  background: var(--play-blue);
  grid-template-columns: minmax(320px, .8fr) minmax(470px, 1.2fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
  overflow: hidden;
}

.report-entry-copy h1 {
  max-width: 560px;
  margin: 14px 0 20px;
  color: white;
  font-size: clamp(52px, 5.5vw, 72px);
  line-height: .9;
  overflow-wrap: anywhere;
}

.report-entry-copy > p {
  max-width: 520px;
  color: rgba(255, 255, 255, .82);
  font-size: 17px;
  line-height: 1.55;
}

.report-entry-copy ul,
.package-preview-copy ul {
  display: grid;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
  gap: 10px;
  font-weight: 700;
}

.report-entry-copy li::first-letter,
.package-preview-copy li::first-letter {
  color: var(--play-mint);
}

.report-entry-paper {
  position: relative;
  padding: 60px 42px 43px;
  color: var(--play-ink);
  background: var(--play-paper);
  border: 2px solid var(--play-ink);
  border-radius: 12px;
  box-shadow: 12px 14px 0 rgba(0, 15, 75, .35);
  transform: rotate(-1deg);
}

.report-entry-paper .paper-tab {
  top: 17px;
  right: 22px;
}

.report-entry-paper h2 {
  max-width: 470px;
  margin-bottom: 25px;
  font-size: clamp(31px, 4vw, 48px);
}

.report-processing {
  display: grid;
  min-height: calc(100vh - 74px);
  padding: 70px 24px;
  color: white;
  background: var(--play-blue);
  place-content: center;
  justify-items: center;
  text-align: center;
}

.report-processing h1 {
  max-width: 760px;
  margin: 13px 0 11px;
  color: white;
  font-size: clamp(50px, 7vw, 88px);
  line-height: .92;
}

.report-processing > p {
  color: var(--play-mint);
  font-weight: 700;
}

.report-processing ol {
  display: grid;
  width: min(100%, 780px);
  padding: 0;
  margin: 45px 0 24px;
  list-style: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  counter-reset: processing;
}

.report-processing li {
  position: relative;
  padding: 46px 10px 13px;
  color: rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  counter-increment: processing;
  font-size: 11px;
  font-weight: 700;
}

.report-processing li::before {
  position: absolute;
  top: 12px;
  left: calc(50% - 13px);
  display: grid;
  width: 26px;
  height: 26px;
  color: var(--play-ink);
  content: counter(processing);
  background: var(--play-mint);
  border-radius: 50%;
  place-items: center;
}

.report-processing li.is-complete::before {
  content: "✓";
  background: var(--play-teal);
  color: white;
}

.report-processing > small {
  color: rgba(255, 255, 255, .6);
}

.processing-route {
  position: relative;
  display: flex;
  width: min(70vw, 510px);
  margin-bottom: 34px;
  align-items: center;
}

.processing-route > span {
  display: grid;
  width: 58px;
  height: 58px;
  color: var(--play-ink);
  background: var(--play-mint);
  border: 2px solid var(--play-ink);
  border-radius: 50%;
  box-shadow: 4px 5px 0 rgba(17, 26, 37, .3);
  font: 24px "Archivo Black", sans-serif;
  place-items: center;
}

.processing-route .processing-file {
  background: var(--play-coral);
  color: white;
}

.processing-route i {
  height: 3px;
  background: var(--play-mint);
  flex: 1;
  animation: processingPulse 1.4s ease-in-out infinite alternate;
}

.processing-route i:nth-of-type(2) { animation-delay: .2s; }
.processing-route i:nth-of-type(3) { animation-delay: .4s; }

@keyframes processingPulse {
  to { background: var(--play-coral); }
}

.report-outcome {
  display: grid;
  min-height: calc(100vh - 74px);
  padding: 70px max(24px, calc((100vw - 1180px) / 2)) 86px;
  grid-template-columns: minmax(290px, .6fr) minmax(620px, 1.4fr);
  gap: clamp(48px, 7vw, 105px);
  align-items: center;
  overflow: hidden;
}

.report-outcome-eligible,
.report-outcome-error {
  color: white;
  background: var(--play-coral);
}

.report-outcome-growth {
  color: white;
  background: var(--play-blue);
}

.report-outcome-story h1 {
  max-width: 470px;
  margin: 13px 0 20px;
  color: white;
  font-size: clamp(52px, 5.5vw, 72px);
  line-height: .9;
}

.report-outcome-story > p {
  max-width: 440px;
  color: rgba(255, 255, 255, .83);
  line-height: 1.55;
}

.outcome-savings {
  display: grid;
  width: max-content;
  padding: 17px 21px;
  margin: 27px 0 20px;
  color: var(--play-ink);
  background: var(--play-mint);
  border: 2px solid var(--play-ink);
  border-radius: 9px;
  box-shadow: 5px 6px 0 rgba(98, 14, 3, .25);
}

.outcome-savings small {
  font-weight: 800;
  text-transform: uppercase;
}

.outcome-savings strong {
  font: 44px "Archivo Black", sans-serif;
}

.outcome-savings span {
  color: var(--play-muted);
  font-size: 9px;
}

.report-paper {
  position: relative;
  padding: 30px;
  color: var(--play-ink);
  background: var(--play-paper);
  border: 2px solid var(--play-ink);
  border-radius: 12px;
  box-shadow: 12px 14px 0 rgba(17, 26, 37, .28);
  transform: rotate(-.7deg);
}

.report-evidence > header {
  display: flex;
  padding-bottom: 17px;
  border-bottom: 1px solid #cec5b4;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
}

.report-evidence > header div {
  display: grid;
  gap: 4px;
}

.report-evidence > header span,
.report-evidence > header em,
.report-growth-paper > span {
  color: var(--play-teal);
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.report-evidence > header strong {
  font: 22px "Archivo Black", sans-serif;
}

.report-evidence > header em {
  padding: 7px 9px;
  color: white;
  background: var(--play-blue);
  border-radius: 4px;
}

.report-metrics {
  display: grid;
  margin: 24px 0 32px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.report-metrics > div {
  display: grid;
  min-width: 0;
  min-height: 100px;
  padding: 18px 20px;
  align-content: center;
  background: #f1ecdf;
  border: 1px solid #d4ccbc;
  border-radius: 8px;
  gap: 8px;
}

.report-metrics small {
  color: var(--play-muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.report-metrics strong {
  font: 22px/1.1 "Archivo Black", sans-serif;
}

.report-evidence h2 {
  margin-bottom: 12px;
  font-size: 27px;
}

.comparable-list {
  display: grid;
  gap: 7px;
}

.comparable-list > div {
  display: grid;
  padding: 11px 12px;
  background: #fffdf5;
  border: 1px solid #d4ccbc;
  border-radius: 6px;
  grid-template-columns: 1fr auto;
  gap: 4px 15px;
}

.comparable-list strong {
  color: var(--play-blue);
  font-size: 12px;
}

.comparable-address-blurred {
  display: inline-block;
  filter: blur(3.5px);
  pointer-events: none;
  user-select: none;
}

.comparable-list span {
  color: var(--play-muted);
  font-size: 9px;
  grid-column: 1;
}

.comparable-list em {
  color: var(--play-teal);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
}

.report-evidence > footer {
  display: flex;
  padding-top: 16px;
  margin-top: 18px;
  border-top: 1px solid #cec5b4;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  color: var(--play-muted);
  font-size: 8px;
}

.report-evidence > footer strong {
  color: var(--play-teal);
}

.report-growth-paper {
  padding: 42px;
}

.growth-stamp {
  position: absolute;
  top: -24px;
  right: 26px;
  display: grid;
  width: 68px;
  height: 68px;
  color: white;
  background: var(--play-teal);
  border: 2px solid var(--play-ink);
  border-radius: 50%;
  box-shadow: 4px 5px 0 rgba(17, 26, 37, .25);
  font: 31px "Archivo Black", sans-serif;
  place-items: center;
}

.report-growth-paper h2 {
  max-width: 560px;
  margin: 8px 0 16px;
  font-size: clamp(30px, 4vw, 48px);
}

.report-growth-paper .report-metrics {
  grid-template-columns: 1fr 1fr;
}

.report-growth-paper > p {
  color: var(--play-muted);
  line-height: 1.5;
}

.recheck-form {
  padding: 20px;
  margin-top: 25px;
  background: #dff4ed;
  border: 1.5px solid var(--play-teal);
  border-radius: 8px;
}

.recheck-form h3 {
  font-size: 24px;
}

.recheck-form > p {
  margin: 5px 0 15px;
  color: var(--play-muted);
  font-size: 12px;
}

.channel-choice {
  display: flex;
  margin-bottom: 10px;
  gap: 17px;
  font-size: 11px;
  font-weight: 800;
}

.recheck-form input[type="email"],
.recheck-form input[type="tel"] {
  width: 100%;
  min-height: 45px;
  padding: 0 12px;
  margin-bottom: 11px;
  background: #fffdf5;
  border: 1.5px solid var(--play-ink);
  border-radius: 6px;
}

.recheck-form > small {
  display: block;
  margin-top: 8px;
  color: var(--play-muted);
  font-size: 8px;
}

.recheck-success {
  padding: 15px;
  margin-top: 25px;
  color: var(--play-teal);
  background: #dff4ed;
  border: 1.5px solid var(--play-teal);
  border-radius: 7px;
  font-weight: 800;
}

.report-failure-paper {
  display: grid;
  min-height: 350px;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.report-failure-paper > span {
  display: grid;
  width: 72px;
  height: 72px;
  margin-bottom: 25px;
  color: white;
  background: var(--play-coral);
  border: 2px solid var(--play-ink);
  border-radius: 50%;
  font: 34px "Archivo Black", sans-serif;
  place-items: center;
}

.report-failure-paper > strong {
  font: 28px "Archivo Black", sans-serif;
}

.report-failure-paper > p {
  color: var(--play-muted);
}

.package-preview-page {
  display: grid;
  min-height: calc(100vh - 74px);
  padding: 80px max(24px, calc((100vw - 1100px) / 2));
  color: var(--play-ink);
  background: var(--play-mint);
  grid-template-columns: .9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.package-preview-copy h1 {
  max-width: 650px;
  margin: 13px 0 20px;
  font-size: clamp(53px, 6vw, 82px);
  line-height: .92;
}

.package-preview-copy > p {
  max-width: 620px;
  color: var(--play-muted);
  font-size: 17px;
  line-height: 1.55;
}

.package-checkout-paper {
  padding: 42px;
  background: var(--play-paper);
  border: 2px solid var(--play-ink);
  border-radius: 11px;
  box-shadow: 10px 12px 0 rgba(17, 26, 37, .2);
  transform: rotate(1deg);
}

.package-checkout-paper > span {
  color: var(--play-teal);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.package-checkout-paper > h2 {
  max-width: 570px;
  margin: 8px 0 12px;
  font-size: clamp(30px, 3vw, 43px);
  line-height: .98;
}

.package-checkout-paper > p {
  color: var(--play-muted);
  font-size: 12px;
  line-height: 1.5;
}

.package-preview-copy .text-arrow {
  display: inline-block;
  margin-top: 24px;
}

.package-facts {
  display: grid;
  margin-top: 28px;
  border-block: 1.5px solid rgba(17, 26, 37, .35);
  grid-template-columns: 1fr 1fr;
}

.package-facts > div {
  padding: 14px 16px 14px 0;
}

.package-facts > div:nth-child(odd) {
  border-right: 1.5px solid rgba(17, 26, 37, .35);
}

.package-facts > div:nth-child(even) {
  padding-right: 0;
  padding-left: 16px;
}

.package-facts span,
.package-facts strong {
  display: block;
}

.package-facts span {
  margin-bottom: 4px;
  color: var(--play-teal);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.package-facts strong {
  font-size: 11px;
}

.package-ready {
  display: flex;
  padding: 16px;
  margin: -16px -16px 20px;
  background: #dff4ed;
  border: 1.5px solid var(--play-teal);
  border-radius: 8px;
  gap: 12px;
  align-items: flex-start;
}

.package-ready > span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  color: white;
  background: var(--play-teal);
  border-radius: 50%;
  font-weight: 900;
  place-items: center;
}

.package-ready strong {
  display: block;
  margin-bottom: 2px;
  font-size: 12px;
}

.package-ready p,
.package-signature-note {
  margin: 0;
  color: var(--play-muted);
  font-size: 9px;
  line-height: 1.4;
}

.package-signature-note {
  padding: 10px 4px 20px;
}

.package-details-form {
  display: grid;
  margin-top: 22px;
  gap: 13px;
}

.package-details-form .field {
  margin: 0;
}

.package-details-form label {
  display: block;
  margin-bottom: 5px;
  color: var(--play-ink);
  font-size: 9px;
  font-weight: 800;
}

.package-details-form input {
  width: 100%;
  min-height: 43px;
  padding: 0 12px;
  color: var(--play-ink);
  background: #fffdf5;
  border: 1.5px solid var(--play-ink);
  border-radius: 5px;
  font: 13px "DM Sans", sans-serif;
}

.package-details-form input:focus {
  outline: 3px solid rgba(23, 70, 209, .18);
  outline-offset: 1px;
}

.package-field-grid {
  display: grid;
  grid-template-columns: 1.5fr .5fr 1fr;
  gap: 11px;
}

.package-field-grid-two {
  grid-template-columns: 1fr 1fr;
}

.package-details-form .button {
  margin-top: 7px;
}

.package-price-row {
  display: flex;
  padding-top: 17px;
  margin-top: 20px;
  border-top: 1px solid #cec5b4;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.package-price-row span,
.package-price-row strong {
  display: block;
}

.package-price-row span {
  color: var(--play-teal);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.package-price-row strong {
  font: 28px "Archivo Black", sans-serif;
}

.package-price-row p {
  max-width: 260px;
  margin: 0;
  color: var(--play-muted);
  font-size: 8px;
  line-height: 1.4;
}

.package-errors {
  padding: 13px 16px;
  margin-top: 18px;
  color: #78271f;
  background: #ffe5df;
  border: 1.5px solid var(--play-coral);
  border-radius: 6px;
  font-size: 10px;
}

.package-errors ul {
  margin: 6px 0 0;
  padding-left: 18px;
}

[dir="rtl"] .report-address-pin {
  right: 14px;
  left: auto;
}

[dir="rtl"] .report-address-control > input,
[dir="rtl"] .parcel-address-widget {
  padding-right: 43px;
  padding-left: 16px;
}

[dir="rtl"] .parcel-address-option {
  text-align: right;
}

[dir="rtl"] .report-entry-paper,
[dir="rtl"] .report-paper,
[dir="rtl"] .package-checkout-paper {
  transform: none;
}

@media (max-width: 940px) {
  .report-entry,
  .report-outcome,
  .package-preview-page {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .report-entry-paper,
  .report-paper,
  .package-checkout-paper {
    width: min(100%, 760px);
  }

  .package-preview-copy {
    max-width: 760px;
  }
}

@media (max-width: 640px) {
  .report-entry,
  .report-outcome,
  .package-preview-page {
    padding: 48px 15px 65px;
  }

  .report-entry-copy h1,
  .report-outcome-story h1,
  .package-preview-copy h1 {
    font-size: clamp(47px, 14vw, 66px);
  }

  .report-entry-paper,
  .report-paper,
  .package-checkout-paper {
    padding: 34px 18px 24px;
    transform: none;
  }

  .report-entry-paper .paper-tab {
    position: static;
    width: fit-content;
    margin: 0 0 18px auto;
  }

  .package-field-grid,
  .package-field-grid-two {
    grid-template-columns: 1fr;
  }

  .package-price-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .report-processing {
    padding: 50px 15px;
  }

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

  .report-metrics,
  .report-growth-paper .report-metrics {
    grid-template-columns: 1fr;
  }

  .report-metrics > div {
    min-height: 84px;
  }

  .comparable-list > div {
    grid-template-columns: 1fr;
  }

  .comparable-list span,
  .comparable-list em {
    grid-column: 1;
    grid-row: auto;
  }

  .report-evidence > header,
  .report-evidence > footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

