:root {
  --pa-navy: #001726;
  --pa-navy-2: #031e2c;
  --pa-ink: #071b28;
  --pa-paper: #eef2f1;
  --pa-white: #ffffff;
  --pa-orange: #ff7900;
  --pa-cyan: #20cdc8;
  --pa-green: #42dfa7;
  --pa-line: rgba(0, 23, 38, .12);
  --pa-muted: #6f818b;
  --pa-shell: min(1460px, calc(100vw - 64px));
  --pa-radius: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--pa-ink);
  background-color: var(--pa-paper);
  background-image:
    linear-gradient(rgba(0, 23, 38, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 23, 38, .035) 1px, transparent 1px);
  background-size: 72px 72px;
  font-family: "DM Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

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

[hidden] {
  display: none !important;
}

.pa-shell {
  width: var(--pa-shell);
  margin-inline: auto;
}

.pa-skip {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 12px 16px;
  color: #fff;
  background: var(--pa-navy);
  transform: translateY(-160%);
}

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

.pa-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 78px;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  background: var(--pa-navy);
}

.pa-header-inner {
  height: 100%;
  display: grid;
  align-items: center;
  grid-template-columns: 260px minmax(280px, 560px) 1fr;
}

.pa-brand {
  display: block;
  width: 218px;
  height: 48px;
}

.pa-brand svg {
  width: 100%;
  height: 100%;
  display: block;
}

.pa-header-progress {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 17px;
}

.pa-header-progress > span {
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}

.pa-header-progress small,
.pa-header-progress b,
.pa-header-progress em {
  font-size: 7px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .12em;
}

.pa-header-progress small {
  color: rgba(202, 220, 226, .4);
}

.pa-header-progress b {
  color: #fff;
}

.pa-header-progress > i {
  position: relative;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, .12);
}

.pa-header-progress > i b {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: var(--pa-orange);
  transition: width .35s ease;
}

.pa-header-progress em {
  color: var(--pa-cyan);
}

.pa-exit {
  justify-self: end;
  min-height: 42px;
  padding: 0 14px 0 17px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  color: rgba(238, 246, 248, .72);
  font-size: 10px;
  font-weight: 700;
  transition: border-color .2s ease, color .2s ease;
}

.pa-exit:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, .34);
}

.pa-exit svg {
  width: 15px;
}

.pa-intro {
  min-height: 332px;
  padding: 70px 0 52px;
  color: #fff;
  background: var(--pa-navy);
}

.pa-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, .72fr);
  align-items: end;
  gap: clamp(60px, 9vw, 155px);
}

.pa-kicker {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--pa-cyan);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .18em;
}

.pa-kicker i {
  width: 34px;
  height: 1px;
  background: var(--pa-orange);
}

.pa-intro h1 {
  margin: 31px 0 0;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: clamp(48px, 5.25vw, 80px);
  font-weight: 650;
  line-height: .96;
  letter-spacing: -.065em;
}

.pa-intro h1 em {
  color: var(--pa-orange);
  font-style: normal;
}

.pa-intro-copy {
  padding-bottom: 5px;
}

.pa-intro-copy > p {
  max-width: 530px;
  margin: 0;
  color: rgba(218, 233, 238, .62);
  font-size: 15px;
  line-height: 1.72;
}

.pa-intro-copy > div {
  margin-top: 31px;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  border-top: 1px solid rgba(255, 255, 255, .11);
}

