:root {
  --blue: #123a63;
  --orange: #ff9418;
  --body: #0e0e0f;
  --muted: #63636c;
  --line: #97999d;
  --soft-line: #cbced2;
  --invalid: #bb3030;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #fff;
  color: var(--body);
  font-family: "Montserrat", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
}

.brand-header {
  height: 64px;
  display: flex;
  align-items: center;
  padding: 6px 0 5px 24px;
  background: #fff;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
}

.window-icon {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 16px);
  grid-template-rows: repeat(2, 19px);
  gap: 2px;
  width: 50px;
  height: 51px;
  padding: 6px 7px 7px;
  border: 2px solid #dfdfdf;
  color: #cfcfcf;
  background: #fafafa;
  box-shadow: 0 3px 0 #e8e8e8;
}

.window-icon::before,
.window-icon::after {
  content: "";
  position: absolute;
  background: #d7d7d7;
}

.window-icon::before {
  left: 23px;
  top: 7px;
  width: 2px;
  height: 36px;
}

.window-icon::after {
  left: 8px;
  top: 25px;
  width: 32px;
  height: 2px;
}

.window-icon span {
  border: 2px solid currentColor;
  background: #fff;
}

.brand-text {
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.brand-find,
.brand-window {
  color: var(--orange);
}

.brand-pro {
  color: #8d8d8f;
}

.hero {
  min-height: 179px;
  padding-top: 25px;
  text-align: center;
  background: linear-gradient(180deg, #e3e7eb 0%, #f4f6f8 100%);
}

.hero h1 {
  margin: 0 auto;
  max-width: 1180px;
  color: var(--blue);
  font-size: 35px;
  line-height: 1.17;
  font-weight: 800;
  transform: scaleX(0.94);
}

.progress {
  --dot-size: 25px;
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 394px;
  margin: 25px auto 0;
  padding: 0;
  list-style: none;
}

.progress::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 12px;
  right: 12px;
  height: 6px;
  background: var(--line);
}

.step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #9b9ca0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
}

.dot {
  position: relative;
  z-index: 1;
  width: var(--dot-size);
  height: var(--dot-size);
  border-radius: 50%;
  border: 4px solid #c8c9cc;
  background: #a8a8ab;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.75);
}

.active {
  color: var(--orange);
}

.active .dot {
  border-color: #9e9fa2;
  background: var(--orange);
}

.form-section {
  display: flex;
  justify-content: center;
  padding: 7px 20px 0;
}

.zip-card {
  width: min(628px, 100%);
  min-height: 336px;
  padding: 43px 22px 54px;
  text-align: center;
  background: #fff;
  box-shadow: 0 0 26px rgba(18, 58, 99, 0.16);
}

.zip-card h2 {
  margin: 0 0 16px;
  font-size: 31px;
  line-height: 1.18;
  font-weight: 800;
}

.input-wrap {
  min-height: 92px;
}

.zip-card input {
  width: 100%;
  height: 64px;
  padding: 0 20px;
  border: 1px solid var(--invalid);
  border-radius: 4px;
  outline: none;
  color: #222;
  font: 500 20px/1 "Montserrat", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  text-align: center;
}

.zip-card input::placeholder {
  color: #a9a9ad;
  opacity: 1;
}

.error-message {
  margin: 8px 0 0;
  color: var(--invalid);
  font-size: 15px;
  font-style: italic;
  font-weight: 500;
  line-height: 1;
}

