.lbmfr-page {
  --lbmfr-navy: #133a3e;
  --lbmfr-navy-2: #1b5050;
  --lbmfr-green: #19715e;
  --lbmfr-green-dark: #0f5949;
  --lbmfr-mint: #e7f5ef;
  --lbmfr-mint-2: #f3faf7;
  --lbmfr-cream: #fff9ec;
  --lbmfr-coral: #d95f48;
  --lbmfr-ink: #172826;
  --lbmfr-muted: #566b67;
  --lbmfr-line: #ccddd7;
  --lbmfr-soft-line: #e2ece8;
  --lbmfr-white: #fff;
  --lbmfr-shadow: 0 18px 50px rgba(19, 58, 62, .09);
  width: 100%;
  min-height: 100vh;
  margin: 0;
  color: var(--lbmfr-ink);
  background: #fff;
  font-family: inherit;
  line-height: 1.65;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.lbmfr-page *,
.lbmfr-page *::before,
.lbmfr-page *::after {
  box-sizing: border-box;
}

.lbmfr-page [hidden] {
  display: none !important;
}

.lbmfr-page [data-lbmfr-next],
.lbmfr-page [data-lbmfr-back],
.lbmfr-page [data-lbmfr-edit] {
  display: none;
}

.lbmfr-page.is-enhanced [data-lbmfr-next],
.lbmfr-page.is-enhanced [data-lbmfr-back],
.lbmfr-page.is-enhanced [data-lbmfr-edit] {
  display: inline-flex;
}

.lbmfr-page img,
.lbmfr-page svg {
  display: block;
}

.lbmfr-page h1,
.lbmfr-page h2,
.lbmfr-page h3,
.lbmfr-page h4,
.lbmfr-page p,
.lbmfr-page figure,
.lbmfr-page dl,
.lbmfr-page dd {
  margin-top: 0;
}

.lbmfr-shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.lbmfr-icon {
  width: 1.25em;
  height: 1.25em;
  flex: 0 0 auto;
}

.lbmfr-eyebrow {
  margin-bottom: 10px;
  color: var(--lbmfr-green-dark);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lbmfr-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 7vw, 96px) 0 56px;
  background:
    radial-gradient(circle at 88% 10%, rgba(237, 196, 119, .28), transparent 28%),
    radial-gradient(circle at 8% 92%, rgba(113, 193, 165, .22), transparent 31%),
    linear-gradient(145deg, #f5fbf8 0%, #fffdf8 54%, #edf7f2 100%);
}

.lbmfr-hero::before {
  position: absolute;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(25, 113, 94, .12);
  border-radius: 50%;
  top: -270px;
  left: -120px;
  content: "";
}

.lbmfr-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(380px, .97fr);
  gap: clamp(36px, 6vw, 74px);
  align-items: center;
}

.lbmfr-hero h1 {
  max-width: 720px;
  margin-bottom: 22px;
  color: var(--lbmfr-navy);
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: 1.08;
}

.lbmfr-hero__lead {
  max-width: 680px;
  margin-bottom: 28px;
  color: #344d49;
  font-size: clamp(18px, 2.2vw, 23px);
  line-height: 1.55;
}

.lbmfr-hero__lead strong {
  color: var(--lbmfr-green-dark);
}

.lbmfr-hero__actions,
.lbmfr-step__actions,
.lbmfr-result-card__actions,
.lbmfr-results-head__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.lbmfr-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: var(--lbmfr-white);
  color: var(--lbmfr-ink) !important;
  font: inherit;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.25;
  text-align: center;
  text-decoration: none !important;
  cursor: pointer;
  transition: transform .16s ease, background-color .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.lbmfr-button:hover {
  transform: translateY(-1px);
}

.lbmfr-button--primary {
  border-color: var(--lbmfr-green);
  background: var(--lbmfr-green);
  color: #fff !important;
  box-shadow: 0 9px 24px rgba(25, 113, 94, .18);
}

.lbmfr-button--primary:hover {
  border-color: var(--lbmfr-green-dark);
  background: var(--lbmfr-green-dark);
}

.lbmfr-button--secondary {
  border-color: #9fc9ba;
  background: #fff;
  color: var(--lbmfr-green-dark) !important;
}

.lbmfr-button--secondary:hover,
.lbmfr-button--ghost:hover {
  border-color: var(--lbmfr-green);
  background: var(--lbmfr-mint-2);
}

.lbmfr-button--ghost {
  border-color: var(--lbmfr-line);
  background: transparent;
  color: var(--lbmfr-navy) !important;
}

