:root {
  --pfr-red: #d71920;
  --pfr-red-dark: #a70f16;
  --pfr-red-deep: #5b070b;
  --pfr-red-bright: #ef2630;
  --pfr-red-gradient: linear-gradient(135deg, #d71920 0%, #a70f16 48%, #5b070b 100%);
  --pfr-red-gradient-hover: linear-gradient(135deg, #ef2630 0%, #a70f16 42%, #7f0b10 100%);
  --pfr-red-shadow: 0 14px 30px rgba(91, 7, 11, 0.34);
  --pfr-carbon: #050608;
  --pfr-panel: #10131a;
  --pfr-panel-soft: #181d25;
  --pfr-steel: #303743;
  --pfr-black: #080a0d;
  --pfr-ink: #161a20;
  --pfr-gray-900: #242933;
  --pfr-gray-700: #4b5563;
  --pfr-gray-500: #747d8c;
  --pfr-gray-200: #e5e7eb;
  --pfr-gray-100: #f5f6f8;
  --pfr-white: #ffffff;
  --pfr-focus: #ffcc00;
  --pfr-radius: 8px;
  --pfr-shadow: 0 18px 45px rgba(8, 10, 13, 0.12);
  --pfr-shell: min(100% - 32px, 1240px);
  --pfr-shell-narrow: min(100% - 32px, 820px);
  --pfr-header-height: 86px;
  --pfr-transition: 180ms ease;
  --pfr-type-body: 17px;
  --pfr-type-xs: 0.82rem;
  --pfr-type-sm: 0.9rem;
  --pfr-type-meta: 0.94rem;
  --pfr-type-content: 1rem;
  --pfr-type-button: 0.98rem;
  --pfr-type-lead: 1.22rem;
  --pfr-type-card-title: 1.22rem;
  --pfr-type-h1: 3.35rem;
  --pfr-type-h2: 2.35rem;
  --pfr-type-h3: 1.55rem;
  --pfr-type-hero: 5rem;
  --pfr-type-display: 1.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body.pfr-modern {
  margin: 0;
  color: var(--pfr-ink);
  background: var(--pfr-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: var(--pfr-type-body);
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.pfr-modern :where(a) {
  color: var(--pfr-red-dark);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

body.pfr-modern :where(a:hover) {
  color: var(--pfr-red);
}

body.pfr-modern :where(button, a, input, textarea, select, summary):focus-visible {
  outline: 3px solid var(--pfr-focus);
  outline-offset: 3px;
}

body.pfr-modern :where(img, svg, video) {
  max-width: 100%;
  height: auto;
}

body.pfr-modern :where(h1, h2, h3, h4) {
  color: var(--pfr-black);
  line-height: 1.12;
  margin: 0 0 0.6em;
  font-weight: 800;
}

body.pfr-modern :where(h1) {
  font-size: var(--pfr-type-h1);
}

body.pfr-modern :where(h2) {
  font-size: var(--pfr-type-h2);
}

body.pfr-modern :where(h3) {
  font-size: var(--pfr-type-h3);
}

body.pfr-modern :where(p) {
  margin-top: 0;
}

body.pfr-modern :where(::selection) {
  color: var(--pfr-white);
  background: var(--pfr-red-dark);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.pfr-skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 14px;
  color: var(--pfr-black);
  background: var(--pfr-focus);
  border-radius: var(--pfr-radius);
  transform: translateY(-140%);
  transition: transform var(--pfr-transition);
}

.pfr-skip-link:focus {
  transform: translateY(0);
}

.pfr-shell {
  width: var(--pfr-shell);
  margin-inline: auto;
}

.pfr-shell--narrow {
  width: var(--pfr-shell-narrow);
}

.pfr-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 6, 8, 0.97);
  border-bottom: 1px solid rgba(215, 25, 32, 0.58);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

.pfr-site-header::after {
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(239, 38, 48, 0.92), transparent);
  content: "";
}

.pfr-topbar {
  color: rgba(255, 255, 255, 0.82);
  background: var(--pfr-carbon);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: var(--pfr-type-meta);
}

.pfr-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 34px;
}

.pfr-topbar a {
  color: var(--pfr-white);
  font-weight: 700;
  text-decoration: none;
}

.pfr-topbar a:hover {
  color: var(--pfr-red-bright);
}

.pfr-site-header__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(12px, 1.6vw, 18px);
  min-height: var(--pfr-header-height);
}

.pfr-logo {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  color: var(--pfr-white);
  text-decoration: none;
}

body.pfr-modern .pfr-logo__image {
  display: block;
  width: auto;
  max-width: 310px;
  max-height: 78px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.42));
}

.pfr-logo__text {
  font-weight: 900;
  font-size: var(--pfr-type-card-title);
}

.pfr-nav__list,
.pfr-nav__list ul,
.pfr-footer-nav__list,
.pfr-footer-contact ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pfr-nav__list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 2px;
}

.pfr-nav__list > li {
  flex: 0 0 auto;
}

.pfr-nav__list a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 8px;
  border-radius: var(--pfr-radius);
  color: rgba(255, 255, 255, 0.88);
  font-size: var(--pfr-type-sm);
  font-weight: 650;
  line-height: 1.05;
  text-decoration: none;
}

.pfr-nav__list > li > a {
  white-space: nowrap;
}

.pfr-nav__list a:hover,
.pfr-nav__list .current-menu-item > a,
.pfr-nav__list .current-menu-ancestor > a {
  color: var(--pfr-white);
  background: var(--pfr-red-gradient);
  box-shadow: 0 10px 24px rgba(91, 7, 11, 0.3);
}

.pfr-nav__list .menu-item-has-children {
  position: relative;
}

.pfr-nav__list .sub-menu {
  position: absolute;
  z-index: 10;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  padding: 8px;
  background: rgba(16, 19, 26, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--pfr-radius);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.36);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--pfr-transition), transform var(--pfr-transition), visibility var(--pfr-transition);
}

.pfr-nav__list .menu-item-has-children:hover > .sub-menu,
.pfr-nav__list .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.pfr-nav__list .sub-menu a {
  justify-content: flex-start;
  width: 100%;
  color: rgba(255, 255, 255, 0.88);
}

.pfr-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.pfr-header-actions__cta {
  min-height: 42px;
  padding: 10px 14px;
  font-size: var(--pfr-type-sm);
  font-weight: 700;
  white-space: nowrap;
}

.pfr-button,
body.pfr-modern .elementor-button,
body.pfr-modern .wp-block-button__link,
body.pfr-modern input[type="submit"],
body.pfr-modern button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 2px solid transparent;
  border-radius: var(--pfr-radius);
  font-size: var(--pfr-type-button);
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  touch-action: manipulation;
  transition: color var(--pfr-transition), background var(--pfr-transition), border-color var(--pfr-transition), transform var(--pfr-transition);
  -webkit-tap-highlight-color: rgba(215, 25, 32, 0.24);
}

.pfr-button:hover,
body.pfr-modern .elementor-button:hover,
body.pfr-modern .wp-block-button__link:hover,
body.pfr-modern input[type="submit"]:hover,
body.pfr-modern button[type="submit"]:hover {
  transform: translateY(-1px);
}

.pfr-button--primary,
.pfr-button--primary:visited,
body.pfr-modern .elementor-button,
body.pfr-modern .elementor-button:visited,
body.pfr-modern .wp-block-button__link,
body.pfr-modern .wp-block-button__link:visited,
body.pfr-modern input[type="submit"],
body.pfr-modern button[type="submit"] {
  color: var(--pfr-white) !important;
  background: var(--pfr-red-gradient) !important;
  border-color: var(--pfr-red-deep) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), var(--pfr-red-shadow);
}

.pfr-button--primary:hover,
.pfr-button--primary:focus,
.pfr-button--primary:focus-visible,
.pfr-button--primary:active,
body.pfr-modern .elementor-button:hover,
body.pfr-modern .elementor-button:focus,
body.pfr-modern .elementor-button:focus-visible,
body.pfr-modern .elementor-button:active,
body.pfr-modern .wp-block-button__link:hover,
body.pfr-modern .wp-block-button__link:focus,
body.pfr-modern .wp-block-button__link:focus-visible,
body.pfr-modern .wp-block-button__link:active,
body.pfr-modern input[type="submit"]:hover,
body.pfr-modern input[type="submit"]:focus,
body.pfr-modern input[type="submit"]:focus-visible,
body.pfr-modern input[type="submit"]:active,
body.pfr-modern button[type="submit"]:hover,
body.pfr-modern button[type="submit"]:focus,
body.pfr-modern button[type="submit"]:focus-visible,
body.pfr-modern button[type="submit"]:active {
  color: var(--pfr-white) !important;
  background: var(--pfr-red-gradient-hover) !important;
  border-color: #7f0b10 !important;
}

.pfr-button--secondary {
  color: var(--pfr-white) !important;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.68);
}

.pfr-button--secondary:visited {
  color: var(--pfr-white) !important;
}

.pfr-button--secondary:hover,
.pfr-button--secondary:focus,
.pfr-button--secondary:focus-visible,
.pfr-button--secondary:active {
  color: var(--pfr-black) !important;
  background: var(--pfr-white) !important;
  border-color: var(--pfr-white) !important;
}

.pfr-button--outline {
  color: var(--pfr-red-dark);
  background: var(--pfr-white);
  border-color: var(--pfr-red-dark);
}

.pfr-button--outline:visited {
  color: var(--pfr-red-dark);
}

.pfr-button--outline:hover,
.pfr-button--outline:focus,
.pfr-button--outline:focus-visible,
.pfr-button--outline:active {
  color: var(--pfr-white) !important;
  background: var(--pfr-red-dark) !important;
  border-color: var(--pfr-red-dark) !important;
}

@media (hover: none) {
  .pfr-button:hover,
  body.pfr-modern .elementor-button:hover,
  body.pfr-modern .wp-block-button__link:hover,
  body.pfr-modern input[type="submit"]:hover,
  body.pfr-modern button[type="submit"]:hover {
    transform: none;
  }

  .pfr-button--primary:hover,
  .pfr-button--primary:focus,
  .pfr-button--primary:active,
  body.pfr-modern .elementor-button:hover,
  body.pfr-modern .elementor-button:focus,
  body.pfr-modern .elementor-button:active,
  body.pfr-modern .wp-block-button__link:hover,
  body.pfr-modern .wp-block-button__link:focus,
  body.pfr-modern .wp-block-button__link:active,
  body.pfr-modern input[type="submit"]:hover,
  body.pfr-modern input[type="submit"]:focus,
  body.pfr-modern input[type="submit"]:active,
  body.pfr-modern button[type="submit"]:hover,
  body.pfr-modern button[type="submit"]:focus,
  body.pfr-modern button[type="submit"]:active {
    color: var(--pfr-white) !important;
    background: var(--pfr-red-gradient) !important;
    border-color: var(--pfr-red-deep) !important;
  }

  .pfr-button--secondary:hover,
  .pfr-button--secondary:focus,
  .pfr-button--secondary:active {
    color: var(--pfr-black) !important;
    background: var(--pfr-white) !important;
    border-color: var(--pfr-white) !important;
  }

  .pfr-button--outline:hover,
  .pfr-button--outline:focus,
  .pfr-button--outline:active {
    color: var(--pfr-white) !important;
    background: var(--pfr-red-dark) !important;
    border-color: var(--pfr-red-dark) !important;
  }
}

.pfr-button.pfr-header-actions__cta {
  min-height: 42px;
  padding: 10px 14px;
  font-size: var(--pfr-type-sm);
  font-weight: 700;
  white-space: nowrap;
}

.pfr-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--pfr-white);
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--pfr-radius);
  font-weight: 800;
}

.pfr-menu-toggle__icon,
.pfr-menu-toggle__icon::before,
.pfr-menu-toggle__icon::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
  content: "";
}

.pfr-menu-toggle__icon {
  position: relative;
}

.pfr-menu-toggle__icon::before,
.pfr-menu-toggle__icon::after {
  position: absolute;
  left: 0;
}

.pfr-menu-toggle__icon::before {
  top: -7px;
}

.pfr-menu-toggle__icon::after {
  top: 7px;
}

.pfr-mobile-panel {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 10, 13, 0.98);
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.34);
}

.pfr-mobile-panel .pfr-shell {
  padding-block: 16px 20px;
}

.pfr-nav__list--mobile {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
}

.pfr-nav__list--mobile a {
  justify-content: space-between;
  width: 100%;
  min-height: 48px;
  padding-inline: 14px;
}

.pfr-nav__list--mobile .sub-menu {
  position: static;
  display: grid;
  gap: 4px;
  padding: 4px 0 4px 14px;
  border: 0;
  background: transparent;
  box-shadow: none;
  opacity: 1;
  visibility: visible;
  transform: none;
}