.pa-intro-copy > div > span {
  min-height: 66px;
  padding-top: 17px;
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  column-gap: 10px;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.pa-intro-copy > div > span:last-child {
  padding-left: 18px;
  border-right: 0;
}

.pa-intro-copy svg {
  width: 17px;
  color: var(--pa-cyan);
  grid-row: 1 / 3;
}

.pa-intro-copy b {
  color: #fff;
  font-size: 10px;
}

.pa-intro-copy small {
  color: rgba(212, 228, 233, .4);
  font-size: 8px;
}

.pa-workspace {
  position: relative;
  z-index: 5;
  margin-top: -1px;
  padding: 34px 0 92px;
  display: grid;
  grid-template-columns: 224px minmax(560px, 1fr) 320px;
  align-items: start;
  gap: 20px;
}

.pa-step-nav,
.pa-live-estimate {
  position: sticky;
  top: 98px;
}

.pa-step-nav {
  overflow: hidden;
  border: 1px solid var(--pa-line);
  border-radius: var(--pa-radius);
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 18px 44px rgba(0, 23, 38, .06);
}

.pa-step-nav-label {
  height: 45px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  color: var(--pa-muted);
  border-bottom: 1px solid var(--pa-line);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .15em;
}

.pa-step-nav > button {
  position: relative;
  width: 100%;
  min-height: 72px;
  padding: 13px 15px;
  display: grid;
  grid-template-columns: 25px 1fr 20px;
  align-items: center;
  gap: 8px;
  color: var(--pa-muted);
  border: 0;
  border-bottom: 1px solid var(--pa-line);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.pa-step-nav > button::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: transparent;
}

.pa-step-nav > button > b {
  color: var(--pa-orange);
  font-size: 7px;
  letter-spacing: .04em;
}

.pa-step-nav > button > span {
  min-width: 0;
  display: block;
  color: inherit;
  font-size: 10px;
  font-weight: 750;
}

.pa-step-nav > button small {
  margin-top: 3px;
  display: block;
  color: rgba(82, 103, 114, .55);
  font-size: 7px;
  font-weight: 500;
}

.pa-step-nav > button > svg {
  width: 15px;
  justify-self: end;
  opacity: .48;
}

.pa-step-nav > button.is-active {
  color: #fff;
  background: var(--pa-navy);
}

.pa-step-nav > button.is-active::before {
  background: var(--pa-orange);
}

.pa-step-nav > button.is-active small {
  color: rgba(214, 230, 235, .48);
}

.pa-step-nav > button.is-active > svg {
  color: var(--pa-cyan);
  opacity: 1;
}

.pa-step-nav > button.is-complete > b {
  color: #0ba87e;
}

.pa-draft-state {
  min-height: 64px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 11px;
  background: #f7f9f8;
}

.pa-draft-state > i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pa-green);
  box-shadow: 0 0 0 6px rgba(66, 223, 167, .11);
}

.pa-draft-state small,
.pa-draft-state b {
  display: block;
}

.pa-draft-state small {
  color: #9aabb3;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: .13em;
}

.pa-draft-state b {
  margin-top: 3px;
  color: #536a75;
  font-size: 8px;
}

.pa-form {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--pa-line);
  border-radius: var(--pa-radius);
  background: #fff;
  box-shadow: 0 24px 64px rgba(0, 23, 38, .08);
}

.pa-step {
  min-height: 730px;
  padding: clamp(30px, 4vw, 52px);
}

.pa-step.is-entering {
  animation: paStepIn .35s ease both;
}

@keyframes paStepIn {
  from { opacity: 0; transform: translateY(9px); }
  to { opacity: 1; transform: translateY(0); }
}

.pa-step-head {
  margin-bottom: 38px;
  padding-bottom: 31px;
  border-bottom: 1px solid var(--pa-line);
}

.pa-step-head > span,
.pa-result-head > div > span {
  color: #078e91;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .15em;
}

.pa-step-head h2,
.pa-result-head h2 {
  margin: 15px 0 0;
  color: var(--pa-ink);
  font-family: "Manrope", sans-serif;
  font-size: clamp(27px, 2.55vw, 39px);
  font-weight: 660;
  line-height: 1.06;
  letter-spacing: -.052em;
}

.pa-step-head p {
  max-width: 590px;
  margin: 13px 0 0;
  color: var(--pa-muted);
  font-size: 12px;
  line-height: 1.6;
}

.pa-fields {
  display: grid;
  gap: 20px;
}

.pa-fields-2 {
  grid-template-columns: 1fr 1fr;
}

.pa-fields-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.pa-field {
  min-width: 0;
  display: block;
}

.pa-field > span {
  margin-bottom: 8px;
  display: block;
  color: #304c59;
  font-size: 9px;
  font-weight: 700;
}