.lbmfr-page a:focus-visible,
.lbmfr-page button:focus-visible,
.lbmfr-page input:focus-visible,
.lbmfr-page summary:focus-visible,
.lbmfr-page [tabindex="-1"]:focus-visible {
  outline: 3px solid rgba(25, 113, 94, .3);
  outline-offset: 3px;
}

.lbmfr-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 24px 0 0;
  padding: 0;
  color: var(--lbmfr-muted);
  font-size: 13px;
  font-weight: 750;
  list-style: none;
}

.lbmfr-trust-list li {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}

.lbmfr-trust-list .lbmfr-icon {
  color: var(--lbmfr-green);
}

.lbmfr-hero__visual {
  overflow: hidden;
  margin-bottom: 0;
  border: 1px solid rgba(19, 58, 62, .14);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 25px 70px rgba(19, 58, 62, .14);
  transform: rotate(1.4deg);
}

.lbmfr-hero__visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 630;
  object-fit: cover;
}

.lbmfr-hero__visual figcaption {
  padding: 14px 17px 16px;
  border-top: 1px solid var(--lbmfr-soft-line);
  color: var(--lbmfr-muted);
  font-size: 12px;
  line-height: 1.55;
}

.lbmfr-proof {
  border-top: 1px solid #d9e7e1;
  border-bottom: 1px solid #d9e7e1;
  background: var(--lbmfr-navy);
}

.lbmfr-proof__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lbmfr-proof__grid > div {
  padding: 24px 20px;
  border-right: 1px solid rgba(255, 255, 255, .13);
  text-align: center;
}

.lbmfr-proof__grid > div:last-child {
  border-right: 0;
}

.lbmfr-proof strong,
.lbmfr-proof span {
  display: block;
}

.lbmfr-proof strong {
  color: #fff;
  font-size: 22px;
  font-weight: 900;
}

.lbmfr-proof span {
  margin-top: 3px;
  color: #c6dcd5;
  font-size: 12px;
}

.lbmfr-section {
  padding: clamp(64px, 8vw, 104px) 0;
}

.lbmfr-section-head {
  max-width: 780px;
  margin-bottom: 32px;
}

.lbmfr-section-head--split,
.lbmfr-results-head {
  display: flex;
  max-width: none;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.lbmfr-section-head--split > p,
.lbmfr-results-head > div > p:last-child {
  max-width: 520px;
}

.lbmfr-section h2 {
  margin-bottom: 13px;
  color: var(--lbmfr-navy);
  font-size: clamp(29px, 4.3vw, 45px);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: 1.2;
}

.lbmfr-section-head > p:last-child,
.lbmfr-results-head p,
.lbmfr-guide-grid > div > p:last-child {
  margin-bottom: 0;
  color: var(--lbmfr-muted);
  font-size: 16px;
}

.lbmfr-section--finder {
  background: #fff;
}

.lbmfr-finder-card {
  overflow: hidden;
  border: 1px solid #bed7ce;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--lbmfr-shadow);
}

.lbmfr-progress {
  padding: 0 30px;
  border-bottom: 1px solid var(--lbmfr-soft-line);
  background: var(--lbmfr-mint-2);
}

.lbmfr-progress ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.lbmfr-progress li {
  position: relative;
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #72837f;
  font-size: 14px;
  font-weight: 800;
}

.lbmfr-progress li::after {
  position: absolute;
  height: 3px;
  right: 0;
  bottom: -1px;
  left: 0;
  border-radius: 3px 3px 0 0;
  background: transparent;
  content: "";
}

.lbmfr-progress li span {
  display: inline-grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 1px solid #b7c8c2;
  border-radius: 50%;
  background: #fff;
  font-size: 12px;
}

.lbmfr-progress li.is-current,
.lbmfr-progress li.is-complete {
  color: var(--lbmfr-green-dark);
}

.lbmfr-progress li.is-current::after {
  background: var(--lbmfr-green);
}

.lbmfr-progress li.is-current span,
.lbmfr-progress li.is-complete span {
  border-color: var(--lbmfr-green);
  background: var(--lbmfr-green);
  color: #fff;
}

.lbmfr-form {
  padding: clamp(24px, 4vw, 44px);
}

.lbmfr-step {
  min-width: 0;
  margin: 0 0 36px;
  padding: 0 0 36px;
  border: 0;
  border-bottom: 1px solid var(--lbmfr-soft-line);
}

.lbmfr-step:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.lbmfr-page.is-enhanced .lbmfr-step {
  display: none;
  margin: 0;
  padding: 0;
  border-bottom: 0;
}

.lbmfr-page.is-enhanced .lbmfr-step.is-current {
  display: block;
}

.lbmfr-step legend {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 11px;
  padding: 0;
  color: var(--lbmfr-navy);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: 1.3;
}

.lbmfr-step__number {
  display: none;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--lbmfr-green);
  color: #fff;
  font-size: 13px;
}