.pfr-mobile-panel__cta {
  width: 100%;
}

.pfr-main {
  min-height: 46vh;
}

.pfr-main--content {
  padding-block: clamp(48px, 7vw, 88px);
  background: var(--pfr-gray-100);
}

.pfr-main--legal {
  background:
    radial-gradient(circle at 82% 12%, rgba(215, 25, 32, 0.18), transparent 30%),
    linear-gradient(135deg, var(--pfr-carbon), var(--pfr-panel) 58%, #080a0d);
}

.pfr-article,
.pfr-archive,
.pfr-error-page {
  padding: clamp(28px, 5vw, 56px);
  background: var(--pfr-white);
  border: 1px solid var(--pfr-gray-200);
  border-radius: var(--pfr-radius);
  box-shadow: 0 16px 40px rgba(8, 10, 13, 0.08);
}

.pfr-main--legal .pfr-article {
  border-color: rgba(255, 255, 255, 0.16);
  border-top: 4px solid var(--pfr-red-dark);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.32);
}

.pfr-entry-header {
  margin-bottom: clamp(24px, 4vw, 40px);
}

.pfr-entry-header h1 {
  max-width: 12ch;
}

.pfr-entry-content {
  max-width: 78ch;
}

.pfr-entry-content :where(p, ul, ol, blockquote, table, form) {
  margin-bottom: 1.2em;
}

.pfr-entry-content :where(h1, h2, h3, h4, h5, h6, p, li, a, th, td) {
  overflow-wrap: anywhere;
}

.pfr-entry-content pre {
  max-width: 100%;
  margin: 1.2em 0;
  padding: clamp(18px, 4vw, 28px);
  overflow-x: auto;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  word-break: normal;
  color: var(--pfr-gray-900);
  font-family: inherit;
  font-size: 0.96rem;
  line-height: 1.65;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
  border: 1px solid var(--pfr-gray-200);
  border-left: 4px solid var(--pfr-red);
  border-radius: calc(var(--pfr-radius) - 6px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

body.pfr-modern .cky-preference-center {
  width: min(845px, calc(100vw - 24px)) !important;
  max-width: calc(100vw - 24px) !important;
}

body.pfr-modern .cky-modal:not(.cky-modal-open) {
  display: none !important;
}

.pfr-entry-content :where(ul, ol) {
  padding-left: 1.3em;
}

.pfr-featured-image {
  margin: 0 0 32px;
}

.pfr-featured-image img {
  border-radius: var(--pfr-radius);
}

.pfr-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 18px;
}

.pfr-card {
  padding: 24px;
  background: var(--pfr-white);
  border: 1px solid var(--pfr-gray-200);
  border-radius: var(--pfr-radius);
}

.pfr-card h2 {
  font-size: var(--pfr-type-h3);
}

.pfr-card a {
  color: var(--pfr-black);
}

.pfr-eyebrow {
  margin-bottom: 0.7rem;
  color: var(--pfr-red-dark);
  font-size: var(--pfr-type-xs);
  font-weight: 900;
  text-transform: uppercase;
}

body.pfr-modern .elementor-section,
body.pfr-modern .elementor-container,
body.pfr-modern .elementor-column,
body.pfr-modern .elementor-widget-wrap {
  min-width: 0;
}

body.pfr-modern .elementor-heading-title {
  line-height: 1.12;
}

body.pfr-modern .elementor-widget-heading,
body.pfr-modern .elementor-widget-text-editor {
  color: var(--pfr-ink);
  font-size: var(--pfr-type-content);
  line-height: 1.65;
}

body.pfr-modern .elementor-widget-text-editor,
body.pfr-modern .elementor-widget-text-editor :where(p, li, span, strong, em),
body.pfr-modern .elementor-widget-heading .elementor-heading-title {
  font-family: inherit !important;
}

body.pfr-modern .elementor-section:not(.elementor-element-a958836) .elementor-widget-text-editor,
body.pfr-modern .elementor-section:not(.elementor-element-a958836) .elementor-widget-text-editor :where(p, li, span, strong, em),
body.pfr-modern .elementor-section:not(.elementor-element-a958836) .elementor-heading-title {
  color: var(--pfr-ink) !important;
}

body.pfr-modern .elementor-section:not(.elementor-element-a958836) :where(h1, h2, h3, h4) {
  color: var(--pfr-black) !important;
}

body.pfr-modern .elementor-section:not(.elementor-element-a958836) :where(h1, h2, h3, h4) :where(span, strong, em) {
  color: inherit !important;
}

body.pfr-modern .elementor-section:not(.elementor-element-a958836) .elementor-icon,
body.pfr-modern .elementor-section:not(.elementor-element-a958836) .elementor-icon i {
  color: var(--pfr-red-dark) !important;
}

body.pfr-modern .elementor-section:not(.elementor-element-a958836) .elementor-icon svg {
  fill: currentColor !important;
}

body.pfr-modern .elementor-element-a958836 {
  min-height: min(72vh, 760px);
}

body.pfr-modern .elementor-element-a958836 .elementor-widget-text-editor,
body.pfr-modern .elementor-element-a958836 .elementor-widget-text-editor :where(p, span, strong) {
  color: var(--pfr-white) !important;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.7);
}

body.pfr-modern .elementor-element-a958836 .elementor-background-overlay {
  background: rgba(0, 0, 0, 0.52) !important;
}

body.pfr-modern .elementor-section.elementor-section-height-full {
  position: relative;
  isolation: isolate;
  background-color: var(--pfr-carbon);
}

body.pfr-modern .elementor-section.elementor-section-height-full::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 34% 42%, rgba(215, 25, 32, 0.22), transparent 28%),
    linear-gradient(90deg, rgba(5, 6, 8, 0.88), rgba(5, 6, 8, 0.66) 48%, rgba(5, 6, 8, 0.82));
  content: "";
}

body.pfr-modern .elementor-section.elementor-section-height-full > .elementor-container {
  position: relative;
  z-index: 1;
}

body.pfr-modern .elementor-section.elementor-section-height-full .elementor-widget-heading .elementor-heading-title,
body.pfr-modern .elementor-section.elementor-section-height-full .elementor-widget-text-editor,
body.pfr-modern .elementor-section.elementor-section-height-full .elementor-widget-text-editor :where(h1, h2, h3, h4, p, li, span, strong, em, a) {
  color: var(--pfr-white) !important;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.92);
}

body.pfr-modern .elementor-section.elementor-section-height-full .elementor-widget-text-editor :where(h1, h2, h3, h4) {
  margin-bottom: 0.45em;
  font-size: var(--pfr-type-hero) !important;
  line-height: 1.04;
}

body.pfr-modern .elementor-section.elementor-section-height-full .elementor-widget-text-editor :where(p) {
  margin-bottom: 0.5em;
  font-size: var(--pfr-type-lead) !important;
  line-height: 1.34;
}

body.pfr-modern .elementor-widget-text-editor code.shortcode-tag {
  display: block;
  color: inherit;
  background: transparent;
  border: 0;
  font: inherit;
  white-space: normal;
}

body.pfr-modern .elementor-widget-text-editor code.shortcode-tag p {
  margin: 0 !important;
}

body.pfr-modern .elementor-widget-text-editor code.shortcode-tag a {
  display: inline-flex;
  text-decoration: none;
}

body.pfr-modern .elementor-widget-text-editor code.shortcode-tag button.button {
  width: min(100%, 280px) !important;
  min-height: 72px;
  padding: 14px 18px;
  color: var(--pfr-white) !important;
  background: var(--pfr-red) !important;
  border: 2px solid var(--pfr-red-dark) !important;
  border-radius: var(--pfr-radius);
  font: 800 1rem/1.25 inherit !important;
  cursor: pointer;
}

body.pfr-modern .elementor-widget-text-editor code.shortcode-tag button.button,
body.pfr-modern .elementor-widget-text-editor code.shortcode-tag button.button :where(p, span, strong) {
  color: var(--pfr-white) !important;
}

body.pfr-modern .elementor-widget-spacer .elementor-spacer-inner {
  height: clamp(28px, 5vw, 72px) !important;
}

body.pfr-modern .elementor-widget-image img {
  border-radius: var(--pfr-radius);
}

body.pfr-modern .elementor-widget-container :where(table) {
  width: 100%;
  border-collapse: collapse;
}

body.pfr-modern :where(input:not([type="checkbox"]):not([type="radio"]), textarea, select) {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  color: var(--pfr-ink);
  background: var(--pfr-white);
  border: 2px solid var(--pfr-gray-200);
  border-radius: var(--pfr-radius);
  font: inherit;
}

body.pfr-modern :where(input:not([type="checkbox"]):not([type="radio"]), textarea, select):focus {
  border-color: var(--pfr-red);
  outline: 3px solid rgba(215, 25, 32, 0.18);
}

body.pfr-modern :where(input[type="checkbox"], input[type="radio"]) {
  width: 1.1em;
  height: 1.1em;
  margin: 0 0.45em 0 0;
  vertical-align: middle;
  accent-color: var(--pfr-red);
}

body.pfr-modern :where(label) {
  display: inline-block;
  margin-bottom: 0.35rem;
  color: var(--pfr-black);
  font-weight: 750;
}

body.pfr-modern .wpcf7 form {
  display: grid;
  gap: 14px;
}

body.pfr-modern .wpcf7 form p {
  margin: 0;
}

body.pfr-modern .wpcf7-not-valid-tip,
body.pfr-modern .wpcf7-response-output {
  color: var(--pfr-red-dark);
  font-weight: 750;
}

.pfr-search-form {
  display: grid;
  gap: 10px;
}

.pfr-search-form__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.pfr-site-footer {
  color: var(--pfr-white);
  background:
    radial-gradient(circle at 20% 0%, rgba(215, 25, 32, 0.16), transparent 30%),
    var(--pfr-carbon);
}

.pfr-footer-cta {
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.2), transparent 42%),
    var(--pfr-panel);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.pfr-footer-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 5vw, 54px);
  padding-block: clamp(34px, 6vw, 66px);
}

.pfr-footer-cta h2 {
  max-width: 17ch;
  color: var(--pfr-white);
}

.pfr-footer-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pfr-footer-main {
  display: grid;
  grid-template-columns: minmax(360px, 1.1fr) minmax(250px, 0.72fr) minmax(260px, 0.78fr);
  gap: clamp(30px, 5vw, 68px);
  padding-block: clamp(38px, 7vw, 64px) clamp(42px, 7vw, 72px);
}

.pfr-footer-brand p {
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.74);
}

.pfr-footer-brand .pfr-footer-copyright {
  width: fit-content;
  margin-top: clamp(16px, 3vw, 22px);
  padding-top: 16px;
  color: rgba(255, 255, 255, 0.62);
  font-size: var(--pfr-type-meta);
  line-height: 1.55;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.pfr-logo--footer {
  margin-bottom: 18px;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

body.pfr-modern .pfr-logo--footer .pfr-logo__image {
  max-width: 285px;
}

.pfr-footer-nav__list {
  display: grid;
  gap: 8px;
}

.pfr-footer-nav a,
.pfr-footer-contact a {
  color: var(--pfr-white);
}

.pfr-footer-nav a {
  white-space: nowrap;
}

.pfr-footer-contact h2 {
  color: var(--pfr-white);
  font-size: var(--pfr-type-card-title);
}

.pfr-footer-contact li {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.78);
}

.pfr-location-map {
  display: grid;
  gap: 16px;
}

.pfr-footer-brand .pfr-location-map {
  max-width: 470px;
  margin-top: 18px;
  gap: 12px;
}

.pfr-location-map h2 {
  color: var(--pfr-white);
  font-size: var(--pfr-type-card-title);
}

.pfr-location-map p {
  color: rgba(255, 255, 255, 0.76);
}

.pfr-location-map__stage {
  position: relative;
  min-height: 188px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--pfr-radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 38%),
    linear-gradient(160deg, #121720 0%, #090b0f 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.pfr-location-map__region {
  position: absolute;
  inset: 0;
  min-height: 100%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
}

.pfr-location-map__region::before,
.pfr-location-map__region::after {
  position: absolute;
  content: "";
  border-radius: 999px;
  pointer-events: none;
}

.pfr-location-map__region::before {
  inset: 28px;
  border: 1px solid rgba(215, 25, 32, 0.36);
}

.pfr-location-map__region::after {
  inset: 64px 48px 42px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
}

.pfr-location-map__ring {
  position: absolute;
  left: 50%;
  top: 52%;
  border: 1px solid rgba(215, 25, 32, 0.42);
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.pfr-location-map__ring--outer {
  width: 72%;
  aspect-ratio: 1.75;
}

.pfr-location-map__ring--inner {
  width: 43%;
  aspect-ratio: 1.45;
  border-color: rgba(255, 255, 255, 0.18);
}

.pfr-location-map__road {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transform-origin: center;
}

.pfr-location-map__road--a {
  top: 44%;
  left: -8%;
  width: 118%;
  transform: rotate(-16deg);
}

.pfr-location-map__road--b {
  top: 64%;
  left: 0;
  width: 106%;
  transform: rotate(9deg);
}

.pfr-location-map__road--c {
  top: 50%;
  left: 21%;
  width: 72%;
  transform: rotate(58deg);
}

.pfr-location-map__pin {
  position: absolute;
  left: 50%;
  top: 52%;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px 999px 999px 2px;
  background: var(--pfr-red-gradient);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.42);
  transform: translate(-50%, -72%) rotate(-45deg);
}

.pfr-location-map__pin span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--pfr-white);
}