.step-counter {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.zip-card.is-clean input {
  border-color: #7fc8d9;
}

.zip-card.is-clean .error-message,
.step-card.is-clean .error-message,
.input-wrap:not(.has-error) .error-message {
  visibility: hidden;
}

.input-wrap.has-error .error-message,
.zip-card.is-error .error-message,
.step-card.is-error .error-message {
  visibility: visible;
}

.zip-card button {
  width: 260px;
  height: 55px;
  margin-top: 18px;
  border: 0;
  border-radius: 5px;
  background: var(--orange);
  color: #fff;
  cursor: pointer;
  font: 800 22px/1 "Montserrat", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
}

.benefits {
  text-align: center;
  padding: 44px 20px 0;
}

.notice {
  max-width: 650px;
  margin: 0 auto;
  color: #60616b;
  font-size: 16px;
  line-height: 1.22;
  font-weight: 400;
}

.benefit-list {
  margin: 34px auto 0;
  width: 470px;
  max-width: 100%;
  text-align: left;
}

.benefit-list h2 {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 24px;
  line-height: 1.1;
  font-weight: 800;
  text-align: center;
}

.benefit-list ul {
  margin: 0;
  padding-left: 35px;
  color: #71717a;
  font-size: 16px;
  line-height: 1.28;
  font-weight: 400;
}

.learn-more {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  margin-top: 46px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--blue);
  text-decoration: none;
  cursor: pointer;
  font-size: 32px;
  line-height: 1.1;
  font-weight: 400;
}

.learn-more svg {
  width: 37px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3px;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 160ms ease;
}

body.learn-open .learn-more svg {
  transform: rotate(180deg);
}

.replacement-guide {
  width: min(1600px, calc(100% - 320px));
  margin: 118px auto 0;
  color: #111;
  font-family: Arial, Helvetica, sans-serif;
}

.replacement-guide h2 {
  margin: 0 0 33px;
  font-size: 35px;
  line-height: 1.1;
  font-weight: 800;
}

.replacement-guide article {
  margin: 0 0 56px;
}

.replacement-guide h3 {
  margin: 0 0 17px;
  color: var(--blue);
  font-size: 21px;
  line-height: 1.2;
  font-weight: 800;
  text-decoration: underline;
}

.replacement-guide p,
.replacement-guide li {
  font-size: 18px;
  line-height: 1.45;
  font-weight: 400;
}

.replacement-guide p {
  margin: 0 0 24px;
}

.replacement-guide ol {
  margin: 0;
  padding-left: 28px;
}

.replacement-guide ul {
  margin: 8px 0 0;
  padding-left: 27px;
}

.replacement-guide li {
  margin: 0 0 22px;
}

.cost-grid {
  display: grid;
  grid-template-columns: minmax(0, 1020px) 379px;
  column-gap: 100px;
  row-gap: 78px;
  align-items: center;
  margin: 86px 0 39px;
}

.cost-grid p {
  margin: 0;
}

.cost-grid img {
  display: block;
  width: 379px;
  height: 246px;
  object-fit: cover;
}

.calculator-link {
  display: inline-block;
  margin: 18px 0 27px;
  color: #4c46ca;
  font-size: 18px;
  font-weight: 700;
  text-decoration: underline;
}

body.learn-open .disclosures {
  margin-top: 95px;
  border-top: 1px solid #bdbdbd;
  padding-top: 62px;
}

.complete {
  color: #8f9398;
}

.complete .dot {
  border-color: #9da1a5;
  background: #9da1a5;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.72);
}

body.is-funnel-step {
  background: #f4f8fa;
}

body.is-funnel-step .benefits,
body.is-funnel-step .replacement-guide {
  display: none;
}

