:root {
	--hpack-ink: #172033;
	--hpack-muted: #566275;
	--hpack-line: #dde3eb;
	--hpack-surface: #f5f7fa;
	--hpack-blue: #2563eb;
	--hpack-blue-dark: #1746a2;
	--hpack-accent: #f59e0b;
	--hpack-white: #fff;
	--hpack-width: 1180px;
}

#header .site-branding .site-title-container {
	display: none;
}

#header [data-device="desktop"] [data-row="middle"] {
	--height: 84px;
}

.hpack-site-main {
	background: var(--hpack-white);
	color: var(--hpack-ink);
}

.hpack-container {
	width: min(var(--hpack-width), calc(100% - 40px));
	margin-inline: auto;
}

.hpack-narrow {
	max-width: 820px;
}

.hpack-section {
	padding: 76px 0;
}

.hpack-section-muted {
	background: var(--hpack-surface);
}

.hpack-eyebrow {
	margin: 0 0 10px;
	color: var(--hpack-blue);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.4;
	text-transform: uppercase;
}

.hpack-section h2,
.hpack-page-heading h1,
.hpack-product-summary h1,
.hpack-site-hero h1,
.hpack-cta-band h2 {
	letter-spacing: 0;
}

.hpack-section h2 {
	margin: 0 0 16px;
	font-size: 36px;
	line-height: 1.2;
}

.hpack-section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 28px;
	margin-bottom: 30px;
}

.hpack-section-heading > div {
	max-width: 760px;
}

.hpack-section-heading p:last-child {
	margin: 0;
	color: var(--hpack-muted);
	font-size: 17px;
	line-height: 1.7;
}

.hpack-button {
	display: inline-flex;
	min-height: 48px;
	box-sizing: border-box;
	align-items: center;
	justify-content: center;
	padding: 0 22px;
	border: 1px solid transparent;
	border-radius: 6px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.hpack-button-primary {
	background: var(--hpack-blue);
	color: var(--hpack-white);
}

.hpack-button-primary:hover {
	background: var(--hpack-blue-dark);
	color: var(--hpack-white);
}

.hpack-button-secondary {
	border-color: #bdc7d4;
	background: var(--hpack-white);
	color: var(--hpack-ink);
}

.hpack-button-secondary:hover {
	border-color: var(--hpack-blue);
	color: var(--hpack-blue);
}

.hpack-button-accent {
	background: var(--hpack-accent);
	color: #111827;
}

.hpack-button-accent:hover {
	background: #ffc24d;
	color: #111827;
}

.hpack-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 26px;
}

.hpack-text-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--hpack-blue);
	font-weight: 700;
	text-decoration: none;
}

.hpack-text-link:hover {
	color: var(--hpack-blue-dark);
}

.hpack-site-hero {
	position: relative;
	display: flex;
	min-height: min(680px, 74vh);
	align-items: center;
	background: #edf2f7;
	background-position: center;
	background-size: cover;
}

.hpack-site-hero.has-image::before {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, #fff 0%, #fff 46%, rgba(255, 255, 255, .97) 56%, rgba(255, 255, 255, .55) 72%, rgba(255, 255, 255, .18) 100%);
	content: '';
}

.hpack-site-hero__content {
	position: relative;
	z-index: 1;
	padding-top: 72px;
	padding-bottom: 90px;
}

.hpack-site-hero__content > * {
	max-width: 720px;
}

.hpack-site-hero h1 {
	margin: 0;
	font-size: 58px;
	line-height: 1.08;
}

.hpack-site-hero__lead {
	margin: 22px 0 0;
	color: #3e4a5d;
	font-size: 20px;
	line-height: 1.7;
}

.hpack-category-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.hpack-category-item {
	display: flex;
	min-width: 0;
	min-height: 230px;
	box-sizing: border-box;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 18px;
	padding: 26px 18px;
	border: 1px solid var(--hpack-line);
	border-radius: 8px;
	background: var(--hpack-white);
	color: var(--hpack-ink);
	text-align: center;
	text-decoration: none;
	transition: border-color .2s ease, transform .2s ease;
}

.hpack-category-item:hover {
	border-color: var(--hpack-blue);
	color: var(--hpack-blue);
	transform: translateY(-2px);
}