.pfr-location-map__label {
  position: absolute;
  padding: 4px 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(5, 6, 8, 0.76);
  backdrop-filter: blur(8px);
}

.pfr-location-map__label--main {
  left: 50%;
  top: 57%;
  color: var(--pfr-white);
  background: rgba(167, 15, 22, 0.9);
  transform: translateX(-50%);
}

.pfr-location-map__label--essen {
  left: 14%;
  bottom: 21%;
}

.pfr-location-map__label--bochum {
  right: 13%;
  bottom: 20%;
}

.pfr-location-map__label--herne {
  right: 18%;
  top: 25%;
}

.pfr-location-map__label--bottrop {
  left: 11%;
  top: 27%;
}

.pfr-location-map__body {
  display: grid;
  gap: 8px;
}

.pfr-location-map__body .pfr-front-eyebrow {
  margin-bottom: 0;
}

.pfr-location-map__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.pfr-location-map__load {
  min-height: 42px;
  padding: 10px 14px;
  font-size: var(--pfr-type-sm);
}

body.pfr-modern .pfr-location-map__route {
  color: var(--pfr-white);
  font-size: var(--pfr-type-sm);
  font-weight: 800;
  text-decoration-color: rgba(255, 255, 255, 0.7);
}

body.pfr-modern .pfr-location-map__route:hover {
  color: var(--pfr-red-bright);
  text-decoration-color: var(--pfr-red-bright);
}

.pfr-location-map__privacy {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68) !important;
  font-size: var(--pfr-type-xs);
  line-height: 1.45;
}

.pfr-location-map.is-loaded .pfr-location-map__load,
.pfr-location-map.is-loaded .pfr-location-map__privacy {
  display: none;
}

.pfr-location-map__iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 188px;
  border: 0;
}

.pfr-error-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.pfr-front {
  background: var(--pfr-white);
}

.pfr-front-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--pfr-white);
  background: var(--pfr-hero-image, linear-gradient(135deg, var(--pfr-black), var(--pfr-gray-900)));
  background-position: center;
  background-size: cover;
  border-bottom: 1px solid rgba(215, 25, 32, 0.5);
}

.pfr-front-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 34%, rgba(215, 25, 32, 0.38), transparent 24%),
    linear-gradient(90deg, rgba(5, 6, 8, 0.98) 0%, rgba(8, 10, 13, 0.9) 50%, rgba(8, 10, 13, 0.5) 100%);
  pointer-events: none;
}

body.pfr-modern .pfr-front-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.pfr-front-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  grid-template-rows: auto auto auto auto;
  align-content: end;
  align-items: start;
  gap: clamp(28px, 7vw, 96px);
  min-height: clamp(620px, 78vh, 820px);
  padding-block: clamp(52px, 8vw, 96px) clamp(42px, 8vw, 82px);
}

.pfr-front-hero__content {
  display: contents;
  max-width: 880px;
}

.pfr-front-eyebrow {
  margin: 0 0 0.85rem;
  color: var(--pfr-red);
  font-size: var(--pfr-type-xs);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pfr-front-hero__eyebrow {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 1rem;
}

.pfr-front-hero h1,
.pfr-front-section--dark h2,
.pfr-footer-cta h2 {
  color: var(--pfr-white);
}

.pfr-front-hero h1 {
  grid-column: 1;
  grid-row: 2;
  max-width: 10.5ch;
  margin: 0 0 1rem;
  font-size: var(--pfr-type-hero);
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.84);
}

.pfr-hero-rating-card {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  justify-self: end;
  display: grid;
  gap: 6px;
  width: min(100%, 216px);
  padding: 12px 14px;
  color: var(--pfr-white);
  text-decoration: none;
  background:
    linear-gradient(145deg, rgba(16, 19, 26, 0.86), rgba(5, 6, 8, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 4px solid var(--pfr-red);
  border-radius: var(--pfr-radius);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  transition: border-color var(--pfr-transition), background var(--pfr-transition), transform var(--pfr-transition);
}

.pfr-hero-rating-card:hover,
.pfr-hero-rating-card:focus {
  color: var(--pfr-white);
  border-color: rgba(255, 255, 255, 0.32);
  background:
    linear-gradient(145deg, rgba(24, 29, 37, 0.9), rgba(5, 6, 8, 0.78));
  transform: translateY(-1px);
}

.pfr-hero-rating-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-size: var(--pfr-type-xs);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.pfr-hero-rating-card__stars {
  color: #ffcc00;
  font-size: 0.82rem;
  letter-spacing: 0;
}

.pfr-hero-rating-card strong {
  display: flex;
  align-items: baseline;
  gap: 2px;
  color: var(--pfr-white);
  font-size: 1.46rem;
  line-height: 1;
}

.pfr-hero-rating-card strong span,
.pfr-hero-rating-card__count {
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--pfr-type-small);
  font-weight: 800;
  line-height: 1.25;
}

.pfr-front-hero__lead {
  grid-column: 1;
  grid-row: 3;
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.92);
  font-size: var(--pfr-type-lead);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.76);
}

.pfr-front-actions {
  grid-column: 1;
  grid-row: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.pfr-front-proof {
  grid-column: 2;
  grid-row: 3 / span 2;
  align-self: end;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pfr-front-proof li {
  padding: 18px;
  background: linear-gradient(145deg, rgba(16, 19, 26, 0.8), rgba(5, 6, 8, 0.64));
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--pfr-radius);
  border-left: 4px solid var(--pfr-red-bright);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.26);
}

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

.pfr-front-proof strong {
  color: var(--pfr-white);
  font-size: var(--pfr-type-display);
  line-height: 1.1;
}

.pfr-front-proof span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.86);
}

.pfr-front-band {
  color: var(--pfr-white);
  background:
    linear-gradient(90deg, #5b070b, var(--pfr-red-dark) 34%, var(--pfr-red) 72%, #5b070b);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.pfr-front-advantages {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pfr-front-advantages li {
  min-height: 78px;
  padding: 22px 18px;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 850;
  background: rgba(0, 0, 0, 0.2);
  border-inline: 1px solid rgba(255, 255, 255, 0.08);
}

.pfr-front-section {
  padding-block: clamp(64px, 9vw, 118px);
}

.pfr-front-section--muted {
  background: linear-gradient(180deg, #f7f8fa, #eceff3);
}

.pfr-front-section--intro {
  color: var(--pfr-white);
  background:
    radial-gradient(circle at 80% 18%, rgba(215, 25, 32, 0.18), transparent 30%),
    linear-gradient(135deg, var(--pfr-carbon), var(--pfr-panel) 62%, #080a0d);
}

.pfr-front-section--dark {
  color: var(--pfr-white);
  background:
    radial-gradient(circle at 18% 22%, rgba(215, 25, 32, 0.22), transparent 28%),
    linear-gradient(135deg, var(--pfr-carbon), var(--pfr-panel));
}

.pfr-front-section--intro h2,
.pfr-front-section--intro p,
.pfr-front-section--intro li {
  color: var(--pfr-white);
}

.pfr-front-section--intro p,
.pfr-front-section--intro li {
  color: rgba(255, 255, 255, 0.86);
}

.pfr-front-section--intro .pfr-front-eyebrow,
.pfr-front-section--dark .pfr-front-eyebrow {
  color: var(--pfr-red-bright);
}

.pfr-front-section__head {
  max-width: 720px;
  margin-bottom: clamp(28px, 5vw, 54px);
}

.pfr-front-section__head p {
  color: var(--pfr-gray-700);
}

.pfr-front-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(34px, 7vw, 86px);
}

.pfr-front-split--reverse {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
}

.pfr-front-checks,
.pfr-quality-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.pfr-front-checks li,
.pfr-quality-list li {
  position: relative;
  padding-left: 30px;
}

.pfr-front-checks li::before,
.pfr-quality-list li::before {
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--pfr-red);
  border-radius: 50%;
  content: "";
}

.pfr-comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.pfr-comparison figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--pfr-radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.35);
}

.pfr-comparison__image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.pfr-comparison figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 10px;
  color: var(--pfr-white);
  background: rgba(5, 6, 8, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--pfr-radius);
  font-weight: 850;
}

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

.pfr-service-card {
  position: relative;
  min-height: 100%;
  padding: 24px;
  background: var(--pfr-white);
  border: 1px solid var(--pfr-gray-200);
  border-top: 4px solid var(--pfr-red);
  border-radius: var(--pfr-radius);
  box-shadow: 0 16px 34px rgba(8, 10, 13, 0.08);
}

.pfr-service-card::before {
  display: block;
  width: 38px;
  height: 5px;
  margin-bottom: 18px;
  background: var(--pfr-red-gradient);
  border-radius: 999px;
  content: "";
}

.pfr-service-card h3 {
  font-size: var(--pfr-type-card-title);
}

.pfr-service-card p {
  color: var(--pfr-gray-700);
}

.pfr-front-media {
  min-height: clamp(390px, 52vw, 620px);
  overflow: hidden;
  border-radius: var(--pfr-radius);
  background:
    linear-gradient(180deg, rgba(5, 6, 8, 0.05), rgba(5, 6, 8, 0.28)),
    var(--pfr-process-image, linear-gradient(135deg, var(--pfr-panel), var(--pfr-steel)));
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(8, 10, 13, 0.1);
  box-shadow: var(--pfr-shadow);
}

.pfr-process-list {
  display: grid;
  gap: 18px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.pfr-process-list li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 16px;
  background: var(--pfr-white);
  border: 1px solid var(--pfr-gray-200);
  border-radius: var(--pfr-radius);
  box-shadow: 0 12px 26px rgba(8, 10, 13, 0.05);
}

.pfr-process-list > li > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--pfr-white);
  background: var(--pfr-red-gradient);
  border-radius: 50%;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(167, 15, 22, 0.24);
}

.pfr-process-list h3 {
  margin-bottom: 0.25rem;
  font-size: var(--pfr-type-card-title);
}

.pfr-process-list p {
  color: var(--pfr-gray-700);
}

.pfr-quality-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 7vw, 84px);
}

.pfr-quality-list {
  margin-top: 0;
}

.pfr-quality-list li {
  color: rgba(255, 255, 255, 0.82);
}

.pfr-price-table-wrap {
  overflow-x: auto;
  border: 1px solid #d7dce4;
  border-radius: var(--pfr-radius);
  box-shadow: 0 18px 38px rgba(8, 10, 13, 0.08);
}

.pfr-price-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: var(--pfr-white);
}

.pfr-price-table th,
.pfr-price-table td {
  padding: 16px 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--pfr-gray-200);
}

