/* ======================================== */
/* ROOT VARIABLES */
/* ======================================== */

:root {
  --qw-navy: #101f30;
  --qw-white: #ffffff;
  --qw-blue: #0069ba;
  --qw-darkenblue: #003f70;
  --qw-gray: #7d7d7d;
  --qw-dark-gray: #454545;
  --qw-yellow: #fec10e;
  --qw-light-blue: #f1f8ff;
  --qw-lighter-blue: #97cef7;
  --qw-border: #7d7d7d;
  --qw-error: #b42318;
  --qw-error-bg: #fff4f2;
  --qw-soft-blue: #eef6fd;
  --qw-soft-yellow: #ffeeb5;
  --qw-soft-gray: #f3f4f5;
  --qw-line: #d8e0e8;
  --qw-heading-font: "dm-serif-text", "Times New Roman", serif;
  --qw-shadow: 0 1px 1px hsl(0deg 0% 0% / 0.05),
      0 2px 2px hsl(0deg 0% 0% / 0.05),
      0 4px 4px hsl(0deg 0% 0% / 0.05),
      0 8px 8px hsl(0deg 0% 0% / 0.05),
      0 16px 16px hsl(0deg 0% 0% / 0.05);
}

/* ======================================== */
/* GLOBAL RESET */
/* ======================================== */

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

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

body {
  color: var(--qw-navy);
  font-family: "Lato", Arial, Helvetica, sans-serif;
  line-height: 1.4;
}

body.qw-modal-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

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

/* ======================================== */
/* LANDING PAGE */
/* ======================================== */

.qw-page {
  background: var(--qw-white);
}

.qw-container {
  width: min(1200px, calc(100% - 128px));
  margin: 0 auto;
}

.qw-site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  height: 70px;
  background: var(--qw-navy);
}

.qw-site-header__inner {
  display: flex;
  width: 100%;
  height: 70px;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  margin: 0 auto;
}

.qw-logo-link {
  display: inline-flex;
  align-items: center;
}

.qw-logo {
  width: auto;
  height: 40px;
}

.qw-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.qw-brand-lockup__separator {
  flex: 0 0 auto;
  color: var(--qw-white);
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
}

.qw-partner-logo {
  display: block;
  width: auto;
  height: 35px;
  object-fit: contain;
}