.lbmfr-page:not(.is-enhanced) .lbmfr-step__number {
  display: inline-grid;
}

.lbmfr-step__help {
  margin: 8px 0 22px;
  color: var(--lbmfr-muted);
  font-size: 14px;
}

.lbmfr-choice-grid {
  display: grid;
  gap: 12px;
}

.lbmfr-choice-grid--situations {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lbmfr-choice-grid--compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lbmfr-choice {
  position: relative;
  min-width: 0;
  cursor: pointer;
}

.lbmfr-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.lbmfr-choice__body {
  display: grid;
  min-height: 142px;
  align-content: start;
  gap: 6px;
  padding: 19px;
  border: 1px solid var(--lbmfr-line);
  border-radius: 16px;
  background: #fff;
  transition: border-color .16s ease, background-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.lbmfr-choice:hover .lbmfr-choice__body {
  border-color: #7eb5a2;
  transform: translateY(-1px);
}

.lbmfr-choice input:checked + .lbmfr-choice__body {
  border-color: var(--lbmfr-green);
  background: var(--lbmfr-mint-2);
  box-shadow: inset 0 0 0 2px var(--lbmfr-green), 0 9px 24px rgba(25, 113, 94, .08);
}

.lbmfr-choice input:focus-visible + .lbmfr-choice__body {
  outline: 3px solid rgba(25, 113, 94, .3);
  outline-offset: 3px;
}

.lbmfr-choice__icon {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  margin-bottom: 5px;
  border-radius: 11px;
  background: var(--lbmfr-mint);
  color: var(--lbmfr-green-dark);
}

.lbmfr-choice__icon .lbmfr-icon {
  width: 22px;
  height: 22px;
}

.lbmfr-choice__body strong {
  color: var(--lbmfr-navy);
  font-size: 16px;
  font-weight: 900;
}

.lbmfr-choice__body small {
  color: var(--lbmfr-muted);
  font-size: 12px;
  line-height: 1.55;
}

.lbmfr-choice--compact .lbmfr-choice__body {
  min-height: 110px;
  justify-content: center;
  padding: 20px;
}

.lbmfr-step__actions {
  justify-content: flex-end;
  margin-top: 26px;
  padding-top: 23px;
  border-top: 1px solid var(--lbmfr-soft-line);
}

.lbmfr-sensitive-note {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  margin-top: 22px;
  padding: 15px 17px;
  border-left: 4px solid var(--lbmfr-coral);
  border-radius: 10px;
  background: #fff5f1;
  color: #6d4239;
}

.lbmfr-sensitive-note .lbmfr-icon {
  width: 24px;
  height: 24px;
  margin-top: 1px;
  color: var(--lbmfr-coral);
}

.lbmfr-sensitive-note p {
  margin-bottom: 0;
  font-size: 13px;
}

.lbmfr-section--quick {
  border-top: 1px solid var(--lbmfr-soft-line);
  border-bottom: 1px solid var(--lbmfr-soft-line);
  background: var(--lbmfr-cream);
}

.lbmfr-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.lbmfr-quick-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  padding: 21px;
  border: 1px solid #e2d7bc;
  border-radius: 17px;
  background: rgba(255, 255, 255, .84);
  color: var(--lbmfr-ink) !important;
  text-decoration: none !important;
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.lbmfr-quick-card:hover {
  border-color: #b4a477;
  box-shadow: 0 12px 30px rgba(80, 66, 31, .08);
  transform: translateY(-2px);
}

.lbmfr-quick-card__icon,
.lbmfr-result-card__icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 13px;
  background: var(--lbmfr-navy);
  color: #fff;
}

.lbmfr-quick-card__icon .lbmfr-icon,
.lbmfr-result-card__icon .lbmfr-icon {
  width: 25px;
  height: 25px;
}

.lbmfr-quick-card strong {
  margin-top: 18px;
  color: var(--lbmfr-navy);
  font-size: 18px;
  font-weight: 900;
}

.lbmfr-quick-card > span:not(.lbmfr-quick-card__icon) {
  color: var(--lbmfr-green-dark);
  font-size: 13px;
  font-weight: 800;
}

.lbmfr-quick-card small {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid #e8dfca;
  color: var(--lbmfr-muted);
  font-size: 12px;
  line-height: 1.5;
}

.lbmfr-section--results {
  background: #fff;
}

.lbmfr-results-head {
  margin-bottom: 30px;
}

.lbmfr-results-head > div:first-child {
  max-width: 800px;
}

.lbmfr-noscript {
  padding: 14px 16px;
  border: 1px solid var(--lbmfr-line);
  border-radius: 10px;
  background: var(--lbmfr-mint-2);
  color: var(--lbmfr-muted);
  font-size: 13px;
}

.lbmfr-result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
}