body.is-funnel-step .hero {
  min-height: 106px;
  padding-top: 18px;
  background: linear-gradient(180deg, #dfe3e7 0%, #f2f5f7 100%);
}

body.is-funnel-step .hero h1 {
  display: none;
}

body.is-funnel-step .progress {
  width: 390px;
  margin-top: 0;
}

body.is-funnel-step .progress::before {
  top: 16px;
  left: 16px;
  right: 16px;
  height: 7px;
}

body.is-funnel-step .dot {
  --dot-size: 32px;
  border-width: 4px;
}

body.is-funnel-step .step {
  gap: 12px;
  font-size: 17px;
}

body.is-funnel-step .active .dot {
  border-color: #9d9fa3;
  background: var(--orange);
}

body.is-funnel-step .form-section {
  padding: 0 24px 40px;
}

.step-card {
  width: min(600px, calc(100% - 48px));
  min-height: 430px;
  margin: 0 auto;
  padding: 43px 20px 56px;
  text-align: center;
  background: #fff;
  box-shadow: 0 0 28px rgba(18, 58, 99, 0.12);
}

.step-card.tall-card {
  min-height: 760px;
}

.step-card h2 {
  width: min(560px, 100%);
  margin: 0 auto 20px;
  color: #030303;
  font-size: 29px;
  line-height: 1.14;
  font-weight: 800;
}

.question-subtitle {
  width: min(560px, 100%);
  margin: -10px auto 26px;
  color: #111;
  font-size: 24px;
  line-height: 1.22;
  font-weight: 400;
}

.choice-list {
  display: grid;
  gap: 15px;
  width: min(560px, 100%);
  margin: 0 auto;
}

.choice-option,
.icon-choice {
  min-height: 60px;
  border: 2px solid #cfcfcf;
  border-radius: 5px;
  background: #fff;
  color: var(--blue);
  cursor: pointer;
  font: 400 19px/1.15 "Montserrat", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  text-align: center;
}

.choice-option.selected,
.icon-choice.selected {
  border-color: var(--orange);
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  width: min(560px, 100%);
  margin: 0 auto;
}

.icon-choice {
  display: flex;
  min-height: 120px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  padding: 10px 8px 9px;
  color: var(--blue);
  font-size: 14px;
  white-space: nowrap;
}

.icon-choice svg {
  width: 83px;
  height: 66px;
  color: #086b86;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-card .input-wrap {
  width: min(560px, 100%);
  min-height: 90px;
  margin: 0 auto;
}

.step-card input,
.select-field {
  width: 100%;
  height: 60px;
  padding: 0 22px;
  border: 1px solid #08a9ed;
  border-radius: 5px;
  outline: none;
  background: #fff;
  color: #111;
  font: 400 20px/1 "Montserrat", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  text-align: center;
}

.step-card input::placeholder {
  color: #c5c5c7;
  opacity: 1;
}

.select-field {
  display: block;
  width: min(560px, 100%);
  margin: 0 auto 42px;
  border: 2px solid #222;
  color: #111;
  text-align-last: center;
}

.field-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 13px;
  color: #2f405b;
  font-size: 16px;
  line-height: 1.1;
}

.field-meta a,
.field-meta button,
.back-button {
  color: #168fd7;
  text-decoration: none;
}