.qw-nav-button {
  display: inline-flex;
  height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 2px solid var(--qw-white);
  border-radius: 999px;
  background: transparent;
  color: var(--qw-white);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.qw-nav-button:hover {
  background-color: var(--qw-blue);
  transform: translateY(-1px);
}

.qw-hero {
  background: var(--qw-blue);
  color: var(--qw-white);
}

.qw-hero__inner {
  width: calc(100% - 128px);
  max-width: 1312px;
  padding: 100px 0 100px;
}

.qw-site-header__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.qw-site-header__phone {
  color: var(--qw-white);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-decoration: none;
}

.qw-site-header__phone:hover {
  color: var(--qw-light-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.qw-site-header__phone-icon {
  display: none;
}

.qw-hero h1,
.qw-section-heading h2,
.qw-trust-card h2,
.qw-faq h2 {
  color: var(--qw-navy);
  font-family: var(--qw-heading-font);
  font-weight: 500;
  letter-spacing: 0;
}

.qw-hero h1 {
  max-width: 900px;
  margin: 0 0 10px;
  color: var(--qw-white);
  font-size: 54px;
  line-height: 62px;
}

.qw-hero__break {
  display: none;
}

.qw-hero__accent {
  position: relative;
  display: inline-block;
  color: inherit;
}

.qw-hero__accent svg {
  position: absolute;
  left: 0.02em;
  bottom: -0.15em;
  width: 94%;
  height: auto;
  color: var(--qw-white);
  pointer-events: none;
}

.qw-hero p {
  max-width: 780px;
  margin: 0 0 26px;
  color: var(--qw-white);
  font-size: 24px;
  line-height: 32px;
}

.qw-hero h6 {
  max-width: 780px;
  margin: 0 0 26px;
  color: var(--qw-white);
  font-size: 18px;
  line-height: 26px;
}

/* ======================================== */
/* BUTTONS */
/* ======================================== */

.qw-hero-button,
.qw-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease,
    transform 0.2s ease;
}

.qw-hero-button {
  min-height: 36px;
  padding: 12px 24px;
  background: var(--qw-yellow);
  color: var(--qw-navy);
  font-size: 16px;
  line-height: 24px;
}

.qw-button {
  gap: 18px;
  min-height: 48px;
  font-size: 14px;
}

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

.qw-button span {
  position: relative;
  top: -1px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.qw-button--primary {
  min-width: 152px;
  padding: 12px 28px;
  background: var(--qw-yellow);
  color: var(--qw-navy);
}

.qw-button--primary:hover,
.qw-hero-button:hover {
  background-color: #FFD268;
}

.qw-button--secondary {
  min-width: 110px;
  padding: 10px 24px;
  border: 2px solid var(--qw-dark-gray);
  background: var(--qw-white);
  color: var(--qw-dark-gray);
}

.qw-button--secondary:hover {
  background: #f4f4f4;
}

/* ======================================== */
/* TRUST SECTION */
/* ======================================== */

.qw-trust {
  position: relative;
  margin-top: -60px;
  padding-bottom: 30px;
}

.qw-trust-card {
  padding: 32px 48px;
  border-radius: 24px;
  background: var(--qw-soft-blue);
}

.qw-trust-card h2 {
  margin: 0 0 28px;
  font-size: 34px;
  line-height: 41px;
  text-align: left;
}

.qw-trust-card__body {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.qw-trust-card__media img {
  width: 280px;
  height: 230px;
  object-fit: contain;
}

.qw-trust-card__content {
  display: grid;
  gap: 30px;
}

.qw-trust-card__content p {
  margin: 0;
  color: var(--qw-navy);
  font-size: 18px;
  line-height: 28px;
}

.qw-stat-card {
  width: min(100%, 310px);
  padding: 22px 24px 19px;
  border-radius: 8px;
  background: var(--qw-white);
  box-shadow: 0 3px 8px rgba(16, 31, 48, 0.2);
  color: var(--qw-darkenblue);
}

.qw-stat-card strong {
  display: block;
  font-family: var(--qw-heading-font);
  font-size: 50px;
  line-height: 0.95;
  color: var(--qw-darkenblue);
}

.qw-stat-card span {
  display: block;
  margin-top: 7px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: var(--qw-darkenblue);
}

/* ======================================== */
/* HOW IT WORKS */
/* ======================================== */

.qw-how {
  padding: 60px 0 60px;
  background-color: var(--qw-light-blue)
}

.qw-section-heading {
  margin-bottom: 27px;
}

.qw-section-heading--center {
  text-align: center;
}

.qw-section-heading h2,
.qw-faq h2 {
  margin: 0 0 9px;
  font-size: 40px;
  line-height: 44px;
}

.qw-section-heading p {
  margin: 0;
  color: var(--qw-dark-gray);
  font-size: 18px;
  line-height: 26px;
}

.qw-how-list {
  display: grid;
  max-width: 672px;
  margin: 0 auto;
  gap: 8px;
}

.qw-how-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 100px;
  align-items: center;
}

.qw-how-item--text-right {
  grid-template-columns: 220px minmax(0, 1fr);
}

.qw-how-item__copy h3 {
  margin: 0 0 9px;
  color: var(--qw-navy);
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.qw-how-item__copy p {
  margin: 0;
  color: var(--qw-dark-gray);
  font-size: 18px;
  line-height: 28px;
}

.qw-how-item__art {
  position: relative;
  display: grid;
  width: 250px;
  height: 250px;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.qw-how-item__art::before {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  content: "";
  transition:
    box-shadow 0.28s ease,
    transform 0.55s ease;
}

.qw-how-item__art--blue::before {
  background: #cbe9ff;
}

.qw-how-item__art--yellow::before {
  background: var(--qw-soft-yellow);
}

.qw-how-item__art--pale::before {
  background: var(--qw-lighter-blue);
}

.qw-how-item__art img {
  position: relative;
  z-index: 1;
  width: 82%;
  height: 82%;
  object-fit: contain;
}

.qw-motion-ready .qw-how-item__art {
  opacity: 0;
  transform: translateX(-36px);
}

.qw-motion-ready .qw-how-item:nth-child(even) .qw-how-item__art {
  transform: translateX(36px);
}

.qw-motion-ready .qw-how-item.is-visible .qw-how-item__art {
  opacity: 1;
  transform: translateX(0);
}

.qw-motion-ready .qw-how-item:nth-child(2) .qw-how-item__art {
  transition-delay: 0.08s;
}

.qw-motion-ready .qw-how-item:nth-child(3) .qw-how-item__art {
  transition-delay: 0.16s;
}

/* ======================================== */
/* PROSPECT SECTION */
/* ======================================== */

.qw-prospect {
  padding: 30px 0 60px;
}

.qw-value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin: 28px 0 17px;
}

.qw-value-card {
  min-height: 100px;
  padding: 15px 17px 14px;
  border: 2px solid var(--qw-lighter-blue);
  border-radius: 8px;
  background: var(--qw-white);
  box-shadow: 0 2px 5px rgba(16, 31, 48, 0.16);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.qw-value-card:hover {
  border-color: #78c3ff;
  box-shadow: 0 10px 22px rgba(16, 31, 48, 0.15);
  transform: translateY(-3px);
}

.qw-value-card h3 {
  display: inline-flex;
  min-height: 21px;
  align-items: center;
  margin: 0 0 10px;
  padding: 2px 10px;
  border-radius: 999px;
  background: var(--qw-blue);
  color: var(--qw-white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 18px;
  text-transform: uppercase;
}

.qw-value-card:nth-child(1) h3 {
  background: var(--qw-blue);
}

.qw-value-card:nth-child(2) h3 {
  background: #005495;
}

.qw-value-card:nth-child(3) h3 {
  background: var(--qw-darkenblue);
}

.qw-value-card:nth-child(4) h3 {
  background: #002a4a;
}

.qw-value-card p,
.qw-prospect__copy {
  margin: 0;
  color: var(--qw-dark-gray);
  font-size: 14px;
  line-height: 20px;
}

.qw-prospect__copy {
  margin-bottom: 22px;
  font-size: 16px;
}

/* ======================================== */
/* PRODUCTS + FAQ + FOOTER */
/* ======================================== */

.qw-home-leads {
  padding: 30px 0 30px;
}

.qw-home-leads__inner {
  max-width: 720px;
  text-align: center;
}

.qw-home-leads__eyebrow {
  min-width: 0;
  min-height: auto;
  margin: 0 0 6px;
  padding: 0;
  background: transparent;
  background-color: transparent;
  color: var(--qw-blue);
  font-size: 11px;
  line-height: 16px;
  text-transform: uppercase;
}

.qw-home-leads h2 {
  max-width: 620px;
  margin: 0 auto 27px;
  color: var(--qw-navy);
  font-family: var(--qw-heading-font);
  font-size: 38px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 40px;
}

.qw-home-leads__content {
  display: grid;
  grid-template-columns: minmax(0, 290px) minmax(0, 380px);
  gap: 42px;
  align-items: start;
  text-align: left;
}

.qw-home-leads__media {
  display: flex;
  justify-content: center;
}

.qw-home-leads__media img {
  width: 290px;
  height: auto;
}

.qw-home-leads__details {
  display: grid;
  gap: 17px;
}

.qw-home-leads__tiles {
  display: grid;
  gap: 8px;
}

.qw-home-leads__tile {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  min-height: 78px;
  padding: 10px 14px;
  border: 1px solid var(--qw-line);
  border-radius: 8px;
  background: var(--qw-white);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.qw-home-leads__tile:hover {
  border-color: #78c3ff;
  box-shadow: 0 10px 22px rgba(16, 31, 48, 0.15);
  transform: translateY(-3px);
}

.qw-home-leads__icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.qw-home-leads__tile h3 {
  margin: 0 0 2px;
  color: var(--qw-navy);
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
}

.qw-home-leads__tile p {
  margin: 0;
  color: var(--qw-dark-gray);
  font-size: 14px;
  line-height: 19px;
}

.qw-home-leads__button {
  width: calc(100% - 58px);
  min-height: 40px;
  margin: 0 auto;
  padding: 8px 24px;
  background: var(--qw-blue);
  color: var(--qw-white);
  font-size: 14px;
  line-height: 20px;
}

.qw-home-leads__button:hover {
  background: var(--qw-darkenblue);
}

.qw-products {
  padding: 60px 0 30px;
  background-color: var(--qw-white);
  background-image: radial-gradient(rgba(0, 105, 186, 0.12) 1px, transparent 1px);
  background-position: 0 0;
  background-size: 16px 16px;
}

.qw-products-panel {
  padding: 34px 32px 38px;
  border-radius: 16px;
  background: #004a7f;
}

.qw-products__eyebrow {
  display: inline-flex;
  min-width: 146px;
  min-height: 24px;
  align-items: center;
  justify-content: center;
  margin: 0 0 20px;
  padding: 3px 18px;
  border-radius: 999px;
  background: #cbe9ff;
  color: var(--qw-navy);
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

.qw-products__heading {
  max-width: 100%;
  margin-bottom: 24px;
}

.qw-products__heading h2,
.qw-products__heading p {
  color: var(--qw-white);
}

.qw-products__heading h2 {
  font-size: 36px;
  line-height: 42px;
}

.qw-products-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
}

.qw-product-card {
  display: flex;
  min-height: 88px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  gap: 9px;
  padding: 16px 10px;
  border-radius: 8px;
  background: var(--qw-white);
  box-shadow: 0 3px 8px rgba(16, 31, 48, 0.2);
  text-align: center;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.qw-product-card:hover {
  background-color: var(--qw-light-blue);
  border-color: #78c3ff;
  box-shadow: 0 10px 22px rgba(16, 31, 48, 0.15);
  transform: translateY(-3px);
}

.qw-product-card__icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.qw-product-card h3 {
  margin: 0;
  color: var(--qw-navy);
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
}

.qw-faq {
  padding: 30px 0 60px;
  background-color: var(--qw-white);
  background-image: radial-gradient(rgba(0, 105, 186, 0.12) 1px, transparent 1px);
  background-position: 0 0;
  background-size: 16px 16px;
}

.qw-faq-list {
  margin-top: 27px;
}

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

.qw-faq-item:first-child {
  border-top: 0;
}

.qw-faq-item summary {
  position: relative;
  display: block;
  padding: 18px 34px 18px 0;
  color: var(--qw-navy);
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  list-style: none;
}

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

.qw-faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 12px;
  height: 12px;
  border-right: 3px solid var(--qw-blue);
  border-bottom: 3px solid var(--qw-blue);
  content: "";
  transform: translateY(-65%) rotate(45deg);
}

.qw-faq-item[open] summary::after {
  transform: translateY(-30%) rotate(225deg);
}

.qw-faq-item__content {
  max-width: 780px;
  padding: 0 0 19px;
  color: var(--qw-dark-gray);
  font-size: 16px;
  line-height: 24px;
}

.qw-faq-item__content p {
  margin: 0 0 18px;
}

.qw-faq-item__content p:last-child {
  margin-bottom: 0;
}

.qw-site-footer {
  padding: 60px 0 60px;
  background: var(--qw-navy);
  color: var(--qw-white);
}

.qw-site-footer__disclaimer {
  max-width: 850px;
  margin: 0 0 34px;
  color: var(--qw-white);
  font-size: 12px;
  line-height: 24px;
}

.qw-site-footer__links {
  display: flex;
  gap: 24px;
  align-items: center;
  color: var(--qw-white);
  font-size: 12px;
}

.qw-site-footer__links a {
  color: inherit;
}

@media (min-width: 1440px) {

  .qw-home-leads__inner {
    width: min(720px, calc(100% - 240px));
  }

  .qw-prospect .qw-container,
  .qw-faq .qw-container,
  .qw-site-footer .qw-container {
    width: min(1200px, calc(100% - 240px));
  }

  .qw-trust .qw-container {
    width: min(1088px, calc(100% - 128px));
  }

  .qw-trust-card {
    padding: 60px 60px;
  }

  .qw-trust-card h2 {
    margin-bottom: 24px;
  }

  .qw-trust-card__body {
    grid-template-columns: 390px minmax(0, 1fr);
    gap: 88px;
  }

  .qw-trust-card__media img {
    width: 390px;
    height: 330px;
  }

  .qw-how-list {
    max-width: 760px;
    gap: 42px;
  }

  .qw-how-item,
  .qw-how-item--text-right {
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 80px;
  }

  .qw-how-item--text-left .qw-how-item__art {
    order: 1;
  }

  .qw-how-item--text-left .qw-how-item__copy {
    order: 2;
  }

}

/* ======================================== */
/* LANDING RESPONSIVE */
/* ======================================== */

@media (max-width: 991px) {

  .qw-container {
    width: min(648px, calc(100% - 120px));
  }

  .qw-site-header__inner {
    width: 100%;
    height: 70px;
  }

  .qw-logo {
    width: auto;
    height: 30px;
  }

  .qw-brand-lockup {
    gap: 10px;
  }

  .qw-brand-lockup__separator {
    font-size: 20px;
  }

  .qw-partner-logo {
    height: 30px;
    max-width: 120px;
  }

  .qw-hero__inner {
    padding: 60px 0 120px;
  }

  .qw-hero h1 {
    max-width: 620px;
    font-size: 40px;
    line-height: 44px;
  }

  .qw-hero p {
    font-size: 21px;
    line-height: 26px;
  }

  .qw-trust {
    margin-top: -60px;
    padding-bottom: 30px;
  }

  .qw-trust-card {
    padding: 32px;
  }

  .qw-trust-card h2 {
    max-width: 520px;
    margin-bottom: 18px;
    font-size: 34px;
    line-height: 41px;
    
  }

  .qw-trust-card__body {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
  }

  .qw-trust-card__media {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .qw-trust-card__media img {
    width: 300px;
    height: 250px;
  }

  .qw-trust-card__content {
    display: contents;
  }

  .qw-trust-card__content p {
    align-self: center;
    font-size: 18px;
    line-height: 28px;
  }

  .qw-stat-card {
    align-self: center;
    width: 100%;
  }

  .qw-how-list {
    max-width: 648px;
    gap: 16px;
  }

  .qw-how-item {
    grid-template-columns: minmax(0, 1fr) 216px;
    gap: 32px;
  }

  .qw-how-item--text-right {
    grid-template-columns: 216px minmax(0, 1fr);
  }

  .qw-how-item__art {
    width: 216px;
    height: 216px;
  }

  .qw-value-grid {
    gap: 16px;
  }

  .qw-value-card {
    padding: 12px 13px;
  }

  .qw-value-card p {
    font-size: 12px;
    line-height: 16px;
  }

  .qw-home-leads {
    padding: 30px 0 30px;
  }

  .qw-home-leads__inner {
    width: min(720px, calc(100% - 64px));
  }

  .qw-home-leads h2 {
    margin-bottom: 28px;
    font-size: 38px;
    line-height: 40px;
  }

  .qw-home-leads__content {
    grid-template-columns: minmax(0, 290px) minmax(0, 380px);
    gap: 42px;
  }

  .qw-products {
    padding: 60px 0 30px;
  }

  .qw-products .qw-container {
    width: min(760px, calc(100% - 64px));
  }

  .qw-products-panel {
    padding: 32px 28px 34px;
  }

  .qw-products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }

  .qw-product-card {
    min-height: 96px;
  }

  .qw-content-placeholder {
    min-height: 0;
  }

}

@media (max-width: 720px) {

  .qw-container {
    width: calc(100% - 32px);
  }

  .qw-site-header__inner {
    width: 100%;
    height: 70px;
    justify-content: space-between;
    padding: 0 16px;
  }

  .qw-logo {
    width: auto;
    height: 30px;
  }

  .qw-brand-lockup {
    gap: 8px;
  }

  .qw-brand-lockup__separator {
    font-size: 18px;
  }

  .qw-partner-logo {
    height: 30px;
    max-width: 100px;
  }

  .qw-nav-button {
    display: none;
  }

.qw-site-header__actions {
  position: absolute;
  right: 16px;
}

.qw-site-header__phone {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
}

.qw-site-header__phone-number {
  display: none;
}

.qw-site-header__phone-icon {
  display: block;
  width: 28px;
  height: 28px;
}

  .qw-hero__inner {
    padding: 50px 0 100px;
  }

  .qw-hero h1 {
    max-width: 320px;
    margin-bottom: 7px;
    font-size: 42px;
    line-height: 48px;
  }

  .qw-hero__break {
    display: block;
  }

  .qw-hero__accent svg {
    bottom: -0.08em;
  }

  .qw-hero p {
    max-width: 320px;
    margin-bottom: 14px;
    font-size: 18px;
    line-height: 28px;
  }

  .qw-hero-button {
    min-height: 26px;
    padding: 6px 14px;
    font-size: 14px;
    line-height: 20px;
  }

  .qw-trust {
    margin-top: -50px;
    padding-bottom: 25px;
  }

  .qw-trust-card {
    padding: 24px;
    border-radius: 12px;
  }

  .qw-trust-card h2 {
    margin-bottom: 14px;
    font-size: 24px;
    line-height: 30px;
  }

  .qw-trust-card__body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .qw-trust-card__media img {
    width: 240px;
    height: 188px;
  }

  .qw-trust-card__content {
    display: grid;
    gap: 18px;
  }

  .qw-trust-card__content p {
    font-size: 16px;
    line-height: 24px;
  }

  .qw-stat-card {
    width: 100%;
    padding: 15px 16px 14px;
  }

  .qw-stat-card strong {
    font-size: 42px;
    line-height: 48px;
  }

  .qw-stat-card span {
    font-size: 14px;
    line-height: 20px;
  }

  .qw-how {
    padding-bottom: 50px 0;
  }

  .qw-section-heading {
    margin-bottom: 19px;
  }

  .qw-section-heading h2,
  .qw-faq h2 {
    margin-bottom: 6px;
    font-size: 28px;
    line-height: 36px;
  }

  .qw-section-heading p {
    font-size: 16px;
    line-height: 24px;
  }

  .qw-how-list {
    gap: 16px;
  }

  .qw-how-item,
  .qw-how-item--text-right {
    grid-template-columns: minmax(0, 1fr) 122px;
    gap: 14px;
    min-height: 122px;
  }

  .qw-how-item--text-right {
    grid-template-columns: 122px minmax(0, 1fr);
  }

  .qw-how-item__copy h3 {
    margin-bottom: 6px;
    font-size: 18px;
    line-height: 24px;
  }

  .qw-how-item__copy p {
    font-size: 16px;
    line-height: 20px;
  }

  .qw-how-item__art {
    width: 122px;
    height: 122px;
  }

  .qw-prospect {
    padding: 25px 0 50px;
  }

  .qw-value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
    margin: 19px 0 15px;
  }

  .qw-value-card {
    min-height: 112px;
    padding: 11px 12px;
    border-width: 1.5px;
  }

  .qw-value-card h3 {
    min-height: 18px;
    margin-bottom: 7px;
    padding-inline: 8px;
    font-size: 12px;
    line-height: 18px;
  }

  .qw-value-card p,
  .qw-prospect__copy {
    font-size: 12px;
    line-height: 16px;
  }

  .qw-prospect__copy {
    margin-bottom: 15px;
    text-align: center;
  }

  .qw-prospect .qw-hero-button {
    display: flex;
    width: fit-content;
    margin: 0 auto;
  }

  .qw-home-leads {
    padding: 25px 0;
  }

  .qw-home-leads__inner {
    width: calc(100% - 48px);
  }

  .qw-home-leads__eyebrow {
    margin-bottom: 7px;
    font-size: 10px;
    line-height: 14px;
  }

  .qw-home-leads h2 {
    max-width: 300px;
    margin-bottom: 27px;
    font-size: 27px;
    line-height: 32px;
  }

  .qw-home-leads__content {
    grid-template-columns: 1fr;
    gap: 22px;
    text-align: left;
  }

  .qw-home-leads__media img {
    width: min(100%, 274px);
  }

  .qw-home-leads__details {
    gap: 16px;
  }

  .qw-home-leads__tiles {
    gap: 8px;
  }

  .qw-home-leads__tile {
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 8px;
    min-height: 0;
    padding: 9px 12px;
  }

  .qw-home-leads__icon {
    width: 20px;
    height: 20px;
  }

  .qw-home-leads__tile h3 {
    font-size: 14px;
    line-height: 16px;
  }

  .qw-home-leads__tile p {
    font-size: 12px;
    line-height: 14px;
  }

  .qw-home-leads__button {
    width: 100%;
    min-height: 40px;
    font-size: 14px;
    line-height: 20px;
  }

  .qw-home-leads__tile:hover {
    box-shadow: none;
    transform: none;
  }

  .qw-products {
    padding: 50px 0 25px;
  }

  .qw-content-placeholder {
    min-height: 0;
  }

  .qw-products__eyebrow {
    margin-bottom: 16px;
  }

  .qw-products__heading {
    margin-bottom: 18px;
  }

  .qw-products__heading h2 {
    font-size: 28px;
    line-height: 34px;
  }

  .qw-products__heading p {
    font-size: 14px;
    line-height: 22px;
  }

  .qw-products-panel {
    padding: 24px 18px 22px;
    border-radius: 12px;
  }

  .qw-products-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .qw-product-card {
    min-height: 48px;
    flex-direction: row;
    justify-content: flex-start;
    gap: 10px;
    padding: 10px 14px;
    text-align: left;
  }

  .qw-product-card__icon {
    width: 28px;
    height: 28px;
  }

  .qw-product-card h3 {
    font-size: 13px;
    line-height: 18px;
  }

  .qw-faq {
    padding: 25px 0 50px;
  }

  .qw-faq-list {
    margin-top: 17px;
  }

  .qw-faq-item summary {
    padding: 12px 24px 12px 0;
    font-size: 16px;
    line-height: 24px;
  }

  .qw-faq-item summary::after {
    width: 8px;
    height: 8px;
    border-width: 2px;
  }

  .qw-faq-item__content {
    padding-bottom: 13px;
    font-size: 16px;
    line-height: 24px;
  }

  .qw-faq-item__content p {
    margin-bottom: 10px;
  }

  .qw-site-footer {
    padding: 50px 0 50px;
  }

  .qw-site-footer__disclaimer,
  .qw-site-footer__links {
    font-size: 12px;
    line-height: 24px;
  }

  .qw-site-footer__disclaimer {
    margin-bottom: 24px;
  }

  .qw-site-footer__links {
    gap: 16px;
  }

}

@media (prefers-reduced-motion: reduce) {

  .qw-nav-button,
  .qw-hero-button,
  .qw-button,
  .qw-value-card,
  .qw-home-leads__tile,
  .qw-how-item__art,
  .qw-how-item__art::before,
  .qw-how-item__art img {
    transition: none;
  }

  .qw-nav-button:hover,
  .qw-button:hover,
  .qw-hero-button:hover,
  .qw-value-card:hover,
  .qw-home-leads__tile:hover {
    transform: none;
  }

  .qw-motion-ready .qw-how-item__art {
    opacity: 1;
    transform: none;
  }

}

/* ======================================== */
/* MODAL */
/* ======================================== */

.qw-modal[hidden] {
  display: none;
}

.qw-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  overflow-y: auto;
  padding: 64px;
}

.qw-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(16, 31, 48, 0.64);
}

.qw-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100vw - 128px));
  max-height: calc(100vh - 128px);
  overflow-y: auto;
  padding: 40px 64px 48px;
  border-radius: 24px;
  background: var(--qw-white);
  box-shadow: 0 24px 70px rgba(16, 31, 48, 0.32);
}

.qw-modal__close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--qw-gray);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