.lbmfr-result-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(21px, 3vw, 28px);
  border: 1px solid var(--lbmfr-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(19, 58, 62, .045);
}

.lbmfr-result-card.is-top-match {
  border-color: #79b49f;
  box-shadow: 0 16px 38px rgba(25, 113, 94, .1);
}

.lbmfr-result-card.is-top-match::before {
  display: inline-flex;
  align-self: flex-start;
  margin: -12px 0 15px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--lbmfr-green);
  color: #fff;
  content: "우선 확인";
  font-size: 11px;
  font-weight: 850;
}

.lbmfr-result-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.lbmfr-result-card__top > div:last-child {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.lbmfr-status,
.lbmfr-kind {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
}

.lbmfr-status {
  background: var(--lbmfr-mint);
  color: var(--lbmfr-green-dark);
}

.lbmfr-kind {
  background: #f2f4f3;
  color: #5a6966;
}

.lbmfr-provider {
  margin: 20px 0 5px;
  color: var(--lbmfr-green-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .02em;
}

.lbmfr-result-card h3 {
  margin-bottom: 10px;
  color: var(--lbmfr-navy);
  font-size: clamp(20px, 2.5vw, 25px);
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: 1.35;
}

.lbmfr-result-card__description {
  margin-bottom: 17px;
  color: var(--lbmfr-muted);
  font-size: 14px;
}

.lbmfr-reason {
  display: grid;
  gap: 3px;
  margin-bottom: 16px;
  padding: 13px 14px;
  border-left: 4px solid var(--lbmfr-green);
  border-radius: 9px;
  background: var(--lbmfr-mint-2);
}

.lbmfr-reason strong {
  color: var(--lbmfr-green-dark);
  font-size: 11px;
}

.lbmfr-reason span {
  color: #3f5b55;
  font-size: 12px;
}

.lbmfr-card-meta {
  display: grid;
  gap: 0;
  margin-bottom: 16px;
  border-top: 1px solid var(--lbmfr-soft-line);
}

.lbmfr-card-meta > div {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--lbmfr-soft-line);
  font-size: 12px;
}

.lbmfr-card-meta dt {
  color: var(--lbmfr-muted);
  font-weight: 750;
}

.lbmfr-card-meta dd {
  color: var(--lbmfr-ink);
  font-weight: 750;
}

.lbmfr-details {
  margin-bottom: 20px;
  border: 1px solid var(--lbmfr-soft-line);
  border-radius: 12px;
  background: #fbfcfc;
}

.lbmfr-details summary {
  padding: 14px 16px;
  color: var(--lbmfr-navy);
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.lbmfr-details__grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 18px;
  padding: 0 16px 17px;
  border-top: 1px solid var(--lbmfr-soft-line);
}

.lbmfr-details__grid > div {
  padding-top: 14px;
}

.lbmfr-details h4 {
  margin-bottom: 8px;
  color: var(--lbmfr-navy);
  font-size: 13px;
}

.lbmfr-details ul,
.lbmfr-details ol {
  margin: 0;
  padding-left: 20px;
  color: var(--lbmfr-muted);
  font-size: 12px;
}

.lbmfr-details li + li {
  margin-top: 5px;
}

.lbmfr-result-card__actions {
  margin-top: auto;
  padding-top: 2px;
}

.lbmfr-result-card__actions .lbmfr-button--primary {
  flex: 1 1 240px;
}

.lbmfr-text-link {
  display: inline-flex;
  min-height: 45px;
  align-items: center;
  justify-content: center;
  padding: 9px 3px;
  color: var(--lbmfr-green-dark) !important;
  font-size: 13px;
  font-weight: 850;
  text-decoration: underline !important;
  text-underline-offset: 3px;
}

.lbmfr-section--guide {
  background: var(--lbmfr-navy);
  color: #fff;
}

.lbmfr-guide-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 7vw, 90px);
  align-items: center;
}