.pfr-price-table thead th {
  color: var(--pfr-white);
  background: linear-gradient(135deg, var(--pfr-carbon), var(--pfr-panel));
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.pfr-price-table tbody th {
  width: 42%;
  color: var(--pfr-black);
  white-space: nowrap;
}

.pfr-price-table__weight {
  white-space: nowrap;
}

.pfr-price-table tbody td:last-child {
  color: var(--pfr-red-dark);
  font-size: var(--pfr-type-card-title);
  font-weight: 900;
  white-space: nowrap;
}

.pfr-front-note {
  margin-top: 16px;
  color: var(--pfr-gray-700);
  font-weight: 750;
}

.pfr-costs-hero .pfr-front-hero__inner {
  min-height: clamp(560px, 68vh, 760px);
  align-items: center;
}

.pfr-costs-hero .pfr-front-hero h1,
.pfr-costs-hero h1 {
  max-width: 11ch;
}

.pfr-costs-price-board {
  display: grid;
  gap: clamp(18px, 3vw, 28px);
}

.pfr-costs-price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pfr-costs-price-card {
  overflow: hidden;
  background: var(--pfr-white);
  border: 1px solid #d7dce4;
  border-radius: var(--pfr-radius);
  box-shadow: 0 18px 38px rgba(8, 10, 13, 0.08);
}

.pfr-costs-price-card__head {
  min-height: 178px;
  padding: 24px;
  color: var(--pfr-white);
  background:
    radial-gradient(circle at 88% 10%, rgba(215, 25, 32, 0.3), transparent 32%),
    linear-gradient(135deg, var(--pfr-carbon), var(--pfr-panel));
}

.pfr-costs-price-card__head p {
  margin: 0 0 10px;
  color: var(--pfr-red-bright);
  font-size: var(--pfr-type-xs);
  font-weight: 900;
  text-transform: uppercase;
}

.pfr-costs-price-card__head h3 {
  margin-bottom: 0.45rem;
  color: var(--pfr-white);
  font-size: var(--pfr-type-h3);
}

.pfr-costs-price-card__head span {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.pfr-costs-price-lines {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 14px;
}

.pfr-costs-price-lines div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 76px;
  padding: 14px;
  background: #f7f8fa;
  border: 1px solid var(--pfr-gray-200);
  border-radius: var(--pfr-radius);
}

.pfr-costs-price-lines dt {
  color: var(--pfr-black);
  font-weight: 900;
}

.pfr-costs-price-lines dt small {
  display: block;
  margin-top: 3px;
  color: var(--pfr-gray-700);
  font-size: var(--pfr-type-sm);
  font-weight: 750;
}

.pfr-costs-price-lines dd {
  margin: 0;
  color: var(--pfr-red-dark);
  font-size: var(--pfr-type-display);
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
}

.pfr-costs-addons {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: start;
  padding: clamp(22px, 4vw, 38px);
  background: linear-gradient(180deg, #f7f8fa, #eef1f5);
  border: 1px solid #d7dce4;
  border-radius: var(--pfr-radius);
  box-shadow: 0 16px 34px rgba(8, 10, 13, 0.07);
}

.pfr-costs-addons__head h3 {
  margin-bottom: 0.55rem;
  font-size: var(--pfr-type-h3);
}

.pfr-costs-addons__head p:not(.pfr-front-eyebrow) {
  color: var(--pfr-gray-700);
}

.pfr-costs-addon-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pfr-costs-addon-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 58px;
  padding: 13px 15px;
  background: var(--pfr-white);
  border: 1px solid var(--pfr-gray-200);
  border-left: 4px solid var(--pfr-red);
  border-radius: var(--pfr-radius);
}

.pfr-costs-addon-list span {
  color: var(--pfr-black);
  font-weight: 850;
}

.pfr-costs-addon-list small {
  display: block;
  margin-top: 2px;
  color: var(--pfr-gray-700);
  font-size: var(--pfr-type-sm);
  font-weight: 700;
}

.pfr-costs-addon-list strong {
  color: var(--pfr-red-dark);
  font-size: var(--pfr-type-card-title);
  line-height: 1;
  white-space: nowrap;
}

.pfr-costs-business-note {
  margin: 0;
  padding: 16px 18px;
  color: var(--pfr-white);
  background: var(--pfr-red-gradient);
  border-radius: var(--pfr-radius);
  font-weight: 850;
}

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

.pfr-costs-checks {
  margin-top: 0;
  padding: clamp(22px, 4vw, 34px);
  background: var(--pfr-white);
  border: 1px solid var(--pfr-gray-200);
  border-radius: var(--pfr-radius);
  box-shadow: 0 16px 34px rgba(8, 10, 13, 0.07);
}

.pfr-costs-process li {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.pfr-costs-process h3 {
  color: var(--pfr-white);
}

.pfr-costs-process p {
  color: rgba(255, 255, 255, 0.78);
}

.pfr-service-hero .pfr-front-hero__inner {
  min-height: clamp(560px, 70vh, 760px);
  align-items: center;
}

.pfr-service-hero h1 {
  max-width: 11.8ch;
}

.pfr-method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pfr-method-card {
  display: grid;
  align-content: start;
  gap: 0;
}

.pfr-method-card__tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  margin-bottom: 12px;
  padding: 5px 9px;
  color: var(--pfr-red-dark);
  background: #fff1f2;
  border: 1px solid rgba(215, 25, 32, 0.18);
  border-radius: 999px;
  font-size: var(--pfr-type-xs);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.pfr-method-card--recommended {
  color: var(--pfr-white);
  background:
    radial-gradient(circle at 88% 12%, rgba(215, 25, 32, 0.28), transparent 30%),
    linear-gradient(135deg, var(--pfr-carbon), var(--pfr-panel));
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 42px rgba(8, 10, 13, 0.18);
}

.pfr-method-card--recommended h3,
.pfr-method-card--recommended p {
  color: var(--pfr-white);
}

.pfr-method-card--recommended p {
  color: rgba(255, 255, 255, 0.82);
}

.pfr-method-card--recommended .pfr-method-card__tag {
  color: var(--pfr-white);
  background: var(--pfr-red-gradient);
  border-color: transparent;
}

.pfr-method-card__link {
  align-self: end;
  width: fit-content;
  margin-top: 12px;
  color: var(--pfr-red-dark);
  font-size: var(--pfr-type-sm);
  font-weight: 900;
  text-decoration: none;
}

.pfr-method-card__link::after {
  content: " →";
}

.pfr-method-card--recommended .pfr-method-card__link {
  color: var(--pfr-white);
}

.pfr-quality-actions {
  align-self: end;
}

.pfr-service-callout {
  padding: clamp(22px, 4vw, 34px);
  color: var(--pfr-white);
  background:
    radial-gradient(circle at 90% 8%, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(135deg, var(--pfr-red-dark), #5b070b);
  border-radius: var(--pfr-radius);
  box-shadow: 0 18px 38px rgba(8, 10, 13, 0.1);
}

.pfr-service-callout h3,
.pfr-service-callout p {
  color: var(--pfr-white);
}

.pfr-service-callout p {
  color: rgba(255, 255, 255, 0.84);
}

.pfr-service-callout .pfr-button--outline {
  color: var(--pfr-white) !important;
  background: transparent !important;
  border-color: rgba(255, 255, 255, 0.68) !important;
}

.pfr-service-callout .pfr-button--outline:hover,
.pfr-service-callout .pfr-button--outline:focus,
.pfr-service-callout .pfr-button--outline:focus-visible,
.pfr-service-callout .pfr-button--outline:active {
  color: var(--pfr-black) !important;
  background: var(--pfr-white) !important;
  border-color: var(--pfr-white) !important;
}

.pfr-shipping-hero {
  position: relative;
  overflow: hidden;
  color: var(--pfr-white);
  background:
    radial-gradient(circle at 84% 16%, rgba(215, 25, 32, 0.24), transparent 30%),
    radial-gradient(circle at 14% 88%, rgba(215, 25, 32, 0.16), transparent 32%),
    linear-gradient(135deg, #050608, var(--pfr-carbon) 54%, #0f1218);
  border-bottom: 1px solid rgba(215, 25, 32, 0.58);
}

.pfr-shipping-hero::before {
  position: absolute;
  inset: auto -10% -38% 38%;
  height: 420px;
  background: linear-gradient(90deg, transparent, rgba(215, 25, 32, 0.22), transparent);
  transform: rotate(-8deg);
  content: "";
}

.pfr-shipping-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(340px, 0.76fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  min-height: clamp(500px, 58vh, 680px);
  padding-block: clamp(46px, 7vw, 82px);
}

.pfr-shipping-hero__content {
  max-width: 790px;
}

.pfr-shipping-hero h1 {
  max-width: 760px;
  margin-bottom: 1rem;
  color: var(--pfr-white);
  font-size: clamp(2.65rem, 5vw, 4.65rem);
  line-height: 1;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.72);
}

.pfr-shipping-hero__lead {
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.88);
  font-size: var(--pfr-type-lead);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.62);
}

.pfr-shipping-hero__visual {
  margin: 0;
  padding: clamp(12px, 2vw, 18px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: calc(var(--pfr-radius) + 4px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
}

.pfr-shipping-hero__visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--pfr-radius);
}

.pfr-shipping-hero__visual figcaption {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--pfr-type-sm);
  font-weight: 750;
}

.pfr-shipping-summary {
  color: var(--pfr-white);
  background:
    linear-gradient(90deg, #5b070b, var(--pfr-red-dark) 38%, var(--pfr-red) 72%, #5b070b);
}

.pfr-shipping-summary ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pfr-shipping-summary li {
  min-height: 92px;
  padding: 18px;
  background: rgba(0, 0, 0, 0.22);
  border-inline: 1px solid rgba(255, 255, 255, 0.08);
}

.pfr-shipping-summary strong,
.pfr-shipping-summary span {
  display: block;
}

.pfr-shipping-summary strong {
  margin-bottom: 5px;
  font-size: var(--pfr-type-card-title);
  line-height: 1.1;
}

.pfr-shipping-summary span {
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--pfr-type-sm);
}

.pfr-shipping-summary--simple ul {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pfr-shipping-simple-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pfr-shipping-simple-steps article {
  min-height: 100%;
  padding: clamp(22px, 3vw, 30px);
  background: var(--pfr-white);
  border: 1px solid var(--pfr-gray-200);
  border-top: 4px solid var(--pfr-red);
  border-radius: var(--pfr-radius);
  box-shadow: 0 14px 30px rgba(8, 10, 13, 0.07);
}

.pfr-shipping-simple-steps article > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  color: var(--pfr-white);
  background: var(--pfr-red-gradient);
  border-radius: 50%;
  font-weight: 900;
}

.pfr-shipping-simple-steps h3 {
  margin-bottom: 0.45rem;
  font-size: var(--pfr-type-card-title);
}

.pfr-shipping-simple-steps p {
  color: var(--pfr-gray-700);
}

.pfr-shipping-compact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.pfr-shipping-detail-card {
  min-height: 100%;
  padding: clamp(24px, 4vw, 40px);
  background: var(--pfr-white);
  border: 1px solid #d7dce4;
  border-top: 4px solid var(--pfr-red);
  border-radius: var(--pfr-radius);
  box-shadow: 0 18px 38px rgba(8, 10, 13, 0.08);
}

.pfr-shipping-detail-card h2 {
  font-size: var(--pfr-type-h3);
}

.pfr-shipping-detail-card address {
  margin-top: 20px;
  padding: 18px;
  color: var(--pfr-white);
  font-style: normal;
  background:
    radial-gradient(circle at 90% 10%, rgba(215, 25, 32, 0.24), transparent 30%),
    linear-gradient(135deg, var(--pfr-carbon), var(--pfr-panel));
  border-radius: var(--pfr-radius);
}

.pfr-shipping-detail-card .pfr-button {
  margin-top: 18px;
}

.pfr-shipping-detail-card--compact h3 {
  margin-bottom: 16px;
  font-size: var(--pfr-type-h3);
}

.pfr-shipping-compact-checks {
  margin-top: 0;
}

.pfr-shipping-option-list {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.pfr-shipping-option-list div {
  display: grid;
  gap: 4px;
  padding: 14px;
  background: #f8fafc;
  border: 1px solid #d7dce4;
  border-left: 4px solid var(--pfr-red);
  border-radius: var(--pfr-radius);
}

.pfr-shipping-option-list strong,
.pfr-shipping-option-list span {
  display: block;
}

.pfr-shipping-option-list strong {
  color: var(--pfr-black);
  font-size: var(--pfr-type-card-title);
}

.pfr-shipping-option-list span {
  color: var(--pfr-gray-700);
}

.pfr-process-hero {
  position: relative;
  overflow: hidden;
  color: var(--pfr-white);
  background:
    radial-gradient(circle at 82% 12%, rgba(215, 25, 32, 0.28), transparent 30%),
    linear-gradient(135deg, #050608 0%, #10131a 58%, #050608 100%);
  border-bottom: 1px solid rgba(215, 25, 32, 0.58);
}

.pfr-process-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(215, 25, 32, 0.18), transparent 28%, rgba(255, 255, 255, 0.04) 50%, transparent 72%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 18px);
  opacity: 0.54;
  content: "";
}

.pfr-process-hero__inner {
  position: relative;
  display: grid;
  gap: clamp(28px, 5vw, 58px);
  min-height: clamp(560px, 72vh, 820px);
  padding-block: clamp(48px, 7vw, 84px) clamp(42px, 6vw, 76px);
}

.pfr-process-hero__intro {
  display: grid;
  justify-items: center;
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
}

.pfr-process-hero h1 {
  max-width: 880px;
  margin-bottom: 1rem;
  color: var(--pfr-white);
  font-size: clamp(2.35rem, 4.1vw, 3.75rem);
  line-height: 1.03;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.74);
}

.pfr-process-hero__lead {
  max-width: 64ch;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.88);
  font-size: var(--pfr-type-lead);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.62);
}

.pfr-process-hero .pfr-front-actions {
  justify-content: center;
}