/* ======================================== */
/* UTILITIES */
/* ======================================== */

.hp-field,
.qw-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
}

/* ======================================== */
/* STEPPER */
/* ======================================== */

.qw-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin: 0 0 34px;
  color: var(--qw-gray);
  font-size: 14px;
}

.qw-stepper__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.qw-stepper__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--qw-gray);
  color: var(--qw-white);
  font-size: 16px;
  font-weight: 700;
}

.qw-stepper__line {
  width: 124px;
  height: 1px;
  background: var(--qw-gray);
}

.qw-stepper__item.is-active {
  color: var(--qw-blue);
}

.qw-stepper__item.is-active .qw-stepper__badge {
  background: var(--qw-blue);
}

.qw-stepper__item.is-complete .qw-stepper__badge {
  background: var(--qw-yellow);
  color: var(--qw-navy);
}

.qw-stepper__check {
  width: 12px;
  height: 12px;
  display: block;
}

/* ======================================== */
/* FORM INTRO */
/* ======================================== */

.qw-form-intro {
  max-width: 940px;
  margin: 0 auto 36px;
  text-align: center;
}

.qw-form-intro h2 {
  margin: 0 0 16px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}

.qw-form-intro p {
  margin: 0;
  color: var(--qw-dark-gray);
  font-size: 18px;
  line-height: 1.35;
}