.lbmfr-section--guide .lbmfr-eyebrow {
  color: #8ed3b8;
}

.lbmfr-section--guide h2 {
  color: #fff;
}

.lbmfr-section--guide .lbmfr-guide-grid > div > p:last-child {
  color: #c2d9d3;
}

.lbmfr-action-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lbmfr-action-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 15px;
  align-items: start;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 14px;
  background: rgba(255, 255, 255, .06);
}

.lbmfr-action-list li > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: #8ed3b8;
  color: var(--lbmfr-navy);
  font-size: 13px;
  font-weight: 900;
}

.lbmfr-action-list strong {
  color: #fff;
}

.lbmfr-action-list p {
  margin: 3px 0 0;
  color: #c2d9d3;
  font-size: 13px;
}

.lbmfr-disclosure {
  padding: 50px 0;
  border-top: 1px solid var(--lbmfr-soft-line);
  background: #f4f7f6;
}

.lbmfr-disclosure h2 {
  margin-bottom: 20px;
  color: var(--lbmfr-navy);
  font-size: 22px;
}

.lbmfr-disclosure__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.lbmfr-disclosure__grid > div {
  padding: 16px;
  border: 1px solid var(--lbmfr-line);
  border-radius: 12px;
  background: #fff;
}

.lbmfr-disclosure__grid strong {
  color: var(--lbmfr-navy);
  font-size: 14px;
}

.lbmfr-disclosure__grid p {
  margin: 5px 0 0;
  color: var(--lbmfr-muted);
  font-size: 12px;
}

.lbmfr-update {
  margin: 18px 0 0;
  color: var(--lbmfr-muted);
  font-size: 12px;
}

@media (max-width: 980px) {
  .lbmfr-hero__grid {
    grid-template-columns: 1fr;
  }

  .lbmfr-hero__visual {
    max-width: 720px;
    transform: none;
  }

  .lbmfr-choice-grid--situations,
  .lbmfr-quick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lbmfr-guide-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .lbmfr-shell {
    width: min(100% - 28px, 1180px);
  }

  .lbmfr-hero {
    padding-top: 48px;
  }

  .lbmfr-hero h1 {
    font-size: clamp(38px, 12vw, 56px);
  }

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

  .lbmfr-proof__grid > div:nth-child(2) {
    border-right: 0;
  }

  .lbmfr-proof__grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, .13);
  }

  .lbmfr-section-head--split,
  .lbmfr-results-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .lbmfr-results-head__actions {
    width: 100%;
  }

  .lbmfr-results-head__actions .lbmfr-button {
    flex: 1 1 190px;
  }

  .lbmfr-progress {
    padding: 0 10px;
  }

  .lbmfr-progress li {
    min-height: 62px;
    font-size: 11px;
  }

  .lbmfr-progress li span {
    width: 25px;
    height: 25px;
  }

  .lbmfr-choice-grid--situations,
  .lbmfr-choice-grid--compact,
  .lbmfr-result-grid {
    grid-template-columns: 1fr;
  }

  .lbmfr-choice__body {
    min-height: 0;
  }

  .lbmfr-details__grid,
  .lbmfr-disclosure__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .lbmfr-hero__actions,
  .lbmfr-step__actions,
  .lbmfr-result-card__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .lbmfr-hero__actions .lbmfr-button,
  .lbmfr-step__actions .lbmfr-button,
  .lbmfr-result-card__actions .lbmfr-button,
  .lbmfr-result-card__actions .lbmfr-text-link {
    width: 100%;
  }

  .lbmfr-quick-grid {
    grid-template-columns: 1fr;
  }

  .lbmfr-quick-card {
    min-height: 190px;
  }

  .lbmfr-progress li {
    flex-direction: column;
    gap: 4px;
  }

  .lbmfr-card-meta > div {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lbmfr-page *,
  .lbmfr-page *::before,
  .lbmfr-page *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .lbmfr-hero,
  .lbmfr-section,
  .lbmfr-disclosure {
    padding: 28px 0;
  }

  .lbmfr-hero__actions,
  .lbmfr-step__actions,
  .lbmfr-results-head__actions,
  .lbmfr-quick-grid {
    display: none !important;
  }

  .lbmfr-result-grid {
    display: block;
  }

  .lbmfr-result-card {
    break-inside: avoid;
    margin-bottom: 16px;
    box-shadow: none;
  }
}
