.pfr-page {
  --pfr-ink: #07131d;
  --pfr-copy: #304957;
  --pfr-muted: #607785;
  --pfr-blue: #245f7e;
  --pfr-blue-bright: #4fa3c8;
  --pfr-pale: #e8f1f5;
  --pfr-paper: #f7fafb;
  --pfr-line: #b8cbd4;
  --pfr-white: #fff;
}

.pfr-page main {
  min-width: 0;
  overflow: clip;
}

.pfr-page h1,
.pfr-page h2,
.pfr-page h3 {
  text-wrap: balance;
}

.pfr-page h2 {
  margin-bottom: 18px;
  color: var(--pfr-ink);
  font-size: clamp(2rem, 4.1vw, 4.25rem);
  letter-spacing: -.05em;
  line-height: .98;
}

.pfr-page h3 {
  color: var(--pfr-ink);
  line-height: 1.18;
}

.pfr-page p {
  color: var(--pfr-copy);
  line-height: 1.7;
}

.pfr-page a:focus-visible,
.pfr-page button:focus-visible,
.pfr-page summary:focus-visible {
  outline: 3px solid var(--pfr-blue-bright);
  outline-offset: 3px;
}

.pfr-hero {
  position: relative;
  padding: clamp(58px, 7vw, 108px) 0 clamp(64px, 8vw, 118px);
  overflow: hidden;
  border-bottom: 1px solid var(--pfr-line);
  background:
    radial-gradient(circle at 83% 14%, rgba(79, 163, 200, .2), transparent 28%),
    linear-gradient(140deg, #f7fafb 0%, #edf5f8 58%, #dcebf1 100%);
}

.pfr-hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(36, 95, 126, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 95, 126, .06) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  mask-image: linear-gradient(to right, #000, transparent 62%);
  pointer-events: none;
}

.pfr-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(220px, .62fr) minmax(290px, .78fr);
  align-items: end;
  gap: clamp(24px, 3.2vw, 52px);
}

.pfr-hero-grid > * {
  min-width: 0;
}

.pfr-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 38px;
  color: var(--pfr-muted);
  font-size: .72rem;
  font-weight: 760;
}

.pfr-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.pfr-breadcrumb a:hover {
  color: var(--pfr-blue);
}

.pfr-hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--pfr-ink);
  font-size: clamp(3rem, 6.2vw, 6.8rem);
  letter-spacing: -.07em;
  line-height: .86;
}

.pfr-hero-lead {
  max-width: 720px;
  margin-bottom: 30px;
  font-size: clamp(1.04rem, 1.4vw, 1.27rem);
}

.pfr-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pfr-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--pfr-blue);
  color: var(--pfr-blue);
  font-size: .78rem;
  font-weight: 850;
  text-decoration: none;
}

.pfr-button.is-primary {
  background: var(--pfr-blue);
  color: #fff;
}

.pfr-button:hover {
  transform: translateY(-2px);
}

.pfr-hero-facts {
  display: grid;
  gap: 1px;
  margin: 0;
  border: 1px solid var(--pfr-line);
  background: var(--pfr-line);
}

.pfr-hero-facts div {
  min-width: 0;
  padding: 17px 18px;
  background: rgba(255, 255, 255, .82);
}

.pfr-hero-facts dt {
  margin-bottom: 6px;
  color: var(--pfr-muted);
  font-size: .64rem;
  font-weight: 830;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pfr-hero-facts dd {
  margin: 0;
  color: var(--pfr-ink);
  font-size: .96rem;
  font-weight: 850;
  line-height: 1.35;
}

.pfr-hero-product {
  margin: 0;
  border: 1px solid var(--pfr-line);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 24px 70px rgba(15, 48, 64, .14);
}

.pfr-hero-product img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
}

.pfr-hero-product figcaption,
.pfr-feature-figure figcaption,
.pfr-core-grid figcaption,
.pfr-control-figure figcaption,
.pfr-model-layout figcaption,
.pfr-integration-grid figcaption,
.pfr-family-grid figcaption,
.pfr-layout-grid figcaption {
  display: grid;
  gap: 7px;
  padding: 17px 18px 19px;
  border-top: 1px solid var(--pfr-line);
  background: #fff;
}