.pa-field > span b {
  color: var(--pa-orange);
}

.pa-field input,
.pa-field select,
.pa-field textarea {
  width: 100%;
  min-height: 51px;
  padding: 0 15px;
  color: var(--pa-ink);
  border: 1px solid rgba(0, 23, 38, .15);
  border-radius: 5px;
  outline: 0;
  background: #fbfcfc;
  font-size: 11px;
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.pa-field textarea {
  min-height: 94px;
  padding-top: 14px;
  resize: vertical;
  line-height: 1.55;
}

.pa-field input:focus,
.pa-field select:focus,
.pa-field textarea:focus {
  border-color: #079fa0;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(32, 205, 200, .09);
}

.pa-field input.pa-invalid,
.pa-field select.pa-invalid,
.pa-field textarea.pa-invalid {
  border-color: #e5522c;
  box-shadow: 0 0 0 3px rgba(229, 82, 44, .08);
}

.pa-choice-group {
  min-width: 0;
  margin: 28px 0 0;
  padding: 0;
  border: 0;
}

.pa-choice-group legend {
  width: 100%;
  margin-bottom: 11px;
  color: #304c59;
  font-size: 9px;
  font-weight: 700;
}

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

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

.pa-check-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pa-check-grid label {
  min-width: 0;
  cursor: pointer;
}

.pa-check-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pa-check-grid label > span {
  min-height: 45px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 9px;
  overflow: hidden;
  color: #58707c;
  border: 1px solid rgba(0, 23, 38, .13);
  border-radius: 5px;
  background: #fbfcfc;
  font-size: 9px;
  font-weight: 650;
  line-height: 1.25;
  transition: border-color .2s ease, background-color .2s ease, color .2s ease;
}

.pa-check-grid label > span::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border: 1px solid rgba(0, 23, 38, .28);
  border-radius: 50%;
}

.pa-check-grid label > span svg {
  width: 14px;
  flex: 0 0 14px;
  color: #089c9e;
}

.pa-check-grid input:checked + span {
  color: #fff;
  border-color: var(--pa-navy);
  background: var(--pa-navy);
}

.pa-check-grid input:checked + span::before {
  border-color: var(--pa-green);
  background: var(--pa-green);
  box-shadow: inset 0 0 0 2px var(--pa-navy);
}

.pa-check-grid input:checked + span svg {
  color: var(--pa-cyan);
}

.pa-check-grid input:focus-visible + span {
  outline: 2px solid var(--pa-orange);
  outline-offset: 2px;
}

.pa-privacy-note {
  margin-top: 26px;
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #58717c;
  border-left: 3px solid var(--pa-cyan);
  background: #f2f7f6;
}

.pa-privacy-note svg {
  width: 17px;
  flex: 0 0 17px;
  color: #078e91;
}

.pa-privacy-note p {
  margin: 0;
  font-size: 9px;
  line-height: 1.55;
}

.pa-consent {
  margin-top: 24px;
  padding: 17px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #526b76;
  border: 1px solid var(--pa-line);
  border-radius: 6px;
  background: #fff;
  font-size: 9px;
  line-height: 1.55;
  cursor: pointer;
}

.pa-consent input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pa-consent span {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.pa-consent span i {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border: 1px solid rgba(0, 23, 38, .23);
  border-radius: 4px;
  background: #f7f9f8;
  box-shadow: inset 0 0 0 4px #fff;
}

.pa-consent input:checked + span i {
  border-color: var(--pa-cyan);
  background: var(--pa-cyan);
}

.pa-consent input:focus-visible + span {
  outline: 2px solid var(--pa-orange);
  outline-offset: 5px;
}

.pa-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.pa-form-controls {
  min-height: 88px;
  padding: 17px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--pa-line);
  background: #f7f9f8;
}

.pa-form-controls button {
  min-height: 50px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 1px solid rgba(0, 23, 38, .13);
  border-radius: 5px;
  background: #fff;
  color: var(--pa-ink);
  font-size: 9px;
  font-weight: 750;
  cursor: pointer;
}

