.quote-page {
  --iqc-blue: #0867bd;
  --iqc-blue-strong: #07549d;
  --iqc-blue-soft: #eaf4fd;
  --iqc-navy: #071d36;
  --iqc-navy-soft: #0d2b4c;
  --iqc-orange: #f58a36;
  --iqc-ink: #182b43;
  --iqc-muted: #5d7186;
  --iqc-line: #dce7f1;
  --iqc-line-strong: #c5d5e4;
  --iqc-wash: #f4f8fc;
  --iqc-surface: #fff;
}

.quote-page .iqc-page,
.quote-page .iqc-page * {
  box-sizing: border-box;
}

.quote-page .iqc-page {
  color: var(--iqc-ink);
  background: linear-gradient(180deg, #eef5fb 0, #f8fbfe 440px, #fff 760px);
}

.quote-page .iqc-page [hidden] {
  display: none !important;
}

.quote-page .iqc-hero {
  min-height: 420px;
  overflow: hidden;
}

.quote-page .iqc-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(1, 27, 60, .16), transparent 58%),
    linear-gradient(180deg, transparent 62%, rgba(1, 25, 55, .22));
}

.quote-page .iqc-hero .pc-hero__inner {
  position: relative;
  z-index: 1;
  min-height: 420px;
}

.quote-page .iqc-hero .pc-hero__copy {
  width: min(720px, 100%);
}

.quote-page .iqc-hero .pc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #b9ddff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
}

.quote-page .iqc-hero .pc-eyebrow::before {
  width: 32px;
  height: 2px;
  content: "";
  background: var(--iqc-orange);
}

.quote-page .iqc-hero h1 {
  margin: 14px 0 14px;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -.03em;
}

.quote-page .iqc-hero .pc-hero__desc {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.75;
}

.quote-page .iqc-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 32px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.quote-page .iqc-hero-points li {
  padding-left: 12px;
  color: #e4f1ff;
  font-size: 14px;
  line-height: 1.4;
  border-left: 3px solid var(--iqc-orange);
}

.quote-page .iqc-body {
  position: relative;
}

.quote-page .iqc-shell {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
  padding: 30px 0 88px;
}

.quote-page .iqc-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--iqc-muted);
  font-size: 14px;
}

.quote-page .iqc-breadcrumb a {
  color: var(--iqc-blue-strong);
}

.quote-page .iqc-breadcrumb a:hover {
  text-decoration: underline;
}

.quote-page .iqc-workspace {
  min-width: 0;
}

.quote-page .iqc-mode-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 22px;
  overflow: hidden;
  border: 1px solid var(--iqc-line-strong);
  background: var(--iqc-surface);
  box-shadow: 0 12px 30px rgba(7, 48, 89, .06);
}

.quote-page .iqc-mode-tabs button {
  position: relative;
  display: grid;
  align-content: center;
  min-width: 0;
  min-height: 104px;
  padding: 17px 22px 16px;
  color: var(--iqc-ink);
  text-align: left;
  border: 0;
  border-right: 1px solid var(--iqc-line);
  background: #fff;
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease;
}

.quote-page .iqc-mode-tabs button:last-child {
  border-right: 0;
}

.quote-page .iqc-mode-tabs button::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  content: "";
  background: transparent;
}

.quote-page .iqc-mode-tabs button:hover:not([aria-selected="true"]) {
  background: var(--iqc-wash);
}

.quote-page .iqc-mode-tabs button[aria-selected="true"] {
  color: #fff;
  background: var(--iqc-blue);
}

.quote-page .iqc-mode-tabs button[aria-selected="true"]::after {
  background: var(--iqc-orange);
}

.quote-page .iqc-mode-tabs small {
  display: block;
  margin-bottom: 6px;
  color: #536b82;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
}

.quote-page .iqc-mode-tabs strong {
  display: block;
  margin-bottom: 4px;
  font-size: 18px;
  line-height: 1.35;
}

.quote-page .iqc-mode-tabs span {
  display: block;
  color: var(--iqc-muted);
  font-size: 13px;
  line-height: 1.45;
}

.quote-page .iqc-mode-tabs button[aria-selected="true"] small {
  color: #c5e3ff;
}

.quote-page .iqc-mode-tabs button[aria-selected="true"] span {
  color: #e4f2ff;
}