.pfr-hero-product figcaption span,
.pfr-feature-figure figcaption span,
.pfr-core-grid figcaption span,
.pfr-control-figure figcaption span,
.pfr-model-layout figcaption span,
.pfr-integration-grid figcaption span,
.pfr-family-grid figcaption span,
.pfr-layout-grid figcaption span {
  color: var(--pfr-blue);
  font-size: .62rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.pfr-hero-product figcaption strong,
.pfr-feature-figure figcaption strong,
.pfr-core-grid figcaption strong,
.pfr-control-figure figcaption strong,
.pfr-model-layout figcaption strong,
.pfr-integration-grid figcaption strong,
.pfr-family-grid figcaption strong,
.pfr-layout-grid figcaption strong {
  color: var(--pfr-ink);
  font-size: .95rem;
  line-height: 1.35;
}

.pfr-hero-product figcaption p,
.pfr-feature-figure figcaption p,
.pfr-core-grid figcaption p,
.pfr-control-figure figcaption p,
.pfr-model-layout figcaption p,
.pfr-integration-grid figcaption p,
.pfr-family-grid figcaption p,
.pfr-layout-grid figcaption p {
  margin: 0;
  font-size: .83rem;
  line-height: 1.55;
}

.pfr-section-nav {
  position: sticky;
  z-index: 60;
  top: 74px;
  border-bottom: 1px solid var(--pfr-line);
  background: rgba(247, 250, 251, .96);
  backdrop-filter: blur(14px);
}

.pfr-section-nav .st-shell {
  display: flex;
  overflow-x: auto;
  scrollbar-width: thin;
}

.pfr-section-nav a {
  display: inline-flex;
  min-height: 48px;
  flex: 0 0 auto;
  align-items: center;
  padding: 0 16px;
  border-right: 1px solid var(--pfr-line);
  color: var(--pfr-copy);
  font-size: .68rem;
  font-weight: 820;
  text-decoration: none;
}

.pfr-section-nav a:first-child {
  border-left: 1px solid var(--pfr-line);
}

.pfr-section-nav a:hover {
  background: var(--pfr-pale);
  color: var(--pfr-blue);
}

.pfr-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(270px, .65fr);
  align-items: end;
  gap: clamp(28px, 5vw, 82px);
  margin-bottom: clamp(38px, 5vw, 68px);
}

.pfr-section-head > * {
  min-width: 0;
}

.pfr-section-head h2,
.pfr-section-head > p {
  margin-bottom: 0;
}

.pfr-section-head > p {
  padding-bottom: 5px;
}

.pfr-material {
  background: #fff;
}

.pfr-material-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
  gap: clamp(32px, 5vw, 76px);
}

.pfr-material-grid > * {
  min-width: 0;
}

.pfr-material-copy h2 {
  max-width: 770px;
}

.pfr-route-list {
  display: grid;
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid var(--pfr-line);
  list-style: none;
}

.pfr-route-list li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--pfr-line);
}

.pfr-route-list li > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--pfr-blue);
  color: var(--pfr-blue);
  font-size: .68rem;
  font-weight: 850;
}

.pfr-route-list h3 {
  margin-bottom: 5px;
  font-size: 1rem;
}

.pfr-route-list p {
  margin: 0;
  font-size: .88rem;
}

.pfr-feature-figure {
  align-self: start;
  margin: 0;
  border: 1px solid var(--pfr-line);
  background: var(--pfr-pale);
}

.pfr-feature-figure img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.pfr-boundary-strip {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--pfr-line);
}

.pfr-boundary-strip article {
  min-width: 0;
  padding: clamp(25px, 3vw, 42px);
  background: var(--pfr-pale);
}

.pfr-boundary-strip article + article {
  border-left: 1px solid var(--pfr-line);
}

.pfr-boundary-strip article.is-boundary {
  background: var(--pfr-ink);
}