.hpack-category-item__image {
	display: flex;
	width: 118px;
	height: 118px;
	align-items: center;
	justify-content: center;
	background: var(--hpack-surface);
	color: var(--hpack-blue);
	font-size: 28px;
	font-weight: 800;
}

.hpack-category-item__image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.hpack-category-item strong {
	max-width: 100%;
	font-size: 19px;
	line-height: 1.3;
	overflow-wrap: anywhere;
}

.hpack-category-item--text {
	min-height: 180px;
	align-items: flex-start;
	justify-content: flex-start;
	text-align: left;
}

.hpack-category-item--text span {
	color: var(--hpack-muted);
	line-height: 1.65;
}

.hpack-product-section:nth-of-type(even) {
	background: var(--hpack-surface);
}

.hpack-product-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.hpack-product-card {
	min-width: 0;
	border: 1px solid var(--hpack-line);
	border-radius: 8px;
	background: var(--hpack-white);
	overflow: hidden;
	transition: border-color .2s ease, transform .2s ease;
}

.hpack-product-card:hover {
	border-color: #9aabc0;
	transform: translateY(-2px);
}

.hpack-product-card__media {
	position: relative;
	display: flex;
	width: 100%;
	aspect-ratio: 1 / 1;
	align-items: center;
	justify-content: center;
	border-bottom: 1px solid var(--hpack-line);
	background: #fff;
}

.hpack-product-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 14px;
}

.hpack-product-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	padding: 5px 9px;
	border-radius: 4px;
	background: var(--hpack-blue);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
}

.hpack-reference-badge {
	position: absolute;
	right: 12px;
	bottom: 12px;
	max-width: calc(100% - 24px);
	padding: 5px 8px;
	border: 1px solid rgba(31, 45, 61, .14);
	border-radius: 4px;
	background: rgba(255, 255, 255, .94);
	box-shadow: 0 2px 8px rgba(31, 45, 61, .08);
	color: #526173;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.2;
}

.hpack-product-card__body {
	display: flex;
	min-height: 220px;
	box-sizing: border-box;
	flex-direction: column;
	padding: 20px;
}