.quote-page .iqc-status {
  margin: 0 0 20px;
  padding: 14px 18px;
  color: #33465d;
  line-height: 1.6;
  border: 1px solid #b8d4ea;
  border-left: 4px solid var(--iqc-blue);
  background: #f0f8ff;
}

.quote-page .iqc-status[data-tone="error"] {
  color: #8a2020;
  border-color: #efb7b7;
  border-left-color: #c83e3e;
  background: #fff2f2;
}

.quote-page .iqc-workspace-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}

.quote-page .iqc-main-column {
  display: grid;
  gap: 20px;
  min-width: 0;
}

.quote-page .iqc-cart-card,
.quote-page .iqc-requirement-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--iqc-line);
  background: var(--iqc-surface);
  box-shadow: 0 12px 32px rgba(7, 56, 105, .07);
}

.quote-page .iqc-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 84px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--iqc-line);
  background: #fbfdff;
}

.quote-page .iqc-card-head > div {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.quote-page .iqc-card-head > div > span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--iqc-blue);
  font-size: 12px;
  font-weight: 900;
  border: 1px solid #abd1f2;
  background: var(--iqc-blue-soft);
}

.quote-page .iqc-card-head h2 {
  margin: 0;
  color: var(--iqc-ink);
  font-size: 21px;
  line-height: 1.3;
}

.quote-page .iqc-card-head p {
  margin: 4px 0 0;
  color: var(--iqc-muted);
  font-size: 13px;
  line-height: 1.5;
}

.quote-page .iqc-card-head > a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 8px 12px;
  color: var(--iqc-blue-strong);
  font-size: 13px;
  font-weight: 800;
  border: 1px solid #b8d9f4;
  background: #fff;
}

.quote-page .iqc-card-head > a:hover {
  color: #fff;
  border-color: var(--iqc-blue);
  background: var(--iqc-blue);
}

.quote-page .iqc-card-head > a svg {
  width: 15px;
  height: 15px;
}

.quote-page .iqc-cart-list {
  min-width: 0;
}

.quote-page .iqc-cart-row {
  display: grid;
  grid-template-columns: minmax(210px, 1.25fr) minmax(120px, .8fr) 122px minmax(130px, .72fr) 36px;
  gap: 12px;
  align-items: center;
  min-height: 118px;
  padding: 16px 18px;
  border-bottom: 1px solid #eaf0f5;
}

.quote-page .iqc-cart-row:last-child {
  border-bottom: 0;
}

.quote-page .iqc-cart-product {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  min-width: 0;
}

.quote-page .iqc-cart-product img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border: 1px solid var(--iqc-line);
  background: #fff;
}

.quote-page .iqc-cart-product div {
  min-width: 0;
}

.quote-page .iqc-cart-product strong,
.quote-page .iqc-cart-product span {
  display: block;
  overflow-wrap: anywhere;
}

.quote-page .iqc-cart-product strong {
  color: #223750;
  font-size: 14px;
  line-height: 1.45;
}

.quote-page .iqc-cart-product span {
  margin-top: 5px;
  color: var(--iqc-muted);
  font-size: 12px;
}

.quote-page .iqc-cart-specs {
  margin: 0;
  padding: 0;
  color: #52677d;
  font-size: 12px;
  line-height: 1.55;
  list-style: none;
}

.quote-page .iqc-cart-specs li + li {
  margin-top: 3px;
}

.quote-page .iqc-qty {
  display: grid;
  grid-template-columns: 34px 52px 34px;
  width: 120px;
}

.quote-page .iqc-qty button,
.quote-page .iqc-qty input {
  height: 38px;
  color: #334a62;
  border: 1px solid var(--iqc-line-strong);
  background: #fff;
  text-align: center;
}

.quote-page .iqc-qty button {
  padding: 0;
  font-size: 17px;
  cursor: pointer;
}

.quote-page .iqc-qty button + input,
.quote-page .iqc-qty input + button {
  border-left: 0;
}

.quote-page .iqc-qty input {
  width: 52px;
  padding: 0 3px;
  appearance: textfield;
}

.quote-page .iqc-qty input::-webkit-inner-spin-button,
.quote-page .iqc-qty input::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
}

.quote-page .iqc-cart-note {
  display: grid;
  gap: 5px;
  min-width: 0;
  color: var(--iqc-muted);
  font-size: 11px;
}

