.quote-checklist-page {
  background: #f5f3ee;
  color: #171b17;
}

.quote-checklist-hero {
  position: relative;
  min-height: min(640px, 72vh);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #171b17;
}

.quote-checklist-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 18, 15, 0.9) 0%, rgba(15, 18, 15, 0.66) 48%, rgba(15, 18, 15, 0.12) 100%);
}

.quote-checklist-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-checklist-hero > div {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
  padding: 96px 0 72px;
  color: #fff;
}

.quote-checklist-hero span,
.quote-checklist-guidance span,
.quote-checklist-summary > span {
  display: block;
  color: #c49a55;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quote-checklist-hero h1 {
  max-width: 780px;
  margin: 18px 0 20px;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.quote-checklist-hero p {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.18rem;
  line-height: 1.65;
}

.quote-checklist-shell {
  display: grid;
  grid-template-columns: minmax(250px, 330px) minmax(0, 1fr);
  gap: 40px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0;
  align-items: start;
}

.quote-checklist-summary {
  position: sticky;
  top: 96px;
  padding: 28px;
  border: 1px solid #d8d4ca;
  border-radius: 8px;
  background: #fff;
}

.quote-checklist-summary strong {
  display: block;
  margin: 12px 0 14px;
  font-size: 1.45rem;
}

.quote-checklist-summary strong b {
  font-size: 2.2rem;
}

.quote-checklist-summary progress {
  width: 100%;
  height: 12px;
  accent-color: #171b17;
}

.quote-checklist-summary p {
  min-height: 72px;
  margin: 18px 0;
  color: #5c625c;
  line-height: 1.55;
}

.quote-checklist-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-bottom: 12px;
}

.quote-checklist-actions button {
  min-height: 44px;
  border: 1px solid #c9c5bb;
  border-radius: 6px;
  background: #fff;
  color: #171b17;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.quote-checklist-summary .button {
  width: 100%;
  text-align: center;
}

.quote-checklist-form {
  display: grid;
  gap: 18px;
}

.quote-checklist-form fieldset {
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid #d8d4ca;
  border-radius: 8px;
  background: #fff;
}

.quote-checklist-form legend {
  float: left;
  width: 100%;
  padding: 22px 24px;
  border-bottom: 1px solid #e1ded6;
  font-size: 1.25rem;
  font-weight: 800;
}

.quote-checklist-form legend + * {
  clear: both;
}

.quote-checklist-form legend span {
  margin-right: 12px;
  color: #a97931;
}

.quote-checklist-form label {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 12px 24px;
  border-bottom: 1px solid #eeece6;
  color: #343934;
  cursor: pointer;
}

.quote-checklist-form label:last-child {
  border-bottom: 0;
}

.quote-checklist-form label:has(input:checked) {
  background: #edf3ee;
  color: #173d29;
  font-weight: 700;
}

.quote-checklist-form input {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: #173d29;
}

.quote-checklist-guidance {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 56px;
  padding: 72px max(24px, calc((100% - 1180px) / 2));
  background: #171b17;
  color: #fff;
}

.quote-checklist-guidance h2 {
  margin: 12px 0 0;
  font-size: 2.35rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.quote-checklist-guidance p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.75;
}

.quote-checklist-guidance a {
  color: #f2c97f;
}

@media (max-width: 760px) {
  .quote-checklist-hero {
    min-height: 570px;
  }

  .quote-checklist-hero::after {
    background: linear-gradient(0deg, rgba(15, 18, 15, 0.94) 0%, rgba(15, 18, 15, 0.58) 72%, rgba(15, 18, 15, 0.22) 100%);
  }

  .quote-checklist-hero > div,
  .quote-checklist-shell {
    width: min(100% - 32px, 1180px);
  }

  .quote-checklist-hero h1 {
    font-size: 2.7rem;
  }

  .quote-checklist-shell,
  .quote-checklist-guidance {
    grid-template-columns: 1fr;
  }

  .quote-checklist-shell {
    gap: 20px;
    padding: 40px 0;
  }

  .quote-checklist-summary {
    position: static;
  }

  .quote-checklist-form legend,
  .quote-checklist-form label {
    padding-left: 18px;
    padding-right: 18px;
  }

  .quote-checklist-guidance {
    gap: 24px;
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

@media print {
  .site-header,
  .site-footer,
  .quote-checklist-hero,
  .quote-checklist-actions,
  .quote-checklist-summary .button,
  .quote-checklist-guidance,
  .related-guides,
  .area-inquiry-mobile-action {
    display: none !important;
  }

  .quote-checklist-shell {
    display: block;
    width: 100%;
    padding: 0;
  }

  .quote-checklist-summary {
    position: static;
    margin-bottom: 18px;
  }

  .quote-checklist-summary p {
    min-height: 0;
  }

  .quote-checklist-form {
    gap: 10px;
  }

  .quote-checklist-form fieldset {
    break-inside: avoid;
  }
}