.pfr-boundary-strip span {
  display: block;
  margin-bottom: 15px;
  color: var(--pfr-blue);
  font-size: .66rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.pfr-boundary-strip .is-boundary span {
  color: #7bc0df;
}

.pfr-boundary-strip h3 {
  margin-bottom: 10px;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
}

.pfr-boundary-strip .is-boundary h3 {
  color: #fff;
}

.pfr-boundary-strip p {
  margin: 0;
}

.pfr-boundary-strip .is-boundary p {
  color: #b9cad2;
}

.pfr-core {
  background: var(--pfr-paper);
}

.pfr-core-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(2, minmax(0, .75fr));
  align-items: start;
  gap: 16px;
}

.pfr-core-grid figure {
  min-width: 0;
  margin: 0;
  border: 1px solid var(--pfr-line);
  background: #fff;
}

.pfr-core-grid figure img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.pfr-core-grid .is-lead img {
  aspect-ratio: 1;
}

.pfr-core-checks {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
  border: 1px solid var(--pfr-line);
  background: #fff;
}

.pfr-core-checks div {
  min-width: 0;
  padding: 23px;
}

.pfr-core-checks div + div {
  border-left: 1px solid var(--pfr-line);
}

.pfr-core-checks span {
  display: block;
  margin-bottom: 18px;
  color: var(--pfr-blue);
  font-size: .68rem;
  font-weight: 850;
}

.pfr-core-checks strong {
  display: block;
  margin-bottom: 7px;
  color: var(--pfr-ink);
}

.pfr-core-checks p {
  margin: 0;
  font-size: .83rem;
  line-height: 1.5;
}

.pfr-control {
  background: var(--pfr-ink);
}

.pfr-control-grid {
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(36px, 6vw, 92px);
}

.pfr-control-grid > * {
  min-width: 0;
}

.pfr-control-figure {
  margin: 0;
  border: 1px solid #355363;
  background: #fff;
}

.pfr-control-figure img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.pfr-control-copy .st-kicker {
  color: #76bad9;
}

.pfr-control-copy h2 {
  color: #fff;
}

.pfr-control-copy > p {
  color: #b8cbd4;
}

.pfr-control-options {
  display: grid;
  gap: 1px;
  margin-top: 34px;
  border: 1px solid #355363;
  background: #355363;
}

.pfr-control-options article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 5px 16px;
  padding: 20px;
  background: #0d2531;
}

.pfr-control-options span {
  grid-row: 1 / 3;
  color: #76bad9;
  font-size: .7rem;
  font-weight: 850;
}

.pfr-control-options h3 {
  margin: 0;
  color: #fff;
  font-size: 1.02rem;
}

.pfr-control-options p {
  margin: 0;
  color: #b8cbd4;
  font-size: .86rem;
  line-height: 1.55;
}

.pfr-models {
  background: #fff;
}

.pfr-model-layout {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: 22px;
}

.pfr-model-layout > * {
  min-width: 0;
}

.pfr-model-layout figure {
  margin: 0;
  border: 1px solid var(--pfr-line);
  background: var(--pfr-pale);
}

.pfr-model-layout figure img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.pfr-table-wrap {
  border-color: var(--pfr-line);
}

.pfr-table-wrap table {
  min-width: 760px;
}

.pfr-table-wrap th,
.pfr-table-wrap td {
  padding: 18px 16px;
  font-size: .84rem;
  line-height: 1.45;
}

.pfr-table-wrap tbody th {
  color: var(--pfr-blue);
  font-size: .95rem;
}

.pfr-table-note {
  display: grid;
  grid-template-columns: minmax(220px, .34fr) minmax(0, 1fr);
  gap: 24px;
  margin: 22px 0 0;
  padding: 20px 22px;
  border-left: 4px solid var(--pfr-blue);
  background: var(--pfr-pale);
}

.pfr-table-note strong {
  color: var(--pfr-ink);
}

.pfr-integration {
  background: var(--pfr-paper);
}

.pfr-integration-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(280px, .68fr);
  align-items: start;
  gap: 18px;
}

.pfr-integration-grid figure {
  min-width: 0;
  margin: 0;
  border: 1px solid var(--pfr-line);
  background: #fff;
}