.pa-form-controls button:disabled {
  opacity: .35;
  cursor: default;
}

.pa-form-controls button svg {
  width: 14px;
}

.pa-form-controls > div {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pa-form-controls > div > span {
  color: #98a8af;
  font-size: 8px;
}

.pa-form-controls > div > span b {
  color: var(--pa-ink);
}

.pa-form-controls .pa-next {
  min-width: 148px;
  color: #fff;
  border-color: var(--pa-navy);
  background: var(--pa-navy);
}

.pa-form-controls .pa-generate {
  min-width: 180px;
  color: var(--pa-navy);
  border-color: var(--pa-orange);
  background: var(--pa-orange);
}

.pa-live-estimate {
  overflow: hidden;
  color: #fff;
  border: 1px solid rgba(39, 191, 191, .23);
  border-top: 4px solid var(--pa-orange);
  border-radius: var(--pa-radius);
  background: var(--pa-navy);
  box-shadow: 0 22px 54px rgba(0, 23, 38, .16);
}

.pa-live-estimate > header {
  min-height: 51px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.pa-live-estimate > header span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--pa-cyan);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .14em;
}

.pa-live-estimate > header span i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pa-green);
  box-shadow: 0 0 0 5px rgba(66, 223, 167, .08);
}

.pa-live-estimate > header em {
  color: rgba(218, 232, 236, .38);
  font-size: 6px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .12em;
}

.pa-estimate-plan {
  min-height: 160px;
  padding: 28px 23px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.pa-estimate-plan small,
.pa-estimate-price small,
.pa-estimate-foot small {
  display: block;
  color: rgba(199, 219, 225, .38);
  font-size: 6px;
  font-weight: 800;
  letter-spacing: .14em;
}

.pa-estimate-plan strong {
  margin-top: 13px;
  display: block;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 26px;
  font-weight: 650;
  line-height: 1.05;
  letter-spacing: -.05em;
}

.pa-estimate-plan > span {
  margin-top: 13px;
  display: block;
  color: rgba(205, 222, 227, .47);
  font-size: 9px;
  line-height: 1.55;
}

.pa-estimate-price {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.pa-estimate-price > span {
  min-width: 0;
  min-height: 96px;
  padding: 19px 17px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, .09);
}

.pa-estimate-price > span:last-child {
  border-right: 0;
}

.pa-estimate-price b {
  margin-top: 9px;
  color: #fff;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: -.03em;
}

.pa-estimate-map {
  min-height: 205px;
  padding: 23px;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.pa-estimate-map > span {
  color: var(--pa-cyan);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .14em;
}

.pa-estimate-map ul {
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.pa-estimate-map li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(230, 240, 243, .67);
  font-size: 9px;
}

.pa-estimate-map li i {
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border: 1px solid var(--pa-cyan);
  border-radius: 50%;
}

.pa-estimate-map li:nth-child(n + 7) {
  display: none;
}

.pa-estimate-foot {
  min-height: 75px;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 10px;
}

.pa-estimate-foot > svg {
  width: 18px;
  color: var(--pa-orange);
}

.pa-estimate-foot b {
  margin-top: 4px;
  display: block;
  font-size: 9px;
}

.pa-estimate-foot em {
  color: rgba(202, 219, 224, .38);
  font-size: 7px;
  font-style: normal;
}

.pa-result {
  padding: 0;
  background: #fff;
}

.pa-result-head {
  min-height: 190px;
  padding: 42px 44px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  border-bottom: 1px solid var(--pa-line);
}

.pa-result-head h2 {
  max-width: 660px;
}

.pa-result-head h2 b {
  color: var(--pa-orange);
  font-weight: inherit;
}

.pa-quote-id {
  min-width: 165px;
  padding-left: 20px;
  border-left: 1px solid var(--pa-line);
}

.pa-quote-id small,
.pa-quote-id b,
.pa-quote-id em {
  display: block;
}

.pa-quote-id small {
  color: #90a1a9;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: .13em;
}

.pa-quote-id b {
  margin-top: 8px;
  font-size: 13px;
}

.pa-quote-id em {
  margin-top: 5px;
  color: #82949d;
  font-size: 8px;
  font-style: normal;
}

.pa-recommendation {
  min-height: 205px;
  padding: 39px 44px;
  display: grid;
  grid-template-columns: 1fr 150px;
  align-items: center;
  gap: 30px;
  color: #fff;
  background: var(--pa-navy);
}

.pa-recommendation > div:first-child > span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--pa-cyan);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .13em;
}