.field-meta button {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.next-button {
  display: block;
  width: 250px;
  height: 52px;
  margin: 31px auto 0;
  border: 0;
  border-radius: 6px;
  background: var(--orange);
  color: #fff;
  cursor: pointer;
  font: 800 21px/1 "Montserrat", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
}

.back-button {
  display: block;
  margin: 30px auto 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: 400 16px/1 "Montserrat", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
}

.step-homeType .next-button {
  margin-top: 38px;
}

.step-homeValue {
  padding-top: 56px;
}

.step-homeValue .next-button {
  margin-top: 0;
}

.step-projectType h2,
.step-windowCount h2,
.step-credit h2,
.step-veteran h2 {
  max-width: 560px;
}

.step-windowCount .choice-list,
.step-credit .choice-list,
.step-age .choice-list {
  gap: 15px;
}

.step-windowCount .choice-option,
.step-credit .choice-option,
.step-age .choice-option {
  min-height: 61px;
}

.step-address h2 {
  margin-bottom: 4px;
}

.step-address .question-subtitle {
  margin: 0 auto 38px;
}

.step-name .input-wrap {
  margin-bottom: 29px;
}

.step-email .next-button,
.step-name .next-button {
  margin-top: 24px;
}

.step-phone {
  min-height: 715px;
  padding-top: 53px;
  text-align: left;
}

.step-phone h2,
.step-phone .question-subtitle,
.step-phone .input-wrap,
.step-phone .next-button,
.step-phone .back-button {
  text-align: center;
}

.step-phone h2 {
  margin-bottom: 8px;
}

.step-phone .question-subtitle {
  margin: 0 auto 28px;
}

.step-phone .input-wrap {
  min-height: 60px;
}

.step-phone .next-button {
  width: 300px;
  height: 52px;
  margin-top: 31px;
  font-size: 32px;
  font-weight: 400;
}

.submit-disclosure {
  width: min(560px, 100%);
  margin: 45px auto 0;
  color: #777;
  font-size: 16px;
  line-height: 1.48;
  font-weight: 400;
}

.terminal-card {
  width: min(900px, calc(100% - 48px));
  min-height: 0;
  margin: 0 auto;
  padding: 26px 20px;
  background: transparent;
  box-shadow: none;
  text-align: left;
  font-family: Arial, Helvetica, sans-serif;
}

.terminal-card p {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.35;
}

.terminal-card .rates-title {
  font-size: 14px;
}

body.is-preparing-result {
  background: #fff;
}

body.is-preparing-result .brand-header,
body.is-preparing-result .hero,
body.is-preparing-result .benefits,
body.is-preparing-result .replacement-guide,
body.is-preparing-result .disclosures {
  display: none;
}

body.is-preparing-result .form-section {
  display: block;
  padding: 50px 20px 0;
}

.preparing-card {
  width: 100%;
  max-width: none;
  min-height: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.preparing-screen {
  width: min(680px, calc(100vw - 42px));
  margin: 0 auto;
  color: #0f4288;
  font-family: "Montserrat", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
}

.preparing-photo {
  display: block;
  width: 500px;
  max-width: 100%;
  height: 500px;
  margin: 0 auto 31px;
  border-radius: 8px;
  object-fit: cover;
}

.preparing-screen h1 {
  margin: 0 0 35px;
  color: #0f4288;
  font-size: 43px;
  line-height: 1.08;
  font-weight: 800;
  text-align: left;
  white-space: nowrap;
}

.result-summary {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  row-gap: 26px;
  column-gap: 22px;
  align-items: center;
  width: 520px;
  max-width: 100%;
  margin: 0 0 42px 40px;
}

.summary-icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 2px solid #0f4288;
  border-radius: 50%;
  color: #0f4288;
}

.summary-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.summary-icon:first-child svg {
  fill: currentColor;
  stroke: none;
}

.result-summary span {
  display: block;
  margin-bottom: 3px;
  color: #a0a0a5;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 400;
}

.result-summary strong {
  display: block;
  color: #0f4288;
  font-size: 27px;
  line-height: 1.08;
  font-weight: 800;
}

.loading-rail {
  display: grid;
  grid-template-columns: repeat(5, 72px);
  gap: 10px;
  width: max-content;
  max-width: 100%;
  margin: 0 auto 24px;
}

.loading-rail span {
  display: block;
  height: 13px;
  border-radius: 999px;
  background: #d0d0d0;
}

.loading-rail span:nth-child(-n + 4) {
  background: #123f86;
}

.loading-rail span:nth-child(4) {
  animation: pulse-segment 900ms ease-in-out infinite alternate;
}

.preparing-note {
  margin: 0;
  color: #b7b7bb;
  font-size: 31px;
  line-height: 1.18;
  font-weight: 400;
  text-align: center;
}

@keyframes pulse-segment {
  from {
    opacity: 1;
  }

  to {
    opacity: 0.45;
  }
}

body.is-terminal-result .brand-header,
body.is-terminal-result .hero,
body.is-terminal-result .disclosures {
  display: none;
}

body.is-terminal-result .form-section {
  display: block;
  padding: 0;
}

body.is-terminal-result {
  background: #fff;
}

body.is-funnel-step .disclosures {
  max-width: 960px;
  margin-top: 275px;
  padding-bottom: 46px;
}

.disclosures {
  max-width: 1225px;
  margin: 576px auto 0;
  padding: 0 28px 54px;
  text-align: center;
}

.disclosures h2 {
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.15;
  font-weight: 800;
}

.disclosures p {
  margin: 0 auto 24px;
  color: #000;
  font-size: 16px;
  line-height: 1.19;
  font-weight: 500;
}

.legal-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 4px;
}

.legal-links a {
  padding: 0 16px;
  border-right: 1px solid #222;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
}

.legal-links a:last-child {
  border-right: 0;
}