.hpack-product-card__body h2 {
	display: -webkit-box;
	margin: 0 0 10px;
	font-size: 20px;
	line-height: 1.35;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.hpack-product-card__body h2 a {
	color: var(--hpack-ink);
	text-decoration: none;
}

.hpack-product-card__body > p:not(.hpack-eyebrow) {
	display: -webkit-box;
	margin: 0 0 16px;
	color: var(--hpack-muted);
	font-size: 15px;
	line-height: 1.6;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.hpack-product-card__body .hpack-text-link {
	margin-top: auto;
}

.hpack-image-missing {
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	background: var(--hpack-surface);
	color: #7b8798;
	font-size: 14px;
}

.hpack-advantages {
	background: var(--hpack-ink);
	color: var(--hpack-white);
}

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

.hpack-advantage {
	border-top: 1px solid #526078;
	padding-top: 24px;
}

.hpack-advantage > span {
	color: var(--hpack-accent);
	font-weight: 700;
}

.hpack-advantage h2 {
	margin-top: 18px;
	color: var(--hpack-white);
	font-size: 26px;
}

.hpack-advantage p {
	color: #c8d1dd;
	line-height: 1.7;
}

.hpack-company-band__grid,
.hpack-company-intro {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
	gap: 64px;
	align-items: center;
}

.hpack-company-band figure,
.hpack-company-intro figure {
	margin: 0;
}

.hpack-company-band img,
.hpack-company-intro img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.hpack-prose {
	color: var(--hpack-muted);
	font-size: 17px;
	line-height: 1.8;
}

.hpack-prose > *:first-child {
	margin-top: 0;
}

.hpack-prose-large {
	font-size: 19px;
}

.hpack-founded {
	display: flex;
	align-items: baseline;
	gap: 12px;
	margin-top: 28px;
}

.hpack-founded strong {
	color: var(--hpack-blue);
	font-size: 44px;
}

.hpack-founded span {
	color: var(--hpack-muted);
}

.hpack-cta-band {
	padding: 48px 0;
	background: var(--hpack-blue-dark);
	color: var(--hpack-white);
}

.hpack-cta-band .hpack-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
}

.hpack-cta-band h2 {
	margin: 0;
	color: var(--hpack-white);
	font-size: 34px;
	line-height: 1.2;
}

.hpack-cta-band .hpack-eyebrow {
	color: #bfd2ff;
}

.hpack-page-heading {
	padding: 62px 0 58px;
	border-bottom: 1px solid var(--hpack-line);
	background: var(--hpack-surface);
}

.hpack-page-heading h1 {
	margin: 0;
	font-size: 48px;
	line-height: 1.12;
}

.hpack-page-heading p {
	max-width: 780px;
	margin: 14px 0 0;
	color: var(--hpack-muted);
	font-size: 18px;
	line-height: 1.7;
}

.hpack-catalog-page {
	padding: 52px 0 80px;
}

.hpack-catalog-tools {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 28px;
	margin-bottom: 36px;
}

.hpack-category-nav {
	display: flex;
	flex: 1;
	flex-wrap: wrap;
	gap: 8px;
}

.hpack-category-nav a {
	display: inline-flex;
	min-height: 40px;
	align-items: center;
	padding: 0 14px;
	border: 1px solid var(--hpack-line);
	border-radius: 6px;
	background: #fff;
	color: var(--hpack-ink);
	font-size: 14px;
	text-decoration: none;
}

.hpack-category-nav a:hover,
.hpack-category-nav a.is-active {
	border-color: var(--hpack-blue);
	background: var(--hpack-blue);
	color: #fff;
}

.hpack-product-search {
	display: flex;
	width: min(360px, 100%);
	flex: 0 0 auto;
}

.hpack-product-search input {
	min-width: 0;
	min-height: 44px;
	flex: 1;
	border: 1px solid var(--hpack-line);
	border-right: 0;
	border-radius: 6px 0 0 6px;
	padding: 0 13px;
}

.hpack-product-search button {
	min-height: 44px;
	border: 0;
	border-radius: 0 6px 6px 0;
	background: var(--hpack-ink);
	color: #fff;
	padding: 0 17px;
	font-weight: 700;
}

.hpack-pagination {
	margin-top: 42px;
}

.hpack-pagination .nav-links {
	display: flex;
	justify-content: center;
	gap: 7px;
}

.hpack-pagination .page-numbers {
	display: inline-flex;
	min-width: 42px;
	min-height: 42px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--hpack-line);
	border-radius: 4px;
	padding: 0 10px;
	text-decoration: none;
}

.hpack-pagination .current {
	border-color: var(--hpack-blue);
	background: var(--hpack-blue);
	color: #fff;
}

.hpack-empty {
	padding: 70px 20px;
	text-align: center;
}

.hpack-breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	padding: 22px 0;
	color: var(--hpack-muted);
	font-size: 13px;
}

.hpack-breadcrumbs a {
	color: var(--hpack-muted);
	text-decoration: none;
}

.hpack-product-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
	gap: 58px;
	align-items: start;
	padding: 30px 0 68px;
}

.hpack-product-gallery__main {
	position: relative;
	display: flex;
	width: 100%;
	aspect-ratio: 1 / 1;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--hpack-line);
	background: #fff;
}

.hpack-reference-badge--detail {
	right: 16px;
	bottom: 16px;
	font-size: 12px;
}

.hpack-product-gallery__main > img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 18px;
}

.hpack-product-gallery__thumbs {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 8px;
	margin-top: 10px;
}

.hpack-product-gallery__thumbs button {
	aspect-ratio: 1 / 1;
	border: 1px solid var(--hpack-line);
	border-radius: 4px;
	background: #fff;
	padding: 3px;
}

.hpack-product-gallery__thumbs button.is-active {
	border-color: var(--hpack-blue);
}

.hpack-product-gallery__thumbs img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.hpack-product-summary {
	padding-top: 18px;
}

.hpack-product-summary h1 {
	margin: 0;
	font-size: 46px;
	line-height: 1.12;
	overflow-wrap: anywhere;
}

.hpack-product-lead {
	margin: 20px 0 0;
	color: var(--hpack-muted);
	font-size: 18px;
	line-height: 1.75;
}

.hpack-product-sku,
.hpack-preview-note {
	color: var(--hpack-muted);
	font-size: 14px;
}