.pfr-process-hero__stage {
  position: relative;
  margin: 0;
  padding: clamp(10px, 2vw, 16px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: calc(var(--pfr-radius) + 4px);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.38);
}

.pfr-process-hero__stage img {
  display: block;
  width: 100%;
  height: clamp(280px, 42vw, 520px);
  object-fit: cover;
  object-position: center;
  border-radius: var(--pfr-radius);
}

.pfr-process-hero__stage figcaption {
  position: absolute;
  top: clamp(20px, 3vw, 34px);
  left: clamp(20px, 3vw, 34px);
  max-width: min(390px, calc(100% - 48px));
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(5, 6, 8, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--pfr-radius);
  backdrop-filter: blur(10px);
  font-size: var(--pfr-type-xs);
  font-weight: 750;
}

.pfr-process-hero__signals {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: -34px clamp(10px, 2vw, 24px) 0;
  padding: 0;
  list-style: none;
  z-index: 1;
}

.pfr-process-hero__signals li {
  min-height: 96px;
  padding: 16px;
  color: var(--pfr-white);
  background:
    linear-gradient(145deg, rgba(215, 25, 32, 0.95), rgba(91, 7, 11, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--pfr-radius);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.26);
}

.pfr-process-hero__signals strong,
.pfr-process-hero__signals span {
  display: block;
}

.pfr-process-hero__signals strong {
  margin-bottom: 5px;
  color: var(--pfr-white);
  font-size: var(--pfr-type-card-title);
  line-height: 1.1;
}

.pfr-process-hero__signals span {
  color: rgba(255, 255, 255, 0.84);
  font-size: var(--pfr-type-sm);
}

.pfr-process-summary {
  color: var(--pfr-white);
  background:
    linear-gradient(90deg, #5b070b, var(--pfr-red-dark) 40%, var(--pfr-red) 74%, #5b070b);
}

.pfr-process-summary ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pfr-process-summary li {
  min-height: 100px;
  padding: 18px;
  background: rgba(0, 0, 0, 0.24);
  border-inline: 1px solid rgba(255, 255, 255, 0.08);
}

.pfr-process-summary strong,
.pfr-process-summary span {
  display: block;
}

.pfr-process-summary strong {
  margin-bottom: 5px;
  color: var(--pfr-white);
  font-size: var(--pfr-type-card-title);
  line-height: 1.1;
}

.pfr-process-summary span {
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--pfr-type-sm);
}

.pfr-process-meaning-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.pfr-process-meaning-grid article {
  padding: clamp(24px, 4vw, 36px);
  background: var(--pfr-white);
  border: 1px solid #d7dce4;
  border-top: 4px solid var(--pfr-red);
  border-radius: var(--pfr-radius);
  box-shadow: 0 16px 36px rgba(8, 10, 13, 0.08);
}

.pfr-process-meaning-grid h3 {
  font-size: var(--pfr-type-h3);
}

.pfr-process-meaning-grid p {
  color: var(--pfr-gray-700);
}

.pfr-process-step-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.pfr-process-step-grid article {
  min-height: 100%;
  padding: clamp(20px, 3vw, 28px);
  background: var(--pfr-white);
  border: 1px solid var(--pfr-gray-200);
  border-radius: var(--pfr-radius);
  box-shadow: 0 14px 30px rgba(8, 10, 13, 0.07);
}

.pfr-process-step-grid article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 34px;
  margin-bottom: 16px;
  padding-inline: 10px;
  color: var(--pfr-white);
  background: var(--pfr-red-gradient);
  border-radius: 999px;
  font-size: var(--pfr-type-sm);
  font-weight: 900;
  line-height: 1;
}

.pfr-process-step-grid h3 {
  margin-bottom: 0.45rem;
  font-size: var(--pfr-type-card-title);
}

.pfr-process-step-grid p {
  color: var(--pfr-gray-700);
  font-size: var(--pfr-type-meta);
}

.pfr-process-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.pfr-process-image-card {
  overflow: hidden;
  min-height: 100%;
  background: var(--pfr-white);
  border: 1px solid #d7dce4;
  border-radius: var(--pfr-radius);
  box-shadow: 0 18px 42px rgba(8, 10, 13, 0.09);
}

.pfr-process-image-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.pfr-process-image-card div {
  padding: clamp(22px, 3vw, 32px);
}

.pfr-process-image-card h3 {
  font-size: var(--pfr-type-h3);
}

.pfr-process-image-card p {
  color: var(--pfr-gray-700);
}

.pfr-process-limits {
  margin-top: 0;
}

.pfr-front-section--dark .pfr-process-limits li {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.pfr-process-cta {
  color: var(--pfr-white);
  background:
    radial-gradient(circle at 12% 12%, rgba(215, 25, 32, 0.24), transparent 34%),
    linear-gradient(135deg, var(--pfr-carbon), var(--pfr-panel) 58%, #080a0d);
}

.pfr-process-cta__box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  padding: clamp(26px, 5vw, 48px);
  background:
    radial-gradient(circle at 86% 18%, rgba(215, 25, 32, 0.22), transparent 28%),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: calc(var(--pfr-radius) + 2px);
}

.pfr-process-cta h2,
.pfr-process-cta p {
  color: var(--pfr-white);
}

.pfr-process-cta p {
  max-width: 72ch;
  color: rgba(255, 255, 255, 0.82);
}

.pfr-method-detail-hero {
  color: var(--pfr-white);
  background:
    radial-gradient(circle at 18% 20%, rgba(215, 25, 32, 0.22), transparent 32%),
    radial-gradient(circle at 86% 12%, rgba(215, 25, 32, 0.2), transparent 30%),
    linear-gradient(135deg, #050608, #11151d 58%, #050608);
  border-bottom: 1px solid rgba(215, 25, 32, 0.55);
}

.pfr-method-detail-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: end;
  min-height: clamp(500px, 62vh, 700px);
  padding-block: clamp(48px, 7vw, 86px);
}

.pfr-method-detail-hero__copy {
  max-width: 860px;
}

.pfr-method-detail-hero h1 {
  max-width: 900px;
  color: var(--pfr-white);
  font-size: clamp(2.35rem, 4.4vw, 4.35rem);
  line-height: 1.02;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.72);
}

.pfr-method-detail-hero__lead {
  max-width: 66ch;
  color: rgba(255, 255, 255, 0.86);
  font-size: var(--pfr-type-lead);
}

.pfr-method-detail-hero__panel {
  padding: clamp(22px, 4vw, 34px);
  color: var(--pfr-white);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.12), transparent 32%),
    linear-gradient(145deg, rgba(215, 25, 32, 0.92), rgba(91, 7, 11, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--pfr-radius);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.28);
}

.pfr-method-detail-hero__panel span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 9px;
  color: var(--pfr-white);
  background: rgba(0, 0, 0, 0.22);
  border-radius: 999px;
  font-size: var(--pfr-type-xs);
  font-weight: 900;
  text-transform: uppercase;
}

.pfr-method-detail-hero__panel strong {
  display: block;
  margin-bottom: 10px;
  font-size: var(--pfr-type-h3);
  line-height: 1.08;
}

.pfr-method-detail-hero__panel p {
  color: rgba(255, 255, 255, 0.84);
}

.pfr-method-detail--analysis .pfr-method-detail-hero__panel,
.pfr-method-detail--tool .pfr-method-detail-hero__panel {
  background:
    radial-gradient(circle at 90% 10%, rgba(215, 25, 32, 0.24), transparent 32%),
    linear-gradient(145deg, var(--pfr-panel), #242933);
}

.pfr-method-detail--water .pfr-method-detail-hero__panel,
.pfr-method-detail--dryice .pfr-method-detail-hero__panel {
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.12), transparent 32%),
    linear-gradient(145deg, #1b2029, #5b070b);
}

.pfr-method-detail-visual {
  padding-block: clamp(42px, 7vw, 78px);
  background: var(--pfr-white);
}

.pfr-method-detail-visual__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 0.9fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}

.pfr-method-detail-visual figure {
  overflow: hidden;
  margin: 0;
  background: var(--pfr-carbon);
  border-radius: var(--pfr-radius);
  box-shadow: 0 20px 48px rgba(8, 10, 13, 0.16);
}

.pfr-method-detail-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.pfr-method-detail-visual p {
  color: var(--pfr-gray-700);
}

.pfr-method-detail-stack {
  display: grid;
  gap: 14px;
}

.pfr-method-detail-stack article {
  padding: clamp(18px, 3vw, 26px);
  background: var(--pfr-white);
  border: 1px solid #d7dce4;
  border-left: 4px solid var(--pfr-red);
  border-radius: var(--pfr-radius);
  box-shadow: 0 14px 34px rgba(8, 10, 13, 0.07);
}

.pfr-method-detail-stack p {
  margin: 0;
  color: var(--pfr-gray-700);
}

.pfr-method-detail-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 5vw, 58px);
}

.pfr-method-detail-list,
.pfr-method-risk-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pfr-method-detail-list li,
.pfr-method-risk-list li {
  position: relative;
  padding: 14px 16px 14px 34px;
  background: var(--pfr-white);
  border: 1px solid #d7dce4;
  border-radius: var(--pfr-radius);
  color: var(--pfr-gray-700);
}

.pfr-method-detail-list li::before,
.pfr-method-risk-list li::before {
  position: absolute;
  top: 1.05em;
  left: 16px;
  width: 8px;
  height: 8px;
  background: var(--pfr-red);
  border-radius: 50%;
  content: "";
}

.pfr-method-detail-list--positive li::before {
  background: #15803d;
}

.pfr-front-section--dark .pfr-method-risk-list li {
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.13);
}

.pfr-method-sources {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 1fr);
  gap: clamp(22px, 5vw, 56px);
  align-items: start;
}

.pfr-method-sources p {
  color: var(--pfr-gray-700);
}

.pfr-method-sources ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pfr-method-sources li {
  padding: 14px 16px;
  background: var(--pfr-white);
  border: 1px solid #d7dce4;
  border-left: 4px solid var(--pfr-red);
  border-radius: var(--pfr-radius);
}

.pfr-method-detail-cta {
  color: var(--pfr-white);
  background:
    radial-gradient(circle at 12% 18%, rgba(215, 25, 32, 0.24), transparent 32%),
    linear-gradient(135deg, var(--pfr-carbon), var(--pfr-panel) 58%, #080a0d);
}

.pfr-method-detail-cta .pfr-process-cta__box h2 {
  color: var(--pfr-white);
}

.pfr-method-detail-cta .pfr-process-cta__box p:not(.pfr-front-eyebrow) {
  color: rgba(255, 255, 255, 0.84);
}

.pfr-references-hero {
  color: var(--pfr-white);
  background:
    radial-gradient(circle at 82% 14%, rgba(215, 25, 32, 0.24), transparent 34%),
    linear-gradient(135deg, #050608, #151922 56%, #050608);
  border-bottom: 1px solid rgba(215, 25, 32, 0.55);
}

.pfr-references-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.58fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: clamp(500px, 62vh, 720px);
  padding-block: clamp(48px, 7vw, 86px);
}

.pfr-references-hero h1 {
  max-width: 780px;
  color: var(--pfr-white);
  font-size: clamp(2.35rem, 4.4vw, 4.25rem);
  line-height: 1.02;
}

.pfr-references-hero p {
  max-width: 70ch;
  color: rgba(255, 255, 255, 0.84);
  font-size: var(--pfr-type-lead);
}

.pfr-references-scorecard {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.pfr-references-scorecard div {
  min-height: 130px;
  padding: 18px;
  color: var(--pfr-white);
  background:
    radial-gradient(circle at 92% 12%, rgba(215, 25, 32, 0.24), transparent 32%),
    rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--pfr-radius);
}

.pfr-references-scorecard strong,
.pfr-references-scorecard span {
  display: block;
}

.pfr-references-scorecard strong {
  color: var(--pfr-white);
  font-size: var(--pfr-type-h3);
  line-height: 1;
}

.pfr-references-scorecard span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--pfr-type-sm);
}

.pfr-reference-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.pfr-reference-proof-card {
  display: grid;
  gap: 12px;
  padding: clamp(20px, 3vw, 28px);
  background: var(--pfr-white);
  border: 1px solid #d7dce4;
  border-top: 4px solid var(--pfr-red);
  border-radius: var(--pfr-radius);
  box-shadow: 0 14px 34px rgba(8, 10, 13, 0.07);
}

.pfr-reference-proof-card span {
  color: var(--pfr-red-dark);
  font-size: var(--pfr-type-xs);
  font-weight: 900;
  text-transform: uppercase;
}

.pfr-reference-proof-card strong {
  color: var(--pfr-black);
  font-size: var(--pfr-type-h3);
  line-height: 1;
}