.pa-recommendation > div:first-child > span svg {
  width: 15px;
}

.pa-recommendation h3 {
  margin: 17px 0 0;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 650;
  line-height: .95;
  letter-spacing: -.06em;
}

.pa-recommendation p {
  max-width: 570px;
  margin: 16px 0 0;
  color: rgba(216, 231, 235, .54);
  font-size: 10px;
  line-height: 1.55;
}

.pa-fit-score {
  min-height: 126px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .11);
  text-align: right;
}

.pa-fit-score small {
  display: block;
  color: rgba(205, 223, 228, .42);
  font-size: 6px;
  font-weight: 800;
  letter-spacing: .12em;
}

.pa-fit-score > b {
  margin-top: 11px;
  display: inline-block;
  color: #fff;
  font-size: 42px;
  letter-spacing: -.06em;
}

.pa-fit-score > span {
  color: var(--pa-cyan);
  font-size: 9px;
}

.pa-fit-score > i {
  height: 2px;
  margin-top: 10px;
  display: block;
  background: rgba(255, 255, 255, .11);
}

.pa-fit-score > i b {
  width: 0;
  height: 100%;
  display: block;
  background: var(--pa-orange);
  transition: width .5s ease;
}

.pa-result-prices {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--pa-line);
}

.pa-result-prices article {
  min-height: 142px;
  padding: 27px 29px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--pa-line);
}

.pa-result-prices article:last-child {
  border-right: 0;
}

.pa-result-prices span {
  color: #078e91;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .12em;
}

.pa-result-prices b {
  margin-top: 12px;
  color: var(--pa-ink);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1;
  letter-spacing: -.05em;
}

.pa-result-prices small {
  margin-top: 11px;
  color: #8698a1;
  font-size: 7px;
}

.pa-result-grid {
  padding: 30px 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  background: #f3f6f5;
}

.pa-result-grid > section {
  min-width: 0;
  padding: 23px;
  border: 1px solid var(--pa-line);
  background: #fff;
}

.pa-result-grid > .pa-result-wide {
  grid-column: 1 / -1;
}

.pa-result-grid header {
  padding-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid var(--pa-line);
}

.pa-result-grid header span,
.pa-result-grid header b {
  color: #078e91;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .12em;
}

.pa-result-grid header b {
  color: #96a6ad;
}

.pa-result-grid ul {
  margin: 17px 0 0;
  padding: 0;
  display: grid;
  gap: 11px;
  list-style: none;
}

.pa-result-grid li {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  color: #536b76;
  font-size: 9px;
  line-height: 1.45;
}

.pa-result-grid li::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: 4px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: var(--pa-cyan);
}

.pa-result-grid li span {
  margin-right: auto;
}

.pa-result-grid li b {
  flex: 0 0 auto;
  color: var(--pa-ink);
  font-size: 9px;
}

.pa-disclaimer {
  margin: 0 34px 28px;
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #657b85;
  border: 1px solid var(--pa-line);
  border-left: 3px solid var(--pa-orange);
}

.pa-disclaimer svg {
  width: 16px;
  flex: 0 0 16px;
  color: var(--pa-orange);
}

.pa-disclaimer p {
  margin: 0;
  font-size: 8px;
  line-height: 1.55;
}

.pa-result-actions {
  padding: 0 34px 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pa-submit-state {
  margin: 0 34px 22px;
  min-height: 94px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 16px;
  color: var(--pa-ink);
  border: 1px solid rgba(7, 142, 145, .18);
  border-left: 4px solid var(--pa-cyan);
  border-radius: 7px;
  background: #effafa;
}

.pa-submit-state-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #078e91;
  border: 1px solid rgba(7, 142, 145, .2);
  border-radius: 50%;
  background: #fff;
}