.qw-step-error {
  max-width: 850px;
  margin: -12px auto 24px;
  padding: 10px 14px;
  border-left: 4px solid var(--qw-error);
  border-radius: 8px;
  background: var(--qw-error-bg);
  color: var(--qw-error);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.qw-step-error[hidden] {
  display: none;
}

/* ======================================== */
/* LEAD TYPES */
/* ======================================== */

.qw-lead-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 850px;
  margin: 0 auto;
  padding: 0;
  border: 0;
}

.qw-lead-card {
  display: block;
  cursor: pointer;
}

.qw-lead-card--wide {
  grid-column: 1 / -1;
}

.qw-lead-card__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.qw-lead-card__body {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 24px;
  border: 2px solid transparent;
  border-radius: 12px;
  background: var(--qw-white);
  box-shadow: var(--qw-shadow);
  color: var(--qw-navy);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.qw-lead-card__body {
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background-color 0.18s ease;
}

.qw-lead-card:hover .qw-lead-card__body {
  transform: translateY(-2px);

  box-shadow:
    0 2px 2px hsl(0deg 0% 0% / 0.075),
    0 3px 3px hsl(0deg 0% 0% / 0.075),
    0 6px 6px hsl(0deg 0% 0% / 0.075),
    0 10px 10px hsl(0deg 0% 0% / 0.075),
    0 18px 18px hsl(0deg 0% 0% / 0.075);

  border-color:
    var(--qw-lighter-blue);
}

.qw-lead-card:not(.qw-lead-card--wide) .qw-lead-card__body {
  flex-direction: column;
}

.qw-lead-card__icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}