.hpack-temporary-note {
	margin: 18px 0 0;
	padding: 12px 14px;
	border-left: 3px solid #d5a545;
	background: #fff9ec;
	color: #66552f;
	font-size: 13px;
	line-height: 1.6;
}

.hpack-product-sku {
	margin-top: 18px;
}

.hpack-preview-note {
	margin-top: 22px;
	line-height: 1.6;
}

.hpack-product-specs {
	display: grid;
	grid-template-columns: minmax(220px, .55fr) minmax(0, 1.45fr);
	gap: 50px;
	padding: 62px 0;
	border-top: 1px solid var(--hpack-line);
	border-bottom: 1px solid var(--hpack-line);
}

.hpack-product-specs dl {
	margin: 0;
}

.hpack-product-specs dl > div {
	display: grid;
	grid-template-columns: minmax(130px, .45fr) minmax(0, 1fr);
	gap: 20px;
	padding: 15px 0;
	border-bottom: 1px solid var(--hpack-line);
}

.hpack-product-specs dt {
	font-weight: 700;
}

.hpack-product-specs dd {
	margin: 0;
	color: var(--hpack-muted);
}

.hpack-product-content {
	padding: 70px 0 20px;
}

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

.hpack-gallery figure {
	margin: 0;
}

.hpack-gallery img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.hpack-factory-gallery {
	grid-template-columns: 1fr;
}

.hpack-factory-gallery img {
	aspect-ratio: 16 / 9;
	border-radius: 6px;
}

.hpack-detail-images {
	grid-template-columns: 1fr;
	margin-top: 36px;
}

.hpack-detail-images img {
	aspect-ratio: auto;
	object-fit: contain;
}

.hp-inquiry-form-wrap {
	margin: 70px 0 80px;
	padding: 34px;
	border: 1px solid var(--hpack-line);
	border-radius: 8px;
	background: var(--hpack-surface);
}

.hp-inquiry-form-wrap h2 {
	margin: 0 0 26px;
	font-size: 32px;
}

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

.hp-form-field {
	display: block;
	margin-bottom: 18px;
}

.hp-form-field span {
	display: block;
	margin-bottom: 7px;
	font-weight: 700;
}

.hp-form-field input,
.hp-form-field textarea {
	width: 100%;
	box-sizing: border-box;
	border: 1px solid #bdc7d4;
	border-radius: 5px;
	background: #fff;
	color: var(--hpack-ink);
}

.hp-form-field input {
	min-height: 46px;
	padding: 0 12px;
}

.hp-form-field textarea {
	padding: 12px;
}

.hp-form-field input:focus,
.hp-form-field textarea:focus {
	border-color: var(--hpack-blue);
	outline: 2px solid rgba(37, 99, 235, .14);
}

.hp-honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.hp-form-privacy {
	color: var(--hpack-muted);
	font-size: 13px;
}

.hp-form-message {
	margin-bottom: 20px;
	padding: 13px 15px;
	border-left: 4px solid #16854b;
	background: #eaf7f0;
}

.hp-button {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 6px;
	padding: 0 22px;
	font-weight: 700;
}

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

.hpack-contact-grid {
	display: grid;
	grid-template-columns: minmax(300px, .75fr) minmax(0, 1.25fr);
	gap: 58px;
	align-items: start;
}

.hpack-contact-grid .hp-inquiry-form-wrap {
	margin: 0;
}

.hpack-contact-details {
	position: sticky;
	top: 30px;
}

.hpack-contact-details dl {
	margin-top: 30px;
}

.hpack-contact-details dl > div {
	padding: 17px 0;
	border-top: 1px solid var(--hpack-line);
}

.hpack-contact-details dt {
	color: var(--hpack-muted);
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
}

.hpack-contact-details dd {
	margin: 6px 0 0;
	line-height: 1.65;
}

.hpack-mobile-contact {
	display: none;
}

.hpack-site-footer {
	background: #111827;
	color: #cbd5e1;
}

.hpack-site-footer__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(160px, .6fr) minmax(240px, 1fr);
	gap: 64px;
	padding-top: 56px;
	padding-bottom: 48px;
}

.hpack-site-footer strong {
	display: block;
	margin-bottom: 16px;
	color: #fff;
	font-size: 17px;
}

.hpack-site-footer__brand strong {
	font-size: 24px;
}