.pa-submit-state-icon svg { width: 18px; }
.pa-submit-state > div { display: grid; gap: 4px; }
.pa-submit-state small { color: #078e91; font-size: 7px; font-weight: 850; letter-spacing: .13em; }
.pa-submit-state b { font-size: 13px; }
.pa-submit-state p { margin: 0; color: #647a84; font-size: 8px; line-height: 1.5; }
.pa-submit-state button { min-height: 40px; padding: 0 13px; display: inline-flex; align-items: center; gap: 8px; color: #fff; border: 0; border-radius: 5px; background: var(--pa-navy); font-size: 8px; font-weight: 800; cursor: pointer; }
.pa-submit-state button svg { width: 13px; }
.pa-submit-state.is-pending .pa-submit-state-icon svg { animation: paSubmitPulse 1.4s ease-in-out infinite; }
.pa-submit-state.is-success { border-color: rgba(31, 173, 118, .22); border-left-color: var(--pa-green); background: #effbf5; }
.pa-submit-state.is-success .pa-submit-state-icon, .pa-submit-state.is-success small { color: #15865e; }
.pa-submit-state.is-error { border-color: rgba(185, 54, 32, .18); border-left-color: #b93620; background: #fff3f1; }
.pa-submit-state.is-error .pa-submit-state-icon, .pa-submit-state.is-error small { color: #b93620; }

@keyframes paSubmitPulse {
  50% { opacity: .35; transform: translateY(-2px); }
}

.pa-button {
  min-height: 47px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #fff;
  border: 1px solid var(--pa-navy);
  border-radius: 4px;
  background: var(--pa-navy);
  font-size: 8px;
  font-weight: 750;
  cursor: pointer;
}

.pa-button svg {
  width: 14px;
}

.pa-button-orange {
  color: var(--pa-navy);
  border-color: var(--pa-orange);
  background: var(--pa-orange);
}

.pa-button-quiet {
  margin-left: auto;
  color: #617782;
  border-color: var(--pa-line);
  background: #fff;
}

.pa-action-status {
  min-height: 20px;
  margin: -18px 34px 25px;
  color: #078e91;
  font-size: 8px;
}

.pa-footer {
  min-height: 78px;
  color: rgba(214, 230, 235, .5);
  background: var(--pa-navy);
}

.pa-footer > div {
  min-height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 25px;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .1em;
}

.pa-footer p {
  margin: 0;
}

.pa-footer a {
  justify-self: end;
  color: rgba(255, 255, 255, .72);
}

.pa-footer > div {
  grid-template-columns: 1fr auto auto 1fr;
}

.pa-footer .pa-footer-contact {
  display: inline-flex;
  min-height: 34px;
  padding: 0 12px;
  align-items: center;
  justify-self: center;
  gap: 8px;
  color: #d7fff0;
  border: 1px solid rgba(67, 220, 156, .28);
  background: rgba(67, 220, 156, .07);
  border-radius: 999px;
  letter-spacing: .06em;
}

.pa-footer .pa-footer-contact svg {
  width: 13px;
  color: #43dc9c;
}

.pa-toast {
  position: fixed;
  z-index: 300;
  right: 22px;
  bottom: 22px;
  min-height: 50px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  border-left: 3px solid var(--pa-green);
  border-radius: 5px;
  background: var(--pa-navy);
  box-shadow: 0 17px 42px rgba(0, 23, 38, .22);
  font-size: 9px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .2s ease, transform .2s ease;
}

.pa-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.pa-toast svg {
  width: 16px;
  color: var(--pa-green);
}

.pa-noscript {
  position: fixed;
  z-index: 999;
  right: 20px;
  bottom: 20px;
  padding: 14px 18px;
  color: #fff;
  background: #b93620;
}

@media (max-width: 1260px) {
  :root {
    --pa-shell: min(1180px, calc(100vw - 40px));
  }

  .pa-workspace {
    grid-template-columns: 190px minmax(520px, 1fr) 280px;
    gap: 14px;
  }

  .pa-step-nav > button {
    grid-template-columns: 22px 1fr;
  }

  .pa-step-nav > button > svg {
    display: none;
  }

  .pa-live-estimate .pa-estimate-plan {
    padding-inline: 20px;
  }
}

@media (max-width: 1040px) {
  .pa-header-inner {
    grid-template-columns: 220px 1fr auto;
  }

  .pa-workspace {
    grid-template-columns: minmax(0, 1fr) 285px;
  }

  .pa-step-nav {
    position: static;
    grid-column: 1 / -1;
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .pa-step-nav::-webkit-scrollbar {
    display: none;
  }

  .pa-step-nav-label,
  .pa-draft-state {
    display: none;
  }

  .pa-step-nav > button {
    min-width: 142px;
    min-height: 66px;
    border-right: 1px solid var(--pa-line);
    border-bottom: 0;
  }

  .pa-step-nav > button > span {
    font-size: 9px;
  }

  .pa-step-nav > button small {
    display: none;
  }

  .pa-form {
    grid-column: 1;
  }

  .pa-live-estimate {
    grid-column: 2;
  }

  .pa-fields-3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  :root {
    --pa-shell: calc(100vw - 28px);
  }

  .pa-header {
    height: 68px;
  }

  .pa-header-inner {
    grid-template-columns: 170px 1fr auto;
  }

  .pa-brand {
    width: 158px;
    height: 38px;
  }

  .pa-header-progress {
    padding-inline: 15px;
  }

  .pa-header-progress > span small,
  .pa-header-progress > span b {
    display: none;
  }

  .pa-exit {
    width: 38px;
    min-height: 38px;
    padding: 0;
    justify-content: center;
  }

  .pa-exit span {
    display: none;
  }

  .pa-intro {
    min-height: 0;
    padding: 49px 0 37px;
  }

  .pa-intro-grid {
    grid-template-columns: 1fr;
    gap: 31px;
  }

  .pa-intro h1 {
    font-size: clamp(42px, 10vw, 65px);
  }

  .pa-intro-copy > p {
    font-size: 13px;
  }

  .pa-workspace {
    padding-top: 20px;
    grid-template-columns: 1fr;
  }

  .pa-step-nav,
  .pa-form,
  .pa-live-estimate {
    grid-column: 1;
  }

  .pa-form {
    order: 2;
  }

  .pa-live-estimate {
    position: static;
    order: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .pa-live-estimate > header {
    grid-column: 1 / -1;
  }

  .pa-estimate-plan {
    min-height: 128px;
    border-right: 1px solid rgba(255, 255, 255, .09);
  }

  .pa-estimate-plan strong {
    font-size: 22px;
  }

  .pa-estimate-price {
    border-bottom: 1px solid rgba(255, 255, 255, .09);
  }

  .pa-estimate-map,
  .pa-estimate-foot {
    display: none;
  }

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

  .pa-result-head {
    grid-template-columns: 1fr;
  }

  .pa-quote-id {
    padding: 16px 0 0;
    border-top: 1px solid var(--pa-line);
    border-left: 0;
  }
}

@media (max-width: 620px) {
  .pa-header-inner {
    grid-template-columns: 142px 1fr 38px;
  }

  .pa-brand {
    width: 136px;
  }

  .pa-header-progress {
    gap: 9px;
  }

  .pa-intro {
    padding-top: 40px;
  }

  .pa-kicker {
    font-size: 7px;
  }

  .pa-intro h1 {
    margin-top: 25px;
    font-size: 41px;
    line-height: .98;
  }

  .pa-intro-copy > div {
    grid-template-columns: 1fr;
  }

  .pa-intro-copy > div > span,
  .pa-intro-copy > div > span:last-child {
    min-height: 54px;
    padding: 12px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .pa-step-nav > button {
    min-width: 117px;
    min-height: 58px;
    padding: 10px;
    grid-template-columns: 18px 1fr;
  }

  .pa-live-estimate {
    grid-template-columns: 1fr;
  }

  .pa-estimate-plan {
    min-height: 112px;
    padding: 21px 19px;
    border-right: 0;
  }

  .pa-estimate-plan > span {
    margin-top: 8px;
  }

  .pa-estimate-price > span {
    min-height: 82px;
  }

  .pa-step {
    padding: 28px 20px 34px;
  }

  .pa-step-head {
    margin-bottom: 27px;
    padding-bottom: 24px;
  }

  .pa-step-head h2,
  .pa-result-head h2 {
    font-size: 28px;
  }

  .pa-fields-2,
  .pa-fields-3,
  .pa-check-grid,
  .pa-check-grid-2,
  .pa-check-grid-3 {
    grid-template-columns: 1fr;
  }

  .pa-check-grid {
    gap: 7px;
  }

  .pa-check-grid label > span {
    min-height: 48px;
  }

  .pa-form-controls {
    min-height: 78px;
    padding: 13px;
  }

  .pa-form-controls > div > span {
    display: none;
  }

  .pa-form-controls button {
    min-height: 48px;
  }

  .pa-form-controls .pa-next,
  .pa-form-controls .pa-generate {
    min-width: 140px;
  }

  .pa-result-head {
    min-height: 0;
    padding: 30px 22px;
  }

  .pa-recommendation {
    min-height: 0;
    padding: 31px 22px;
    grid-template-columns: 1fr;
  }

  .pa-fit-score {
    min-height: 98px;
    text-align: left;
  }

  .pa-fit-score > b {
    font-size: 34px;
  }

  .pa-result-prices {
    grid-template-columns: 1fr;
  }

  .pa-result-prices article {
    min-height: 116px;
    padding: 23px;
    border-right: 0;
    border-bottom: 1px solid var(--pa-line);
  }

  .pa-result-grid {
    padding: 18px;
    grid-template-columns: 1fr;
  }

  .pa-result-grid > .pa-result-wide {
    grid-column: 1;
  }

  .pa-disclaimer {
    margin: 0 18px 22px;
  }

  .pa-result-actions {
    padding: 0 18px 26px;
  }

  .pa-submit-state {
    margin: 0 22px 22px;
    padding: 17px;
    grid-template-columns: 40px 1fr;
  }

  .pa-submit-state-icon {
    width: 38px;
    height: 38px;
  }

  .pa-submit-state button {
    grid-column: 1 / -1;
    justify-self: stretch;
    justify-content: center;
  }

  .pa-button {
    width: 100%;
  }

  .pa-button-quiet {
    margin-left: 0;
  }

  .pa-action-status {
    margin-inline: 18px;
  }

  .pa-footer > div {
    min-height: 110px;
    padding-block: 22px;
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: center;
  }

  .pa-footer a {
    justify-self: center;
  }

  .pa-toast {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }
}

@media (max-width: 360px) {
  :root {
    --pa-shell: calc(100vw - 20px);
  }

  .pa-header-inner {
    grid-template-columns: 126px 1fr 36px;
  }

  .pa-brand {
    width: 120px;
  }

  .pa-intro h1 {
    font-size: 36px;
  }

  .pa-step {
    padding-inline: 16px;
  }

  .pa-form-controls .pa-next,
  .pa-form-controls .pa-generate {
    min-width: 128px;
    padding-inline: 12px;
  }
}

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

  .pa-header-progress > i b,
  .pa-step,
  .pa-toast,
  .pa-exit,
  .pa-field input,
  .pa-field select,
  .pa-field textarea,
  .pa-check-grid label > span,
  .pa-fit-score > i b {
    animation: none;
    transition: none;
  }
}

@media print {
  body {
    background: #fff;
  }

  .pa-header,
  .pa-intro,
  .pa-step-nav,
  .pa-live-estimate,
  .pa-form-controls,
  .pa-result-actions,
  .pa-action-status,
  .pa-footer,
  .pa-toast {
    display: none !important;
  }

  .pa-workspace {
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
  }

  .pa-form {
    border: 0;
    box-shadow: none;
  }

  .pa-step:not(.pa-result) {
    display: none !important;
  }

  .pa-result {
    display: block !important;
  }

  .pa-result-grid,
  .pa-result-prices {
    break-inside: avoid;
  }
}