.qw-lead-card__input:checked + .qw-lead-card__body,
.qw-lead-card__input:focus-visible + .qw-lead-card__body {
  border-color: var(--qw-blue);
  background: var(--qw-light-blue);
}

.qw-lead-types.is-invalid .qw-lead-card__body {
  border-color: var(--qw-error);
}

/* ======================================== */
/* FORM GRID */
/* ======================================== */

.qw-form-steps {
  position: relative;
}

.qw-form-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 850px;
  margin: 0 auto;
}

@media (min-width: 768px) {

  .qw-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 2rem;
    row-gap: 1.5rem;
  }

}

/* ======================================== */
/* FORM FIELDS */
/* ======================================== */

.qw-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.qw-field label {
  color: var(--qw-dark-gray);
  font-size: 16px;
  line-height: 1.2;
}

.qw-field input,
.qw-field select {
  width: 100%;
  min-height: 52px;
  padding: 10px 18px;
  border: 1.5px solid var(--qw-border);
  border-radius: 12px;
  background: var(--qw-white);
  color: var(--qw-navy);
  font-size: 18px;
  font-weight: 700;
  outline: none;
}

.qw-field select:required:invalid {
  color: var(--qw-gray);
}

.qw-field select:required:valid {
  color: var(--qw-navy);
}