.quote-page .iqc-cart-note textarea {
  width: 100%;
  min-height: 52px;
  padding: 8px 9px;
  color: #334a62;
  font: inherit;
  font-size: 12px;
  line-height: 1.45;
  resize: vertical;
  border: 1px solid var(--iqc-line-strong);
  background: #fff;
}

.quote-page .iqc-cart-remove {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  color: #718398;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.quote-page .iqc-cart-remove:hover {
  color: #b42f2f;
  background: #fff0f0;
}

.quote-page .iqc-cart-remove svg {
  width: 18px;
  height: 18px;
}

.quote-page .iqc-cart-empty {
  display: grid;
  justify-items: center;
  padding: 54px 24px 58px;
  color: var(--iqc-muted);
  text-align: center;
}

.quote-page .iqc-cart-empty > svg {
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  color: #8db9de;
}

.quote-page .iqc-cart-empty strong {
  color: var(--iqc-ink);
  font-size: 18px;
}

.quote-page .iqc-cart-empty p {
  margin: 7px 0 18px;
  font-size: 14px;
}

.quote-page .iqc-cart-empty a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  color: #fff;
  font-weight: 800;
  border: 1px solid var(--iqc-blue);
  background: var(--iqc-blue);
}

.quote-page .iqc-cart-empty a:hover {
  border-color: var(--iqc-blue-strong);
  background: var(--iqc-blue-strong);
}

.quote-page .iqc-mode-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 24px;
}

.quote-page .iqc-mode-fields label,
.quote-page .iqc-noscript label {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: #33465d;
  font-size: 13px;
  font-weight: 700;
}

.quote-page .iqc-mode-fields .is-wide {
  grid-column: 1 / -1;
}

.quote-page .iqc-mode-fields input,
.quote-page .iqc-mode-fields select,
.quote-page .iqc-mode-fields textarea,
.quote-page .iqc-contact-fields input,
.quote-page .iqc-noscript textarea {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  padding: 10px 12px;
  color: #273c53;
  font: inherit;
  font-weight: 400;
  line-height: 1.5;
  border: 1px solid var(--iqc-line-strong);
  border-radius: 3px;
  outline: none;
  background: #fff;
}

.quote-page .iqc-mode-fields textarea,
.quote-page .iqc-noscript textarea {
  min-height: 94px;
  resize: vertical;
}

.quote-page .iqc-mode-fields input::placeholder,
.quote-page .iqc-mode-fields textarea::placeholder,
.quote-page .iqc-contact-fields input::placeholder {
  color: #93a2b1;
  opacity: 1;
}

.quote-page .iqc-mode-fields input:hover,
.quote-page .iqc-mode-fields select:hover,
.quote-page .iqc-mode-fields textarea:hover {
  border-color: #9fbfd9;
}

.quote-page .iqc-field-note {
  margin: -2px 0 2px;
  padding: 11px 13px;
  color: #526b83;
  font-size: 13px;
  line-height: 1.55;
  border-left: 3px solid var(--iqc-blue);
  background: var(--iqc-blue-soft);
}

.quote-page .iqc-summary {
  position: sticky;
  top: 112px;
  min-width: 0;
  padding: 28px;
  color: #fff;
  border-top: 4px solid var(--iqc-orange);
  background: var(--iqc-navy);
  box-shadow: 0 16px 40px rgba(2, 27, 55, .18);
}

.quote-page .iqc-summary > span {
  display: block;
  margin-bottom: 7px;
  color: #8dc7f7;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
}

.quote-page .iqc-summary > h2 {
  margin: 0 0 20px;
  color: #fff;
  font-size: 24px;
  line-height: 1.3;
}

.quote-page .iqc-summary dl {
  margin: 0;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, .15);
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.quote-page .iqc-summary dl > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 7px 0;
}

.quote-page .iqc-summary dt {
  color: #a9bfd3;
  font-size: 13px;
}

.quote-page .iqc-summary dd {
  margin: 0;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-align: right;
}

.quote-page .iqc-summary dd em {
  color: #ffb46f;
  font-size: 21px;
  font-style: normal;
}

.quote-page .iqc-contact-fields {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  border: 0;
}

.quote-page .iqc-contact-fields legend {
  margin-bottom: 12px;
  padding: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.quote-page .iqc-contact-fields label {
  display: grid;
  gap: 6px;
  color: #bfd0df;
  font-size: 12px;
  font-weight: 700;
}

.quote-page .iqc-contact-fields b {
  color: #ffb46f;
}

.quote-page .iqc-contact-fields input {
  color: #fff;
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .07);
}