.pfr-reference-proof-card p {
  margin: 0;
  color: var(--pfr-gray-700);
}

.pfr-reference-meter {
  height: 8px;
  overflow: hidden;
  background: #e3e7ed;
  border-radius: 999px;
}

.pfr-reference-meter i {
  display: block;
  width: 88%;
  height: 100%;
  background: linear-gradient(90deg, var(--pfr-red), var(--pfr-red-dark));
  border-radius: inherit;
}

.pfr-reference-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pfr-reference-card {
  display: grid;
  align-content: start;
  min-height: 100%;
  padding: clamp(22px, 3vw, 30px);
  background: var(--pfr-white);
  border: 1px solid #d7dce4;
  border-top: 4px solid var(--pfr-red);
  border-radius: var(--pfr-radius);
  box-shadow: 0 18px 40px rgba(8, 10, 13, 0.08);
}

.pfr-reference-card--featured {
  color: var(--pfr-white);
  background:
    radial-gradient(circle at 90% 10%, rgba(215, 25, 32, 0.22), transparent 34%),
    linear-gradient(135deg, var(--pfr-carbon), var(--pfr-panel));
  border-color: rgba(255, 255, 255, 0.12);
}

.pfr-reference-card span {
  color: var(--pfr-red-dark);
  font-size: var(--pfr-type-xs);
  font-weight: 900;
  text-transform: uppercase;
}

.pfr-reference-card__kicker {
  display: block;
}

.pfr-reference-card--featured span,
.pfr-reference-card--featured h3,
.pfr-reference-card--featured p,
.pfr-reference-card--featured strong {
  color: var(--pfr-white);
}

.pfr-reference-card__meta {
  color: var(--pfr-gray-700);
  font-weight: 800;
}

.pfr-reference-card__body p {
  color: var(--pfr-gray-700);
}

.pfr-reference-card__body strong {
  color: var(--pfr-black);
}

.pfr-reference-card--featured .pfr-reference-card__meta,
.pfr-reference-card--featured .pfr-reference-card__body p {
  color: rgba(255, 255, 255, 0.74);
}

.pfr-reference-card--featured .pfr-reference-card__body strong {
  color: var(--pfr-white);
}

.pfr-reference-card > strong {
  margin-top: 14px;
  color: var(--pfr-red-dark);
  line-height: 1.25;
}

.pfr-reference-card--featured > strong {
  color: #ff3c43;
}

.pfr-reference-card__result {
  display: grid;
  gap: 6px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #d7dce4;
}

.pfr-reference-card--featured .pfr-reference-card__result {
  border-color: rgba(255, 255, 255, 0.14);
}

.pfr-reference-card__result span {
  color: var(--pfr-red-dark);
  font-size: var(--pfr-type-xs);
  font-weight: 900;
  text-transform: uppercase;
}

.pfr-reference-card__result strong {
  color: var(--pfr-red-dark);
  line-height: 1.25;
}

.pfr-reference-card--featured .pfr-reference-card__result span,
.pfr-reference-card--featured .pfr-reference-card__result strong {
  color: #ff3c43;
}

.pfr-reference-card__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.pfr-reference-card__signals span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  color: var(--pfr-gray-700);
  background: #f0f2f5;
  border: 1px solid #d7dce4;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: none;
}

.pfr-reference-card--featured .pfr-reference-card__signals span {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.pfr-reference-flow {
  display: grid;
  gap: 12px;
}

.pfr-reference-flow article {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--pfr-radius);
}

.pfr-reference-flow span {
  display: block;
  color: #ff3c43;
  font-size: var(--pfr-type-xs);
  font-weight: 900;
  text-transform: uppercase;
}

.pfr-reference-flow p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.pfr-review-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pfr-review-list figure {
  margin: 0;
  padding: clamp(22px, 3vw, 30px);
  background: var(--pfr-white);
  border: 1px solid #d7dce4;
  border-radius: var(--pfr-radius);
  box-shadow: 0 14px 34px rgba(8, 10, 13, 0.07);
}

.pfr-review-rating {
  margin-bottom: 12px;
  color: var(--pfr-red);
  letter-spacing: 0;
  font-weight: 900;
}

.pfr-review-list blockquote {
  margin: 0;
}

.pfr-review-list figcaption {
  margin-top: 12px;
  color: var(--pfr-gray-700);
  font-weight: 850;
}

.pfr-reviews-hero {
  color: var(--pfr-white);
  background:
    radial-gradient(circle at 84% 12%, rgba(215, 25, 32, 0.28), transparent 34%),
    linear-gradient(135deg, #050608, #151922 56%, #050608);
  border-bottom: 1px solid rgba(215, 25, 32, 0.55);
}

.pfr-reviews-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.48fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: clamp(520px, 64vh, 730px);
  padding-block: clamp(54px, 8vw, 92px);
}

.pfr-reviews-hero h1 {
  max-width: 820px;
  color: var(--pfr-white);
  font-size: clamp(2.45rem, 4.5vw, 4.35rem);
  line-height: 1.02;
}

.pfr-reviews-hero p {
  max-width: 70ch;
  color: rgba(255, 255, 255, 0.84);
  font-size: var(--pfr-type-lead);
}

.pfr-rating-panel {
  padding: clamp(24px, 4vw, 34px);
  color: var(--pfr-white);
  background:
    radial-gradient(circle at 86% 10%, rgba(215, 25, 32, 0.3), transparent 34%),
    rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--pfr-radius);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.28);
}

.pfr-rating-panel__label {
  margin-bottom: 16px;
  color: #ff4d55 !important;
  font-size: var(--pfr-type-xs) !important;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pfr-rating-panel__score {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.pfr-rating-panel__score strong {
  color: var(--pfr-white);
  font-size: clamp(4.1rem, 9vw, 6.5rem);
  line-height: 0.9;
}

.pfr-rating-panel__score span {
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--pfr-type-h3);
  font-weight: 900;
}

.pfr-rating-panel h2 {
  color: var(--pfr-white);
  font-size: var(--pfr-type-card-title);
}

.pfr-rating-panel a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--pfr-white);
  font-weight: 850;
}

.pfr-rating-panel__meta {
  margin: -2px 0 8px;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: var(--pfr-type-small) !important;
}

.pfr-review-stars {
  margin: 14px 0 16px;
  color: #ffcc00;
  font-size: 1.1rem;
  letter-spacing: 0;
}

.pfr-review-trust {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.7fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: end;
  margin-bottom: clamp(26px, 5vw, 44px);
}

.pfr-review-trust__intro h2 {
  max-width: 760px;
}

.pfr-review-topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.pfr-review-topic-grid div {
  padding: 18px;
  background: var(--pfr-white);
  border: 1px solid #d7dce4;
  border-radius: var(--pfr-radius);
  box-shadow: 0 12px 28px rgba(8, 10, 13, 0.06);
}

.pfr-review-topic-grid span,
.pfr-trust-card h3 {
  color: var(--pfr-red-dark);
}

.pfr-review-topic-grid span {
  display: block;
  margin-bottom: 7px;
  font-size: var(--pfr-type-xs);
  font-weight: 900;
  text-transform: uppercase;
}

.pfr-review-topic-grid strong {
  color: var(--pfr-black);
  font-size: var(--pfr-type-card-title);
  line-height: 1;
}

.pfr-trust-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.pfr-trust-card {
  padding: clamp(20px, 3vw, 28px);
  background: var(--pfr-white);
  border: 1px solid #d7dce4;
  border-top: 4px solid var(--pfr-red);
  border-radius: var(--pfr-radius);
  box-shadow: 0 14px 34px rgba(8, 10, 13, 0.07);
}

.pfr-trust-card p {
  margin-bottom: 0;
  color: var(--pfr-gray-700);
}

.pfr-review-source-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
}

.pfr-review-source-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
  padding: clamp(24px, 4vw, 34px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 248, 250, 0.98)),
    var(--pfr-white);
  border: 1px solid #d7dce4;
  border-radius: var(--pfr-radius);
  box-shadow: 0 16px 38px rgba(8, 10, 13, 0.08);
}

.pfr-review-source-card > div:first-child {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}

.pfr-review-source-card span {
  display: inline-flex;
  padding: 7px 10px;
  color: var(--pfr-red-dark);
  background: rgba(215, 25, 32, 0.08);
  border: 1px solid rgba(215, 25, 32, 0.16);
  border-radius: 999px;
  font-size: var(--pfr-type-xs);
  font-weight: 900;
  text-transform: uppercase;
}

.pfr-review-source-card h3 {
  margin-bottom: 0;
  color: var(--pfr-black);
}

.pfr-review-source-card__score {
  display: grid;
  gap: 6px;
  padding: 18px;
  color: var(--pfr-white);
  background:
    radial-gradient(circle at 86% 20%, rgba(255, 255, 255, 0.16), transparent 34%),
    var(--pfr-red-gradient);
  border-radius: calc(var(--pfr-radius) - 4px);
}

.pfr-review-source-card__score strong {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 0.95;
}

.pfr-review-source-card__score small {
  color: rgba(255, 255, 255, 0.86);
  font-size: var(--pfr-type-body);
  font-weight: 850;
}

.pfr-review-source-card p {
  margin-bottom: 0;
  color: var(--pfr-gray-700);
}

.pfr-review-source-card .pfr-button {
  width: fit-content;
  margin-top: auto;
}

.pfr-review-list--quotes figure {
  position: relative;
  border-top: 4px solid var(--pfr-red);
}

.pfr-review-list--google figure {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-top: 4px solid #1f2937;
}

.pfr-review-list--quotes figure::before {
  position: absolute;
  top: 18px;
  right: 22px;
  content: "”";
  color: rgba(167, 15, 22, 0.14);
  font-size: 4.2rem;
  font-weight: 900;
  line-height: 1;
}

.pfr-review-list figcaption a,
.pfr-review-list__source-link {
  color: var(--pfr-red-dark);
  font-weight: 900;
  text-decoration: none;
}

.pfr-review-list figcaption a:hover,
.pfr-review-list figcaption a:focus,
.pfr-review-list__source-link:hover,
.pfr-review-list__source-link:focus {
  color: var(--pfr-red);
  text-decoration: underline;
}

.pfr-review-list figcaption span {
  display: block;
  margin-top: 4px;
  color: var(--pfr-gray-500);
  font-size: var(--pfr-type-sm);
}

.pfr-review-list__source-link {
  display: inline-flex;
  margin-top: auto;
  padding-top: 16px;
  font-size: var(--pfr-type-small);
}

.pfr-workshop-quote__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 0.85fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: center;
}

.pfr-workshop-quote figure {
  margin: 0;
  padding: clamp(24px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 4px solid var(--pfr-red);
  border-radius: var(--pfr-radius);
}

.pfr-workshop-quote blockquote {
  margin: 0;
  color: var(--pfr-white);
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  font-weight: 850;
  line-height: 1.22;
}

.pfr-workshop-quote figcaption {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 850;
}

.pfr-review-checklist ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pfr-review-checklist li {
  padding: 16px 18px 16px 48px;
  color: var(--pfr-gray-700);
  background: var(--pfr-white);
  border: 1px solid #d7dce4;
  border-radius: var(--pfr-radius);
  box-shadow: 0 10px 26px rgba(8, 10, 13, 0.06);
  position: relative;
}

.pfr-review-checklist li::before {
  position: absolute;
  top: 16px;
  left: 18px;
  content: "";
  width: 17px;
  height: 17px;
  border: 5px solid var(--pfr-red);
  border-radius: 999px;
}

.pfr-request-hero .pfr-front-hero__inner {
  min-height: clamp(560px, 70vh, 760px);
  align-items: center;
}

.pfr-request-hero h1 {
  max-width: 12ch;
}

.pfr-request-section {
  color: var(--pfr-white);
  background:
    radial-gradient(circle at 82% 12%, rgba(215, 25, 32, 0.18), transparent 30%),
    linear-gradient(135deg, var(--pfr-carbon), var(--pfr-panel) 58%, #080a0d);
}

.pfr-request-section--direct {
  padding-block: clamp(28px, 4vw, 54px) clamp(56px, 8vw, 92px);
}

.pfr-request-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}

.pfr-request-form-card {
  padding: clamp(22px, 4vw, 42px);
  color: var(--pfr-ink);
  background: var(--pfr-white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-top: 4px solid var(--pfr-red-dark);
  border-radius: var(--pfr-radius);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.32);
}

.pfr-request-form-card__head {
  max-width: 720px;
  margin-bottom: 18px;
}

.pfr-request-form-card__head h1 {
  font-size: var(--pfr-type-h2);
}

.pfr-request-form-card__head p:not(.pfr-front-eyebrow) {
  color: var(--pfr-gray-700);
}

.pfr-request-form-card .wpcf7 {
  max-width: none;
}

.pfr-request-form-card .wpcf7 form {
  gap: 16px;
}

.pfr-request-form-card .wpcf7-form h4 {
  margin: 24px 0 8px;
  padding-top: 22px;
  color: var(--pfr-black);
  border-top: 1px solid var(--pfr-gray-200);
  font-size: var(--pfr-type-card-title);
}

.pfr-request-form-card .wpcf7-form h4:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.pfr-request-form-card .wpcf7-form br {
  display: none;
}

.pfr-request-form-card .wpcf7-form-control-wrap {
  display: block;
  margin-top: 10px;
}

.pfr-request-form-card :where(input:not([type="checkbox"]):not([type="radio"]), textarea, select) {
  background: #f8fafc;
  border-color: #d6dce5;
}

.pfr-request-form-card .wpcf7-checkbox,
.pfr-request-form-card .wpcf7-exclusive-checkbox {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  gap: 10px;
  margin-top: 10px;
}

.pfr-request-form-card .wpcf7-list-item {
  display: block;
  margin: 0;
}

.pfr-request-form-card .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  margin: 0;
  padding: 10px 12px;
  color: var(--pfr-ink);
  background: #f8fafc;
  border: 1px solid #d6dce5;
  border-radius: var(--pfr-radius);
  font-weight: 800;
}