input[type="date"] {
  color: var(--qw-gray);
}

input[type="date"] {
  width: 100%;
  min-width: 0;
  appearance: none;
  -webkit-appearance: none;
}

input[type="date"]:valid {
  color: var(--qw-navy);
}

input[type="date"]::-webkit-datetime-edit {
  color: inherit;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0.7;
  cursor: pointer;
}

.qw-field input::placeholder {
  color: var(--qw-gray);
  font-weight: 400;
}

.qw-field input:focus,
.qw-field select:focus {
  border-color: var(--qw-blue);
  box-shadow: 0 3px 8px rgba(0, 105, 186, 0.16);
}

.qw-field input,
.qw-field select {
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease;
}

.qw-field input:hover,
.qw-field select:hover {
  border-color: var(--qw-lighter-blue);
}

.qw-field.is-invalid input,
.qw-field.is-invalid select {
  border-color: var(--qw-error);
  box-shadow: 0 3px 8px rgba(180, 35, 24, 0.14);
}

.qw-field.is-invalid label {
  color: var(--qw-error);
}

.qw-field-error {
  display: none;
  color: var(--qw-error);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

.qw-field-error[hidden] {
  display: none;
}

.qw-field.is-invalid .qw-field-error:not([hidden]) {
  display: block;
}

/* ======================================== */
/* SELECTS */
/* ======================================== */

.qw-field select {
  appearance: none;
  padding-right: 48px;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='11' viewBox='0 0 18 11' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 2l7 7 7-7' fill='none' stroke='%237d7d7d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
}

/* ======================================== */
/* PREFIX + SUFFIX */
/* ======================================== */

.qw-input-prefix,
.qw-input-suffix {
  position: relative;
}

.qw-input-prefix > span:not(.qw-field-error),
.qw-input-suffix > span:not(.qw-field-error) {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--qw-gray);
  font-weight: 700;
  pointer-events: none;
  transition: color 0.2s ease;
}