.quote-page .iqc-contact-fields input::placeholder {
  color: #91a8bb;
}

.quote-page .iqc-contact-fields input:hover {
  border-color: rgba(255, 255, 255, .48);
}

.quote-page .iqc-service-steps {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding: 18px 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, .14);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.quote-page .iqc-service-steps li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.quote-page .iqc-service-steps li > b {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #9fd0f7;
  font-size: 11px;
  border: 1px solid rgba(159, 208, 247, .52);
  border-radius: 50%;
}

.quote-page .iqc-service-steps span,
.quote-page .iqc-service-steps strong,
.quote-page .iqc-service-steps small {
  display: block;
}

.quote-page .iqc-service-steps strong {
  color: #fff;
  font-size: 12px;
}

.quote-page .iqc-service-steps small {
  margin-top: 2px;
  color: #9eb2c4;
  font-size: 11px;
}

.quote-page .iqc-summary > button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 50px;
  padding: 10px 16px;
  color: #fff;
  font-weight: 800;
  border: 1px solid var(--iqc-blue);
  background: var(--iqc-blue);
  cursor: pointer;
}

.quote-page .iqc-summary > button:not(:disabled):hover {
  border-color: #2282d6;
  background: #2282d6;
}

.quote-page .iqc-summary > button:disabled {
  color: #8798a8;
  border-color: #334c64;
  background: #263d53;
  cursor: not-allowed;
}

.quote-page .iqc-summary > button svg {
  width: 18px;
  height: 18px;
}

.quote-page .iqc-response-note {
  margin: 12px 0 0;
  color: #c1d1de;
  font-size: 12px;
  text-align: center;
}

.quote-page .iqc-privacy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 10px 0 0;
  color: #8fa6b9;
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

.quote-page .iqc-privacy svg {
  width: 12px;
  height: 12px;
}

.quote-page .iqc-privacy a {
  color: #b9ddff;
  text-decoration: underline;
}

.quote-page .iqc-success {
  padding: 70px 28px;
  color: #24513a;
  text-align: center;
  border: 1px solid #b9ddc5;
  border-top: 4px solid #3b9a5d;
  background: #f1fbf4;
  box-shadow: 0 12px 32px rgba(39, 113, 65, .08);
}

.quote-page .iqc-success > svg {
  width: 54px;
  height: 54px;
  padding: 12px;
  color: #fff;
  border-radius: 50%;
  background: #3b9a5d;
}

.quote-page .iqc-success h2 {
  margin: 18px 0 8px;
  color: #1f4933;
  font-size: 28px;
}

.quote-page .iqc-success p {
  margin: 0;
  line-height: 1.7;
}

.quote-page .iqc-success > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.quote-page .iqc-success a,
.quote-page .iqc-success button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  font-weight: 800;
  border: 1px solid var(--iqc-blue);
  cursor: pointer;
}

.quote-page .iqc-success a {
  color: #fff;
  background: var(--iqc-blue);
}

.quote-page .iqc-success button {
  color: var(--iqc-blue-strong);
  background: #fff;
}

.quote-page .iqc-noscript {
  margin-top: 20px;
  padding: 24px;
  border: 1px solid #e6c787;
  background: #fff9eb;
}

.quote-page .iqc-noscript h2 {
  margin: 0 0 8px;
  font-size: 20px;
}

.quote-page .iqc-noscript p {
  margin: 0 0 16px;
  color: #6c6048;
  line-height: 1.6;
}

.quote-page .iqc-page :focus-visible {
  outline: 3px solid var(--iqc-blue);
  outline-offset: 3px;
}

.quote-page .iqc-summary :focus-visible,
.quote-page .iqc-mode-tabs button[aria-selected="true"]:focus-visible,
.quote-page .iqc-hero :focus-visible {
  outline-color: #ffb46f;
}

@media (max-width: 1180px) {
  .quote-page .iqc-workspace-grid {
    grid-template-columns: 1fr;
  }

  .quote-page .iqc-summary {
    position: static;
    display: grid;
    grid-template-columns: minmax(200px, .75fr) minmax(0, 1.25fr);
    gap: 0 28px;
    align-items: start;
  }

  .quote-page .iqc-summary > span,
  .quote-page .iqc-summary > h2,
  .quote-page .iqc-summary > dl,
  .quote-page .iqc-contact-fields {
    grid-column: 1;
  }

  .quote-page .iqc-service-steps,
  .quote-page .iqc-summary > button,
  .quote-page .iqc-response-note,
  .quote-page .iqc-privacy {
    grid-column: 2;
  }

  .quote-page .iqc-service-steps {
    grid-row: 1 / span 4;
    margin: 0 0 18px;
    padding-top: 0;
    border-top: 0;
  }
}