@media (max-width: 700px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  .brand-header {
    display: none;
  }

  .hero {
    min-height: 196px;
    padding: 22px 22px 0;
  }

  .hero h1 {
    max-width: 510px;
    font-size: 27px;
    line-height: 1.15;
  }

  .progress {
    --dot-size: 25px;
    width: min(438px, calc(100vw - 82px));
    margin-top: 34px;
  }

  .progress::before {
    top: 11px;
    height: 6px;
  }

  .step .label {
    display: none;
  }

  .step:first-child .label {
    display: block;
    align-self: center;
    margin-left: 0;
    margin-top: -1px;
    font-size: 15px;
  }

  .form-section {
    display: block;
    padding: 21px 21px 0;
  }

  body.is-funnel-step .hero {
    min-height: 112px;
    padding: 13px 12px 0;
  }

  body.is-funnel-step .progress,
  .progress {
    width: min(438px, calc(100vw - 82px));
  }

  body.is-funnel-step .progress::before {
    top: 14px;
    left: 14px;
    right: 14px;
    height: 6px;
  }

  body.is-funnel-step .dot {
    --dot-size: 29px;
  }

  body.is-funnel-step .step {
    gap: 9px;
    font-size: 12px;
  }

  body.is-funnel-step .step .label {
    display: block;
    max-width: 78px;
    color: inherit;
    font-size: 12px;
    line-height: 1.08;
    text-align: center;
  }

  body.is-funnel-step .step:first-child .label {
    align-self: center;
    margin: 0;
    font-size: 12px;
  }

  body.is-funnel-step .form-section {
    padding: 0 12px 34px;
  }

  .zip-card {
    width: 100%;
    min-height: 241px;
    padding: 0 0 28px;
    box-shadow: none;
  }

  .zip-card h2 {
    margin-bottom: 16px;
    font-size: 25px;
  }

  .input-wrap {
    min-height: 74px;
  }

  .zip-card input {
    height: 65px;
    border-color: #7fc8d9;
    font-size: 20px;
  }

  .zip-card.is-error input {
    border-color: var(--invalid);
  }

  .zip-card button {
    width: min(271px, 100%);
    height: 56px;
    margin-top: 8px;
    font-size: 22px;
  }

  .step-card {
    width: 100%;
    min-height: 0;
    padding: 34px 20px 38px;
    box-shadow: 0 0 22px rgba(18, 58, 99, 0.12);
  }

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

  .step-card h2 {
    margin-bottom: 18px;
    font-size: 25px;
    line-height: 1.16;
  }

  .question-subtitle {
    margin: -8px auto 22px;
    font-size: 19px;
    line-height: 1.22;
  }

  .choice-list {
    gap: 13px;
  }

  .choice-option,
  .icon-choice {
    min-height: 58px;
    padding: 8px 10px;
    font-size: 18px;
    line-height: 1.18;
  }

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

  .icon-choice {
    min-height: 116px;
    justify-content: center;
    font-size: 14px;
    white-space: normal;
  }

  .icon-choice svg {
    width: 78px;
    height: 62px;
  }

  .step-card .input-wrap {
    min-height: 82px;
  }

  .step-card input,
  .select-field {
    height: 58px;
    padding: 0 14px;
    font-size: 18px;
  }

  .select-field {
    margin-bottom: 31px;
    text-align-last: center;
  }

  .field-meta {
    gap: 14px;
    font-size: 15px;
  }

  .next-button,
  .step-phone .next-button {
    width: min(313px, 100%);
    height: 55px;
    margin-top: 24px;
    font-size: 22px;
    font-weight: 800;
  }

  .back-button {
    margin-top: 24px;
    font-size: 17px;
  }

  .step-homeType .next-button {
    margin-top: 28px;
  }

  .step-homeValue {
    padding-top: 38px;
  }

  .step-projectType h2,
  .step-windowCount h2,
  .step-credit h2,
  .step-veteran h2,
  .step-age h2 {
    font-size: 24px;
  }

  .step-windowCount .choice-option,
  .step-credit .choice-option,
  .step-age .choice-option {
    min-height: 58px;
  }

  .step-address .question-subtitle {
    margin-bottom: 28px;
  }

  .step-name .input-wrap {
    margin-bottom: 19px;
  }

  .step-phone {
    min-height: 0;
    padding-top: 34px;
  }

  .step-phone .input-wrap {
    min-height: 82px;
  }

  .submit-disclosure {
    margin-top: 35px;
    font-size: 14px;
    line-height: 1.45;
  }

  body.is-preparing-result .form-section {
    padding: 28px 15px 0;
  }

  .preparing-screen {
    width: 100%;
  }

  .preparing-photo {
    width: min(500px, 100%);
    height: auto;
    aspect-ratio: 1 / 1;
    margin-bottom: 26px;
  }

  .preparing-screen h1 {
    margin-bottom: 28px;
    font-size: 32px;
    line-height: 1.12;
    text-align: center;
    white-space: normal;
  }

  .result-summary {
    grid-template-columns: 52px minmax(0, 1fr);
    row-gap: 22px;
    column-gap: 16px;
    margin: 0 auto 36px;
  }

  .summary-icon {
    width: 52px;
    height: 52px;
  }

  .result-summary span {
    font-size: 16px;
  }

  .result-summary strong {
    font-size: 22px;
  }

  .loading-rail {
    grid-template-columns: repeat(5, minmax(35px, 1fr));
    gap: 7px;
    width: min(100%, 360px);
  }

  .preparing-note {
    font-size: 25px;
  }

  .benefits {
    padding: 37px 27px 0;
    box-shadow: 0 -12px 19px rgba(18, 58, 99, 0.08);
  }

  .notice {
    max-width: 520px;
    font-size: 17px;
    line-height: 1.18;
  }

  .benefit-list {
    width: 450px;
    margin-top: 34px;
  }

  .benefit-list h2 {
    margin-bottom: 14px;
    font-size: 20px;
  }

  .benefit-list ul {
    padding-left: 46px;
    font-size: 16px;
    line-height: 1.22;
  }

  .learn-more {
    margin-top: 70px;
    gap: 13px;
    font-size: 30px;
  }

  .learn-more span {
    white-space: nowrap;
  }

  .learn-more svg {
    width: 36px;
    height: 23px;
  }

  .replacement-guide {
    width: calc(100% - 42px);
    margin-top: 54px;
  }

  .replacement-guide h2 {
    margin-bottom: 26px;
    font-size: 24px;
  }

  .replacement-guide h3 {
    font-size: 16px;
  }

  .replacement-guide p,
  .replacement-guide li,
  .calculator-link {
    font-size: 12px;
    line-height: 1.25;
  }

  .cost-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 30px;
  }

  .cost-grid img {
    width: min(100%, 379px);
    height: auto;
    justify-self: center;
  }

  body.learn-open .disclosures {
    margin-top: 45px;
    padding-top: 40px;
  }

  .disclosures {
    width: 100%;
    margin-top: 543px;
    padding: 0 26px 50px;
  }

  .disclosures h2 {
    margin-bottom: 25px;
    font-size: 14px;
  }

  .disclosures p {
    max-width: 495px;
    margin-bottom: 25px;
    font-size: 17px;
    line-height: 1.18;
  }

  .legal-links {
    display: grid;
    grid-template-columns: auto auto;
    row-gap: 22px;
  }

  .legal-links a {
    padding: 0 14px;
    font-size: 14px;
  }

  .legal-links a:nth-child(2) {
    border-right: 0;
  }

  .legal-links a:nth-child(3) {
    justify-self: end;
  }

  .legal-links a:nth-child(4) {
    justify-self: start;
  }
}

@media (min-width: 701px) {
  .zip-card.is-clean-desktop input {
    border-color: #7fc8d9;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 25px;
  }

  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .progress,
  body.is-funnel-step .progress {
    width: calc(100vw - 58px);
  }

  body.is-funnel-step .step .label {
    max-width: 68px;
    font-size: 10px;
  }

  .form-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .zip-card h2,
  .step-card h2 {
    font-size: 23px;
  }

  .zip-card input,
  .step-card input,
  .select-field {
    font-size: 17px;
  }

  .question-subtitle {
    font-size: 18px;
  }

  .choice-option,
  .icon-choice {
    font-size: 16px;
  }

  .icon-choice {
    font-size: 14px;
  }

  .icon-choice svg {
    width: 68px;
    height: 56px;
  }

  .learn-more {
    width: 100%;
    font-size: 24px;
  }

  .learn-more span {
    white-space: normal;
  }

  .preparing-screen h1 {
    white-space: normal;
  }

  .legal-links a {
    font-size: 13px;
    padding: 0 10px;
  }
}