.qw-input-prefix > span:not(.qw-field-error) {
  left: 18px;
  font-size: 18px;
}

.qw-input-suffix > span:not(.qw-field-error) {
  right: 18px;
  font-size: 16px;
}

.qw-input-prefix input {
  padding-left: 30px;
  color: var(--qw-gray);
}

.qw-input-suffix input {
  padding-right: 110px;
  color: var(--qw-gray);
}

.qw-input-prefix input:not(:placeholder-shown),
.qw-input-suffix input:not(:placeholder-shown) {
  color: var(--qw-navy);
}

.qw-input-prefix:has(input:not(:placeholder-shown)) > span:not(.qw-field-error),
.qw-input-suffix:has(input:not(:placeholder-shown)) > span:not(.qw-field-error) {
  color: var(--qw-navy);
}

.qw-budget-field:has(input:not(:placeholder-shown)) .qw-prefix,
.qw-budget-field:has(input:not(:placeholder-shown)) .qw-budget-suffix {
  color: var(--qw-navy);
}

.qw-budget-field {
  position: relative;
}

.qw-budget-field .qw-prefix {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--qw-gray);
  font-size: 18px;
  font-weight: 700;
  pointer-events: none;
}

.qw-budget-field .qw-budget-suffix {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--qw-gray);
  font-size: 16px;
  font-weight: 700;
  pointer-events: none;
}