.pfr-integration-grid img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.pfr-integration-roles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
  border: 1px solid var(--pfr-line);
  background: #fff;
}

.pfr-integration-roles article {
  min-width: 0;
  padding: 24px;
}

.pfr-integration-roles article + article {
  border-left: 1px solid var(--pfr-line);
}

.pfr-integration-roles span {
  display: block;
  margin-bottom: 10px;
  color: var(--pfr-blue);
  font-size: .69rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pfr-integration-roles p {
  margin: 0;
  font-size: .87rem;
}

.pfr-family {
  background: #dfeaf0;
}

.pfr-family-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
  align-items: center;
  gap: clamp(36px, 6vw, 92px);
}

.pfr-family-grid > * {
  min-width: 0;
}

.pfr-family-grid figure {
  margin: 0;
  border: 1px solid var(--pfr-line);
  background: #fff;
}

.pfr-family-grid figure img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.pfr-family-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 32px;
  border: 1px solid var(--pfr-line);
  background: var(--pfr-line);
}

.pfr-family-cards article {
  min-width: 0;
  padding: 25px;
  background: #fff;
}

.pfr-family-cards article.is-pfr {
  background: var(--pfr-blue);
}

.pfr-family-cards span {
  display: block;
  margin-bottom: 18px;
  color: var(--pfr-blue);
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pfr-family-cards .is-pfr span {
  color: #c9ebf8;
}

.pfr-family-cards h3 {
  margin-bottom: 9px;
  font-size: 1.15rem;
}

.pfr-family-cards .is-pfr h3 {
  color: #fff;
}

.pfr-family-cards p {
  margin: 0;
  font-size: .85rem;
}

.pfr-family-cards .is-pfr p {
  color: #d9edf5;
}

.pfr-layout {
  background: #fff;
}

.pfr-layout-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 18px;
}

.pfr-layout-grid figure {
  min-width: 0;
  margin: 0;
  border: 1px solid var(--pfr-line);
  background: var(--pfr-pale);
}

.pfr-layout-grid img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.pfr-layout-checklist {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 24px;
  border: 1px solid var(--pfr-line);
}

.pfr-layout-checklist span {
  display: grid;
  min-height: 76px;
  place-items: center;
  padding: 14px;
  color: var(--pfr-ink);
  font-size: .72rem;
  font-weight: 830;
  text-align: center;
}

.pfr-layout-checklist span + span {
  border-left: 1px solid var(--pfr-line);
}

.pfr-data {
  background: var(--pfr-paper);
}

.pfr-data-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--pfr-line);
  border-left: 1px solid var(--pfr-line);
  list-style: none;
}

.pfr-data-grid li {
  display: grid;
  min-width: 0;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 15px;
  padding: 24px;
  border-right: 1px solid var(--pfr-line);
  border-bottom: 1px solid var(--pfr-line);
  background: #fff;
}

.pfr-data-grid li > span {
  color: var(--pfr-blue);
  font-size: .69rem;
  font-weight: 850;
}

.pfr-data-grid h3 {
  margin-bottom: 7px;
  font-size: 1rem;
}

.pfr-data-grid p {
  margin: 0;
  font-size: .84rem;
  line-height: 1.55;
}

.pfr-data-note {
  display: grid;
  grid-template-columns: minmax(240px, .34fr) minmax(0, 1fr);
  gap: 24px;
  margin-top: 22px;
  padding: 20px 22px;
  background: var(--pfr-ink);
  color: #fff;
}

.pfr-data-note span {
  color: #c2d2da;
}

.pfr-faq {
  background: #e2edf2;
}

.pfr-faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, .38fr) minmax(0, .62fr);
  align-items: start;
  gap: clamp(38px, 7vw, 104px);
}

.pfr-faq-grid > * {
  min-width: 0;
}

.pfr-faq-list {
  border-top: 1px solid var(--pfr-line);
}

.pfr-faq-list details {
  border-bottom: 1px solid var(--pfr-line);
}

