:root {
	--hpi-red: #FF3B30;
	--hpi-black: #000000;
	--hpi-white: #ffffff;
	--hpi-base-alt: #F5F1E8;
	--hpi-card: #FFFCF8;
	--hpi-soft-coral: #FCE8E3;
	--hpi-border: #E8DDD3;
	--hpi-border-light: #E8DDD3;
	--hpi-text: #000000;
	--hpi-text-secondary: #5f5e5a;
	--hpi-text-muted: #888780;
	--hpi-content: 1180px;
	--hpi-gutter: clamp(22px, 3vw, 32px);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body.hpi-homepage {
	margin: 0;
	overflow-x: clip;
	background: var(--hpi-white);
	color: var(--hpi-text);
	font-family: "Outfit", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

.hpi-page-loader {
	position: fixed;
	z-index: 10000;
	inset: 0;
	display: grid;
	place-items: center;
	background: var(--hpi-white);
	opacity: 1;
	visibility: visible;
	transition: opacity 280ms ease, visibility 0s linear 280ms;
}

.hpi-page-loader-spinner {
	width: 36px;
	aspect-ratio: 1;
	border: 3px solid #E8DDD3;
	border-top-color: var(--hpi-red);
	border-radius: 50%;
	animation: hpi-loader-spin 750ms linear infinite;
}

.hpi-page-ready .hpi-page-loader {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

@keyframes hpi-loader-spin {
	to { transform: rotate(360deg); }
}

.hpi-homepage button,
.hpi-homepage a {
	font: inherit;
}

.hpi-homepage a {
	color: inherit;
	text-decoration: none;
}

.hpi-homepage img {
	display: block;
	max-width: 100%;
}

.hpi-homepage h1,
.hpi-homepage h2,
.hpi-homepage h3,
.hpi-homepage p,
.hpi-homepage ul,
.hpi-homepage blockquote {
	margin-top: 0;
}

.hpi-homepage h1,
.hpi-homepage h2,
.hpi-homepage h3,
.hpi-homepage strong {
	font-weight: 500;
}

.hpi-homepage h2 {
	margin-bottom: 8px;
	font-size: 22px;
	line-height: 1.35;
}

.hpi-homepage h3 {
	font-size: 14px;
	line-height: 1.45;
}

.hpi-skip-link {
	position: fixed;
	top: 10px;
	left: 10px;
	z-index: 9999;
	padding: 9px 14px;
	transform: translateY(-150%);
	border-radius: 6px;
	background: var(--hpi-black);
	color: var(--hpi-white) !important;
}

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

.hpi-section-inner {
	width: min(100%, var(--hpi-content));
	margin-inline: auto;
	padding-inline: var(--hpi-gutter);
}

.hpi-site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	border-bottom: 1px solid var(--hpi-border-light);
	background: #fff !important;
}

/* Keep the sticky header clear of the WordPress admin bar (logged-in view only). */
.admin-bar .hpi-site-header {
	top: 32px;
}
@media screen and (max-width: 782px) {
	.admin-bar .hpi-site-header {
		top: 46px;
	}
}

.hpi-nav-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: min(100%, var(--hpi-content));
	min-height: 68px;
	margin-inline: auto;
	padding: 6px var(--hpi-gutter);
}

.hpi-logo-link {
	flex: 0 0 auto;
}

.hpi-logo {
	width: 120px;
	height: 32px;
	object-fit: cover;
	object-position: center;
}

.hpi-site-header .hpi-logo {
	width: auto;
	height: 66px;
	max-width: 300px;
	object-fit: contain;
	object-position: left center;
}

.hpi-navigation {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: clamp(28px, 4vw, 60px);
	margin-left: 36px;
}

.hpi-nav-list,
.hpi-nav-actions {
	display: flex;
	align-items: center;
}

.hpi-nav-list {
	gap: clamp(16px, 2vw, 24px);
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 13px;
}

.hpi-nav-list > li > a,
.hpi-nav-trigger,
.hpi-language {
	transition: color 160ms ease;
}

.hpi-nav-list > li > a,
.hpi-nav-trigger {
	text-transform: uppercase;
}

.hpi-nav-list > li > a:hover,
.hpi-nav-list > li > a:focus-visible,
.hpi-nav-trigger:hover,
.hpi-nav-trigger:focus-visible {
	color: var(--hpi-red);
}

.hpi-nav-trigger,
.hpi-language {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #1a1a1a;
	cursor: pointer;
}

.hpi-nav-trigger i,
.hpi-language i {
	font-size: 9px;
}

.hpi-nav-actions {
	gap: 14px;
}

.hpi-language {
	color: var(--hpi-text-muted);
	font-size: 12px;
}

.hpi-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 39px;
	padding: 9px 22px;
	border: 1px solid transparent;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.35;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.hpi-button--black {
	background: var(--hpi-black);
	color: var(--hpi-white) !important;
}

.hpi-button--black:hover,
.hpi-button--black:focus-visible {
	background: #252525;
}

.hpi-button--red {
	background: var(--hpi-red);
	color: var(--hpi-white) !important;
}

.hpi-button--red:hover,
.hpi-button--red:focus-visible {
	background: #FF3B30;
}

.hpi-button--outline {
	border-color: #E8DDD3;
	background: transparent;
	color: #1a1a1a !important;
}

.hpi-button--outline:hover,
.hpi-button--outline:focus-visible {
	border-color: var(--hpi-black);
	background: #fff;
}

.hpi-contact-button {
	padding-inline: 18px;
}

.hpi-menu-toggle {
	display: none;
	align-items: center;
	gap: 10px;
	padding: 7px 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.hpi-menu-toggle-label {
	font-size: 12px;
}

.hpi-menu-bars {
	display: grid;
	gap: 4px;
	width: 20px;
}

.hpi-menu-bars span {
	display: block;
	height: 1px;
	background: var(--hpi-black);
	transition: transform 160ms ease, opacity 160ms ease;
}

.hpi-nav-item {
	position: relative;
}

.hpi-mega-menu {
	position: absolute;
	top: calc(100% + 22px);
	left: 50%;
	display: grid;
	grid-template-columns: repeat(2, minmax(190px, 1fr));
	gap: 1px;
	width: min(520px, calc(100vw - 40px));
	padding: 8px;
	transform: translate(-50%, 8px);
	border: 1px solid var(--hpi-border);
	border-radius: 10px;
	background: var(--hpi-white);
	opacity: 0;
	pointer-events: none;
	transition: opacity 160ms ease, transform 160ms ease;
}

.hpi-mega-menu::before {
	position: absolute;
	top: -23px;
	left: 0;
	width: 100%;
	height: 24px;
	content: "";
}

.hpi-has-mega:hover .hpi-mega-menu,
.hpi-has-mega:focus-within .hpi-mega-menu,
.hpi-has-mega.is-open .hpi-mega-menu {
	transform: translate(-50%, 0);
	opacity: 1;
	pointer-events: auto;
}

.hpi-mega-menu a {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 13px;
	border-radius: 6px;
}

.hpi-mega-menu a:hover,
.hpi-mega-menu a:focus-visible {
	background: var(--hpi-base-alt);
}

.hpi-mega-menu strong {
	font-size: 13px;
}

.hpi-mega-menu span {
	color: var(--hpi-text-secondary);
	font-size: 11px;
	line-height: 1.45;
}

.hpi-mega-menu--industries {
	grid-template-columns: repeat(3, minmax(180px, 1fr));
	width: min(720px, calc(100vw - 32px));
	padding: 10px;
}

.hpi-mega-menu--industries a {
	padding: 14px 16px;
}

.hpi-mega-menu--solutions {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0;
	width: min(1100px, calc(100vw - 40px));
	padding: 28px 32px;
}

.hpi-solutions-column {
	min-width: 0;
	padding-right: 32px;
}

.hpi-solutions-column--sustainability {
	padding-right: 0;
	padding-left: 48px;
	border-left: 1px solid var(--hpi-border-light);
}

.hpi-solutions-intro {
	display: flex;
	align-items: center;
	gap: 20px;
	min-height: 100px;
	padding: 0 8px 20px;
	border-bottom: 1px solid var(--hpi-border-light);
}

.hpi-solutions-icon {
	display: grid;
	flex: 0 0 auto;
	width: 72px;
	height: 72px;
	place-items: center;
	border-radius: 16px;
	font-size: 34px;
}

.hpi-solutions-icon--financial {
	background: #FCE8E3;
	color: var(--hpi-red);
}

.hpi-solutions-icon--sustainability {
	background: #eff9f2;
	color: #18a957;
}

.hpi-solutions-intro p {
	margin: 0 0 12px;
	color: var(--hpi-black);
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1.1;
	text-transform: uppercase;
}

.hpi-solutions-intro p::after {
	display: block;
	width: 40px;
	height: 2px;
	margin-top: 11px;
	background: var(--hpi-red);
	content: "";
}

.hpi-solutions-column--sustainability .hpi-solutions-intro p::after {
	background: #18a957;
}

.hpi-solutions-intro > div > span {
	color: var(--hpi-text-secondary);
	font-size: 14px;
	line-height: 1.35;
}

.hpi-solutions-list a {
	display: grid;
	grid-template-columns: 78px minmax(0, 1fr) auto;
	align-items: center;
	gap: 18px;
	min-height: 94px;
	padding: 12px 16px;
	border-bottom: 1px solid var(--hpi-border-light);
	color: var(--hpi-black);
	transition: background 160ms ease;
}

.hpi-solutions-list a:hover,
.hpi-solutions-list a:focus-visible {
	background: var(--hpi-base-alt);
}

.hpi-solution-standard {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 58px;
	padding-right: 14px;
	border-right: 1px solid var(--hpi-border-light);
	color: var(--hpi-red);
}

.hpi-solution-standard small {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1;
}

.hpi-solution-standard strong {
	margin-top: 4px;
	font-size: 34px;
	font-weight: 600;
	line-height: 0.9;
}

.hpi-solutions-column--sustainability .hpi-solution-standard {
	color: #18a957;
}

.hpi-solution-copy {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.hpi-solution-copy strong {
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
}

.hpi-solution-copy span {
	color: var(--hpi-text-secondary);
	font-size: 13px;
	line-height: 1.35;
}

.hpi-solutions-list > a > i {
	font-size: 16px;
}

.hpi-hero {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
	width: min(100%, var(--hpi-content));
	min-height: 410px;
	margin: 0 auto 44px;
}

.hpi-hero-copy {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 52px var(--hpi-gutter);
}

.hpi-hero-copy--slider {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	grid-template-rows: minmax(0, 1fr) auto;
	row-gap: 22px;
	align-content: center;
}

.hpi-hero-copy-slide {
	grid-column: 1;
	grid-row: 1;
	align-self: center;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	transition: opacity 300ms ease, visibility 0s linear 300ms;
}

.hpi-hero-copy-slide.is-active {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
	transition-delay: 0s;
}

.hpi-eyebrow,
.hpi-kicker,
.hpi-card-label {
	letter-spacing: 1.5px;
	font-size: 11px;
	font-weight: 500;
}

.hpi-eyebrow {
	margin-bottom: 12px;
	color: var(--hpi-red);
}

.hpi-kicker--muted,
.hpi-card-label {
	color: var(--hpi-text-muted);
}

.hpi-hero h1,
.hpi-hero-headline {
	max-width: 570px;
	margin-bottom: 14px;
	font-size: 30px;
	line-height: 1.25;
}

.hpi-hero-text {
	max-width: 580px;
	margin-bottom: 22px;
	color: var(--hpi-text-secondary);
	font-size: 14px;
	line-height: 1.6;
}

.hpi-button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.hpi-hero-pagination {
	grid-column: 1;
	grid-row: 2;
	display: flex;
	gap: 8px;
	align-items: center;
}

.hpi-hero-pagination-button {
	width: 7px;
	height: 7px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: var(--hpi-border);
	cursor: pointer;
	transition: width 200ms ease, background-color 200ms ease;
}

.hpi-hero-pagination-button.is-active {
	width: 22px;
	background: var(--hpi-red);
}

.hpi-hero-video {
	position: relative;
	align-self: start;
	width: calc(100% + clamp(55px, 9vw, 145px));
	min-height: 410px;
	margin-top: -74px;
	overflow: hidden;
	background: #E8DDD3;
	filter: drop-shadow(0 18px 42px rgb(0 0 0 / 16%));
	-webkit-mask-image:
		linear-gradient(#000 0 0),
		radial-gradient(19% 31% at 8% 44%, #000 99%, transparent 100%),
		radial-gradient(23% 29% at 26% 12%, #000 99%, transparent 100%),
		radial-gradient(24% 27% at 52% 7%, #000 99%, transparent 100%),
		radial-gradient(25% 31% at 80% 14%, #000 99%, transparent 100%),
		radial-gradient(18% 35% at 97% 45%, #000 99%, transparent 100%),
		radial-gradient(25% 29% at 82% 88%, #000 99%, transparent 100%),
		radial-gradient(25% 28% at 51% 96%, #000 99%, transparent 100%),
		radial-gradient(20% 31% at 20% 86%, #000 99%, transparent 100%);
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: 70% 60%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%;
	-webkit-mask-position: center, center, center, center, center, center, center, center, center;
	mask-image:
		linear-gradient(#000 0 0),
		radial-gradient(19% 31% at 8% 44%, #000 99%, transparent 100%),
		radial-gradient(23% 29% at 26% 12%, #000 99%, transparent 100%),
		radial-gradient(24% 27% at 52% 7%, #000 99%, transparent 100%),
		radial-gradient(25% 31% at 80% 14%, #000 99%, transparent 100%),
		radial-gradient(18% 35% at 97% 45%, #000 99%, transparent 100%),
		radial-gradient(25% 29% at 82% 88%, #000 99%, transparent 100%),
		radial-gradient(25% 28% at 51% 96%, #000 99%, transparent 100%),
		radial-gradient(20% 31% at 20% 86%, #000 99%, transparent 100%);
	mask-repeat: no-repeat;
	mask-size: 70% 60%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%;
	mask-position: center, center, center, center, center, center, center, center, center;
}

.hpi-hero-video video {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hpi-case-image {
	position: relative;
	background-color: #E8DDD3;
	background-position: center;
	background-size: cover;
}

.hpi-hero-polaroid {
	position: relative;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	width: calc(100% + clamp(55px, 9vw, 145px));
	min-height: 410px;
	overflow: visible;
	background: var(--hpi-white);
	isolation: isolate;
}

.hpi-polaroid-stack {
	position: relative;
	width: 100%;
	aspect-ratio: 1.22;
	transform: translate(8%, 18px);
}

.hpi-polaroid-card {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	overflow: hidden;
	transform-origin: 50% 112%;
	border-radius: 62% 6% 51% 23% / 49% 8% 42% 35%;
	background: transparent;
	box-shadow: 0 18px 42px rgb(0 0 0 / 16%);
	transition: opacity 360ms ease, filter 360ms ease;
	will-change: transform, opacity;
}

.hpi-hero-image-slide {
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	transition: opacity 300ms ease, visibility 0s linear 300ms;
}

.hpi-hero-image-slide.is-active {
	z-index: 5;
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
	transition-delay: 0s;
}

.hpi-polaroid-card.is-position-0 {
	z-index: 5;
	transform: translate3d(0, 0, 0) rotate(0deg);
	opacity: 1;
}

.hpi-polaroid-card.is-position-1 {
	z-index: 4;
	transform: translate3d(13px, 5px, 0) rotate(3.5deg) scale(0.995);
	opacity: 1;
}

.hpi-polaroid-card.is-position-2 {
	z-index: 3;
	transform: translate3d(25px, 12px, 0) rotate(7deg) scale(0.99);
	opacity: 0.98;
}

.hpi-polaroid-card.is-position-3 {
	z-index: 2;
	transform: translate3d(36px, 20px, 0) rotate(10.5deg) scale(0.985);
	opacity: 0.96;
}

.hpi-polaroid-card.is-position-4 {
	z-index: 1;
	transform: translate3d(46px, 30px, 0) rotate(14deg) scale(0.98);
	opacity: 0.94;
}

.hpi-polaroid-card.is-leaving {
	z-index: 6;
	/* Fade in place: the hero image must never travel over the left-hand copy. */
	opacity: 0;
}

.hpi-polaroid-image,
.hpi-polaroid-image img {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	border-radius: inherit;
	object-fit: cover;
}

.hpi-polaroid-image {
	overflow: hidden;
	background: transparent;
}

.hpi-photo-credit {
	position: absolute;
	right: 10px;
	bottom: 10px;
	padding: 3px 8px;
	border-radius: 4px;
	background: rgb(255 255 255 / 85%);
	color: var(--hpi-text-secondary);
	font-size: 11px;
	line-height: 1.45;
}

.hpi-trust {
	padding-block: 90px;
	border: 0;
	background: #fff;
}

.hpi-client-title {
	margin: 0 0 42px !important;
	color: var(--hpi-black);
	font-size: 28px;
	font-weight: 600;
	letter-spacing: -.045em;
	line-height: 1.1;
}

.hpi-proof-points {
	position: relative;
	z-index: 3;
	width: min(100%, var(--hpi-content));
	margin: 28px auto 70px;
	padding-inline: var(--hpi-gutter);
}


.hpi-proof-points-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border: 1px solid var(--hpi-border);
	border-radius: 2px;
	background: var(--hpi-white);
	box-shadow: 0 16px 36px rgb(0 0 0 / 10%);
	overflow: hidden;
}

.hpi-proof-points-card {
	position: relative;
	display: flex;
	min-height: 158px;
	flex-direction: column;
	align-items: flex-start;
	padding: 26px clamp(20px, 2.5vw, 34px) 22px;
	background: var(--hpi-white);
	color: var(--hpi-black);
	overflow: hidden;
	transition: color 500ms ease;
}

.hpi-proof-points-card::before {
	position: absolute;
	z-index: 0;
	inset: 0;
	background: linear-gradient(135deg, #7c2d37 0%, #b8434c 52%, #df6a6a 100%);
	content: "";
	opacity: 0;
	transition: opacity 500ms ease;
}

.hpi-proof-points-card > * {
	position: relative;
	z-index: 1;
}

.hpi-proof-points-card::after {
	position: absolute;
	z-index: 0;
	right: -0.5em;
	bottom: -0.5em;
	width: 1em;
	height: 1em;
	margin: 0;
	color: currentcolor;
	content: "\f824";
	font-family: "tabler-icons";
	font-size: clamp(132px, 12vw, 210px);
	font-style: normal;
	font-weight: 400;
	line-height: 1;
	opacity: 0.075;
	pointer-events: none;
	transition: opacity 500ms ease;
}

.hpi-proof-points-card:nth-child(2)::after {
	content: "\eaca";
}

.hpi-proof-points-card:nth-child(3)::after {
	content: "\eb54";
}

.hpi-proof-points-card:nth-child(4)::after {
	content: "\eab5";
}

/* Bricks saves the card markup independently; its icon is rendered by the
 * card pseudo-element above so it also appears in existing saved templates. */
.hpi-proof-points-icon {
	display: none;
}

.hpi-proof-points-card + .hpi-proof-points-card {
	border-left: 1px solid var(--hpi-border-light);
}

.hpi-proof-points-card h2 {
	margin: 0;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.35;
}

.hpi-proof-points-card p {
	margin: 10px 0 0;
	color: var(--hpi-text-secondary);
	font-size: 13px;
	line-height: 1.48;
}

.hpi-proof-points-card a {
	margin-top: auto;
	color: var(--hpi-black);
	font-size: 12px;
	font-weight: 600;
	text-decoration: none;
}

.hpi-proof-points-card a span {
	margin-left: 7px;
	transition: transform 180ms ease;
}

.hpi-proof-points-card a:hover span,
.hpi-proof-points-card a:focus-visible span {
	transform: translateX(3px);
}

.hpi-proof-points-card.is-highlighted {
	color: var(--hpi-white);
}

.hpi-proof-points-card.is-highlighted::before {
	opacity: 1;
}

.hpi-proof-points-card.is-highlighted::after {
	opacity: 0.16;
}

.hpi-proof-points-card.is-highlighted p {
	color: var(--hpi-white);
}

/* Investment section: a reusable media story paired with a compact accordion. */
.hpi-investment {
	padding: 0 0 clamp(74px, 9vw, 128px);
	background: var(--hpi-white);
}

.hpi-investment-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	align-items: center;
	gap: clamp(42px, 6vw, 96px);
}

.hpi-investment-media {
	min-width: 0;
}

.hpi-investment-photo-wrap {
	position: relative;
	min-height: 500px;
	padding: 28px 20px 46px 42px;
}

.hpi-investment-photo-wrap::before,
.hpi-investment-photo-wrap::after {
	position: absolute;
	border-radius: 22px;
	background: rgb(252 30 30 / 9%);
	content: "";
	pointer-events: none;
}

.hpi-investment-photo-wrap::before {
	top: 88px;
	right: 0;
	bottom: 48px;
	left: 0;
}

.hpi-investment-photo-wrap::after {
	width: 140px;
	height: 140px;
	bottom: 0;
	left: 16px;
	background-image: radial-gradient(rgb(252 30 30 / 28%) 2px, transparent 2.5px);
	background-size: 24px 24px;
	background-color: transparent;
}

.hpi-investment-photo {
	position: relative;
	z-index: 1;
	display: block;
	width: min(100%, 420px);
	height: 452px;
	margin-inline: auto 0;
	border-radius: 12px;
	object-fit: cover;
	object-position: center;
	box-shadow: 0 16px 34px rgb(17 26 49 / 12%);
}

.hpi-investment-quote,
.hpi-investment-mini-card {
	position: absolute;
	z-index: 2;
	border: 1px solid rgb(20 28 49 / 7%);
	border-radius: 12px;
	background: rgb(255 255 255 / 96%);
	box-shadow: 0 14px 30px rgb(17 26 49 / 10%);
}

.hpi-investment-quote {
	top: 52px;
	left: 0;
	width: min(254px, 58%);
	padding: 22px 24px;
}

.hpi-investment-quote-mark {
	display: block;
	margin-bottom: 4px;
	color: var(--hpi-red);
	font-size: 47px;
	font-weight: 700;
	line-height: .8;
}

.hpi-investment-quote p {
	margin: 0;
	color: #1a223a;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.55;
}

.hpi-investment-mini-card {
	display: flex;
	align-items: center;
	gap: 12px;
	bottom: 20px;
	left: 0;
	padding: 15px 18px;
	color: #1a223a;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.45;
}

.hpi-investment-mini-icon,
.hpi-investment-accordion-icon {
	display: inline-grid;
	place-items: center;
	flex: 0 0 auto;
	border-radius: 10px;
	background: #FCE8E3;
	color: var(--hpi-red);
}

.hpi-investment-mini-icon {
	width: 42px;
	height: 42px;
	font-size: 22px;
}

.hpi-investment-content {
	min-width: 0;
}

.hpi-investment-content .hpi-eyebrow {
	margin-bottom: 18px;
}

.hpi-investment-title {
	max-width: 500px;
	margin: 0 0 16px !important;
	font-size: clamp(34px, 3.5vw, 48px);
	font-weight: 600;
	line-height: 1.13;
}

.hpi-investment-title span {
	color: var(--hpi-red);
}

.hpi-investment-intro {
	max-width: 550px;
	margin: 0 0 24px;
	color: #65708a;
	font-size: 15px;
	line-height: 1.65;
}

.hpi-investment-accordions {
	display: grid;
	gap: 8px;
}

.hpi-investment-accordion-item {
	overflow: hidden;
	border: 1px solid rgb(20 28 49 / 7%);
	border-radius: 11px;
	background: var(--hpi-white);
	box-shadow: 0 7px 16px rgb(17 26 49 / 5%);
	transition: border-color 180ms ease, box-shadow 180ms ease;
}

.hpi-investment-accordion-item.is-open {
	border-color: rgb(252 30 30 / 32%);
	box-shadow: 0 9px 20px rgb(252 30 30 / 8%);
}

.hpi-investment-accordion-trigger {
	display: flex;
	align-items: center;
	width: 100%;
	gap: 14px;
	padding: 10px 15px;
	border: 0;
	background: transparent;
	color: #111a31;
	text-align: left;
	cursor: pointer;
}

.hpi-investment-accordion-trigger:hover,
.hpi-investment-accordion-trigger:focus-visible {
	color: var(--hpi-red);
}

.hpi-investment-accordion-trigger:focus-visible {
	outline: 2px solid var(--hpi-red);
	outline-offset: -2px;
}

.hpi-investment-accordion-icon {
	width: 34px;
	height: 34px;
	font-size: 19px;
}

.hpi-investment-accordion-label {
	flex: 1;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.35;
}

.hpi-investment-chevron {
	font-size: 14px;
	transition: transform 180ms ease;
}

.hpi-investment-accordion-trigger.is-open .hpi-investment-chevron {
	transform: rotate(180deg);
}

.hpi-investment-accordion-panel {
	padding: 0 18px 15px 63px;
}

.hpi-investment-accordion-panel p {
	margin: 0;
	color: #65708a;
	font-size: 13px;
	line-height: 1.55;
}

.hpi-investment-benefits {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
	margin-top: 22px;
	padding: 18px 14px;
	border: 1px solid rgb(252 30 30 / 8%);
	border-radius: 16px;
	background: linear-gradient(110deg, #FCE8E3, #fff);
}

.hpi-investment-benefits > div {
	display: grid;
	gap: 8px;
	padding: 2px 12px;
}

.hpi-investment-benefits > div + div {
	border-left: 1px solid rgb(20 28 49 / 9%);
}

.hpi-investment-benefits strong {
	display: flex;
	align-items: center;
	gap: 7px;
	color: #111a31;
	font-size: 11px;
	font-weight: 600;
	line-height: 1.3;
}

.hpi-investment-benefits strong i {
	color: var(--hpi-red);
	font-size: 19px;
}

.hpi-investment-benefits span {
	color: #65708a;
	font-size: 11px;
	line-height: 1.45;
}

@media (max-width: 980px) {
	.hpi-investment-layout {
		grid-template-columns: 1fr;
		gap: 42px;
	}

	.hpi-investment-content {
		max-width: 720px;
	}

	.hpi-investment-photo-wrap {
		max-width: 620px;
	}
}

@media (max-width: 680px) {
	.hpi-investment {
		padding-bottom: 62px;
	}

	.hpi-investment-layout {
		gap: 34px;
	}

	.hpi-investment-photo-wrap {
		min-height: 411px;
		padding: 22px 7px 42px 28px;
	}

	.hpi-investment-photo-wrap::before {
		top: 62px;
		bottom: 38px;
	}

	.hpi-investment-photo {
		height: 350px;
	}

	.hpi-investment-quote {
		top: 40px;
		width: min(226px, 68%);
		padding: 17px 18px;
	}

	.hpi-investment-quote p {
		font-size: 12px;
	}

	.hpi-investment-mini-card {
		padding: 11px 13px;
		font-size: 10px;
	}

	.hpi-investment-mini-icon {
		width: 35px;
		height: 35px;
		font-size: 18px;
	}

	.hpi-investment-title {
		font-size: 35px;
	}

	.hpi-investment-intro {
		font-size: 14px;
	}

	.hpi-investment-accordion-trigger {
		gap: 11px;
		padding: 10px 12px;
	}

	.hpi-investment-accordion-label {
		font-size: 13px;
	}

	.hpi-investment-accordion-panel {
		padding-left: 57px;
	}

	.hpi-investment-benefits {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		row-gap: 16px;
		padding: 15px 9px;
	}

	.hpi-investment-benefits > div {
		padding: 2px 10px;
	}

	.hpi-investment-benefits > div:nth-child(3) {
		border-left: 0;
	}
}

.hpi-kicker {
	margin-bottom: 12px;
	text-align: center;
}

.hpi-logo-strip {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(20px, 3.2vw, 40px);
	width: 100%;
	color: #b4b2a9;
	font-size: 15px;
	font-weight: 500;
}

.hpi-sap-badge {
	flex: 0 0 auto;
	padding: 5px 12px;
	border: 1px solid var(--hpi-black);
	border-radius: 4px;
	color: var(--hpi-black);
	font-size: 12px;
	white-space: nowrap;
}

.hpi-client-logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 34px;
	white-space: nowrap;
	user-select: none;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

.hpi-client-logo img {
	display: block;
	width: auto;
	max-width: 190px;
	height: 64px;
	max-height: 64px;
	object-fit: contain;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	mix-blend-mode: multiply;
}

.hpi-bricks-section .hpi-section-inner {
	align-items: stretch;
	max-width: none;
}

.hpi-next-slider {
	width: 100%;
	min-width: 0;
}

.hpi-next-slider .splide__arrows {
	display: none;
}

.hpi-next-slider .splide__track {
	cursor: grab;
}

.hpi-next-slider .splide__track:active {
	cursor: grabbing;
}

.hpi-next-client-slider {
	flex: 1 1 auto;
	min-width: 0;
}

.hpi-next-client-slide {
	align-items: center;
	justify-content: center;
	width: clamp(230px, 17vw, 280px) !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

.hpi-next-client-slider .splide__track {
	mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
}

.hpi-capabilities {
	padding-block: 44px;
}

/* Editable MFRS compliance platform, layered over the particle-logo canvas. */
.hamilton-particle-section.hpi-mfrs {
	--hamilton-red: var(--hpi-red);
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding-block: clamp(64px, 8vw, 112px) 34px;
	background:
		radial-gradient(circle at 22% 17%, rgb(252 30 30 / 4%), transparent 25%),
		radial-gradient(circle at 80% 42%, rgb(252 30 30 / 6%), transparent 36%),
		var(--hpi-white);
}

.hamilton-particle-section.hpi-mfrs::before,
.hamilton-particle-section.hpi-mfrs::after {
	position: absolute;
	z-index: 0;
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.hamilton-particle-section.hpi-mfrs::before {
	bottom: -240px;
	left: -210px;
	width: 480px;
	height: 480px;
	border: 1px solid rgb(252 30 30 / 10%);
	box-shadow: 0 0 0 36px rgb(252 30 30 / 3%), 0 0 0 72px rgb(252 30 30 / 2%);
}

.hamilton-particle-section.hpi-mfrs::after {
	top: -230px;
	right: -180px;
	width: 510px;
	height: 510px;
	background: radial-gradient(circle, rgb(252 30 30 / 6%), transparent 69%);
}

.hpi-particle-canvas-wrap {
	position: absolute;
	z-index: 1;
	inset: 0;
	margin: 0;
	pointer-events: none;
}

.hamilton-particle-canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.hpi-mfrs .hpi-mfrs-content {
	position: relative;
	z-index: 2;
	width: min(100%, var(--hpi-content));
	margin-inline: auto;
	padding-inline: var(--hpi-gutter);
}

.hpi-mfrs-intro {
	max-width: 520px;
}

.hpi-mfrs-eyebrow {
	display: inline-flex;
	margin: 0 0 17px;
	padding: 7px 14px;
	border-radius: 100px;
	background: #FCE8E3;
	color: var(--hpi-red);
	font-size: 11px !important;
	font-weight: 600;
	letter-spacing: 0.08em;
	line-height: 1;
}

.hpi-mfrs-title {
	max-width: 560px;
	margin: 0 0 15px !important;
	color: #151b2f;
	font-size: clamp(36px, 4.2vw, 59px) !important;
	font-weight: 600 !important;
	letter-spacing: -0.045em;
	line-height: 1.04 !important;
}

.hpi-mfrs-title span {
	color: var(--hpi-red);
}

.hpi-mfrs-description {
	max-width: 465px;
	margin: 0;
	color: #5f6575;
	font-size: 16px;
	line-height: 1.55;
}

.hpi-mfrs-watch {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 25px;
	padding: 12px 18px;
	border-radius: 999px;
	background: var(--hpi-red);
	box-shadow: 0 11px 21px rgb(252 30 30 / 23%);
	color: var(--hpi-white) !important;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	transition: background-color 160ms ease, transform 160ms ease;
}

.hpi-mfrs-watch:hover,
.hpi-mfrs-watch:focus-visible {
	background: #FF3B30;
	transform: translateY(-2px);
}

.hpi-mfrs-watch i {
	display: inline-grid;
	width: 20px;
	height: 20px;
	place-items: center;
	border-radius: 50%;
	background: var(--hpi-white);
	color: var(--hpi-red);
	font-size: 10px;
}

.hpi-mfrs-card-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	margin-top: 28px;
}

.hpi-mfrs-card,
.hpi-mfrs-card.bc-glowing-card[data-disable-touch-devices] {
	position: relative;
	display: grid;
	grid-template-columns: 1fr auto;
	grid-template-rows: auto auto auto 1fr auto;
	min-height: 306px;
	padding: 25px;
	border: 1px solid rgb(21 27 47 / 10%);
	border-radius: 12px;
	background: rgb(255 255 255 / 92%);
	box-shadow: 0 12px 26px rgb(18 25 48 / 7%);
	overflow: hidden;
}

.hpi-mfrs-card::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 46%;
	height: 3px;
	border-radius: 12px 0 0;
	background: var(--hpi-red);
	content: "";
}

.hpi-mfrs-card > :not(.bc-glowing-card__mask) {
	position: relative;
	z-index: 1;
}

.hpi-mfrs-card-icon {
	display: inline-grid;
	grid-column: 1;
	grid-row: 1;
	width: 58px;
	height: 58px;
	place-items: center;
	border-radius: 50%;
	background: #FCE8E3;
	color: var(--hpi-red);
	font-size: 27px;
}

.hpi-mfrs-card-number {
	grid-column: 2;
	grid-row: 1;
	align-self: center;
	color: var(--hpi-red);
	font-size: 47px;
	font-weight: 400;
	letter-spacing: -0.06em;
	line-height: 1;
}

.hpi-mfrs-card-standard {
	grid-column: 1 / -1;
	grid-row: 2;
	margin: 20px 0 5px;
	color: var(--hpi-red);
	font-size: 12px !important;
	font-weight: 600;
	letter-spacing: 0.07em;
	line-height: 1.2;
	text-transform: uppercase;
}

.hpi-mfrs-card-title {
	grid-column: 1 / -1;
	grid-row: 3;
	margin: 0 !important;
	color: #151b2f;
	font-size: 18px !important;
	font-weight: 600 !important;
}

.hpi-mfrs-card-copy {
	grid-column: 1 / -1;
	grid-row: 4;
	margin: 12px 0 18px;
	color: #5f6575;
	font-size: 13px !important;
	line-height: 1.55;
}

.hpi-mfrs-card-link {
	grid-column: 1 / -1;
	grid-row: 5;
	align-self: end;
	color: var(--hpi-red) !important;
	font-size: 12px;
	font-weight: 600;
}

.hpi-mfrs-card-link i {
	margin-left: 5px;
	font-size: 10px;
	transition: transform 160ms ease;
}

.hpi-mfrs-card-link:hover i,
.hpi-mfrs-card-link:focus-visible i {
	transform: translateX(3px);
}

.hpi-mfrs-benefits {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: 20px;
	border: 1px solid rgb(21 27 47 / 9%);
	border-radius: 12px;
	background: rgb(255 255 255 / 87%);
	box-shadow: 0 8px 18px rgb(18 25 48 / 5%);
}

.hpi-mfrs-benefit {
	display: flex;
	align-items: center;
	gap: 13px;
	min-width: 0;
	padding: 18px 20px;
}

.hpi-mfrs-benefit + .hpi-mfrs-benefit {
	border-left: 1px solid rgb(21 27 47 / 11%);
}

.hpi-mfrs-benefit-icon {
	display: inline-grid;
	flex: 0 0 auto;
	width: 47px;
	height: 47px;
	place-items: center;
	border-radius: 50%;
	background: #FCE8E3;
	color: var(--hpi-red);
	font-size: 23px;
}

.hpi-mfrs-benefit-copy {
	display: grid;
	gap: 3px;
}

.hpi-mfrs-benefit-copy strong {
	color: #151b2f;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.06em;
	line-height: 1.25;
	text-transform: uppercase;
}

.hpi-mfrs-benefit-copy span {
	color: #697080;
	font-size: 12px;
	line-height: 1.4;
}

@media (max-width: 1050px) {
	.hpi-mfrs-card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hpi-mfrs-benefits {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hpi-mfrs-benefit:nth-child(3) {
		border-left: 0;
		border-top: 1px solid rgb(21 27 47 / 11%);
	}

	.hpi-mfrs-benefit:nth-child(4) {
		border-top: 1px solid rgb(21 27 47 / 11%);
	}
}

@media (max-width: 680px) {
	.hamilton-particle-section.hpi-mfrs {
		padding-block: 56px 24px;
	}

	.hpi-mfrs-intro {
		max-width: 100%;
	}

	.hpi-mfrs-title {
		font-size: 37px !important;
	}

	.hpi-mfrs-description {
		max-width: 100%;
		font-size: 15px;
	}

	.hpi-mfrs-card-grid,
	.hpi-mfrs-benefits {
		grid-template-columns: 1fr;
	}

	.hpi-mfrs-card {
		min-height: 282px;
	}

	.hpi-mfrs-benefit + .hpi-mfrs-benefit,
	.hpi-mfrs-benefit:nth-child(3),
	.hpi-mfrs-benefit:nth-child(4) {
		border-top: 1px solid rgb(21 27 47 / 11%);
		border-left: 0;
	}
}

/* Minimal platform treatment: no background or panel graphics. */
.hpi-mfrs {
	background: #fff;
}

.hpi-mfrs-layout {
	grid-template-columns: minmax(0, 3fr) minmax(0, 7fr);
	gap: clamp(28px, 3vw, 48px);
}

.hpi-mfrs-platform-heading {
	min-height: 60px;
	padding: 12px;
}

.hpi-mfrs-platform-mark {
	width: 35px;
	height: 35px;
}

.hpi-mfrs-panel::after {
	display: none;
}

@media (max-width: 1080px) {
	.hpi-mfrs-layout {
		grid-template-columns: 1fr;
	}
}

.hpi-centered {
	text-align: center;
}

.hpi-section-intro {
	max-width: 460px;
	margin: 0 auto 28px;
	color: var(--hpi-text-secondary);
	font-size: 13px;
	text-align: center;
}

.hpi-capability-grid {
	display: grid;
	grid-template-areas:
		"featured featured predictive predictive"
		"featured featured traceability traceability"
		"compliance architecture reporting reporting";
	grid-template-columns: repeat(4, minmax(0, 1fr));
	grid-auto-rows: minmax(138px, auto);
	gap: 14px;
	width: 100%;
}

.hpi-card,
.hpi-case-card,
.hpi-insight-card {
	border: 1px solid var(--hpi-border);
	border-radius: 10px;
	background: var(--hpi-white);
}

.hpi-card {
	position: relative;
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	justify-content: flex-start;
	width: 100%;
	height: 100%;
	min-width: 0;
	padding: 18px;
	overflow: hidden;
}

.hpi-card.bc-glowing-card[data-disable-touch-devices] {
	--backdrop: #E8DDD3;
	--border-radius: 10px;
	--border-width: 2;
	--border-spot-opacity: 0.88;
	--border-light-opacity: 0.72;
	--cardblur: 5;
	--outer: 1;
	--size: 200;
	--base: 350;
	--spread: 20;
	--saturation: 82;
	--lightness: 60;
	width: 100%;
	height: 100%;
	padding: 18px;
	overflow: visible;
	border-radius: 10px;
	background: var(--hpi-white);
	box-shadow: none;
}

.hpi-card > :not(.bc-glowing-card__mask) {
	position: relative;
	z-index: 1;
}

.hpi-card--featured {
	grid-area: featured;
}

.hpi-card--predictive {
	grid-area: predictive;
}

.hpi-card--traceability {
	grid-area: traceability;
}

.hpi-card--compliance {
	grid-area: compliance;
}

.hpi-card--architecture {
	grid-area: architecture;
}

.hpi-card--reporting {
	grid-area: reporting;
}

.hpi-card--featured.bc-glowing-card[data-disable-touch-devices] {
	--size: 220;
	--spread: 16;
	--saturation: 88;
	--lightness: 58;
	--border-spot-opacity: 1;
	--border-light-opacity: 0.9;
}

.hpi-capability-icon {
	display: inline-block;
	font-size: 22px;
	line-height: 1;
}

.hpi-card h3 {
	margin: 10px 0 4px;
}

.hpi-card p {
	margin-bottom: 0;
	color: var(--hpi-text-secondary);
	font-size: 12px;
	line-height: 1.5;
}

.hpi-case-studies {
	padding-bottom: 44px;
}

.hpi-case-studies h2,
.hpi-industries h2 {
	margin-bottom: 20px;
	font-size: 20px;
}

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

.hpi-case-card {
	overflow: hidden;
}

.hpi-case-image {
	position: relative;
	overflow: hidden;
	height: 165px;
}

.hpi-case-image-media,
.hpi-case-image-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hpi-case-slider,
.hpi-testimonial-slider {
	padding-bottom: 26px;
}

.hpi-case-slider .splide__list,
.hpi-case-slider .splide__slide,
.hpi-case-slider .hpi-case-card {
	height: 100%;
}

.hpi-case-slider .splide__list {
	align-items: stretch;
}

.hpi-case-slider .hpi-case-slide {
	min-width: 0;
}

.hpi-case-slider .hpi-case-card {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.hpi-case-slider .hpi-case-copy {
	flex: 1 1 auto;
}

.hpi-next-slider .splide__pagination {
	bottom: 2px;
	gap: 5px;
}

.hpi-next-slider .splide__pagination__page {
	width: 5px;
	height: 5px;
	margin: 0;
	transform: none;
	background: #E8DDD3 !important;
	opacity: 1;
}

.hpi-next-slider .splide__pagination__page.is-active {
	width: 18px;
	border-radius: 10px;
	transform: none;
	background: var(--hpi-text-muted) !important;
}

.hpi-case-image--retail {
	background-color: #E8DDD3;
	background-image: url("https://images.unsplash.com/photo-1556740738-b6a63e27c4df?w=900&q=82");
}

.hpi-case-image--telco {
	background-color: #dde5e2;
	background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=900&q=82");
}

.hpi-case-copy {
	padding: 16px;
}

.hpi-card-label {
	margin-bottom: 4px;
}

.hpi-case-copy h3,
.hpi-insight-card h3 {
	margin-bottom: 5px;
}

.hpi-text-link {
	color: var(--hpi-red) !important;
	font-size: 12px;
}

.hpi-text-link i {
	margin-left: 3px;
	font-size: 10px;
	transition: margin-left 160ms ease;
}

.hpi-text-link:hover i,
.hpi-text-link:focus-visible i {
	margin-left: 7px;
}

.hpi-stats {
	padding-block: 32px;
	background: var(--hpi-black);
}

.hpi-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	text-align: center;
}

.hpi-stats-grid div {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.hpi-stats-grid strong {
	color: var(--hpi-red);
	font-size: 26px;
	line-height: 1.2;
}

.hpi-stats-grid span {
	margin-top: 4px;
	color: #b4b2a9;
	font-size: 12px;
}

.hpi-industries {
	padding-block: 40px 26px;
}

.hpi-chip-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.hpi-chip-list > span {
	padding: 7px 16px;
	border: 1px solid #E8DDD3;
	border-radius: 20px;
	color: #1a1a1a;
	font-size: 12px;
}

.hpi-industries.hpi-insights {
	padding-block: 40px;
}

.hpi-industry-tabs {
	display: block;
	width: 100%;
}

.hpi-industry-tabs.bc-core-tabs {
	--animation-duration: 0.28s;
	--animation-ease: ease-out;
}

.hpi-industry-tabs > .hpi-next-industry-menu {
	display: flex;
	align-items: center;
	flex-flow: row wrap;
	gap: 10px;
	width: 100%;
}

.hpi-industry-tabs .bc-morphing-menu__item.hpi-industry-tab {
	display: inline-flex;
	align-items: center;
	width: auto;
	padding: 7px 16px;
	border: 1px solid #E8DDD3;
	border-radius: 20px;
	background: transparent;
	color: #1a1a1a;
	font-size: 13.2px;
	line-height: 1.6;
	cursor: pointer;
	transition: color 160ms ease;
}

.hpi-industry-tabs .bc-morphing-menu__item.hpi-industry-tab:hover,
.hpi-industry-tabs .bc-morphing-menu__item.hpi-industry-tab:focus-visible,
.hpi-industry-tabs .bc-morphing-menu__item.hpi-industry-tab.bc-morphing-menu__item--active {
	color: var(--hpi-red);
}

.hpi-industry-tabs .bc-morphing-menu__morphing-div {
	border: 1px solid var(--hpi-red);
	border-radius: 20px;
	background: var(--hpi-white);
	box-shadow: none;
}

.hpi-industry-tabs > .bc-core-tabs__tab-content {
	width: 100%;
	margin-top: 26px;
}

.hpi-industry-tabs > .tab-menu {
	display: flex;
	align-items: center;
	flex-flow: row wrap;
	gap: 10px;
}

.hpi-industry-tabs > .tab-menu .tab-title {
	display: inline-flex;
	align-items: center;
	width: auto;
	padding: 7px 16px;
	border: 1px solid #E8DDD3;
	border-radius: 20px;
	background: var(--hpi-white);
	color: #1a1a1a;
	font-size: 12px;
	line-height: 1.6;
	cursor: pointer;
	transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.hpi-industry-tabs > .tab-menu .tab-title:hover,
.hpi-industry-tabs > .tab-menu .tab-title:focus-visible {
	border-color: var(--hpi-text-muted);
}

.hpi-industry-tabs > .tab-menu .tab-title.brx-open {
	border-color: var(--hpi-red);
	background: var(--hpi-white);
	color: var(--hpi-red);
}

.hpi-industry-tabs > .tab-menu .tab-title > * {
	width: auto;
}

.hpi-industry-tabs > .tab-content {
	display: block;
	width: 100%;
	margin-top: 26px;
	border: 0;
}

.hpi-industry-tabs > .tab-content > .tab-pane {
	width: 100%;
	padding: 0;
	border: 0;
}

.hpi-industry-tabs .hpi-insight-grid {
	width: 100%;
}

.hpi-insights {
	padding-block: 0 40px;
}

.hpi-insight-card {
	padding: 18px;
}

.hpi-testimonial {
	padding-bottom: 40px;
}

.hpi-testimonial-slider .hpi-quote-card {
	height: 100%;
	width: 100%;
}

.hpi-testimonial-slide {
	align-items: stretch;
	height: auto;
	width: 100%;
}

.hpi-quote-card {
	padding: 28px;
	border: 1px solid var(--hpi-border-light);
	border-radius: 12px;
	background: var(--hpi-base-alt);
	text-align: center;
}

.hpi-quote-card blockquote {
	max-width: 630px;
	margin: 0 auto 14px;
	padding: 0;
	border: 0;
	font-family: inherit;
	font-size: 16px;
	font-style: normal;
	line-height: 1.6;
}

.hpi-quote-person {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.hpi-avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #FCE8E3;
	color: #791f1f;
	font-size: 12px;
	font-weight: 500;
}

.hpi-quote-person div {
	display: flex;
	flex-direction: column;
	text-align: left;
}

.hpi-quote-person strong {
	font-size: 13px;
	line-height: 1.45;
}

.hpi-quote-person div span {
	color: var(--hpi-text-muted);
	font-size: 12px;
	line-height: 1.45;
}

.hpi-cta {
	padding: 36px var(--hpi-gutter);
	background: var(--hpi-red);
	color: var(--hpi-white);
	text-align: center;
}

.hpi-cta h2 {
	margin-bottom: 8px;
	color: var(--hpi-white);
}

.hpi-cta p {
	margin-bottom: 18px;
	font-size: 13px;
	opacity: 0.9;
}

.hpi-footer {
	padding-block: 32px;
	background: var(--hpi-black);
	color: var(--hpi-white);
}

.hpi-footer-grid {
	display: grid;
	grid-template-columns: 1.4fr repeat(3, 1fr);
	gap: 28px;
}

.hpi-logo--white {
	filter: none;
}

.hpi-footer-brand p {
	max-width: 335px;
	margin: 12px 0 0;
	color: var(--hpi-text-muted);
	font-size: 11px;
	line-height: 1.6;
}

.hpi-footer h2 {
	margin-bottom: 8px;
	color: var(--hpi-white);
	font-size: 12px;
}

.hpi-footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
	color: var(--hpi-text-muted);
	font-size: 11px;
	line-height: 2;
}

.hpi-footer a:hover,
.hpi-footer a:focus-visible {
	color: var(--hpi-white);
}

.hpi-homepage :focus-visible {
	outline: 2px solid var(--hpi-red);
	outline-offset: 3px;
}

/* Site-wide 10% type scale. Icon glyphs intentionally keep their original size. */
body.hpi-homepage {
	font-size: 15.4px;
}

.hpi-homepage h2 {
	font-size: 24.2px;
}

.hpi-homepage h3,
.hpi-hero-text {
	font-size: 15.4px;
}

.hpi-nav-list,
.hpi-button,
.hpi-mega-menu strong,
.hpi-section-intro,
.hpi-quote-person strong,
.hpi-cta p {
	font-size: 14.3px;
}

.hpi-language,
.hpi-menu-toggle-label,
.hpi-sap-badge,
.hpi-card p,
.hpi-text-link,
.hpi-stats-grid span,
.hpi-chip-list > span,
.hpi-industry-tabs > .tab-menu .tab-title,
.hpi-avatar,
.hpi-quote-person div span,
.hpi-footer h2 {
	font-size: 13.2px;
}

.hpi-mega-menu span,
.hpi-eyebrow,
.hpi-kicker,
.hpi-card-label,
.hpi-photo-credit,
.hpi-footer-brand p,
.hpi-footer ul {
	font-size: 12.1px;
}

.hpi-hero h1 {
	font-size: 33px;
}

.hpi-hero .hpi-hero-headline {
	font-size: 33px;
}

.hpi-inline-exchange {
	--blur: 8px;
	display: inline-block;
	white-space: nowrap;
}

/* Keep the selected sentence complete during the page's initial paint. */
.hpi-exchange-pending {
	opacity: 1 !important;
}

.hpi-exchange-pending .nb-exchange-title-v3__lines {
	display: inline;
	position: static;
	width: auto;
	white-space: inherit;
}

.hpi-exchange-pending .nb-exchange-title-v3__line {
	position: static;
	opacity: 1;
}

/* Exchange Title v3 splits a sentence into individual character spans. Preserve its space characters. */
.hpi-inline-exchange .nb-exchange-title-v3__char {
	white-space: pre;
}

.hpi-logo-strip {
	font-size: 16.5px;
}

.hpi-case-studies h2,
.hpi-industries h2 {
	font-size: 22px;
}

.hpi-stats-grid strong {
	font-size: 28.6px;
}

.hpi-quote-card blockquote {
	font-size: 17.6px;
}

@media (max-width: 900px) {
	.hpi-site-header .hpi-logo {
		height: 48px;
	}

	.hpi-menu-toggle {
		display: inline-flex;
		gap: 0;
	}

	.hpi-menu-toggle-label {
		display: none;
	}

	.hpi-navigation {
		position: absolute;
		top: 100%;
		left: 0;
		display: none;
		width: 100%;
		margin: 0;
		padding: 12px var(--hpi-gutter) 20px;
		border-bottom: 1px solid var(--hpi-border-light);
		background: var(--hpi-white);
	}

	.hpi-navigation.is-open {
		display: block;
	}

	.hpi-nav-list,
	.hpi-nav-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.hpi-nav-list {
		gap: 0;
	}

	.hpi-nav-list > li > a,
	.hpi-nav-trigger {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		padding: 12px 0;
		border-bottom: 1px solid var(--hpi-border-light);
	}

	.hpi-nav-actions {
		gap: 12px;
		padding-top: 16px;
	}

	.hpi-language {
		align-self: flex-start;
	}

	.hpi-mega-menu,
	.hpi-mega-menu--industries {
		position: static;
		display: none;
		grid-template-columns: 1fr;
		width: auto;
		margin: 0;
		padding: 6px 0 10px;
		transform: none;
		border: 0;
		border-bottom: 1px solid var(--hpi-border-light);
		border-radius: 0;
		opacity: 1;
		pointer-events: auto;
	}

	.hpi-has-mega:hover .hpi-mega-menu,
	.hpi-has-mega:focus-within .hpi-mega-menu {
		display: none;
		transform: none;
	}

	.hpi-has-mega.is-open .hpi-mega-menu {
		display: grid;
	}

	.hpi-mega-menu::before {
		display: none;
	}

	.hpi-mega-menu a {
		padding: 9px 0 9px 12px;
	}

	.hpi-hero {
		grid-template-columns: 1fr 0.9fr;
	}

	.hpi-capability-grid {
		grid-template-areas:
			"featured featured"
			"predictive traceability"
			"compliance architecture"
			"reporting reporting";
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-auto-rows: auto;
	}
}

@media (max-width: 680px) {
	.hpi-nav-wrap {
		min-height: 62px;
		padding-block: 14px;
	}

	.hpi-site-header .hpi-logo {
		height: 32px;
	}

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

	.hpi-hero-copy {
		padding-block: 46px;
	}

	.hpi-hero h1 {
		font-size: 30.8px;
	}

	.hpi-hero .hpi-hero-headline {
		font-size: 30.8px;
	}

	.hpi-inline-exchange {
		white-space: normal;
	}

	.hpi-hero-polaroid {
		width: calc(100% + 34px);
		min-height: 310px;
	}

	.hpi-proof-points {
		width: min(100%, var(--hpi-content));
		margin: 0 auto 42px;
	}

	.hpi-proof-points-grid {
		grid-template-columns: 1fr;
		border-radius: 10px;
	}

	.hpi-proof-points-card {
		min-height: 0;
		padding: 22px 24px;
	}

	.hpi-proof-points-card + .hpi-proof-points-card {
		border-top: 1px solid var(--hpi-border-light);
		border-left: 0;
	}

	.hpi-hero-video {
		width: calc(100% + 34px);
		min-height: 310px;
		margin-top: -22px;
	}

	.hpi-polaroid-stack {
		width: 100%;
		aspect-ratio: 1.1;
		transform: translate(12%, 20px);
	}

	.hpi-capability-grid,
	.hpi-case-grid,
	.hpi-insight-grid {
		grid-template-columns: 1fr;
	}

	.hpi-capability-grid {
		grid-template-areas:
			"featured"
			"predictive"
			"traceability"
			"compliance"
			"architecture"
			"reporting";
	}

	.hpi-stats-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 28px 16px;
	}

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

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

@media (max-width: 420px) {
	.hpi-button-row {
		align-items: stretch;
		flex-direction: column;
	}

	.hpi-button-row .hpi-button {
		width: 100%;
	}

	.hpi-logo-strip {
		align-items: stretch;
		flex-direction: column;
		gap: 14px;
	}

	.hpi-sap-badge {
		align-self: center;
	}

	.hpi-footer-grid {
		grid-template-columns: 1fr;
	}

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

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

/* Temporarily hidden at the client's request; content remains available in WordPress. */
.hpi-resources {
	display: none !important;
}

/* Compact, stacked partner presentation. The Bricks copy and logo cards remain editable. */
.hpi-partners {
	padding-block: clamp(62px, 6vw, 88px);
}

.hpi-partners-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 34px;
}

.hpi-partners-copy {
	max-width: 650px;
	text-align: center;
}

.hpi-partners-eyebrow {
	margin-bottom: 12px;
	font-size: 12px;
}

.hpi-partners-copy h2 {
	font-size: clamp(32px, 3vw, 44px);
	line-height: 1.12;
}

.hpi-partners-description {
	max-width: 560px;
	margin: 14px auto 0;
	font-size: 15.4px;
}

.hpi-partners-grid {
	width: 100%;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 12px;
}

.hpi-partner-card {
	min-height: 98px;
	padding: 14px;
	border-radius: 13px;
}

.hpi-partner-card span { font-size: clamp(17px, 1.55vw, 25px); }
.hpi-partner-wordmark--cognitus span { font-size: clamp(23px, 2vw, 32px); }
.hpi-partner-wordmark--accenture span { font-size: clamp(20px, 1.75vw, 28px); }
.hpi-partner-wordmark--crank span { font-size: clamp(16px, 1.35vw, 22px); }
.hpi-partner-wordmark--telkom span { font-size: clamp(18px, 1.55vw, 24px); }
.hpi-partner-wordmark--trim span { font-size: clamp(16px, 1.35vw, 21px); }
.hpi-partner-wordmark--apro span { font-size: clamp(17px, 1.45vw, 23px); }
.hpi-partner-wordmark--sakta span { font-size: clamp(18px, 1.55vw, 24px); }
.hpi-partner-wordmark--aar span { font-size: clamp(18px, 1.55vw, 25px); }
.hpi-partner-wordmark--partner span { font-size: clamp(17px, 1.45vw, 22px); }

/* Resource spacing and an explicit arrow column keep both links aligned. */
.hpi-resources { padding-block: clamp(64px, 6vw, 92px); }
.hpi-resources-heading { margin-bottom: 46px; }
.hpi-resources-grid { align-items: start; }
.hpi-resource-featured-copy { padding: 30px 40px 32px; }
.hpi-resource-item {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 32px;
	align-items: center;
	column-gap: 22px;
	padding: 26px 0;
}
.hpi-resource-item p,
.hpi-resource-item h3 { grid-column: 1; }
.hpi-resource-item h3 { margin-top: 22px; }
.hpi-resource-item > b {
	position: static;
	grid-column: 2;
	grid-row: 1 / -1;
	justify-self: end;
	margin: 0;
	transform: none;
}

@media (max-width: 960px) {
	.hpi-partners-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
	.hpi-partners-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.hpi-partners-copy h2 { font-size: 32px; }
	.hpi-partner-card { min-height: 92px; }
	.hpi-resource-featured-copy { padding: 28px 26px 30px; }
}

/* Global reach and resources, managed from the Homepage content dashboard. */
.hpi-global-stats { background: #fdfbfa; }
.hpi-resources { background: #F5F1E8; }
.hpi-global-stats { padding: 0; overflow: hidden; }
.hpi-global-stats-inner { position: relative; isolation: isolate; display: grid; grid-template-columns: minmax(450px, 1.05fr) minmax(430px, 1.25fr); align-items: center; gap: 40px; overflow: hidden; background-image: url('/wp-content/uploads/2026/08/hamilton-global-reach-map.png'); background-position: center 45%; background-repeat: no-repeat; background-size: 100% auto; }
.hpi-global-stats-copy { position: relative; z-index: 1; padding-block: 36px; background: linear-gradient(90deg, #fdfbfa 68%, rgb(253 251 250 / 88%) 82%, rgb(253 251 250 / 0%)); }
.hpi-global-stats-copy > p, .hpi-resources-heading p, .hpi-resource-featured-copy p, .hpi-resource-item p { margin: 0; color: var(--hpi-red); font-size: 12px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.hpi-global-stats h2, .hpi-resources h2 { margin: 16px 0; color: #081b4e; font-size: clamp(40px, 3.5vw, 54px); font-weight: 600; letter-spacing: -.055em; line-height: 1.08; }
.hpi-global-stats h2 { white-space: nowrap; }
.hpi-global-stats-description { max-width: 560px; color: #142654; font-size: 15.4px; line-height: 1.55; }
.hpi-global-stats-description p { margin: 0; }
.hpi-global-stats-list { display: grid; grid-template-columns: .78fr 1.18fr 1.5fr; gap: 0; margin-top: 46px; }
.hpi-global-stats-list > div { display: grid; gap: 9px; padding: 0 24px; border-left: 1px solid #E8DDD3; }
.hpi-global-stats-list > div:first-child { padding-left: 0; border: 0; }
.hpi-global-stats-list strong { color: var(--hpi-red); font-size: clamp(34px, 2.9vw, 48px); font-weight: 600; letter-spacing: -.06em; line-height: 1; white-space: nowrap; }
.hpi-global-stats-list span { color: #132653; font-size: 13.5px; }
.hpi-global-map { min-height: 420px; }
.hpi-resources { padding: clamp(75px, 9vw, 130px) 0; }
.hpi-resources-heading { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 58px; }
.hpi-resources h2 { margin-bottom: 0; }.hpi-resources-all, .hpi-resource-featured span { color: var(--hpi-red); font-size: 14px; font-weight: 600; text-decoration: none; white-space: nowrap; }.hpi-resources-all b, .hpi-resource-featured b { margin-left: 10px; font-size: 22px; font-weight: 400; vertical-align: -2px; }
.hpi-resources-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(340px, .78fr); gap: clamp(46px, 6vw, 96px); align-items: center; }
.hpi-resource-featured { display: block; overflow: hidden; border-radius: 16px; background: #fff; color: inherit; text-decoration: none; box-shadow: 0 16px 34px rgb(17 26 49 / 8%); }.hpi-resource-featured img { display: block; width: 100%; aspect-ratio: 2.35; object-fit: cover; }.hpi-resource-featured-copy { padding: 34px 46px 38px; }.hpi-resource-featured-copy h3, .hpi-resource-item h3 { margin: 18px 0 22px; color: #081b4e; font-size: clamp(24px, 2.05vw, 34px); font-weight: 600; letter-spacing: -.045em; line-height: 1.18; }.hpi-resource-list { display: grid; }.hpi-resource-item { position: relative; display: block; padding: 32px 52px 32px 0; border-bottom: 1px solid #E8DDD3; color: inherit; text-decoration: none; }.hpi-resource-item:first-child { border-top: 0; }.hpi-resource-item h3 { margin: 28px 0 0; font-size: clamp(21px, 1.75vw, 27px); }.hpi-resource-item > b { position: absolute; top: 50%; right: 10px; color: var(--hpi-red); font-size: 30px; font-weight: 400; transform: translateY(-50%); }
.hpi-resource-featured:hover img { transform: scale(1.025); }.hpi-resource-featured img { transition: transform .35s ease; }
@media (max-width: 960px) { .hpi-global-stats-inner, .hpi-resources-grid { grid-template-columns: 1fr; }.hpi-global-stats-inner { background-size: auto 340px; background-position: center bottom; }.hpi-global-stats-copy { padding-block: 0; background: #fdfbfa; text-align: center; }.hpi-global-stats-description { margin-inline: auto; }.hpi-global-stats-list { max-width: 600px; margin-inline: auto; text-align: center; }.hpi-global-stats-list > div { justify-items: center; }.hpi-global-stats h2 { white-space: normal; }.hpi-global-map { min-height: 340px; max-width: 750px; width: 100%; }.hpi-resources-heading { margin-bottom: 42px; }.hpi-resource-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }.hpi-resource-item { padding: 28px 40px 28px 0; border-top: 1px solid #E8DDD3; }.hpi-resource-item h3 { margin-top: 24px; } }
@media (max-width: 620px) { .hpi-global-stats h2, .hpi-resources h2 { font-size: 38px; }.hpi-global-stats-list, .hpi-resource-list { grid-template-columns: 1fr; }.hpi-global-stats-list { gap: 24px; margin-top: 38px; }.hpi-global-stats-list > div, .hpi-global-stats-list > div:first-child { padding: 0 0 18px; border: 0; border-bottom: 1px solid #E8DDD3; }.hpi-global-map { min-height: 260px; }.hpi-global-stats-inner { background-size: auto 260px; }.hpi-resources-heading { align-items: start; flex-direction: column; }.hpi-resource-featured img { aspect-ratio: 1.7; }.hpi-resource-featured-copy { padding: 28px 26px 32px; }.hpi-resource-item { padding-top: 28px; } }

/* MFRS compliance platform redesign: static connected dots, tabbed standards. */
.hpi-mfrs {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding-block: clamp(62px, 7vw, 104px);
	background:
		radial-gradient(circle at 15% 14%, rgb(252 30 30 / 5%), transparent 25%),
		radial-gradient(circle at 86% 47%, rgb(252 30 30 / 6%), transparent 34%),
		#fff;
}

.hpi-mfrs-network {
	position: absolute;
	z-index: 0;
	inset: 0;
	margin: 0;
	opacity: 0.72;
	pointer-events: none;
	background-image:
		radial-gradient(circle at 60% 11%, rgb(252 30 30 / 52%) 0 4px, transparent 4.5px),
		radial-gradient(circle at 69% 18%, rgb(252 30 30 / 46%) 0 4px, transparent 4.5px),
		radial-gradient(circle at 78% 9%, rgb(252 30 30 / 42%) 0 4px, transparent 4.5px),
		radial-gradient(circle at 87% 27%, rgb(252 30 30 / 40%) 0 4px, transparent 4.5px),
		radial-gradient(circle at 94% 12%, rgb(252 30 30 / 34%) 0 3px, transparent 3.5px),
		repeating-linear-gradient(141deg, transparent 0 105px, rgb(252 30 30 / 13%) 106px 107px, transparent 108px 209px),
		repeating-linear-gradient(33deg, transparent 0 125px, rgb(252 30 30 / 10%) 126px 127px, transparent 128px 253px),
		repeating-radial-gradient(ellipse at 19% 104%, transparent 0 49px, rgb(252 30 30 / 7%) 50px 51px, transparent 52px 74px);
	background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, repeat, repeat, repeat;
	background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 330px 230px, 380px 280px, 260px 120px;
}

.hpi-mfrs-layout {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(260px, 0.77fr) minmax(580px, 1.8fr);
	align-items: center;
	gap: clamp(34px, 5vw, 82px);
	width: min(100%, var(--hpi-content));
	margin-inline: auto;
	padding-inline: var(--hpi-gutter);
}

.hpi-mfrs-copy {
	padding-block: 24px;
}

.hpi-mfrs-copy-title {
	max-width: 445px;
	margin: 0 0 22px !important;
	color: #111a31;
	font-size: clamp(39px, 4vw, 58px) !important;
	font-weight: 600 !important;
	letter-spacing: -0.05em;
	line-height: 1.09 !important;
}

.hpi-mfrs-copy-title span,
.hpi-mfrs-platform-name span {
	color: var(--hpi-red);
}

.hpi-mfrs-copy-description {
	max-width: 390px;
	margin: 0;
	color: #536079;
	font-size: 16px;
	line-height: 1.9;
}

.hpi-mfrs-platform {
	overflow: hidden;
	border: 1px solid rgb(20 28 49 / 8%);
	border-radius: 24px;
	background: rgb(255 255 255 / 85%);
	box-shadow: 0 24px 54px rgb(25 36 65 / 12%);
	backdrop-filter: blur(12px);
}

.hpi-mfrs-platform-heading {
	position: relative;
	display: grid;
	justify-items: center;
	gap: 4px;
	min-height: 104px;
	padding: 24px 58px 17px;
	border-bottom: 1px solid rgb(20 28 49 / 9%);
}

.hpi-mfrs-platform-brand {
	display: flex;
	align-items: center;
	gap: 10px;
}

.hpi-mfrs-platform-mark {
	width: 34px;
	height: 34px;
	object-fit: contain;
}

.hpi-mfrs-platform-name {
	margin: 0;
	color: #111a31;
	font-size: 26px !important;
	font-weight: 600;
	letter-spacing: -0.04em;
	line-height: 1;
}

.hpi-mfrs-platform-label {
	margin: 0;
	color: #65708a;
	font-size: 13px !important;
	font-weight: 500;
	letter-spacing: 0.09em;
	line-height: 1.2;
}

.hpi-mfrs-platform-more {
	position: absolute;
	top: 30px;
	right: 34px;
	margin: 0;
	color: #65708a;
	font-size: 21px;
	letter-spacing: 3px;
	line-height: 1;
}

.hpi-mfrs-tabs {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	padding: 25px 30px 19px;
}

.hpi-mfrs-tab.bricks-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	min-width: 0;
	min-height: 69px;
	margin: 0;
	padding: 13px 10px;
	border: 1px solid rgb(20 28 49 / 7%);
	border-radius: 13px;
	background: rgb(255 255 255 / 72%);
	box-shadow: 0 7px 14px rgb(25 36 65 / 4%);
	color: #111a31;
	font-family: inherit;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	cursor: pointer;
	transition: background-color 220ms ease, box-shadow 220ms ease, color 220ms ease, transform 220ms ease;
}

.hpi-mfrs-tab.bricks-button i {
	color: #4d5870;
	font-size: 28px;
	line-height: 1;
	transition: color 220ms ease;
}

.hpi-mfrs-tab.bricks-button:hover,
.hpi-mfrs-tab.bricks-button:focus-visible,
.hpi-mfrs-tab.bricks-button.is-active {
	border-color: transparent;
	background: linear-gradient(135deg, #FF3B30, #FF3B30);
	box-shadow: 0 12px 22px rgb(252 30 30 / 25%);
	color: #fff;
	transform: translateY(-1px);
}

.hpi-mfrs-tab.bricks-button:hover i,
.hpi-mfrs-tab.bricks-button:focus-visible i,
.hpi-mfrs-tab.bricks-button.is-active i {
	color: #fff;
}

.hpi-mfrs-panels {
	position: relative;
	min-height: 291px;
	padding: 0 30px;
}

.hpi-mfrs-panel,
.hpi-mfrs-panel.bc-glowing-card[data-disable-touch-devices] {
	position: relative;
	display: none;
	grid-template-columns: minmax(185px, 0.7fr) minmax(0, 1.3fr);
	align-items: center;
	gap: clamp(22px, 4vw, 58px);
	min-height: 291px;
	padding: 35px clamp(26px, 4vw, 60px);
	border: 1px solid rgb(20 28 49 / 7%);
	border-radius: 20px;
	background: rgb(255 255 255 / 91%);
	box-shadow: 0 9px 19px rgb(25 36 65 / 6%);
	overflow: hidden;
}

.hpi-mfrs-panel.is-active {
	display: grid;
	animation: hpi-mfrs-panel-in 420ms ease both;
}

.hpi-mfrs-panel::after {
	position: absolute;
	right: -34px;
	bottom: -44px;
	width: 232px;
	height: 232px;
	border-radius: 50%;
	background:
		radial-gradient(circle at 22% 44%, rgb(252 30 30 / 12%) 0 9px, transparent 10px),
		radial-gradient(circle at 70% 20%, rgb(252 30 30 / 11%) 0 8px, transparent 9px),
		repeating-linear-gradient(148deg, transparent 0 36px, rgb(252 30 30 / 10%) 37px 38px, transparent 39px 73px),
		repeating-linear-gradient(32deg, transparent 0 42px, rgb(252 30 30 / 8%) 43px 44px, transparent 45px 82px);
	content: "";
	opacity: 0.8;
	pointer-events: none;
}

.hpi-mfrs-panel > :not(.bc-glowing-card__mask) {
	position: relative;
	z-index: 1;
}

.hpi-mfrs-panel-icon {
	display: grid;
	width: min(100%, 174px);
	aspect-ratio: 1;
	place-items: center;
	border-radius: 34px;
	background: linear-gradient(145deg, #FCE8E3, #FCE8E3);
	color: var(--hpi-red);
	font-size: clamp(70px, 8vw, 101px);
	box-shadow: inset 0 0 0 1px rgb(252 30 30 / 4%);
}

.hpi-mfrs-panel-copy {
	min-width: 0;
	padding-left: clamp(0px, 2.8vw, 42px);
	border-left: 1px solid rgb(20 28 49 / 10%);
}

.hpi-mfrs-panel-number {
	display: block;
	margin-bottom: 4px;
	color: var(--hpi-red);
	font-size: clamp(55px, 6vw, 86px);
	font-weight: 400;
	letter-spacing: -0.07em;
	line-height: 0.92;
}

.hpi-mfrs-panel-standard {
	margin: 0 0 3px;
	color: #65708a;
	font-size: 11px !important;
	font-weight: 600;
	letter-spacing: 0.09em;
	line-height: 1.2;
	text-transform: uppercase;
}

.hpi-mfrs-panel-number::after {
	display: block;
	width: 42px;
	height: 3px;
	margin-top: 18px;
	background: var(--hpi-red);
	content: "";
}

.hpi-mfrs-panel-title {
	margin: 16px 0 0 !important;
	color: #111a31;
	font-size: clamp(20px, 2vw, 27px) !important;
	font-weight: 600 !important;
	line-height: 1.22;
}

.hpi-mfrs-panel-description {
	max-width: 450px;
	margin: 15px 0 20px;
	color: #536079;
	font-size: 14px !important;
	line-height: 1.65;
}

.hpi-mfrs-panel-link {
	color: var(--hpi-red) !important;
	font-size: 13px;
	font-weight: 600;
}

.hpi-mfrs-panel-link i {
	margin-left: 7px;
	transition: transform 160ms ease;
}

.hpi-mfrs-panel-link:hover i,
.hpi-mfrs-panel-link:focus-visible i {
	transform: translateX(4px);
}

.hpi-mfrs-benefits {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: 20px 30px 30px;
	border: 0;
	border-radius: 17px;
	background: linear-gradient(105deg, #FCE8E3, #FCE8E3);
	box-shadow: none;
}

.hpi-mfrs-benefit {
	gap: 14px;
	padding: 20px 24px;
}

.hpi-mfrs-benefit-icon {
	width: 42px;
	height: 42px;
	background: transparent;
	font-size: 29px;
}

.hpi-mfrs-benefit-copy strong {
	font-size: 14px;
	letter-spacing: 0.04em;
}

.hpi-mfrs-benefit-copy span {
	font-size: 13px;
	line-height: 1.45;
}

@keyframes hpi-mfrs-panel-in {
	from { opacity: 0; transform: translateY(8px); }
	to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1080px) {
	.hpi-mfrs-layout {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.hpi-mfrs-copy,
	.hpi-mfrs-copy-title,
	.hpi-mfrs-copy-description {
		max-width: 690px;
	}
}

@media (max-width: 680px) {
	.hpi-mfrs {
		padding-block: 54px;
	}

	.hpi-mfrs-copy-title {
		font-size: 38px !important;
	}

	.hpi-mfrs-platform {
		border-radius: 18px;
	}

	.hpi-mfrs-platform-heading {
		min-height: 92px;
		padding: 22px 46px 15px;
	}

	.hpi-mfrs-platform-name {
		font-size: 22px !important;
	}

	.hpi-mfrs-platform-more {
		top: 27px;
		right: 18px;
	}

	.hpi-mfrs-tabs {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
		padding: 17px 17px 14px;
	}

	.hpi-mfrs-tab.bricks-button {
		min-height: 56px;
		gap: 6px;
		font-size: 12px;
	}

	.hpi-mfrs-tab.bricks-button i {
		font-size: 22px;
	}

	.hpi-mfrs-panels {
		min-height: 0;
		padding: 0 17px;
	}

	.hpi-mfrs-panel,
	.hpi-mfrs-panel.bc-glowing-card[data-disable-touch-devices] {
		grid-template-columns: 1fr;
		gap: 23px;
		min-height: 0;
		padding: 30px 25px;
	}

	.hpi-mfrs-panel-icon {
		width: 116px;
		border-radius: 24px;
		font-size: 66px;
	}

	.hpi-mfrs-panel-copy {
		padding-top: 22px;
		padding-left: 0;
		border-top: 1px solid rgb(20 28 49 / 10%);
		border-left: 0;
	}

	.hpi-mfrs-panel-number {
		font-size: 62px;
	}

	.hpi-mfrs-benefits {
		grid-template-columns: 1fr;
		margin: 17px;
	}

	.hpi-mfrs-benefit + .hpi-mfrs-benefit,
	.hpi-mfrs-benefit:nth-child(3),
	.hpi-mfrs-benefit:nth-child(4) {
		border-top: 1px solid rgb(20 28 49 / 9%);
		border-left: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hpi-mfrs-panel.is-active {
		animation: none;
	}
}

/* Keep the background intentionally quiet: one static connected-dot graphic. */
.hpi-mfrs-network {
	opacity: 1;
	background-image:
		radial-gradient(circle at 62% 7%, rgb(252 30 30 / 45%) 0 4px, transparent 4.5px),
		radial-gradient(circle at 72% 12%, rgb(252 30 30 / 35%) 0 4px, transparent 4.5px),
		radial-gradient(circle at 80% 5%, rgb(252 30 30 / 42%) 0 4px, transparent 4.5px),
		radial-gradient(circle at 89% 15%, rgb(252 30 30 / 30%) 0 3px, transparent 3.5px),
		radial-gradient(circle at 96% 9%, rgb(252 30 30 / 24%) 0 3px, transparent 3.5px),
		linear-gradient(143deg, transparent 0 49.75%, rgb(252 30 30 / 14%) 49.9% 50.1%, transparent 50.25%),
		linear-gradient(32deg, transparent 0 49.75%, rgb(252 30 30 / 12%) 49.9% 50.1%, transparent 50.25%),
		linear-gradient(160deg, transparent 0 49.75%, rgb(252 30 30 / 10%) 49.9% 50.1%, transparent 50.25%);
	background-repeat: no-repeat;
	background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 66% 0, 73% 0, 84% 0;
	background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 520px 220px, 480px 210px, 410px 170px;
}

/* Next Bricks defers cards below the first viewport with this utility class.
 * The active tab panel must remain immediately visible inside its application UI. */
.hpi-mfrs-panels .hpi-mfrs-panel.bricks-lazy-hidden.is-active {
	display: grid !important;
	visibility: visible !important;
	opacity: 1 !important;
}

/* Final compact layout pass. The application panel no longer uses a lazy
 * Next Bricks card wrapper, so its active content is always present. */
.hpi-mfrs {
	padding-block: 38px;
}

.hpi-mfrs-layout {
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(34px, 4vw, 64px);
}

.hpi-mfrs-copy {
	padding-block: 0;
}

.hpi-mfrs-copy-title {
	max-width: 425px;
	margin-bottom: 14px !important;
	font-size: 33px !important;
	font-weight: 500 !important;
	letter-spacing: -0.03em;
	line-height: 1.16 !important;
}

.hpi-mfrs-copy-description {
	max-width: 405px;
	font-size: 14px;
	line-height: 1.65;
}

.hpi-mfrs-watch {
	margin-top: 19px;
	padding: 10px 16px;
}

.hpi-mfrs-platform-heading {
	min-height: 76px;
	padding: 15px 48px 11px;
}

.hpi-mfrs-platform-mark {
	width: 27px;
	height: 27px;
}

.hpi-mfrs-platform-name {
	font-size: 22px !important;
}

.hpi-mfrs-platform-label {
	font-size: 11px !important;
}

.hpi-mfrs-platform-more {
	top: 21px;
	right: 24px;
	font-size: 18px;
}

.hpi-mfrs-tabs {
	gap: 10px;
	padding: 16px 20px 13px;
}

.hpi-mfrs-tab.bricks-button {
	min-height: 55px;
	padding: 10px 8px;
	font-size: 12px;
}

.hpi-mfrs-tab.bricks-button i {
	font-size: 23px;
}

.hpi-mfrs-panels {
	min-height: 215px;
	padding: 0 20px;
}

.hpi-mfrs-panel,
.hpi-mfrs-panel.bc-glowing-card[data-disable-touch-devices] {
	min-height: 215px;
	gap: 26px;
	padding: 23px 30px;
}

.hpi-mfrs-panel-icon {
	width: min(100%, 124px);
	border-radius: 26px;
	font-size: 69px;
}

.hpi-mfrs-panel-copy {
	padding-left: 25px;
}

.hpi-mfrs-panel-number {
	font-size: 59px;
}

.hpi-mfrs-panel-number::after {
	width: 30px;
	height: 2px;
	margin-top: 10px;
}

.hpi-mfrs-panel-title {
	margin-top: 10px !important;
	font-size: 19px !important;
}

.hpi-mfrs-panel-description {
	margin: 8px 0 11px;
	font-size: 12px !important;
	line-height: 1.45;
}

.hpi-mfrs-panel-link {
	font-size: 12px;
}

.hpi-mfrs-benefits {
	margin: 13px 20px 20px;
}

.hpi-mfrs-benefit {
	gap: 8px;
	padding: 11px 10px;
}

.hpi-mfrs-benefit-icon {
	width: 31px;
	height: 31px;
	font-size: 23px;
}

.hpi-mfrs-benefit-copy {
	gap: 1px;
}

.hpi-mfrs-benefit-copy strong {
	font-size: 9px;
	letter-spacing: 0.04em;
}

.hpi-mfrs-benefit-copy span {
	font-size: 9px;
	line-height: 1.28;
}

@media (max-width: 1080px) {
	.hpi-mfrs-layout {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 680px) {
	.hpi-mfrs {
		padding-block: 46px;
	}

	.hpi-mfrs-copy-title {
		font-size: 31px !important;
	}

	.hpi-mfrs-panels {
		min-height: 0;
	}

	.hpi-mfrs-panel,
	.hpi-mfrs-panel.bc-glowing-card[data-disable-touch-devices] {
		min-height: 0;
		padding: 24px;
	}
}

/* Final clean background and 30/70 desktop split. */
.hpi-mfrs {
	background: #fff !important;
}

.hpi-mfrs-layout {
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	gap: clamp(34px, 4vw, 64px);
}

.hpi-mfrs-platform {
	order: 1;
}

.hpi-mfrs-copy {
	order: 2;
}

.hpi-mfrs-platform-heading {
	min-height: 60px;
	padding: 12px;
}

.hpi-mfrs-platform-mark {
	width: 35px;
	height: 35px;
}

.hpi-mfrs-panel::after {
	display: none;
}

@media (max-width: 1080px) {
	.hpi-mfrs-layout {
		grid-template-columns: 1fr !important;
	}

	.hpi-mfrs-copy {
		order: 1;
	}

	.hpi-mfrs-platform {
		order: 2;
	}
}

/* MFRS card carousel: centered introduction, four visible standards, active card elevated. */
.hpi-mfrs {
	padding-block: clamp(68px, 8vw, 116px);
	background: #fff !important;
}

.hpi-mfrs-layout {
	display: grid;
	grid-template-columns: 1fr !important;
	gap: 38px;
	width: min(100%, var(--hpi-content));
	padding-inline: var(--hpi-gutter);
	box-sizing: border-box;
}

.hpi-mfrs-copy,
.hpi-mfrs-platform {
	order: initial;
}

.hpi-mfrs-copy {
	max-width: 790px;
	margin-inline: auto;
	padding: 0;
	text-align: center;
}

.hpi-mfrs-eyebrow {
	justify-content: center;
}

.hpi-mfrs-copy-title {
	max-width: 610px;
	margin: 0 auto 18px !important;
	font-size: 33px !important;
	line-height: 1.25 !important;
}

.hpi-mfrs-copy-description {
	max-width: 580px;
	margin-inline: auto;
	font-size: 15.4px;
	line-height: 1.55;
}

.hpi-mfrs-watch {
	display: none;
}

.hpi-mfrs-platform {
	overflow: visible;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	backdrop-filter: none;
}

.hpi-mfrs-looping-tabs {
	display: block;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.hpi-mfrs-looping-tabs .nb-looping-tabs__nav.hpi-mfrs-tabs {
	display: none;
}

.hpi-mfrs-looping-tabs .nb-looping-tabs__tabs-wrapper.hpi-mfrs-panels {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	align-items: stretch;
	gap: 16px;
	min-height: 0;
	padding: 22px 0 0;
	overflow: visible;
}

.hpi-mfrs-looping-tabs .nb-looping-tabs__tab.hpi-mfrs-panel,
.hpi-mfrs-looping-tabs .nb-looping-tabs__tab.hpi-mfrs-panel.bricks-lazy-hidden {
	display: flex !important;
	visibility: visible !important;
	flex-direction: column;
	align-items: stretch;
	min-height: 358px;
	padding: 30px 26px;
	border: 1px solid rgb(20 28 49 / 8%);
	border-radius: 18px;
	background: rgb(255 255 255 / 94%);
	box-shadow: 0 14px 30px rgb(25 36 65 / 7%);
	opacity: 1 !important;
	transform: none;
	transition: transform 320ms ease, border-color 320ms ease, box-shadow 320ms ease;
}

.hpi-mfrs-looping-tabs .nb-looping-tabs__tab.hpi-mfrs-panel.nb-looping-tabs__tab--active {
	border-color: rgb(252 30 30 / 52%);
	box-shadow: 0 24px 42px rgb(252 30 30 / 15%);
	transform: translateY(-18px);
	z-index: 1;
	animation: none;
}

.hpi-mfrs-looping-tabs .hpi-mfrs-panel-copy {
	display: flex;
	flex: 1;
	flex-direction: column;
	width: auto;
	padding: 0;
	border: 0;
}

.hpi-mfrs-looping-tabs .hpi-mfrs-panel-standard {
	margin: 0 0 6px;
	color: var(--hpi-red);
	font-size: 12px !important;
}

.hpi-mfrs-looping-tabs .hpi-mfrs-panel-number {
	font-size: clamp(48px, 4vw, 62px);
}

.hpi-mfrs-looping-tabs .hpi-mfrs-panel-number::after {
	width: 30px;
	margin-top: 12px;
}

.hpi-mfrs-looping-tabs .hpi-mfrs-panel-title {
	margin-top: 14px !important;
	font-size: 19px !important;
}

.hpi-mfrs-looping-tabs .hpi-mfrs-panel-description {
	margin: 12px 0 0;
	font-size: 14px !important;
	line-height: 1.55;
}

.hpi-mfrs-looping-tabs .hpi-mfrs-panel-link {
	margin-top: auto;
	padding-top: 24px;
	font-size: 13px;
}

.hpi-mfrs-looping-tabs .hpi-mfrs-benefits {
	grid-column: 1 / -1;
	margin-top: 36px;
	border: 1px solid rgb(252 30 30 / 16%);
	border-radius: 18px;
	background: rgb(255 249 249 / 88%);
	box-shadow: 0 15px 31px rgb(252 30 30 / 7%);
}

@media (max-width: 960px) {
	.hpi-mfrs-looping-tabs .nb-looping-tabs__tabs-wrapper.hpi-mfrs-panels {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		row-gap: 32px;
	}
}

@media (max-width: 620px) {
	.hpi-mfrs-copy-title {
		font-size: 30.8px !important;
	}

	.hpi-mfrs-copy-description {
		font-size: 16px;
	}

	.hpi-mfrs-looping-tabs .nb-looping-tabs__tabs-wrapper.hpi-mfrs-panels {
		grid-template-columns: 1fr;
	}

	.hpi-mfrs-looping-tabs .nb-looping-tabs__tab.hpi-mfrs-panel {
		min-height: 0;
	}

	.hpi-mfrs-looping-tabs .hpi-mfrs-benefits {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.hpi-mfrs-looping-tabs .hpi-mfrs-benefit:nth-child(-n + 2)::before,
	.hpi-mfrs-looping-tabs .hpi-mfrs-benefit:nth-child(-n + 2)::after {
		display: none;
	}
}

/* Partners: introduction at the top, logo grid directly underneath. */
.hpi-partners { padding-block: clamp(62px, 6vw, 88px); }
.hpi-partners .hpi-partners-inner { display: flex; flex-direction: column; align-items: center; gap: 34px; }
.hpi-partners .hpi-partners-copy { max-width: 650px; text-align: center; }
.hpi-partners .hpi-partners-eyebrow { margin-bottom: 12px; font-size: 12px; }
.hpi-partners .hpi-partners-copy h2 { font-size: clamp(32px, 3vw, 44px); line-height: 1.12; }
.hpi-partners .hpi-partners-description { max-width: 560px; margin: 14px auto 0; font-size: 15.4px; }
.hpi-partners .hpi-partners-grid { width: 100%; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }
.hpi-partners .hpi-partner-card { min-height: 98px; padding: 14px; border-radius: 13px; }

@media (max-width: 960px) {
	.hpi-partners .hpi-partners-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
	.hpi-partners .hpi-partners-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.hpi-partners .hpi-partners-copy h2 { font-size: 32px; }
	.hpi-partners .hpi-partner-card { min-height: 92px; }
}

@media (prefers-reduced-motion: reduce) {
	.hpi-mfrs-looping-tabs .hpi-mfrs-benefit,
	.hpi-mfrs-looping-tabs .hpi-mfrs-benefit::before,
	.hpi-mfrs-looping-tabs .hpi-mfrs-benefit::after {
		animation: none;
	}
}

/* Client perspective and contact: the approved end-of-page composition. */
.hpi-testimonial {
	padding: clamp(72px, 8vw, 118px) 0 clamp(54px, 6vw, 80px);
	background: #fff;
	text-align: center;
}

.hpi-testimonial .hpi-bricks-section-inner {
	max-width: 980px;
}

.hpi-testimonial-eyebrow {
	margin: 0 0 18px;
	color: #FF3B30;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .02em;
	line-height: 1.2;
	text-transform: uppercase;
}

.hpi-testimonial-title {
	margin: 0 0 clamp(34px, 4vw, 48px);
	color: #071a38;
	font-size: clamp(34px, 4.2vw, 58px);
	font-weight: 600;
	letter-spacing: -.055em;
	line-height: 1.1;
}

.hpi-testimonial .hpi-testimonial-slider {
	padding-bottom: 40px;
}

.hpi-testimonial .hpi-quote-card {
	position: relative;
	min-height: 0;
	display: grid;
	grid-template-columns: 112px minmax(0, 1fr);
	align-items: start;
	gap: 26px;
	padding: clamp(34px, 5vw, 58px) clamp(30px, 6vw, 70px);
	border: 0;
	border-radius: 24px;
	background: linear-gradient(118deg, #FCE8E3, #FCE8E3);
	box-shadow: none;
	text-align: left;
}

.hpi-testimonial .hpi-review-title {
	grid-column: 2;
	margin: 0;
	color: #0a1d3c;
	font-size: clamp(24px, 2.4vw, 34px);
	font-weight: 600;
	letter-spacing: -.04em;
	line-height: 1.15;
}

.hpi-testimonial .hpi-quote-card::before {
	align-self: start;
	color: #E8DDD3;
	content: '\201C';
	font-family: Georgia, serif;
	font-size: 146px;
	font-weight: 700;
	line-height: .72;
}

.hpi-testimonial .hpi-quote-card blockquote {
	grid-column: 2;
	max-width: none;
	margin: 0;
	color: #0a1d3c;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.6;
}

.hpi-testimonial .hpi-quote-card blockquote strong {
	font-weight: 600;
}

.hpi-testimonial .hpi-quote-person {
	grid-column: 2;
	justify-content: flex-start;
	gap: 18px;
	margin-top: 4px;
}

.hpi-testimonial .hpi-avatar {
	width: 64px;
	height: 64px;
	flex: 0 0 auto;
	background: linear-gradient(135deg, #FF3B30, #FF3B30);
	color: #fff;
	font-size: 19px;
}

.hpi-testimonial .hpi-quote-person strong {
	color: #0a1d3c;
	font-size: 17px;
	font-weight: 600;
}

.hpi-testimonial .hpi-quote-person div span {
	margin-top: 2px;
	color: #666872;
	font-size: 15px;
}

.hpi-testimonial .splide__pagination {
	bottom: 0;
	gap: 14px;
}

.hpi-testimonial .splide__pagination__page {
	width: 14px;
	height: 14px;
	margin: 0;
	border-radius: 999px;
	background: #E8DDD3;
	opacity: 1;
}

.hpi-testimonial .splide__pagination__page.is-active {
	width: 32px;
	transform: none;
	background: linear-gradient(90deg, #FF3B30, #FF3B30);
}

.hpi-cta {
	padding: 0 0 clamp(72px, 8vw, 116px);
	background: #fff;
}

.hpi-cta > .hpi-section-inner {
	width: min(100%, var(--hpi-content));
	padding-inline: var(--hpi-gutter);
}

.hpi-cta-card {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 48px;
	min-height: 322px;
	padding: clamp(40px, 6vw, 72px) clamp(34px, 7vw, 92px);
	border-radius: 24px;
	background: radial-gradient(circle at 74% 48%, rgb(44 82 125 / 20%), transparent 23%), linear-gradient(118deg, #00152e 0%, #031d3c 58%, #062246 100%);
	box-shadow: 0 20px 44px rgb(5 25 55 / 12%);
	overflow: hidden;
}

.hpi-cta-copy,
.hpi-cta-link {
	position: relative;
	z-index: 1;
}

.hpi-cta-copy {
	max-width: 620px;
}

.hpi-cta-copy p {
	margin: 0 0 20px;
	color: #FF3B30;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: .015em;
	line-height: 1.2;
	text-transform: uppercase;
}

.hpi-cta-copy h2 {
	margin: 0;
	color: #fff;
	font-size: clamp(34px, 4vw, 52px);
	font-weight: 600;
	letter-spacing: -.055em;
	line-height: 1.1;
}

.hpi-cta-copy span {
	display: block;
	max-width: 570px;
	margin-top: 24px;
	color: rgb(255 255 255 / 88%);
	font-size: 17px;
	line-height: 1.6;
}

.hpi-cta-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	min-width: 280px;
	min-height: 80px;
	padding: 18px 28px;
	border-radius: 13px;
	background: linear-gradient(115deg, #FF3B30, #FF3B30);
	box-shadow: 0 12px 24px rgb(255 70 62 / 21%);
	color: #fff !important;
	font-size: 19px;
	font-weight: 600;
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.hpi-cta-link:hover,
.hpi-cta-link:focus-visible {
	transform: translateY(-3px);
	box-shadow: 0 16px 30px rgb(255 70 62 / 30%);
}

.hpi-cta-link b {
	font-size: 25px;
	font-weight: 400;
	line-height: 1;
}

.hpi-cta-orbit {
	position: absolute;
	top: 50%;
	right: -104px;
	width: 380px;
	aspect-ratio: 1;
	transform: translateY(-50%);
	border: 1px solid rgb(255 89 82 / 66%);
	border-radius: 50%;
}

.hpi-cta-orbit::after {
	position: absolute;
	top: 20%;
	left: 21%;
	width: 260px;
	height: 260px;
	background-image: radial-gradient(circle, rgb(255 102 96 / 88%) 1.3px, transparent 1.5px);
	background-size: 18px 18px;
	content: '';
}

@media (max-width: 760px) {
	.hpi-testimonial .hpi-quote-card {
	grid-template-columns: 1fr;
	gap: 18px;
	min-height: 0;
	padding: 38px 28px;
	text-align: center;
	}

	.hpi-testimonial .hpi-quote-card::before,
	.hpi-testimonial .hpi-review-title,
	.hpi-testimonial .hpi-quote-card blockquote,
	.hpi-testimonial .hpi-quote-person {
		grid-column: 1;
	}

	.hpi-testimonial .hpi-quote-card::before {
	justify-self: center;
	font-size: 112px;
	}

	.hpi-testimonial .hpi-quote-person {
		justify-content: center;
		text-align: left;
	}

	.hpi-cta-card {
	grid-template-columns: 1fr;
	gap: 34px;
	min-height: 0;
	}

	.hpi-cta-link {
	width: 100%;
	min-width: 0;
	}

	.hpi-cta-orbit {
	top: auto;
	right: -150px;
	bottom: -220px;
	transform: none;
	}
}

/* Final responsive layout safeguards for sections rendered after Bricks. */
.hpi-partners .hpi-partners-inner > .hpi-partners-grid {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

@media (max-width: 960px) {
	.hpi-global-stats .hpi-global-stats-copy,
	.hpi-global-stats .hpi-global-stats-list {
		text-align: center;
	}

	.hpi-global-stats .hpi-global-stats-description,
	.hpi-global-stats .hpi-global-stats-list {
		margin-inline: auto;
	}

	.hpi-global-stats .hpi-global-stats-list > div {
		justify-items: center;
	}

	.hpi-partners .hpi-partners-inner > .hpi-partners-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}

/* Final compact partners and resources overrides. */
.hpi-partners { padding-block: clamp(62px, 6vw, 88px); }
.hpi-partners-inner { display: flex; flex-direction: column; align-items: center; gap: 34px; }
.hpi-partners-copy { max-width: 650px; text-align: center; }
.hpi-partners-eyebrow { margin-bottom: 12px; font-size: 12px; }
.hpi-partners-copy h2 { font-size: clamp(32px, 3vw, 44px); line-height: 1.12; }
.hpi-partners-description { max-width: 560px; margin: 14px auto 0; font-size: 15.4px; }
.hpi-partners-grid { width: 100%; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }
.hpi-partner-card { min-height: 98px; padding: 14px; border-radius: 13px; }
.hpi-partner-card span { font-size: clamp(17px, 1.55vw, 25px); }
.hpi-partner-wordmark--cognitus span { font-size: clamp(23px, 2vw, 32px); }
.hpi-partner-wordmark--accenture span { font-size: clamp(20px, 1.75vw, 28px); }
.hpi-partner-wordmark--crank span { font-size: clamp(16px, 1.35vw, 22px); }
.hpi-partner-wordmark--telkom span { font-size: clamp(18px, 1.55vw, 24px); }
.hpi-partner-wordmark--trim span { font-size: clamp(16px, 1.35vw, 21px); }
.hpi-partner-wordmark--apro span { font-size: clamp(17px, 1.45vw, 23px); }
.hpi-partner-wordmark--sakta span { font-size: clamp(18px, 1.55vw, 24px); }
.hpi-partner-wordmark--aar span { font-size: clamp(18px, 1.55vw, 25px); }
.hpi-partner-wordmark--partner span { font-size: clamp(17px, 1.45vw, 22px); }

.hpi-resources { padding-block: clamp(64px, 6vw, 92px); }
.hpi-resources-heading { margin-bottom: 46px; }
.hpi-resources-grid { align-items: start; }
.hpi-resource-featured-copy { padding: 30px 40px 32px; }
.hpi-resource-item { display: grid; grid-template-columns: minmax(0, 1fr) 32px; align-items: center; column-gap: 22px; padding: 26px 0; }
.hpi-resource-item p, .hpi-resource-item h3 { grid-column: 1; }
.hpi-resource-item h3 { margin-top: 22px; }
.hpi-resource-item > b { position: static; grid-column: 2; grid-row: 1 / -1; justify-self: end; margin: 0; transform: none; }

@media (max-width: 960px) {
	.hpi-partners-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
	.hpi-partners-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.hpi-partners-copy h2 { font-size: 32px; }
	.hpi-partner-card { min-height: 92px; }
	.hpi-resource-featured-copy { padding: 28px 26px 30px; }
}

/* Solutions mega menu: retain the compact menu dimensions with a CEM overview. */
.hpi-mega-menu.hpi-mega-menu--solutions {
	width: min(840px, calc(100vw - 32px));
	padding: 16px 18px;
}

.hpi-solutions-product {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr) auto;
	align-items: center;
	gap: 14px;
	padding: 0 12px 14px;
	border-bottom: 1px solid var(--hpi-border-light);
}

.hpi-solutions-product-mark {
	width: 44px;
	height: 44px;
	object-fit: contain;
}

.hpi-solutions-product-copy {
	display: grid;
	gap: 4px;
}

.hpi-solutions-product-eyebrow {
	color: #343434;
	font-size: 10px !important;
	font-weight: 600;
	letter-spacing: .12em;
	line-height: 1.2;
	text-transform: uppercase;
}

.hpi-solutions-product-main {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 4px 14px;
}

.hpi-solutions-product-main strong {
	color: var(--hpi-black);
	font-size: 18px !important;
	font-weight: 600;
	line-height: 1.25;
}

.hpi-solutions-product-main span {
	color: var(--hpi-text-secondary);
	font-size: 11.5px !important;
	line-height: 1.4;
}

.hpi-solutions-product-link {
	display: inline-flex !important;
	flex-direction: row !important;
	align-items: center;
	gap: 6px !important;
	padding: 5px 0 !important;
	color: var(--hpi-red) !important;
	font-size: 12px !important;
	font-weight: 500;
	white-space: nowrap;
}

.hpi-solutions-product-link i {
	font-size: 14px;
}

.hpi-mega-menu--solutions .hpi-solutions-column {
	padding: 18px 16px 0 6px;
}

.hpi-mega-menu--solutions .hpi-solutions-column--sustainability {
	padding: 18px 6px 0 20px;
}

.hpi-mega-menu--solutions .hpi-solutions-intro {
	min-height: 62px;
	gap: 14px;
	padding: 0 6px 10px;
}

.hpi-mega-menu--solutions .hpi-solutions-icon {
	width: 50px;
	height: 50px;
	border-radius: 12px;
}

.hpi-mega-menu--solutions .hpi-solutions-icon i {
	font-size: 24px !important;
}

.hpi-mega-menu--solutions .hpi-solutions-intro p {
	margin: 0 0 8px;
	font-size: 15.5px !important;
	line-height: 1.1;
}

.hpi-mega-menu--solutions .hpi-solutions-intro p::after {
	width: 30px;
	margin-top: 8px;
}

.hpi-mega-menu--solutions .hpi-solutions-intro > div > span {
	font-size: 12.5px !important;
}

.hpi-mega-menu--solutions .hpi-solutions-list a {
	grid-template-columns: 58px minmax(0, 1fr) auto;
	gap: 12px;
	min-height: 64px;
	padding: 7px 6px;
}

.hpi-mega-menu--solutions .hpi-solutions-list a:last-child {
	border-bottom: 0;
}

.hpi-mega-menu--solutions .hpi-solution-standard {
	align-items: center;
	min-height: 44px;
	padding-right: 8px;
	color: var(--hpi-red) !important;
	text-align: center;
}

.hpi-mega-menu--solutions .hpi-solution-standard small {
	color: var(--hpi-text-secondary) !important;
	font-size: 10.5px !important;
}

.hpi-mega-menu--solutions .hpi-solution-standard strong {
	margin-top: 3px;
	color: inherit;
	font-size: 28px !important;
	line-height: .9;
}

.hpi-mega-menu--solutions .hpi-solutions-column--sustainability .hpi-solution-standard {
	color: #18a957 !important;
}

.hpi-mega-menu--solutions .hpi-solution-copy {
	gap: 4px;
}

.hpi-mega-menu--solutions .hpi-solution-copy strong {
	font-size: 13.5px !important;
}

.hpi-mega-menu--solutions .hpi-solution-copy span {
	font-size: 11.5px !important;
	line-height: 1.3;
}

.hpi-mega-menu--solutions .hpi-solutions-list > a > i {
	font-size: 13px !important;
}

@media (max-width: 900px) {
	.hpi-mega-menu.hpi-mega-menu--solutions {
		grid-template-columns: 1fr;
		width: auto;
		padding: 14px 0;
	}

	.hpi-solutions-product {
		grid-template-columns: 50px minmax(0, 1fr);
		gap: 14px;
		padding: 0 0 20px;
	}

	.hpi-solutions-product-mark {
		width: 46px;
		height: 46px;
	}

	.hpi-solutions-product-link {
		grid-column: 2;
		justify-self: start;
	}

	.hpi-mega-menu--solutions .hpi-solutions-column,
	.hpi-mega-menu--solutions .hpi-solutions-column--sustainability {
		padding-right: 0;
		padding-left: 0;
	}

	.hpi-mega-menu--solutions .hpi-solutions-column--sustainability {
		margin-top: 16px;
		padding-top: 16px;
		border-top: 1px solid var(--hpi-border-light);
		border-left: 0;
	}
}

/* Certified partners: a calm continuation of the investment section. */
.hpi-partners {
	padding: clamp(62px, 6vw, 88px) 0;
	background:
		radial-gradient(circle at 86% 10%, rgb(252 30 30 / 13%), transparent 30%),
		radial-gradient(circle at 8% 88%, rgb(252 30 30 / 10%), transparent 27%),
		#FFFCF8;
}

.hpi-partners-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 34px;
}

.hpi-partners-copy {
	max-width: 650px;
	text-align: center;
}

.hpi-partners-eyebrow {
	margin: 0 0 12px;
	color: var(--hpi-red);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .19em;
	text-transform: uppercase;
}

.hpi-partners-copy h2 {
	margin: 0;
	color: #111a31;
	font-size: clamp(32px, 3vw, 44px);
	font-weight: 600;
	letter-spacing: -.045em;
	line-height: 1.12;
}

.hpi-partners-description {
	max-width: 560px;
	margin: 14px auto 0;
	color: #536079;
	font-size: 15.4px;
	line-height: 1.58;
}

.hpi-partners-button {
	display: inline-flex;
	align-items: center;
	gap: 17px;
	padding: 15px 28px;
	border: 1px solid var(--hpi-red);
	border-radius: 9px;
	color: var(--hpi-red);
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	transition: background-color 180ms ease, color 180ms ease;
}

.hpi-partners-button:hover,
.hpi-partners-button:focus-visible {
	background: var(--hpi-red);
	color: #fff;
}

.hpi-partners-count {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-top: 42px;
	padding-top: 27px;
	border-top: 1px solid rgb(20 28 49 / 14%);
	color: #18213c;
	font-size: 16px;
	font-weight: 500;
}

.hpi-partners-count i {
	padding-right: 24px;
	border-right: 1px solid rgb(20 28 49 / 14%);
	color: var(--hpi-red);
	font-size: 34px;
}

.hpi-partners-grid {
	display: grid;
	width: 100%;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.hpi-partner-card {
	display: grid;
	min-height: 98px;
	place-items: center;
	padding: 14px;
	border: 1px solid rgb(20 28 49 / 13%);
	border-radius: 13px;
	background: rgb(255 255 255 / 84%);
	box-shadow: 0 10px 28px rgb(20 28 49 / 3%);
	color: #121a3b;
	text-align: center;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.hpi-partner-card:hover {
	border-color: rgb(252 30 30 / 58%);
	box-shadow: 0 12px 28px rgb(252 30 30 / 9%);
	transform: translateY(-3px);
}

/* Source artwork is consistently framed and centered, regardless of its native canvas. */
.hpi-partner-card img {
	display: block;
	width: min(100%, 156px);
	aspect-ratio: 2 / 1;
	object-fit: cover;
	object-position: center;
}

.hpi-partner-wordmark--crank img { width: min(100%, 142px); }
.hpi-partner-wordmark--aar img { width: min(100%, 138px); }

.hpi-partner-card span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	color: inherit;
	font-size: clamp(19px, 2vw, 30px);
	font-weight: 600;
	letter-spacing: -.055em;
	line-height: .95;
}

.hpi-partner-card small {
	display: inline-block;
	margin-left: 5px;
	font-size: .38em;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.1;
	text-align: left;
}

.hpi-partner-wordmark--cognitus span { font-size: clamp(27px, 2.55vw, 42px); font-weight: 400; letter-spacing: -.09em; }
.hpi-partner-wordmark--accenture span { font-size: clamp(23px, 2.25vw, 35px); font-weight: 700; }
.hpi-partner-wordmark--accenture span::before { content: ">"; position: absolute; margin: -24px 0 0 45px; font-size: .8em; }
.hpi-partner-wordmark--crank span { font-size: clamp(18px, 1.8vw, 28px); letter-spacing: -.04em; }
.hpi-partner-wordmark--telkom span { display: block; font-size: clamp(20px, 2vw, 31px); }.hpi-partner-wordmark--telkom small { display: block; margin: 5px 0 0; text-align: left; }
.hpi-partner-wordmark--trim span { font-size: clamp(17px, 1.8vw, 27px); letter-spacing: .1em; }
.hpi-partner-wordmark--apro span { font-size: clamp(19px, 1.9vw, 30px); letter-spacing: .09em; }.hpi-partner-wordmark--apro small { margin-left: 4px; }
.hpi-partner-wordmark--sakta span { font-family: Georgia, serif; font-size: clamp(21px, 2vw, 32px); }
.hpi-partner-wordmark--aar span { font-size: clamp(22px, 2.2vw, 35px); letter-spacing: -.1em; }.hpi-partner-wordmark--aar small { font-size: .36em; letter-spacing: 0; }
.hpi-partner-wordmark--partner span { font-size: clamp(19px, 1.8vw, 27px); }.hpi-partner-wordmark--partner i { color: #536079; font-size: 32px; }

@media (max-width: 900px) {
	.hpi-partners-inner {
		gap: 34px;
	}

	.hpi-partners-copy {
		max-width: 650px;
	}

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

@media (max-width: 620px) {
	.hpi-partners {
		padding-block: 64px;
	}

	.hpi-partners-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.hpi-partner-card { min-height: 92px; }

	.hpi-partners-copy h2 {
		font-size: 30.8px;
	}

	.hpi-partners-description {
		font-size: 15.4px;
	}

	.hpi-partners-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 11px;
	}

	.hpi-partner-card {
		min-height: 118px;
		padding: 14px 10px;
	}
}

/* The three benefits form a lightweight, left-to-right workflow. */
.hpi-mfrs-looping-tabs .hpi-mfrs-benefits {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
	overflow: visible;
}

.hpi-mfrs-looping-tabs .hpi-mfrs-benefit {
	position: relative;
	isolation: isolate;
	transition: background-color 240ms ease, box-shadow 240ms ease;
	animation: hpi-mfrs-workflow-step 5.4s ease-in-out infinite;
}

.hpi-mfrs-looping-tabs .hpi-mfrs-benefit:nth-child(2) {
	animation-delay: 1.8s;
}

.hpi-mfrs-looping-tabs .hpi-mfrs-benefit:nth-child(3) {
	animation-delay: 3.6s;
}

.hpi-mfrs-looping-tabs .hpi-mfrs-benefit:nth-child(-n + 2)::after {
	position: absolute;
	z-index: 3;
	top: 50%;
	left: calc(100% - 13px);
	width: 26px;
	height: 2px;
	border-radius: 99px;
	background: linear-gradient(90deg, rgb(252 30 30 / 18%), var(--hpi-red), rgb(252 30 30 / 18%));
	content: "";
	transform: translateY(-50%);
	animation: hpi-mfrs-workflow-line 2.7s ease-in-out infinite;
}

.hpi-mfrs-looping-tabs .hpi-mfrs-benefit:nth-child(2)::after {
	animation-delay: 1.35s;
}

.hpi-mfrs-looping-tabs .hpi-mfrs-benefit:nth-child(-n + 2)::before {
	position: absolute;
	z-index: 4;
	top: 50%;
	left: calc(100% - 13px);
	width: 7px;
	height: 7px;
	border: 2px solid #fff;
	border-radius: 50%;
	background: var(--hpi-red);
	box-shadow: 0 0 0 3px rgb(252 30 30 / 15%);
	content: "";
	transform: translate(-50%, -50%);
	animation: hpi-mfrs-workflow-dot 2.7s ease-in-out infinite;
}

.hpi-mfrs-looping-tabs .hpi-mfrs-benefit:nth-child(2)::before {
	animation-delay: 1.35s;
}

@keyframes hpi-mfrs-workflow-step {
	0%, 70%, 100% { background-color: rgb(255 249 249 / 88%); box-shadow: none; }
	18%, 48% { background-color: #fff; box-shadow: inset 0 0 0 1px rgb(252 30 30 / 20%), 0 8px 22px rgb(252 30 30 / 9%); }
}

@keyframes hpi-mfrs-workflow-line {
	0%, 18% { opacity: .2; transform: translateY(-50%) scaleX(.25); transform-origin: left; }
	48%, 100% { opacity: 1; transform: translateY(-50%) scaleX(1); transform-origin: left; }
}

@keyframes hpi-mfrs-workflow-dot {
	0%, 18% { opacity: 0; transform: translate(-50%, -50%) scale(.45); }
	48% { opacity: 1; transform: translate(calc(26px - 50%), -50%) scale(1); }
	100% { opacity: 0; transform: translate(calc(26px - 50%), -50%) scale(.45); }
}

@media (max-width: 620px) {
	.hpi-mfrs-looping-tabs .hpi-mfrs-benefits {
		grid-template-columns: 1fr;
	}

	.hpi-mfrs-looping-tabs .hpi-mfrs-benefit:nth-child(-n + 2)::before,
	.hpi-mfrs-looping-tabs .hpi-mfrs-benefit:nth-child(-n + 2)::after {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hpi-mfrs-looping-tabs .hpi-mfrs-benefit,
	.hpi-mfrs-looping-tabs .hpi-mfrs-benefit::before,
	.hpi-mfrs-looping-tabs .hpi-mfrs-benefit::after {
		animation: none;
	}
}

/* Investment copy follows the same scale and rhythm as the hero section. */
.hpi-investment-content .hpi-eyebrow {
	margin-bottom: 12px;
}

.hpi-investment-title {
	max-width: 570px;
	margin-bottom: 14px !important;
	font-size: 33px;
	line-height: 1.25;
}

.hpi-investment-intro {
	max-width: 580px;
	margin-bottom: 22px;
	font-size: 15.4px;
	line-height: 1.55;
}

@media (max-width: 680px) {
	.hpi-investment-title {
		font-size: 30.8px;
	}
}

/* Keep the photo overlays clear of the subject while following the new order. */
.hpi-investment-quote {
	top: auto;
	right: 0;
	bottom: 20px;
	left: auto;
	display: flex;
	align-items: flex-start;
	gap: 8px;
	padding: 17px 19px;
}

.hpi-investment-quote-mark {
	display: inline;
	flex: 0 0 auto;
	margin: 0;
	color: rgb(252 30 30 / 60%);
	font-size: 25px;
	line-height: 1.1;
}

.hpi-investment-mini-card {
	top: 52px;
	bottom: auto;
}

/* Desktop: lead with the investment details, then the supporting image. */
.hpi-investment-content {
	order: 1;
}

.hpi-investment-media {
	order: 2;
}

@media (max-width: 680px) {
	.hpi-investment-quote {
		right: 0;
		bottom: 18px;
		left: auto;
	}

	.hpi-investment-mini-card {
		top: 40px;
		bottom: auto;
	}
}

@media (max-width: 980px) {
	.hpi-investment-media {
		order: 1;
	}

	.hpi-investment-content {
		order: 2;
	}
}

/* Predictive accounting continues the MFRS story and background treatment. */
.hpi-predictive-section {
	background: #F5F1E8;
}

.hpi-predictive {
	position: relative;
	overflow: hidden;
	padding: 34px 0 112px;
	background:
		radial-gradient(circle at 17% 64%, rgb(252 30 30 / 5%), transparent 26%),
		radial-gradient(circle at 81% 42%, rgb(252 30 30 / 7%), transparent 34%),
		#F5F1E8;
}

.hpi-predictive-inner {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	align-items: center;
	gap: clamp(44px, 6vw, 92px);
	width: min(100%, var(--hpi-content));
	margin-inline: auto;
	padding-inline: var(--hpi-gutter);
	box-sizing: border-box;
}

.hpi-predictive-eyebrow {
	margin: 0 0 14px;
	color: var(--hpi-red);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.hpi-predictive-copy h2 {
	max-width: 500px;
	margin: 0;
	color: #111a31;
	font-size: 33px;
	font-weight: 600;
	letter-spacing: -.04em;
	line-height: 1.25;
}

.hpi-predictive-description {
	max-width: 510px;
	margin: 16px 0 0;
	color: #536079;
	font-size: 15.4px;
	line-height: 1.55;
}

.hpi-predictive-pillars {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	max-width: 560px;
	margin-top: 42px;
}

.hpi-predictive-pillars > div {
	display: grid;
	justify-items: center;
	gap: 16px;
	padding: 0 16px;
	border-left: 1px solid rgb(20 28 49 / 12%);
	color: #111a31;
	font-size: 13px;
	font-weight: 500;
	text-align: center;
}

.hpi-predictive-pillars > div:first-child {
	padding-left: 0;
	border-left: 0;
}

.hpi-predictive-pillars i {
	color: var(--hpi-red);
	font-size: 42px;
	line-height: 1;
}

.hpi-cash-dashboard {
	padding: 34px 38px 26px;
	border: 1px solid rgb(252 30 30 / 18%);
	border-radius: 22px;
	background: rgb(255 255 255 / 90%);
	box-shadow: 0 25px 50px rgb(252 30 30 / 12%);
}

.hpi-cash-dashboard-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.hpi-cash-dashboard-head h3 {
	margin: 0;
	color: #111a31;
	font-size: 22px;
	font-weight: 600;
}

.hpi-cash-dashboard-head > span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 10px 13px;
	border: 1px solid rgb(252 30 30 / 36%);
	border-radius: 9px;
	color: var(--hpi-red);
	font-size: 12px;
	font-weight: 500;
}

.hpi-cash-chart {
	position: relative;
	padding: 36px 0 0 48px;
}

.hpi-cash-axis {
	position: absolute;
	bottom: 34px;
	left: 0;
	display: grid;
	height: 227px;
	align-content: space-between;
	color: #65708a;
	font-size: 11px;
}

.hpi-cash-chart svg {
	display: block;
	width: 100%;
	height: auto;
}

.hpi-cash-area { fill: rgb(252 30 30 / 8%); }
.hpi-cash-actual { fill: none; stroke: #101d48; stroke-linecap: round; stroke-width: 4; }
.hpi-cash-forecast { fill: none; stroke: var(--hpi-red); stroke-dasharray: 2 10; stroke-linecap: round; stroke-width: 4; }
.hpi-cash-today { stroke: #d9dce3; stroke-dasharray: 4 5; stroke-width: 2; }
.hpi-cash-dot { fill: #101d48; }
.hpi-cash-baseline { stroke: #d9dce3; stroke-width: 1.5; }

.hpi-cash-dates {
	display: flex;
	justify-content: space-between;
	margin-top: 1px;
	color: #65708a;
	font-size: 11px;
}

.hpi-cash-dates strong { color: #111a31; }

.hpi-cash-legend {
	display: flex;
	gap: 30px;
	margin: 28px 0;
	color: #65708a;
	font-size: 12px;
}

.hpi-cash-legend span { display: inline-flex; align-items: center; gap: 9px; }
.hpi-cash-legend b { display: block; width: 30px; height: 3px; border-radius: 9px; background: #101d48; }
.hpi-cash-legend span:last-child b { background: repeating-linear-gradient(90deg, var(--hpi-red) 0 3px, transparent 3px 8px); }

.hpi-cash-insights {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(180px, .9fr);
	gap: 20px;
}

.hpi-cash-impact,
.hpi-cash-confidence {
	border: 1px solid rgb(20 28 49 / 12%);
	border-radius: 14px;
}

.hpi-cash-impact {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 22px;
}

.hpi-cash-impact > i {
	display: grid;
	width: 50px;
	height: 50px;
	flex: 0 0 auto;
	place-items: center;
	border-radius: 50%;
	background: #FCE8E3;
	color: var(--hpi-red);
	font-size: 24px;
}

.hpi-cash-impact strong { color: #111a31; font-size: 14px; }
.hpi-cash-impact p { margin: 7px 0 10px; color: #65708a; font-size: 12px; line-height: 1.45; }
.hpi-cash-impact a { color: var(--hpi-red); font-size: 12px; font-weight: 500; text-decoration: none; }
.hpi-cash-impact a i { margin-left: 5px; }

.hpi-cash-confidence {
	display: flex;
	flex-direction: column;
	padding: 20px 24px;
	color: #65708a;
	font-size: 12px;
}

.hpi-cash-confidence strong { margin-top: 7px; color: var(--hpi-red); font-size: 32px; line-height: 1; }
.hpi-cash-confidence b { height: 5px; margin: 15px 0 10px; border-radius: 6px; background: linear-gradient(90deg, var(--hpi-red) 94%, #E8DDD3 94%); }
.hpi-cash-confidence small { font-size: 11px; }

.hpi-cash-note { margin: 22px 0 0; color: #7b8290; font-size: 11px; }

@media (max-width: 960px) {
	.hpi-predictive-inner { grid-template-columns: 1fr; }
	.hpi-predictive-copy { max-width: 700px; }
}

@media (max-width: 620px) {
	.hpi-predictive { padding-bottom: 72px; }
	.hpi-predictive-copy h2 { font-size: 30.8px; }
	.hpi-predictive-pillars { margin-top: 44px; }
	.hpi-predictive-pillars > div { padding-inline: 8px; font-size: 11px; }
	.hpi-predictive-pillars i { font-size: 32px; }
	.hpi-cash-dashboard { padding: 24px 18px; }
	.hpi-cash-dashboard-head { align-items: flex-start; flex-direction: column; }
	.hpi-cash-chart { padding-left: 32px; }
	.hpi-cash-axis { font-size: 9px; }
	.hpi-cash-dates { font-size: 9px; }
	.hpi-cash-insights { grid-template-columns: 1fr; }
}

/* Reports follows the predictive-accounting visual system. */
.hpi-reports-section { background: #F5F1E8; }
.hpi-reports { padding: 28px 0 112px; background: radial-gradient(circle at 20% 35%, rgb(252 30 30 / 5%), transparent 26%), radial-gradient(circle at 82% 65%, rgb(252 30 30 / 6%), transparent 32%), #F5F1E8; }
.hpi-reports-inner { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: center; gap: clamp(44px, 7vw, 100px); width: min(100%, var(--hpi-content)); margin-inline: auto; padding-inline: var(--hpi-gutter); box-sizing: border-box; }
.hpi-reports-workspace { display: grid; grid-template-columns: 112px 1fr; min-height: 540px; padding: 20px; border: 1px solid rgb(20 28 49 / 10%); border-radius: 18px; background: rgb(255 255 255 / 92%); box-shadow: 0 24px 48px rgb(252 30 30 / 11%); }

/* Replace the disclosure mockup with a real corporate presentation photo. */
.hpi-reports-workspace {
	display: block;
	position: relative;
	min-height: 500px;
	padding: 28px 20px 46px 42px;
	overflow: visible;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.hpi-reports-workspace::before {
	position: absolute;
	z-index: 0;
	top: 88px;
	right: 0;
	bottom: 48px;
	left: 0;
	border-radius: 22px;
	background: rgb(252 30 30 / 11%);
	content: "";
}

.hpi-reports-workspace::after {
	position: absolute;
	z-index: 0;
	bottom: 0;
	left: 16px;
	width: 140px;
	height: 140px;
	background-image: radial-gradient(rgb(252 30 30 / 31%) 2.5px, transparent 3px);
	background-size: 24px 24px;
	content: "";
}

.hpi-reports-photo {
	position: relative;
	z-index: 1;
	display: block;
	width: min(100%, 420px);
	height: 452px;
	margin-inline: auto 0;
	border-radius: 7% 42% 7% 38% / 7% 35% 8% 33%;
	background: linear-gradient(135deg, rgb(17 26 49 / 7%), transparent 58%), url('https://images.unsplash.com/photo-1709715357510-b687304cee3a?auto=format&fit=crop&w=1400&q=85') center / cover no-repeat;
	background-position: 58% center;
	box-shadow: 0 16px 34px rgb(17 26 49 / 12%);
}

/* Keep the hero artwork inside the shared content grid. */
.hpi-hero-polaroid {
	width: 100%;
}

.hpi-polaroid-stack {
	width: 100%;
	transform: translate(0, 18px);
}
.hpi-reports-side { display: grid; align-content: start; gap: 4px; padding: 14px 8px 0 0; border-right: 1px solid rgb(20 28 49 / 9%); }
.hpi-reports-side span { display: flex; align-items: center; gap: 9px; padding: 10px 8px; color: #51607a; font-size: 10px; font-weight: 500; }
.hpi-reports-side span.is-active { color: var(--hpi-red); }.hpi-reports-side i { font-size: 16px; }
.hpi-reports-main { min-width: 0; padding-left: 16px; }.hpi-reports-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 15px; }.hpi-reports-head h3 { margin: 0; color: #111a31; font-size: 17px; }.hpi-reports-head span { padding: 7px 10px; border: 1px solid rgb(252 30 30 / 28%); border-radius: 7px; color: var(--hpi-red); font-size: 10px; }
.hpi-reports-top { display: grid; grid-template-columns: .9fr 1.1fr; gap: 10px; }.hpi-reports-top article, .hpi-reports-ageing { padding: 16px; border: 1px solid rgb(20 28 49 / 10%); border-radius: 12px; background: #fff; }.hpi-reports-top h4, .hpi-reports-ageing h4 { margin: 0; color: #111a31; font-size: 13px; }.hpi-reports-top h4 b, .hpi-reports-ageing h4 b { display: inline-grid; width: 18px; height: 18px; margin-right: 7px; place-items: center; border-radius: 5px; background: #FCE8E3; color: var(--hpi-red); font-size: 11px; }.hpi-reports-top p, .hpi-reports-ageing p { margin: 10px 0; color: #65708a; font-size: 9px; }.hpi-reports-top em { float: right; font-style: normal; }
.hpi-reports-top dl { display: grid; grid-template-columns: 1fr auto; gap: 4px 8px; margin: 0; color: #536079; font-size: 9px; }.hpi-reports-top dt:nth-of-type(1), .hpi-reports-top dt:nth-of-type(4) { grid-column: 1 / -1; color: #111a31; font-weight: 600; }.hpi-reports-top dd { margin: 0; text-align: right; }.hpi-reports-top dt:nth-of-type(4) + dd { display: none; }
.hpi-reports-pl > div { display: grid; grid-template-columns: 1fr 1.4fr auto; align-items: center; gap: 9px; margin: 24px 0; color: #536079; font-size: 9px; }.hpi-reports-pl strong { color: #111a31; font-size: 10px; }.hpi-reports-pl .bar { display: block; height: 17px; background: #0f2050; }.hpi-reports-pl .bar.red { background: #FCE8E3; }.hpi-reports-pl .bar.short { width: 70%; }
.hpi-reports-ageing { margin-top: 10px; }.hpi-reports-ageing table { width: 100%; border-collapse: collapse; color: #536079; font-size: 8px; }.hpi-reports-ageing th, .hpi-reports-ageing td { padding: 5px 3px; border-bottom: 1px solid rgb(20 28 49 / 7%); text-align: right; }.hpi-reports-ageing th:first-child, .hpi-reports-ageing td:first-child { text-align: left; }.hpi-reports-ageing-bar { display: grid; grid-template-columns: 30% 22% 17% 12% 19%; gap: 2px; margin-top: 15px; }.hpi-reports-ageing-bar b { height: 12px; background: #102052; }.hpi-reports-ageing-bar b:nth-child(2) { background: #FF3B30; }.hpi-reports-ageing-bar b:nth-child(3) { background: #FCE8E3; }.hpi-reports-ageing-bar b:nth-child(4), .hpi-reports-ageing-bar b:nth-child(5) { background: #e5e6e9; }
.hpi-reports-copy { max-width: 475px; }.hpi-reports-eyebrow { margin: 0 0 14px; color: var(--hpi-red); font-size: 14px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }.hpi-reports-copy h2 { margin: 0; color: #111a31; font-size: 33px; font-weight: 600; letter-spacing: -.04em; line-height: 1.25; }.hpi-reports-copy > p:not(.hpi-reports-eyebrow) { margin: 16px 0 0; color: #536079; font-size: 15.4px; line-height: 1.55; }.hpi-reports-copy ul { margin: 30px 0; padding: 0; list-style: none; }.hpi-reports-copy li { display: flex; align-items: center; gap: 17px; padding: 16px 0; border-bottom: 1px solid rgb(20 28 49 / 12%); color: #34425e; font-size: 15px; }.hpi-reports-copy li i { display: grid; width: 42px; height: 42px; flex: 0 0 auto; place-items: center; border-radius: 12px; background: #FCE8E3; color: var(--hpi-red); font-size: 23px; }.hpi-reports-button { display: inline-flex; align-items: center; gap: 18px; padding: 16px 28px; border: 1px solid var(--hpi-red); border-radius: 9px; color: var(--hpi-red); font-size: 15px; font-weight: 500; text-decoration: none; }
@media (max-width: 960px) { .hpi-reports-inner { grid-template-columns: 1fr; }.hpi-reports-workspace { order: 1; max-width: 620px; min-height: 500px; }.hpi-reports-copy { order: 2; max-width: 700px; } }
@media (max-width: 620px) { .hpi-reports { padding-bottom: 72px; }.hpi-reports-workspace { min-height: 411px; padding: 22px 7px 42px 28px; }.hpi-reports-workspace::before { top: 62px; bottom: 38px; }.hpi-reports-photo { height: 350px; }.hpi-reports-copy h2 { font-size: 30.8px; }.hpi-reports-copy li { font-size: 14px; } }

.hpi-mfrs-panel-photo {
	width: min(100%, 124px);
	aspect-ratio: 1;
	border-radius: 26px;
	object-fit: cover;
	box-shadow: 0 8px 20px rgb(25 36 65 / 10%);
}

@media (max-width: 680px) {
	.hpi-mfrs-panel-photo {
		width: 116px;
		border-radius: 24px;
	}
}

/* Let the reused hero photo become the full left-hand media field. */
.hpi-mfrs-panel-photo {
	align-self: stretch;
	width: 100%;
	height: 100%;
	min-height: 169px;
	aspect-ratio: auto;
	border-radius: 16px;
	object-fit: cover;
	object-position: center;
}

@media (max-width: 680px) {
	.hpi-mfrs-panel-photo {
		width: 100%;
		height: 170px;
		min-height: 0;
		border-radius: 14px;
	}
}

/* Native Next Bricks Looping Tabs, arranged as a vertical application panel. */
.hpi-mfrs-looping-tabs {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	padding: 12px;
	border-radius: 20px;
	border: 1px solid rgb(20 28 49 / 8%);
	background: #fff;
	box-shadow: 0 20px 48px rgb(25 36 65 / 10%);
}

.hpi-mfrs-looping-tabs .nb-looping-tabs__nav.hpi-mfrs-tabs {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: repeat(4, minmax(0, 1fr));
	align-content: start;
	gap: 10px;
	padding: 0;
}

.hpi-mfrs-looping-tabs .nb-looping-tabs__nav-item.hpi-mfrs-tab {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 0;
	height: 100%;
	padding: 12px 16px 19px;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: #111a31;
	font-size: 16px;
	font-weight: 600;
	transition: background-color 220ms ease, box-shadow 220ms ease, color 220ms ease, transform 220ms ease;
}

.hpi-mfrs-looping-tabs .hpi-mfrs-tab-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.hpi-mfrs-looping-tabs .hpi-mfrs-tab-label i {
	color: #4d5870;
	font-size: 26px;
	line-height: 1;
}

.hpi-mfrs-looping-tabs .nb-looping-tabs__nav-item.hpi-mfrs-tab:hover,
.hpi-mfrs-looping-tabs .nb-looping-tabs__nav-item.hpi-mfrs-tab:focus-visible,
.hpi-mfrs-looping-tabs .nb-looping-tabs__nav-item.hpi-mfrs-tab--active {
	border-color: transparent;
	background: transparent;
	box-shadow: none;
	color: #111a31;
	transform: none;
}

.hpi-mfrs-looping-tabs .nb-looping-tabs__nav-item.hpi-mfrs-tab--active .hpi-mfrs-tab-label i,
.hpi-mfrs-looping-tabs .nb-looping-tabs__nav-item.hpi-mfrs-tab:hover .hpi-mfrs-tab-label i,
.hpi-mfrs-looping-tabs .nb-looping-tabs__nav-item.hpi-mfrs-tab:focus-visible .hpi-mfrs-tab-label i {
	color: #4d5870;
}

.hpi-mfrs-looping-tabs .nb-looping-tabs__loop {
	display: none;
}

.hpi-mfrs-looping-tabs .nb-looping-tabs__nav-item--active .nb-looping-tabs__loop {
	display: block;
	right: auto;
	top: 50%;
	bottom: auto;
	left: 50%;
	width: min(150px, calc(100% - 36px));
	height: 3px;
	transform: translate(-50%, 15px);
	border-radius: 99px;
	background: #F5F1E8;
	box-shadow: none;
	overflow: hidden;
}

.hpi-mfrs-looping-tabs .nb-looping-tabs__loop-progress,
.hpi-mfrs-looping-tabs .nb-looping-tabs__loop-mask {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	max-height: none;
	border-radius: 99px;
}

.hpi-mfrs-looping-tabs .nb-looping-tabs__loop-progress {
	background: linear-gradient(90deg, #FCE8E3 0%, #FF3B30 100%) !important;
}

.hpi-mfrs-looping-tabs .nb-looping-tabs__loop-mask {
	background: #F5F1E8;
}

.hpi-mfrs-looping-tabs .nb-looping-tabs__tabs-wrapper.hpi-mfrs-panels {
	display: block;
	min-height: 330px;
	padding: 0;
}

.hpi-mfrs-looping-tabs .nb-looping-tabs__tab.hpi-mfrs-panel {
	display: none;
	grid-template-columns: minmax(0, 1fr);
	align-items: stretch;
	gap: 0;
	min-height: 330px;
	padding: 0;
	border: 0;
	border-radius: 12px;
	background: #fff;
	box-shadow: none;
	overflow: hidden;
}

.hpi-mfrs-looping-tabs .nb-looping-tabs__tab.hpi-mfrs-panel.nb-looping-tabs__tab--active {
	display: grid !important;
	animation: hpi-mfrs-panel-in 420ms ease both;
}

.hpi-mfrs-looping-tabs .hpi-mfrs-panel-photo {
	min-height: 360px;
	border-radius: 0;
	box-shadow: none;
}

.hpi-mfrs-looping-tabs .hpi-mfrs-panel-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: min(100%, 620px);
	padding: clamp(28px, 4vw, 48px);
	border-left: 0;
}

.hpi-mfrs-looping-tabs .hpi-mfrs-panel-standard {
	font-size: 12px !important;
}

.hpi-mfrs-looping-tabs .hpi-mfrs-panel-number {
	font-size: clamp(54px, 5vw, 66px);
}

.hpi-mfrs-looping-tabs .hpi-mfrs-panel-title {
	font-size: clamp(22px, 2vw, 28px) !important;
}

.hpi-mfrs-looping-tabs .hpi-mfrs-panel-description {
	max-width: 560px;
	font-size: 14px !important;
	line-height: 1.5;
}

.hpi-mfrs-looping-tabs .hpi-mfrs-panel-link {
	font-size: 14px;
}

.hpi-mfrs-looping-tabs .hpi-mfrs-benefits {
	grid-column: 1 / -1;
	grid-auto-rows: 1fr;
	margin: 0;
	border-radius: 12px;
}

.hpi-mfrs-looping-tabs .hpi-mfrs-benefit {
	min-height: 78px;
	padding: 14px 22px;
}

.hpi-mfrs-looping-tabs .hpi-mfrs-benefit-icon {
	width: 36px;
	height: 36px;
	font-size: 25px;
}

.hpi-mfrs-looping-tabs .hpi-mfrs-benefit-copy strong {
	font-size: 12px;
}

.hpi-mfrs-looping-tabs .hpi-mfrs-benefit-copy span {
	font-size: 12px;
}

@media (max-width: 820px) {
	.hpi-mfrs-looping-tabs {
		grid-template-columns: 1fr;
	}

	.hpi-mfrs-looping-tabs .nb-looping-tabs__nav.hpi-mfrs-tabs {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-rows: none;
		gap: 9px;
	}

	.hpi-mfrs-looping-tabs .nb-looping-tabs__nav-item.hpi-mfrs-tab {
		min-height: 58px;
		height: auto;
		padding: 10px 13px 16px;
		font-size: 12px;
	}

	.hpi-mfrs-looping-tabs .nb-looping-tabs__tabs-wrapper.hpi-mfrs-panels {
		min-height: 0;
	}

	.hpi-mfrs-looping-tabs .nb-looping-tabs__tab.hpi-mfrs-panel {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.hpi-mfrs-looping-tabs .hpi-mfrs-panel-photo {
		min-height: 220px;
	}

	.hpi-mfrs-looping-tabs .hpi-mfrs-panel-copy {
		padding: 28px 24px 32px;
	}
}

/* Final MFRS card-carousel overrides. Kept last so responsive tab styles do not
 * revert the centered card layout at narrower viewports. */
.hpi-mfrs {
	padding-block: clamp(68px, 8vw, 116px);
	background: #fff !important;
}

.hpi-mfrs-layout {
	display: grid;
	grid-template-columns: 1fr !important;
	gap: 38px;
	width: min(100%, var(--hpi-content));
	padding-inline: var(--hpi-gutter);
	box-sizing: border-box;
}

.hpi-mfrs-copy,
.hpi-mfrs-platform {
	order: initial;
}

.hpi-mfrs-copy {
	max-width: 790px;
	margin-inline: auto;
	padding: 0;
	text-align: center;
}

.hpi-mfrs-eyebrow {
	justify-content: center;
}

.hpi-mfrs-copy-title {
	max-width: 610px;
	margin: 0 auto 18px !important;
	font-size: 33px !important;
	line-height: 1.25 !important;
}

.hpi-mfrs-copy-description {
	max-width: 580px;
	margin-inline: auto;
	font-size: 15.4px;
	line-height: 1.55;
}

.hpi-mfrs-watch {
	display: none;
}

.hpi-mfrs-platform,
.hpi-mfrs-looping-tabs {
	display: block !important;
	overflow: visible;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	backdrop-filter: none;
}

.hpi-mfrs-looping-tabs .nb-looping-tabs__nav.hpi-mfrs-tabs {
	display: none !important;
}

.hpi-mfrs-looping-tabs .nb-looping-tabs__tabs-wrapper.hpi-mfrs-panels {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	align-items: stretch;
	gap: 16px;
	min-height: 0;
	padding: 22px 0 0;
	overflow: visible;
}

.hpi-mfrs-looping-tabs .nb-looping-tabs__tab.hpi-mfrs-panel,
.hpi-mfrs-looping-tabs .nb-looping-tabs__tab.hpi-mfrs-panel.bricks-lazy-hidden {
	display: flex !important;
	visibility: visible !important;
	flex-direction: column;
	align-items: stretch;
	min-height: 358px;
	padding: 30px 26px;
	border: 1px solid rgb(20 28 49 / 8%);
	border-radius: 18px;
	background: rgb(255 255 255 / 94%);
	box-shadow: 0 14px 30px rgb(25 36 65 / 7%);
	opacity: 1 !important;
	transform: none;
	transition: transform 320ms ease, border-color 320ms ease, box-shadow 320ms ease;
}

.hpi-mfrs-looping-tabs .nb-looping-tabs__tab.hpi-mfrs-panel.nb-looping-tabs__tab--active {
	border-color: rgb(252 30 30 / 52%);
	box-shadow: 0 24px 42px rgb(252 30 30 / 15%);
	transform: translateY(-18px);
	z-index: 1;
	animation: none;
}

.hpi-mfrs-looping-tabs .hpi-mfrs-panel-copy {
	display: flex;
	flex: 1;
	flex-direction: column;
	justify-content: flex-start;
	width: auto;
	padding: 0;
	border: 0;
}

.hpi-mfrs-looping-tabs .hpi-mfrs-panel-standard {
	margin: 0 0 6px;
	color: var(--hpi-red);
	font-size: 12px !important;
}

.hpi-mfrs-looping-tabs .hpi-mfrs-panel-number {
	font-size: clamp(48px, 4vw, 62px);
}

.hpi-mfrs-looping-tabs .hpi-mfrs-panel-number::after {
	width: 30px;
	margin-top: 12px;
}

.hpi-mfrs-looping-tabs .hpi-mfrs-panel-title {
	margin-top: 14px !important;
	font-size: 19px !important;
}

.hpi-mfrs-looping-tabs .hpi-mfrs-panel-description {
	margin: 12px 0 0;
	font-size: 14px !important;
	line-height: 1.55;
}

.hpi-mfrs-looping-tabs .hpi-mfrs-panel-link {
	margin-top: auto;
	padding-top: 24px;
	font-size: 13px;
}

.hpi-mfrs-looping-tabs .hpi-mfrs-benefits {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	grid-auto-rows: 1fr;
	gap: 0;
	margin-top: 36px;
	border: 1px solid rgb(252 30 30 / 16%);
	border-radius: 18px;
	background: rgb(255 249 249 / 88%);
	box-shadow: 0 15px 31px rgb(252 30 30 / 7%);
}

.hpi-mfrs-looping-tabs .hpi-mfrs-benefit {
	min-height: 78px;
	padding: 14px 22px;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	animation: none;
}

.hpi-mfrs-looping-tabs .hpi-mfrs-benefit + .hpi-mfrs-benefit {
	border-left: 1px solid rgb(20 28 49 / 10%);
}

.hpi-mfrs-looping-tabs .hpi-mfrs-benefit::before,
.hpi-mfrs-looping-tabs .hpi-mfrs-benefit::after {
	display: none;
}

@media (max-width: 960px) {
	.hpi-mfrs-looping-tabs .nb-looping-tabs__tabs-wrapper.hpi-mfrs-panels {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		row-gap: 32px;
	}
}

@media (max-width: 620px) {
	.hpi-mfrs-copy-title {
		font-size: 30.8px !important;
	}

	.hpi-mfrs-copy-description {
		font-size: 16px;
	}

	.hpi-mfrs-looping-tabs .nb-looping-tabs__tabs-wrapper.hpi-mfrs-panels {
		grid-template-columns: 1fr;
	}

	.hpi-mfrs-looping-tabs .nb-looping-tabs__tab.hpi-mfrs-panel {
		min-height: 0;
	}

	.hpi-mfrs-looping-tabs .hpi-mfrs-benefits {
		grid-template-columns: 1fr;
		gap: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hpi-mfrs-looping-tabs .hpi-mfrs-benefit,
	.hpi-mfrs-looping-tabs .hpi-mfrs-benefit::before,
	.hpi-mfrs-looping-tabs .hpi-mfrs-benefit::after {
		animation: none;
	}
}

/* ============================================================
   Homepage revisions — client perspective + CTA spacing
   ============================================================ */

/* Client perspective: tighten vertical rhythm, centre each quote in
   its slide, and collapse the triple <br> spacers in the review body. */
.hpi-testimonial {
	padding: clamp(56px, 6vw, 84px) 0 clamp(36px, 4vw, 52px);
}
.hpi-testimonial .hpi-testimonial-title {
	margin-bottom: 6px;
}
.hpi-testimonial .hpi-quote-card {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 12px;
	padding: clamp(30px, 3.6vw, 44px) clamp(28px, 5vw, 54px) clamp(30px, 3.6vw, 44px) clamp(60px, 8vw, 96px);
	border-radius: 20px;
}
.hpi-testimonial .hpi-quote-card::before {
	position: absolute;
	top: clamp(18px, 2.6vw, 30px);
	left: clamp(20px, 3.2vw, 38px);
	font-size: 74px;
	line-height: 1;
}
.hpi-testimonial .brxe-text-basic {
	font-size: 15px;
	line-height: 1.6;
}
.hpi-testimonial .brxe-text-basic br + br {
	display: none;
}
.hpi-testimonial .brxe-text-basic strong {
	display: inline-block;
	margin-top: 12px;
}
.hpi-testimonial .brxe-text-basic > strong:first-child {
	margin-top: 0;
}
.hpi-testimonial .hpi-review-title {
	margin-bottom: 2px;
}
.hpi-testimonial .splide__pagination {
	margin-top: 8px;
}
/* Blue verified badge before each reviewer attribution. */
.hpi-testimonial .hpi-quote-person .hpi-verified-badge {
	color: #1d74d1;
	font-size: 1.15em;
	margin-right: 5px;
	vertical-align: -0.14em;
}

/* "View more verified reviews" — pinned to the card's lower-right corner. */
.hpi-testimonial .hpi-quote-more {
	position: absolute;
	right: clamp(28px, 5vw, 54px);
	bottom: clamp(28px, 3.6vw, 44px);
	margin: 0 !important;
}
.hpi-testimonial .hpi-quote-more a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--hpi-red);
	font-size: 13.5px;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
}
.hpi-testimonial .hpi-quote-more a:hover,
.hpi-testimonial .hpi-quote-more a:focus-visible {
	text-decoration: underline;
}

@media (max-width: 760px) {
	.hpi-testimonial .hpi-quote-card {
		padding: 32px 26px;
		text-align: center;
	}
	.hpi-testimonial .hpi-quote-card::before {
		position: static;
		align-self: center;
	}
	.hpi-testimonial .hpi-quote-more {
		position: static;
		margin-top: 14px !important;
	}
	.hpi-testimonial .hpi-quote-more a {
		justify-content: center;
	}
}

/* Contact CTA: quieter, more compact band. */
.hpi-cta {
	padding-bottom: clamp(44px, 5vw, 68px);
}
.hpi-cta-card {
	min-height: 0;
	gap: clamp(26px, 3.5vw, 40px);
	padding: clamp(30px, 3.6vw, 44px) clamp(28px, 5vw, 58px);
	border-radius: 16px;
	box-shadow: 0 10px 26px rgba(5, 25, 55, 0.09);
}
body.hpi-homepage main .hpi-cta-copy h2 {
	font-size: clamp(24px, 2.4vw, 30px) !important;
	letter-spacing: -0.03em !important;
	line-height: 1.15 !important;
}
.hpi-cta-copy p {
	margin-bottom: 10px;
	font-size: 13px;
}
.hpi-cta-copy span {
	font-size: 14.5px;
}
.hpi-cta-link {
	min-width: 220px;
	min-height: 56px;
	padding: 14px 26px;
	border-radius: 9px;
	font-size: 16px;
	box-shadow: 0 8px 18px rgba(255, 70, 62, 0.18);
}
.hpi-cta-orbit {
	border-color: rgba(255, 120, 114, 0.3);
}
.hpi-cta-orbit::after {
	opacity: 0.38;
}
/* Contract story: problem and solution sections below the client logos. */
.hpi-contract-story{padding:30px 0 46px;background:linear-gradient(135deg,#fff 0%,#FCE8E3 55%,#fff 100%)}
.hpi-contract-story-shell{width:min(1510px,calc(100% - 44px));margin:auto;display:grid;gap:30px}
.hpi-contract-story-card{position:relative;display:grid;grid-template-columns:minmax(300px,.84fr) minmax(480px,1.16fr);gap:42px;align-items:center;min-height:560px;padding:clamp(34px,4vw,62px);overflow:hidden;border:1px solid #E8DDD3;border-radius:22px;background:radial-gradient(circle at 96% 82%,rgb(252 64 56/.12) 0 4px,transparent 5px),radial-gradient(circle at 85% 95%,rgb(252 64 56/.12) 0 4px,transparent 5px),linear-gradient(135deg,#fff 0%,#FCE8E3 100%);box-shadow:0 12px 30px rgb(68 34 28 / 5%)}
.hpi-contract-story-card:before{position:absolute;inset:0;opacity:.4;pointer-events:none;background-image:linear-gradient(145deg,transparent 48%,rgb(252 64 56/.15) 48.15%,transparent 48.4%),linear-gradient(35deg,transparent 76%,rgb(252 64 56/.12) 76.15%,transparent 76.4%);background-size:220px 190px,270px 215px;content:""}
.hpi-contract-story-copy,.hpi-contract-story-visual{position:relative;z-index:1}
.hpi-contract-story-eyebrow{margin:0 0 20px!important;color:var(--hpi-red)!important;font-size:14px!important;font-weight:700!important;letter-spacing:.16em!important;line-height:1.2!important;text-transform:uppercase}
.hpi-contract-story-copy h2{max-width:475px;margin:0 0 24px!important;color:#111a31!important;font-size:clamp(36px,3.45vw,57px)!important;font-weight:600!important;letter-spacing:-.055em!important;line-height:1.08!important}
.hpi-contract-story-copy>p:not(.hpi-contract-story-eyebrow):not(.hpi-contract-story-emphasis){max-width:470px;margin:0 0 20px!important;color:#172444!important;font-size:16px!important;line-height:1.55!important}
.hpi-contract-story-copy .hpi-contract-story-emphasis{margin:28px 0 0!important;color:var(--hpi-red)!important;font-size:16px!important;font-weight:700!important;line-height:1.4!important}
.hpi-contract-story-visual{display:flex;align-items:center;justify-content:center;min-width:0}
.hpi-contract-story-visual img{display:block;width:100%;max-width:680px;height:auto;filter:drop-shadow(0 12px 18px rgb(63 31 25 / 6%))}
.hpi-contract-story-card--solution{grid-template-columns:minmax(300px,.78fr) minmax(530px,1.22fr);min-height:535px}
.hpi-contract-story-card--solution .hpi-contract-story-copy h2{font-size:33px!important}
.hpi-contract-story-card--solution .hpi-contract-story-visual img{max-width:790px}
.hpi-contract-story-button{display:inline-flex;align-items:center;justify-content:center;gap:13px;min-height:51px;margin-top:13px;padding:13px 24px;border-radius:8px;background:linear-gradient(105deg,#FF3B30,#FF3B30);box-shadow:0 12px 22px rgb(252 30 30 / 22%);color:#fff!important;font-size:15px;font-weight:600;text-decoration:none}
.hpi-contract-story-button i{color:#fff!important;font-size:19px}
@media(max-width:900px){.hpi-contract-story-card,.hpi-contract-story-card--solution{grid-template-columns:1fr;gap:28px;min-height:0}.hpi-contract-story-copy h2,.hpi-contract-story-copy>p:not(.hpi-contract-story-eyebrow):not(.hpi-contract-story-emphasis){max-width:640px}.hpi-contract-story-visual{order:2}.hpi-contract-story-visual img{max-width:620px}}
@media(max-width:560px){.hpi-contract-story{padding:20px 0 36px}.hpi-contract-story-shell{width:min(100% - 28px,1510px);gap:18px}.hpi-contract-story-card{padding:30px 21px;border-radius:15px}.hpi-contract-story-copy h2{font-size:34px!important}.hpi-contract-story-copy>p:not(.hpi-contract-story-eyebrow):not(.hpi-contract-story-emphasis){font-size:14px!important}.hpi-contract-story-eyebrow{font-size:11px!important}.hpi-contract-story-button{width:100%;font-size:14px}.hpi-contract-story-card--solution .hpi-contract-story-visual img{max-width:100%}}
/* Homepage contract narrative: open section presentation, matched to supplied graphics. */
.hpi-contract-story{padding:22px 0 54px;background:#FCE8E3}
.hpi-contract-story-shell{gap:0}
.hpi-contract-story-card,.hpi-contract-story-card--solution{grid-template-columns:minmax(320px,.94fr) minmax(460px,1.06fr);gap:clamp(44px,6vw,100px);min-height:0;padding:clamp(58px,6vw,92px) clamp(18px,3vw,42px);border:0;border-radius:0;background:transparent;box-shadow:none}
.hpi-contract-story-card:before{display:none}
.hpi-contract-story-card--solution{grid-template-columns:minmax(320px,.94fr) minmax(460px,1.06fr);padding-top:clamp(40px,5vw,72px)}
.hpi-contract-story-visual img{max-width:min(100%,570px);filter:none}
.hpi-contract-story-card--solution .hpi-contract-story-visual img{max-width:min(100%,620px)}
@media(max-width:900px){.hpi-contract-story-card,.hpi-contract-story-card--solution{grid-template-columns:1fr;gap:30px;padding:52px 20px}.hpi-contract-story-card--solution{padding-top:34px}.hpi-contract-story-visual img,.hpi-contract-story-card--solution .hpi-contract-story-visual img{max-width:min(100%,560px)}}
/* Compact continuous problem-to-solution flow. */
.hpi-contract-story-card,.hpi-contract-story-card--solution{padding-block:clamp(34px,4vw,58px)}
.hpi-contract-story-card--solution{padding-top:8px}
.hpi-contract-story-copy h2{margin-bottom:16px!important}
.hpi-contract-story-copy>p:not(.hpi-contract-story-eyebrow):not(.hpi-contract-story-emphasis){margin-bottom:12px!important;line-height:1.45!important}
.hpi-contract-story-copy .hpi-contract-story-emphasis{margin-top:18px!important}
.hpi-contract-story-card--problem .hpi-contract-story-visual img{width:80%;max-width:500px}
.hpi-contract-story-card--solution .hpi-contract-story-visual{display:flex;flex-direction:column;gap:22px}
.hpi-contract-story-card--solution .hpi-contract-story-button{margin-top:0}
@media(max-width:900px){.hpi-contract-story-card,.hpi-contract-story-card--solution{padding-block:36px}.hpi-contract-story-card--solution{padding-top:0}.hpi-contract-story-card--problem .hpi-contract-story-visual img{width:80%;max-width:500px}}
/* Give the copy the unused centre space and use the shared homepage type scale. */
.hpi-contract-story-card,.hpi-contract-story-card--solution{grid-template-columns:minmax(0,1.1fr) minmax(0,.9fr);gap:clamp(26px,3vw,48px)}
.hpi-contract-story-copy h2{max-width:none;color:#111a31!important;font-size:33px!important;font-weight:600!important;letter-spacing:0!important;line-height:1.25!important}
.hpi-contract-story-copy>p:not(.hpi-contract-story-eyebrow):not(.hpi-contract-story-emphasis){max-width:none;color:#536079!important;font-size:15.4px!important;font-weight:400!important;line-height:1.55!important}
.hpi-contract-story-eyebrow{margin-bottom:12px!important;color:var(--hpi-red)!important;font-size:14px!important;font-weight:600!important;letter-spacing:.18em!important}
.hpi-contract-story-copy .hpi-contract-story-emphasis{color:var(--hpi-red)!important;font-size:15.4px!important;font-weight:600!important}
@media(max-width:900px){.hpi-contract-story-card,.hpi-contract-story-card--solution{grid-template-columns:1fr;gap:30px}.hpi-contract-story-copy h2{max-width:640px}}
/* Use the site-wide section container with no nested horizontal inset. */
.hpi-contract-story .hpi-section-inner.hpi-contract-story-shell{width:min(100%,var(--hpi-content));padding-inline:var(--hpi-gutter)}
.hpi-contract-story-card,.hpi-contract-story-card--solution{padding-inline:0}
@media(max-width:900px){.hpi-contract-story-card,.hpi-contract-story-card--solution{padding-inline:0}}

/* --- Targeted tweaks (2026-09-03) --- */
#brxe-h1183c { font-weight: 500 !important; }

/* Global reach: an open, four-point statistic layout with no card treatment. */
.hpi-global-stats-content { padding-block: clamp(44px, 5vw, 76px); }
.hpi-global-stats { padding: clamp(62px, 6vw, 88px) 0; }
.hpi-global-stats-copy { padding-block: 0; }
.hpi-global-stats-list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: clamp(34px, 4vw, 58px); border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.hpi-global-stats-list > div,.hpi-global-stats-list > div:first-child { display: grid; align-content: start; gap: 26px; min-height: 250px; padding: 0 clamp(20px, 3vw, 54px); border: 0; border-left: 1px solid #E8DDD3; background: transparent; }
.hpi-global-stats-list > div:first-child { padding-left: 0; border-left: 0; }
.hpi-global-stats-list > div:last-child { padding-right: 0; }
.hpi-global-stats-list strong { display: grid; align-content: end; min-height: 128px; padding-bottom: 22px; border-bottom: 0; color: var(--hpi-red); font-size: clamp(42px, 4.65vw, 78px); font-weight: 600; letter-spacing: -.065em; line-height: .96; white-space: normal; }
.hpi-global-stats-list span { max-width: 240px; color: #132653; font-size: clamp(17px, 1.45vw, 24px); font-weight: 500; line-height: 1.38; }
@media (max-width: 960px) { .hpi-global-stats-list { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: none; text-align: left; }.hpi-global-stats-list > div,.hpi-global-stats-list > div:first-child { min-height: 205px; padding: 0 26px; border-bottom: 0; }.hpi-global-stats-list > div:nth-child(odd) { padding-left: 0; border-left: 0; }.hpi-global-stats-list > div:nth-child(n+3) { padding-top: 30px; } }
@media (max-width: 620px) { .hpi-global-stats-content { padding-block: 38px; }.hpi-global-stats-list { grid-template-columns: 1fr; gap: 30px; margin-top: 32px; }.hpi-global-stats-list > div,.hpi-global-stats-list > div:first-child,.hpi-global-stats-list > div:nth-child(odd) { min-height: 0; padding: 0; border: 0; border-bottom: 0; }.hpi-global-stats-list > div:nth-child(n+3) { padding-top: 0; }.hpi-global-stats-list strong { min-height: 0; padding-bottom: 14px; font-size: clamp(44px, 15vw, 64px); }.hpi-global-stats-list span { max-width: none; font-size: 19px; } }

/* Keep Global Reach statistics below its copy, beside the map. */
.hpi-global-stats-copy .hpi-global-stats-list { margin-top: 42px; }
.hpi-global-stats-copy .hpi-global-stats-list > div,.hpi-global-stats-copy .hpi-global-stats-list > div:first-child { gap: 14px; min-height: 145px; padding: 0 18px; }
.hpi-global-stats-copy .hpi-global-stats-list > div:first-child { padding-left: 0; }
.hpi-global-stats-copy .hpi-global-stats-list > div:last-child { padding-right: 0; }
.hpi-global-stats-copy .hpi-global-stats-list strong { min-height: 66px; padding-bottom: 12px; border-bottom: 0; font-size: clamp(28px, 3.15vw, 48px); }
.hpi-global-stats-copy .hpi-global-stats-list span { font-size: 13px; line-height: 1.35; }
.hpi-mfrs-benefit-copy strong .hpi-one-word,
#mfrs-compliance .hpi-one-word,
.hpi-mfrs .hpi-one-word { color: #FF3B30 !important; }
@media (max-width: 960px) { .hpi-global-stats-copy .hpi-global-stats-list { margin-top: 38px; }.hpi-global-stats-copy .hpi-global-stats-list > div,.hpi-global-stats-copy .hpi-global-stats-list > div:first-child { min-height: 145px; padding: 0 20px; }.hpi-global-stats-copy .hpi-global-stats-list > div:nth-child(odd) { padding-left: 0; }.hpi-global-stats-copy .hpi-global-stats-list > div:nth-child(n+3) { padding-top: 24px; } }
@media (max-width: 620px) { .hpi-global-stats-copy .hpi-global-stats-list { margin-top: 30px; }.hpi-global-stats-copy .hpi-global-stats-list > div,.hpi-global-stats-copy .hpi-global-stats-list > div:first-child,.hpi-global-stats-copy .hpi-global-stats-list > div:nth-child(odd) { min-height: 0; padding: 0; }.hpi-global-stats-copy .hpi-global-stats-list strong { min-height: 0; font-size: clamp(40px, 13vw, 58px); }.hpi-global-stats-copy .hpi-global-stats-list span { font-size: 18px; } }

/* Investment accordions: chevron becomes "+" when closed, "-" when open. */
.hpi-investment-accordions .hpi-investment-chevron {
	font-family: inherit !important;
	font-size: 26px;
	font-weight: 400;
	line-height: 1;
	transform: none !important;
	transition: none;
}
.hpi-investment-accordions .hpi-investment-chevron::before {
	content: "+" !important;
}
.hpi-investment-accordions .hpi-investment-accordion-item.is-open .hpi-investment-chevron::before,
.hpi-investment-accordions .hpi-investment-accordion-trigger.is-open .hpi-investment-chevron::before {
	content: "\2212" !important;
}