.qw-budget-field input {
  width: 100%;
  padding-left: 30px;
  padding-right: 90px;
}

/* ======================================== */
/* FOOTERS */
/* ======================================== */

.qw-step-footer,
.qw-step-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 850px;
  margin: 36px auto 0;
}

.qw-step-footer--right {
  justify-content: flex-end;
}

.qw-step-footer--split {
  justify-content: space-between;
}

/* ======================================== */
/* LEGAL */
/* ======================================== */

.qw-legal,
.qw-disclosure {
  max-width: 850px;
  margin: 34px auto 0;
  color: var(--qw-gray);
  font-size: 12px;
  line-height: 1.4;
}

.qw-disclosure p,
.qw-legal p {
  margin: 0 0 18px;
}

/* ======================================== */
/* TABLET */
/* ======================================== */

@media (max-width: 991px) {

  .qw-modal {
    padding: 32px;
  }

  .qw-modal__dialog {
    width: min(680px, calc(100vw - 64px));
    padding: 32px;
  }

}

/* ======================================== */
/* MOBILE */
/* ======================================== */

@media (max-width: 720px) {

  .qw-modal {
    padding: 18px;
    align-items: center;
  }

  .qw-modal__dialog {
  width: calc(100vw - 48px);
  max-height: calc(100vh - 32px);
  padding: 18px 16px 20px;
  }

  /* STEPPER */

  .qw-stepper {
    gap: 16px;
    margin-bottom: 18px;
  }

  .qw-stepper__label {
    display: none;
  }

  .qw-stepper__badge {
    width: 22px;
    height: 22px;
    font-size: 12px;
  }

  .qw-stepper__line {
    width: 34px;
  }

  /* INTRO */

  .qw-form-intro {
    margin-bottom: 16px;
    text-align: center;
  }

  .qw-form-intro h2 {
    margin-bottom: 6px;
    font-size: 18px;
  }

  .qw-form-intro p {
    font-size: 14px;
    line-height: 1.3;
  }

  /* LEAD TYPES */

  .qw-lead-types {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .qw-lead-card__body {
    min-height: 58px;
    flex-direction: row !important;
    justify-content: flex-start;
    gap: 14px;
    padding: 12px 16px;
    text-align: left;
  }

  .qw-lead-card__icon {
    width: 24px;
    height: 24px;
  }

  /* FORM */

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

.qw-field:has(#insuranceCarrier),
.qw-field:has(#goLiveDate) {
  grid-column: span 2;
}

  .qw-field {
    gap: 4px;
  }

  .qw-field-error {
    font-size: 12px;
  }

  .qw-field label {
    font-size: 13px;
  }

  .qw-field input,
  .qw-field select {
    min-height: 38px;
    padding: 8px 14px;
    font-size: 15px;
  }

  /* PREFIX + SUFFIX */

  .qw-input-prefix > span:not(.qw-field-error) {
    left: 14px;
    font-size: 16px;
  }

  .qw-input-prefix input {
    padding-left: 24px;
  }

  .qw-input-suffix > span:not(.qw-field-error) {
    right: 14px;
    font-size: 13px;
  }

  .qw-input-suffix input {
    padding-right: 82px;
  }

.qw-budget-field input {
  padding-left: 24px;
  padding-right: 78px;
}

/* HOVER DISABLED */

.qw-lead-card:hover .qw-lead-card__body {
  transform: none;
  box-shadow: var(--qw-shadow);
}

.qw-button:hover {
  transform: none;
}

.qw-field input:hover,
.qw-field select:hover {
  border-color: var(--qw-border);
}

  /* FOOTER */

  .qw-step-footer,
  .qw-step-actions {
    margin-top: 20px;
  }

}

/* ======================================== */
/* SMALL MOBILE */
/* ======================================== */

@media (max-width: 430px) {

  .qw-modal__close {
    top: 12px;
    right: 14px;
  }

  .qw-button--primary {
    min-width: 140px;
    padding-inline: 20px;
  }

  .qw-button--secondary {
    min-width: 92px;
    padding-inline: 16px;
  }

}

/* ======================================== */
/* SUCCESS STATE */
/* ======================================== */

.qw-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  text-align: center;
}

.qw-success h2 {
  margin: 8px 0;
  color: var(--qw-navy);
  font-size: 28px;
  font-weight: 700;
}

.qw-success p {
  max-width: 420px;
  margin: 0 0 24px;
  color: var(--qw-dark-gray);
  font-size: 16px;
  line-height: 1.5;
}