.pfr-faq-list summary {
  display: grid;
  min-height: 72px;
  grid-template-columns: minmax(0, 1fr) 44px;
  align-items: center;
  gap: 22px;
  color: var(--pfr-ink);
  font-weight: 830;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

.pfr-faq-list summary::-webkit-details-marker {
  display: none;
}

.pfr-faq-list summary span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--pfr-blue);
  color: var(--pfr-blue);
  font-size: 1.2rem;
}

.pfr-faq-list details[open] summary span {
  transform: rotate(45deg);
}

.pfr-faq-list details p {
  max-width: 780px;
  margin: 0;
  padding: 0 66px 25px 0;
}

.pfr-quote {
  background: var(--pfr-ink);
}

.pfr-quote-grid {
  display: grid;
  grid-template-columns: minmax(300px, .7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: clamp(38px, 6vw, 92px);
}

.pfr-quote-grid > * {
  min-width: 0;
}

.pfr-quote-copy {
  position: sticky;
  top: 144px;
}

.pfr-quote-copy .st-kicker {
  color: #76bad9;
}

.pfr-quote-copy h2 {
  color: #fff;
}

.pfr-quote-copy > p {
  color: #b9cad3;
}

.pfr-quote-copy ul {
  display: grid;
  gap: 1px;
  margin: 30px 0 0;
  padding: 1px;
  background: #355363;
  list-style: none;
}

.pfr-quote-copy li {
  position: relative;
  padding: 13px 16px 13px 40px;
  background: #0d2531;
  color: #d6e3e9;
  font-size: .85rem;
  line-height: 1.45;
}

.pfr-quote-copy li::before {
  position: absolute;
  top: 14px;
  left: 16px;
  color: #76bad9;
  content: "✓";
  font-weight: 850;
}

.pfr-page .hnl-inquiry-form {
  min-width: 0;
  background: #fff;
}

.pfr-page .hnl-inquiry-grid > * {
  min-width: 0;
}

.pfr-page .hnl-inquiry-submit {
  min-height: 50px;
}

.pfr-page .hnl-inquiry-turnstile-wrap {
  max-width: 100%;
  overflow: visible;
}

@media (max-width: 1180px) {
  .pfr-hero-grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
  }

  .pfr-hero-copy {
    grid-column: 1;
  }

  .pfr-hero-facts {
    grid-column: 1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pfr-hero-product {
    grid-column: 2;
    grid-row: 1 / 3;
  }

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

  .pfr-core-grid .is-lead {
    grid-column: 1 / -1;
  }

  .pfr-core-checks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pfr-core-checks div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--pfr-line);
  }

  .pfr-core-checks div:nth-child(4) {
    border-top: 1px solid var(--pfr-line);
  }

  .pfr-layout-checklist {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pfr-layout-checklist span:nth-child(4) {
    border-left: 0;
  }

  .pfr-layout-checklist span:nth-child(n + 4) {
    border-top: 1px solid var(--pfr-line);
  }
}