@media (max-width: 900px) {
  .quote-page .iqc-cart-row {
    grid-template-columns: minmax(190px, 1.15fr) minmax(110px, .7fr) 120px minmax(120px, .65fr) 36px;
    gap: 10px;
    padding: 15px;
  }

  .quote-page .iqc-cart-product {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 10px;
  }

  .quote-page .iqc-cart-product img {
    width: 62px;
    height: 62px;
  }
}

@media (max-width: 767px) {
  .quote-page .iqc-hero,
  .quote-page .iqc-hero .pc-hero__inner {
    min-height: 360px;
  }

  .quote-page .iqc-hero h1 {
    font-size: clamp(31px, 10vw, 40px);
  }

  .quote-page .iqc-hero .pc-hero__desc {
    font-size: 15px;
  }

  .quote-page .iqc-hero-points {
    gap: 10px 18px;
    margin-top: 22px;
  }

  .quote-page .iqc-shell {
    width: min(calc(100% - 28px), 1440px);
    padding-top: 22px;
    padding-bottom: 64px;
  }

  .quote-page .iqc-breadcrumb {
    margin-bottom: 18px;
  }

  .quote-page .iqc-mode-tabs {
    grid-template-columns: 1fr;
  }

  .quote-page .iqc-mode-tabs button {
    min-height: 76px;
    padding: 13px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--iqc-line);
  }

  .quote-page .iqc-mode-tabs button:last-child {
    border-bottom: 0;
  }

  .quote-page .iqc-mode-tabs button::after {
    top: 0;
    right: auto;
    bottom: 0;
    width: 4px;
    height: auto;
  }

  .quote-page .iqc-mode-tabs small {
    margin-bottom: 3px;
    font-size: 10px;
  }

  .quote-page .iqc-mode-tabs strong {
    margin-bottom: 2px;
    font-size: 16px;
  }

  .quote-page .iqc-mode-tabs span {
    font-size: 12px;
  }

  .quote-page .iqc-card-head {
    align-items: flex-start;
    min-height: 0;
    padding: 16px;
  }

  .quote-page .iqc-card-head > div > span {
    width: 34px;
    height: 34px;
  }

  .quote-page .iqc-card-head h2 {
    font-size: 18px;
  }

  .quote-page .iqc-card-head > a {
    padding: 7px 9px;
    white-space: nowrap;
  }

  .quote-page .iqc-cart-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px 12px;
    min-height: 0;
    padding: 16px;
  }

  .quote-page .iqc-cart-product {
    grid-column: 1;
  }

  .quote-page .iqc-cart-remove {
    grid-column: 2;
    grid-row: 1;
  }

  .quote-page .iqc-cart-specs {
    grid-column: 1 / -1;
    padding: 10px 12px;
    background: var(--iqc-wash);
  }

  .quote-page .iqc-qty {
    grid-column: 1 / -1;
  }

  .quote-page .iqc-cart-note {
    grid-column: 1 / -1;
  }

  .quote-page .iqc-cart-note textarea {
    min-height: 66px;
  }

  .quote-page .iqc-mode-fields {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
  }

  .quote-page .iqc-mode-fields .is-wide {
    grid-column: auto;
  }

  .quote-page .iqc-summary {
    display: block;
    padding: 24px 20px;
  }

  .quote-page .iqc-service-steps {
    margin: 22px 0;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, .14);
  }

  .quote-page .iqc-success {
    padding: 48px 20px;
  }
}

@media (max-width: 420px) {
  .quote-page .iqc-hero-points li {
    width: 100%;
  }

  .quote-page .iqc-card-head {
    display: grid;
  }

  .quote-page .iqc-card-head > a {
    justify-self: start;
    margin-left: 48px;
  }

  .quote-page .iqc-cart-product {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .quote-page .iqc-cart-product img {
    width: 56px;
    height: 56px;
  }

  .quote-page .iqc-success > div {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  .quote-page .iqc-page *,
  .quote-page .iqc-page *::before,
  .quote-page .iqc-page *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