.pfr-request-form-card .wpcf7-list-item input {
  flex: 0 0 auto;
  margin: 0;
}

.pfr-request-form-card .llp-conditional-group {
  padding: 14px;
  background: #f8fafc;
  border: 1px solid #d6dce5;
  border-left: 4px solid var(--pfr-red-dark);
  border-radius: var(--pfr-radius);
}

.pfr-request-form-card .llp-hint {
  color: var(--pfr-gray-700);
  font-size: var(--pfr-type-sm);
}

.pfr-request-form-card .llp-copy-request {
  display: block;
  margin: 6px 0 0;
}

.pfr-request-form-card .llp-copy-request .wpcf7-checkbox {
  grid-template-columns: minmax(0, 1fr);
}

.pfr-request-form-card :where(.llp-shipping-details, .llp-addon-details) {
  padding: 14px;
  background: linear-gradient(180deg, #f8fafc, #eef1f5);
  border: 1px solid #d6dce5;
  border-radius: var(--pfr-radius);
}

.pfr-request-form-card :where(.llp-shipping-details, .llp-addon-details) summary {
  cursor: pointer;
}

.pfr-request-form-card :where(.llp-shipping-details, .llp-addon-details) summary p {
  display: inline;
  margin: 0 !important;
  color: var(--pfr-black);
  font-size: var(--pfr-type-card-title) !important;
  font-weight: 900;
}

.pfr-request-form-card button[type="submit"] {
  width: min(100%, 300px);
  margin-top: 8px;
}

.pfr-request-side {
  position: sticky;
  top: calc(var(--pfr-header-height) + 24px);
  display: grid;
  gap: 16px;
}

.pfr-request-side__panel,
.pfr-request-contact {
  padding: clamp(20px, 3vw, 28px);
  background: linear-gradient(145deg, rgba(16, 19, 26, 0.88), rgba(5, 6, 8, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--pfr-radius);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.pfr-request-side h2,
.pfr-request-side h3,
.pfr-request-side p,
.pfr-request-side li {
  color: var(--pfr-white);
}

.pfr-request-side p,
.pfr-request-side li {
  color: rgba(255, 255, 255, 0.82);
}

.pfr-request-checklist {
  margin-top: 22px;
}

.pfr-request-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pfr-request-step-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  color: var(--pfr-white);
  background: var(--pfr-red-gradient);
  border-radius: 50%;
  font-weight: 900;
  box-shadow: var(--pfr-red-shadow);
}

.pfr-image-card {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--pfr-carbon);
  border: 1px solid rgba(8, 10, 13, 0.12);
  border-radius: var(--pfr-radius);
  box-shadow: var(--pfr-shadow);
}

.pfr-image-card__image {
  display: block;
  width: 100%;
  min-height: clamp(360px, 42vw, 560px);
  object-fit: cover;
}

.pfr-image-card figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 12px 14px;
  color: var(--pfr-white);
  background: rgba(5, 6, 8, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--pfr-radius);
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.pfr-faq-list {
  display: grid;
  gap: 12px;
}

.pfr-faq-list details {
  background: var(--pfr-white);
  border: 1px solid var(--pfr-gray-200);
  border-radius: var(--pfr-radius);
}

.pfr-faq-list summary {
  min-height: 58px;
  padding: 16px 18px;
  color: var(--pfr-black);
  font-weight: 850;
  cursor: pointer;
}

.pfr-faq-list p {
  padding: 0 18px 18px;
  color: var(--pfr-gray-700);
}

@media (max-width: 1280px) and (min-width: 1121px) {
  .pfr-site-header__inner {
    gap: 14px;
  }

  body.pfr-modern .pfr-logo__image {
    max-width: clamp(240px, 22vw, 300px);
    max-height: 66px;
  }

  .pfr-nav__list a,
  .pfr-button.pfr-header-actions__cta {
    padding-inline: 7px;
    font-size: var(--pfr-type-xs);
  }

  .pfr-button.pfr-header-actions__cta {
    padding-inline: 11px;
  }
}

@media (max-width: 1120px) {
  .pfr-site-header__inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .pfr-nav--desktop {
    display: none;
  }

  .pfr-front-hero__inner {
    align-content: stretch;
    align-items: stretch;
    grid-template-rows: auto;
  }

  .pfr-front-hero__content {
    display: block;
    max-width: 880px;
  }

  .pfr-front-hero__eyebrow,
  .pfr-front-hero h1,
  .pfr-hero-rating-card,
  .pfr-front-hero__lead,
  .pfr-front-actions,
  .pfr-front-proof {
    grid-column: auto;
    grid-row: auto;
  }

  .pfr-hero-rating-card {
    justify-self: start;
    width: min(100%, 216px);
    margin-bottom: 1rem;
  }

  .pfr-front-proof {
    align-self: auto;
  }

  .pfr-menu-toggle {
    display: inline-flex;
  }

  .pfr-mobile-panel {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    overflow: hidden;
  }

  .pfr-mobile-panel .pfr-shell {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
  }

  .pfr-nav__list--mobile {
    display: grid;
    justify-content: stretch;
    align-items: stretch;
    gap: 0;
    margin-bottom: 0;
  }

  .pfr-nav--mobile,
  .pfr-nav__list--mobile,
  .pfr-nav__list--mobile > li {
    width: 100%;
  }

  .pfr-nav__list--mobile > li {
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .pfr-nav__list--mobile a {
    display: flex;
    min-height: 58px;
    padding-inline: max(18px, calc((100vw - 1240px) / 2 + 18px));
    border-radius: 0;
    font-size: var(--pfr-type-button);
    font-weight: 700;
    line-height: 1.15;
    background: rgba(255, 255, 255, 0.035);
  }

  .pfr-nav__list--mobile a:hover,
  .pfr-nav__list--mobile .current-menu-item > a,
  .pfr-nav__list--mobile .current-menu-ancestor > a {
    background: var(--pfr-red-gradient);
  }

  .pfr-mobile-panel__cta {
    width: calc(100% - 32px);
    margin: 16px;
  }

  .pfr-front-hero__inner,
  .pfr-front-split,
  .pfr-front-split--reverse,
  .pfr-quality-grid,
  .pfr-method-detail-hero__grid,
  .pfr-method-detail-visual__grid,
  .pfr-method-sources,
  .pfr-references-hero__grid,
  .pfr-reviews-hero__grid,
  .pfr-review-trust,
  .pfr-workshop-quote__grid {
    grid-template-columns: 1fr;
  }

  .pfr-service-grid,
  .pfr-method-grid,
  .pfr-method-detail-columns,
  .pfr-reference-proof-grid,
  .pfr-reference-grid,
  .pfr-review-list,
  .pfr-trust-card-grid,
  .pfr-front-advantages {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pfr-costs-price-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  }

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

  .pfr-process-hero__inner {
    min-height: auto;
  }

  .pfr-process-hero__stage {
    max-width: 920px;
    margin-inline: auto;
  }

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

  .pfr-process-hero__signals,
  .pfr-process-summary ul,
  .pfr-process-media-grid,
  .pfr-process-cta__box {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .pfr-shipping-hero__grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .pfr-shipping-hero__visual {
    max-width: 760px;
  }

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

  .pfr-shipping-summary--simple ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pfr-request-layout,
  .pfr-request-steps {
    grid-template-columns: 1fr;
  }

  .pfr-request-side {
    position: static;
  }

  .pfr-footer-main {
    grid-template-columns: minmax(0, 1.12fr) minmax(250px, 0.78fr);
  }

  .pfr-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  :root {
    --pfr-shell: min(100% - 24px, 1240px);
    --pfr-shell-narrow: min(100% - 24px, 820px);
    --pfr-header-height: 72px;
    --pfr-type-body: 16px;
    --pfr-type-h1: 2.35rem;
    --pfr-type-h2: 1.85rem;
    --pfr-type-h3: 1.36rem;
    --pfr-type-hero: 2.85rem;
    --pfr-type-lead: 1.06rem;
    --pfr-type-display: 1.35rem;
  }

  .pfr-topbar__inner {
    justify-content: center;
    text-align: center;
  }

  .pfr-topbar__inner span {
    display: none;
  }

  .pfr-site-header__inner {
    gap: 12px;
  }

  body.pfr-modern .pfr-logo__image {
    max-width: min(225px, calc(100vw - 108px));
    max-height: 52px;
  }

  .pfr-header-actions__cta {
    display: none;
  }

  .pfr-menu-toggle__text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .pfr-menu-toggle {
    width: 48px;
    padding-inline: 12px;
  }

  .pfr-article,
  .pfr-archive,
  .pfr-error-page {
    padding: 24px;
  }

  .pfr-search-form__row,
  .pfr-footer-cta__inner,
  .pfr-footer-main {
    grid-template-columns: 1fr;
  }

  .pfr-footer-brand {
    grid-column: auto;
  }

  .pfr-footer-main {
    padding-bottom: 112px;
  }

  .pfr-footer-cta__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .pfr-footer-cta__actions .pfr-button,
  .pfr-error-page__actions .pfr-button,
  .pfr-location-map__actions .pfr-button {
    width: 100%;
  }

  .pfr-location-map__stage,
  .pfr-location-map__iframe {
    min-height: 210px;
  }

  .pfr-location-map__label {
    font-size: 0.7rem;
  }

  .pfr-front-hero::before {
    background:
      radial-gradient(circle at 28% 20%, rgba(215, 25, 32, 0.34), transparent 34%),
      linear-gradient(180deg, rgba(5, 6, 8, 0.98) 0%, rgba(8, 10, 13, 0.9) 58%, rgba(8, 10, 13, 0.78) 100%);
  }

  .pfr-front-hero__inner {
    min-height: auto;
    padding-block: 32px 38px;
  }

  .pfr-front-hero h1 {
    max-width: 10.5ch;
    font-size: var(--pfr-type-hero);
  }

  .pfr-shipping-hero__grid {
    min-height: auto;
    padding-block: 44px 34px;
  }

  .pfr-shipping-hero h1 {
    max-width: 100%;
    font-size: clamp(2rem, 11vw, 2.65rem);
    line-height: 1.06;
  }

  .pfr-shipping-hero__lead {
    font-size: 1rem;
  }

  .pfr-shipping-hero__visual {
    padding: 8px;
  }

  .pfr-shipping-hero__visual figcaption {
    font-size: var(--pfr-type-xs);
  }

  .pfr-process-hero__inner {
    padding-block: 44px 34px;
  }

  .pfr-process-hero h1 {
    max-width: 100%;
    font-size: clamp(2rem, 10vw, 2.7rem);
    line-height: 1.04;
  }

  .pfr-process-hero__lead {
    font-size: 1rem;
  }

  .pfr-process-hero__stage {
    padding: 8px;
  }

  .pfr-process-hero__stage img {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .pfr-process-hero__stage figcaption {
    position: static;
    max-width: none;
    margin-top: 8px;
    background: rgba(5, 6, 8, 0.84);
    font-size: var(--pfr-type-xs);
  }

  .pfr-process-hero__signals {
    grid-template-columns: 1fr;
    margin: 10px 0 0;
  }

  .pfr-front-actions .pfr-button {
    width: 100%;
  }

  .pfr-front-proof,
  .pfr-front-advantages,
  .pfr-service-grid,
  .pfr-costs-options,
  .pfr-costs-price-grid,
  .pfr-method-grid,
  .pfr-method-detail-columns,
  .pfr-reference-proof-grid,
  .pfr-reference-grid,
  .pfr-review-list,
  .pfr-review-source-grid,
  .pfr-trust-card-grid,
  .pfr-review-topic-grid,
  .pfr-references-scorecard,
  .pfr-process-meaning-grid,
  .pfr-process-step-grid,
  .pfr-process-media-grid,
  .pfr-process-summary ul,
  .pfr-process-cta__box,
  .pfr-shipping-simple-steps,
  .pfr-shipping-compact-grid,
  .pfr-shipping-summary ul,
  .pfr-comparison,
  .pfr-request-steps {
    grid-template-columns: 1fr;
  }

  .pfr-front-advantages li {
    min-height: 58px;
  }

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

  .pfr-front-media {
    min-height: 360px;
  }

  .pfr-image-card__image {
    min-height: 340px;
  }

  .pfr-costs-hero .pfr-front-hero__inner {
    min-height: auto;
    padding-block: 56px 34px;
  }

  .pfr-service-hero .pfr-front-hero__inner {
    min-height: auto;
    padding-block: 56px 34px;
  }

  .pfr-method-detail-hero__grid,
  .pfr-references-hero__grid,
  .pfr-reviews-hero__grid {
    min-height: auto;
    padding-block: 46px 38px;
  }

  .pfr-reviews-hero__grid {
    row-gap: 64px;
  }

  .pfr-method-detail-hero h1,
  .pfr-references-hero h1,
  .pfr-reviews-hero h1 {
    font-size: clamp(2rem, 10vw, 2.7rem);
    line-height: 1.05;
  }

  .pfr-method-detail-hero__lead,
  .pfr-references-hero p,
  .pfr-reviews-hero p {
    font-size: 1rem;
  }

  .pfr-method-detail-hero__panel,
  .pfr-method-detail-stack article,
  .pfr-reference-proof-card,
  .pfr-reference-card,
  .pfr-review-list figure,
  .pfr-references-scorecard div,
  .pfr-rating-panel,
  .pfr-trust-card,
  .pfr-review-topic-grid div {
    padding: 18px;
  }

  .pfr-references-page .pfr-rating-panel {
    position: relative;
    z-index: 1000000;
    background:
      radial-gradient(circle at 86% 10%, rgba(215, 25, 32, 0.34), transparent 36%),
      #151922;
  }

  .pfr-rating-panel__score strong {
    font-size: 4rem;
  }

  .pfr-review-source-card > div:first-child {
    align-items: flex-start;
    flex-direction: column;
  }

  .pfr-review-source-card .pfr-button {
    width: 100%;
  }

  .pfr-request-hero .pfr-front-hero__inner {
    min-height: auto;
    padding-block: 56px 34px;
  }

  .pfr-shipping-detail-card {
    padding: 20px;
  }

  .pfr-shipping-summary li {
    min-height: auto;
    padding: 16px;
  }

  .pfr-shipping-simple-steps article {
    padding: 20px;
  }

  .pfr-process-summary li,
  .pfr-process-step-grid article,
  .pfr-process-meaning-grid article {
    min-height: auto;
    padding: 18px;
  }

  .pfr-process-image-card div,
  .pfr-process-cta__box {
    padding: 20px;
  }

  .pfr-request-form-card {
    padding: 18px;
  }

  .pfr-request-section--direct {
    padding-block: 22px 48px;
  }

  .pfr-request-form-card .wpcf7-checkbox,
  .pfr-request-form-card .wpcf7-exclusive-checkbox {
    grid-template-columns: 1fr;
  }

  .pfr-request-form-card button[type="submit"] {
    width: 100%;
  }

  .pfr-costs-price-card__head {
    min-height: 0;
    padding: 20px;
  }

  .pfr-costs-price-lines div,
  .pfr-costs-addon-list li {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .pfr-costs-addons {
    padding: 18px;
  }

  .pfr-costs-business-note {
    padding: 15px;
  }

  .pfr-costs-checks {
    padding: 20px;
  }

  .pfr-price-table {
    min-width: 0;
    border-collapse: separate;
    border-spacing: 0;
  }

  .pfr-price-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .pfr-price-table tbody,
  .pfr-price-table tr,
  .pfr-price-table th,
  .pfr-price-table td {
    display: block;
    width: 100%;
  }

  .pfr-price-table tbody tr {
    padding: 16px;
    border-bottom: 1px solid var(--pfr-gray-200);
  }

  .pfr-price-table th,
  .pfr-price-table td {
    padding: 0;
    border: 0;
  }

  .pfr-price-table tbody th {
    margin-bottom: 8px;
    white-space: normal;
  }

  .pfr-price-table tbody td {
    color: var(--pfr-gray-700);
  }

  .pfr-price-table tbody td + td {
    margin-top: 8px;
  }

  .pfr-price-table tbody td::before {
    display: block;
    margin-bottom: 2px;
    color: var(--pfr-gray-500);
    font-size: var(--pfr-type-xs);
    font-weight: 850;
    text-transform: uppercase;
    content: attr(data-label);
  }

  .pfr-price-table tbody td:last-child {
    font-size: var(--pfr-type-card-title);
    white-space: normal;
  }
}

.llp-landing {
  overflow: clip;
  background: var(--pfr-white);
}

.llp-template {
  color: var(--pfr-ink);
  background: var(--pfr-white);
}

.llp-template :where(h1, h2, h3, p, ul, ol, dl, details) {
  margin-top: 0;
}

.llp-template :where(p, li) {
  color: var(--pfr-gray-700);
  font-size: var(--pfr-type-content);
  line-height: 1.68;
}

.llp-shell {
  width: var(--pfr-shell);
  margin-inline: auto;
}

.llp-eyebrow {
  margin-bottom: 12px;
  color: var(--pfr-red-bright) !important;
  font-size: var(--pfr-type-xs) !important;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.2 !important;
  text-transform: uppercase;
}

.llp-hero {
  position: relative;
  isolation: isolate;
  color: var(--pfr-white);
  background:
    radial-gradient(circle at 82% 20%, rgba(239, 38, 48, 0.28), transparent 30%),
    radial-gradient(circle at 16% 12%, rgba(255, 255, 255, 0.12), transparent 24%),
    linear-gradient(135deg, #050608 0%, #10131a 50%, #242933 100%);
}

.llp-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: var(--pfr-red-gradient);
  content: "";
}

.llp-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.58fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: clamp(560px, 70vh, 760px);
  padding-block: clamp(72px, 9vw, 128px);
}

.llp-hero h1 {
  max-width: 12ch;
  color: var(--pfr-white);
  font-size: clamp(2.45rem, 6vw, var(--pfr-type-hero));
  text-wrap: balance;
}

.llp-hero__lead,
.llp-hero__content > p:not(.llp-eyebrow) {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: var(--pfr-type-lead) !important;
}

.llp-hero .llp-hero__lead p,
.llp-hero .llp-hero__content > p:not(.llp-eyebrow) {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: var(--pfr-type-lead) !important;
}

.llp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

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

.llp-proof li {
  padding: 18px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 4px solid var(--pfr-red-bright);
  border-radius: var(--pfr-radius);
  backdrop-filter: blur(8px);
}

.llp-proof strong {
  display: block;
  color: var(--pfr-white);
  font-size: var(--pfr-type-card-title);
  line-height: 1.15;
}

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

.llp-section--soft {
  background:
    linear-gradient(180deg, #f7f8fa 0%, #eef1f5 100%);
}

.llp-section--dark {
  color: var(--pfr-white);
  background:
    radial-gradient(circle at 14% 0%, rgba(215, 25, 32, 0.24), transparent 32%),
    linear-gradient(135deg, var(--pfr-carbon), var(--pfr-panel));
}

.llp-section--dark :where(h2, h3) {
  color: var(--pfr-white);
}

.llp-section--dark :where(p, li) {
  color: rgba(255, 255, 255, 0.82);
}

.llp-section__intro {
  max-width: 820px;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.llp-section__intro h2 {
  max-width: 14ch;
  text-wrap: balance;
}

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

.llp-card,
.llp-step,
.llp-faq details {
  background: var(--pfr-white);
  border: 1px solid var(--pfr-gray-200);
  border-radius: var(--pfr-radius);
  box-shadow: 0 16px 34px rgba(8, 10, 13, 0.07);
}

.llp-card {
  padding: clamp(22px, 3vw, 30px);
}

.llp-card::before {
  display: block;
  width: 38px;
  height: 5px;
  margin-bottom: 18px;
  background: var(--pfr-red-gradient);
  border-radius: 999px;
  content: "";
}

.llp-card h3,
.llp-step h3 {
  font-size: var(--pfr-type-card-title);
}

.llp-price {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.llp-price__box {
  padding: clamp(24px, 4vw, 38px);
  color: var(--pfr-white);
  background:
    radial-gradient(circle at 90% 0%, rgba(239, 38, 48, 0.34), transparent 30%),
    linear-gradient(135deg, var(--pfr-carbon), var(--pfr-panel));
  border-radius: var(--pfr-radius);
  box-shadow: var(--pfr-shadow);
}

.llp-price__box strong {
  display: block;
  margin-bottom: 8px;
  color: var(--pfr-white);
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1;
}

.llp-price__box span {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.llp-checklist {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.llp-checklist li {
  position: relative;
  padding-left: 30px;
}

.llp-checklist li::before {
  position: absolute;
  top: 0.35em;
  left: 0;
  width: 18px;
  height: 18px;
  background: var(--pfr-red-gradient);
  border-radius: 50%;
  content: "";
}

.llp-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  counter-reset: llp-step;
  list-style: none;
}

.llp-step {
  position: relative;
  padding: 24px;
  counter-increment: llp-step;
}

.llp-step::before {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  color: var(--pfr-white);
  background: var(--pfr-red-gradient);
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(167, 15, 22, 0.24);
  content: counter(llp-step);
  font-weight: 950;
}

.llp-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(20px, 4vw, 44px);
  align-items: center;
  padding: clamp(26px, 4vw, 42px);
  color: var(--pfr-white);
  background:
    radial-gradient(circle at 92% 20%, rgba(239, 38, 48, 0.34), transparent 32%),
    linear-gradient(135deg, var(--pfr-carbon), var(--pfr-panel));
  border-radius: var(--pfr-radius);
  box-shadow: var(--pfr-shadow);
}

.llp-cta :where(h2, p) {
  color: var(--pfr-white);
}

.llp-cta p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82) !important;
}

.llp-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.llp-faq {
  display: grid;
  gap: 12px;
}

.llp-faq-intro {
  margin-top: 48px;
}

.llp-faq details {
  padding: 0;
  overflow: hidden;
}

.llp-faq summary {
  min-height: 58px;
  padding: 18px 20px;
  color: var(--pfr-black);
  cursor: pointer;
  font-weight: 900;
}

.llp-faq details p {
  padding: 0 20px 20px;
}

@media (max-width: 1024px) {
  .llp-hero__inner,
  .llp-price,
  .llp-cta {
    grid-template-columns: 1fr;
  }

  .llp-proof,
  .llp-grid,
  .llp-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .llp-cta__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .pfr-front-hero__content {
    display: flex;
    flex-direction: column;
  }

  .pfr-front-hero__eyebrow {
    order: 2;
  }

  .pfr-front-hero h1 {
    order: 3;
  }

  .pfr-front-hero__lead {
    order: 4;
  }

  .pfr-front-actions {
    order: 5;
  }

  .pfr-hero-rating-card {
    order: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-bottom: 12px;
    padding: 6px 8px;
    gap: 7px;
    border-left-width: 3px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
  }

  .pfr-hero-rating-card__top {
    flex: 0 0 auto;
    gap: 5px;
    font-size: 0.62rem;
  }

  .pfr-hero-rating-card__stars {
    font-size: 0.66rem;
  }

  .pfr-hero-rating-card strong {
    flex: 0 0 auto;
    font-size: 0.94rem;
  }

  .pfr-hero-rating-card strong span,
  .pfr-hero-rating-card__count {
    flex: 0 0 auto;
    font-size: 0.66rem;
    line-height: 1;
    white-space: nowrap;
  }

  .pfr-hero-rating-card__count {
    font-size: 0;
  }

  .pfr-hero-rating-card__count::after {
    content: attr(data-short-label);
    font-size: 0.66rem;
  }

  .llp-hero__inner {
    min-height: auto;
    padding-block: 64px 52px;
  }

  .llp-hero h1,
  .llp-section__intro h2 {
    max-width: none;
  }

  .llp-actions .pfr-button,
  .llp-cta__actions .pfr-button {
    width: 100%;
  }

  .llp-proof,
  .llp-grid,
  .llp-steps {
    grid-template-columns: 1fr;
  }

  .llp-section {
    padding-block: 54px;
  }
}

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