.hpack-site-footer p {
	margin: 0;
	line-height: 1.7;
}

.hpack-site-footer__brand p {
	max-width: 440px;
}

.hpack-site-footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.hpack-site-footer li + li {
	margin-top: 9px;
}

.hpack-site-footer a {
	color: #cbd5e1;
	text-decoration: none;
}

.hpack-site-footer a:hover {
	color: #fff;
}

.hpack-site-footer__contact {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 9px;
}

.hpack-site-footer__contact strong {
	margin-bottom: 7px;
}

.hpack-site-footer__bottom {
	padding-top: 20px;
	padding-bottom: 20px;
	border-top: 1px solid #334155;
	font-size: 13px;
}

@media (max-width: 1024px) {
	.hpack-product-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

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

@media (max-width: 760px) {
	.hpack-container {
		width: min(100% - 30px, var(--hpack-width));
	}

	.hpack-section {
		padding: 50px 0;
	}

	.hpack-section h2 {
		font-size: 29px;
	}

	.hpack-section-heading,
	.hpack-catalog-tools,
	.hpack-cta-band .hpack-container {
		align-items: flex-start;
		flex-direction: column;
	}

	.hpack-site-hero {
		min-height: 610px;
		background-position: 62% center;
	}

	.hpack-site-hero.has-image::before {
		background: rgba(255, 255, 255, .95);
	}

	.hpack-site-hero h1 {
		font-size: 39px;
	}

	.hpack-site-hero__lead {
		font-size: 17px;
	}

	.hpack-category-grid,
	.hpack-product-grid,
	.hpack-advantages__grid,
	.hpack-company-band__grid,
	.hpack-company-intro,
	.hpack-product-hero,
	.hpack-product-specs,
	.hpack-contact-grid,
	.hp-form-grid,
	.hpack-gallery {
		grid-template-columns: 1fr;
	}

	.hpack-site-footer__grid {
		grid-template-columns: 1fr;
		gap: 34px;
		padding-top: 44px;
		padding-bottom: 38px;
	}

	.hpack-category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}

	.hpack-category-item {
		min-height: 178px;
		padding: 18px 10px;
	}

	.hpack-category-item__image {
		width: 88px;
		height: 88px;
	}

	.hpack-category-item strong {
		font-size: 16px;
	}

	.hpack-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}

	.hpack-product-card__body {
		min-height: 182px;
		padding: 14px;
	}

	.hpack-product-card__body h2 {
		font-size: 17px;
	}

	.hpack-product-card__body > p:not(.hpack-eyebrow) {
		display: none;
	}

	.hpack-product-card__body .hpack-eyebrow {
		font-size: 11px;
	}

	.hpack-company-band__grid,
	.hpack-company-intro {
		gap: 32px;
	}

	.hpack-page-heading {
		padding: 42px 0;
	}

	.hpack-page-heading h1 {
		font-size: 37px;
	}

	.hpack-page-heading p {
		font-size: 16px;
	}

	.hpack-product-search {
		width: 100%;
	}

	.hpack-product-hero {
		gap: 30px;
		padding-bottom: 48px;
	}

	.hpack-product-summary h1 {
		font-size: 34px;
	}

	.hpack-product-specs {
		gap: 20px;
		padding: 44px 0;
	}

	.hpack-product-specs dl > div {
		grid-template-columns: 110px minmax(0, 1fr);
	}

	.hp-inquiry-form-wrap {
		padding: 22px 18px;
	}

	.hpack-contact-details {
		position: static;
	}

	.hpack-mobile-contact {
		position: sticky;
		z-index: 20;
		bottom: 0;
		display: grid;
		grid-template-columns: .55fr 1.45fr;
		padding: 10px 15px;
		background: #fff;
		box-shadow: 0 -4px 16px rgba(23, 32, 51, .12);
	}

	.hpack-mobile-contact a {
		display: flex;
		min-height: 48px;
		align-items: center;
		justify-content: center;
		border: 1px solid var(--hpack-line);
		color: var(--hpack-ink);
		font-weight: 700;
		text-decoration: none;
	}

	.hpack-mobile-contact a.is-primary {
		border-color: var(--hpack-blue);
		background: var(--hpack-blue);
		color: #fff;
	}
}