@media (max-width: 900px) {
  .pfr-page h2 {
    font-size: clamp(2rem, 7vw, 3.7rem);
  }

  .pfr-hero {
    padding-top: 50px;
  }

  .pfr-hero-grid,
  .pfr-material-grid,
  .pfr-control-grid,
  .pfr-model-layout,
  .pfr-family-grid,
  .pfr-quote-grid {
    grid-template-columns: 1fr;
  }

  .pfr-hero-copy,
  .pfr-hero-facts,
  .pfr-hero-product {
    grid-column: auto;
    grid-row: auto;
  }

  .pfr-hero-product {
    width: min(100%, 620px);
  }

  .pfr-section-nav {
    top: 74px;
  }

  .pfr-section-head {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pfr-feature-figure {
    width: min(100%, 700px);
  }

  .pfr-boundary-strip {
    grid-template-columns: 1fr;
  }

  .pfr-boundary-strip article + article {
    border-top: 1px solid var(--pfr-line);
    border-left: 0;
  }

  .pfr-control-figure {
    width: min(100%, 620px);
  }

  .pfr-model-layout figure {
    width: min(100%, 720px);
  }

  .pfr-integration-grid {
    grid-template-columns: 1fr;
  }

  .pfr-integration-grid figure {
    width: min(100%, 760px);
  }

  .pfr-family-grid figure {
    width: min(100%, 720px);
  }

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

  .pfr-faq-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pfr-quote-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .pfr-page .st-shell {
    width: min(100% - 30px, 1240px);
  }

  .pfr-page .st-section {
    padding-block: 70px;
  }

  .pfr-hero h1 {
    font-size: clamp(2.9rem, 15vw, 5rem);
  }

  .pfr-breadcrumb {
    margin-bottom: 26px;
  }

  .pfr-hero-facts {
    grid-template-columns: 1fr;
  }

  .pfr-section-nav {
    top: 68px;
  }

  .pfr-section-nav .st-shell {
    width: 100%;
  }

  .pfr-section-nav a {
    min-height: 46px;
  }

  .pfr-core-grid,
  .pfr-core-checks,
  .pfr-integration-roles,
  .pfr-family-cards,
  .pfr-layout-grid,
  .pfr-data-grid {
    grid-template-columns: 1fr;
  }

  .pfr-core-grid .is-lead {
    grid-column: auto;
  }

  .pfr-core-checks div + div,
  .pfr-integration-roles article + article {
    border-top: 1px solid var(--pfr-line);
    border-left: 0;
  }

  .pfr-control-options article {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .pfr-table-note,
  .pfr-data-note {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .pfr-layout-checklist {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pfr-layout-checklist span:nth-child(3),
  .pfr-layout-checklist span:nth-child(5) {
    border-left: 0;
  }

  .pfr-layout-checklist span:nth-child(n + 3) {
    border-top: 1px solid var(--pfr-line);
  }

  .pfr-faq-list summary {
    min-height: 64px;
  }

  .pfr-faq-list details p {
    padding-right: 0;
  }

  .pfr-page .hnl-inquiry-submit {
    width: 100%;
    min-height: 48px;
    justify-content: space-between;
  }

  .pfr-page .hnl-inquiry-turnstile-wrap {
    width: 300px;
    max-width: none;
    margin-inline: calc((100% - 300px) / 2);
  }

  .pfr-page .hnl-inquiry-turnstile,
  .pfr-page .hnl-inquiry-turnstile iframe {
    width: 300px;
    max-width: 300px;
  }

  .pfr-page a,
  .pfr-page button,
  .pfr-page summary {
    touch-action: manipulation;
  }

  .pfr-page a,
  .pfr-page button {
    min-height: 44px;
  }

  .pfr-page .st-site-nav nav a:last-child {
    min-height: 44px;
  }
}

@media (max-width: 440px) {
  .pfr-page .st-shell {
    width: min(100% - 24px, 1240px);
  }

  .pfr-page .st-section {
    padding-block: 58px;
  }

  .pfr-hero {
    padding: 42px 0 64px;
  }

  .pfr-hero h1 {
    letter-spacing: -.06em;
  }

  .pfr-hero-actions {
    display: grid;
  }

  .pfr-button {
    width: 100%;
  }

  .pfr-route-list li,
  .pfr-data-grid li {
    grid-template-columns: 34px minmax(0, 1fr);
    padding-inline: 16px;
  }

  .pfr-core-checks div,
  .pfr-integration-roles article,
  .pfr-family-cards article {
    padding: 20px;
  }

  .pfr-control-options article {
    padding: 18px 16px;
  }

  .pfr-layout-checklist {
    grid-template-columns: 1fr;
  }

  .pfr-layout-checklist span,
  .pfr-layout-checklist span:nth-child(n) {
    min-height: 56px;
    border-top: 1px solid var(--pfr-line);
    border-left: 0;
  }

  .pfr-layout-checklist span:first-child {
    border-top: 0;
  }

  .pfr-faq-list summary {
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 12px;
  }
}

@media (max-width: 900px) and (orientation: landscape) and (max-height: 500px) {
  .pfr-page .st-site-nav {
    position: relative;
  }

  .pfr-section-nav {
    position: relative;
    top: auto;
  }

  .pfr-hero {
    padding-block: 40px 54px;
  }

  .pfr-page .st-section {
    padding-block: 56px;
  }

  .pfr-quote-copy {
    position: static;
  }
}

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