/* Hibiyama — Industrial Precision Machine Vision */
:root {
	--hb-primary: #003776;
	--hb-primary-container: #004da1;
	--hb-primary-fixed: #d7e2ff;
	--hb-primary-fixed-dim: #acc7ff;
	--hb-on-primary: #ffffff;
	--hb-on-primary-container: #a4c2ff;
	--hb-secondary: #515f74;
	--hb-secondary-container: #d5e3fc;
	--hb-on-secondary-container: #57657a;
	--hb-secondary-fixed-dim: #b9c7df;
	--hb-tertiary: #790008;
	--hb-tertiary-container: #a40010;
	--hb-surface: #fbf9f8;
	--hb-surface-dim: #dcd9d9;
	--hb-surface-container: #f0eded;
	--hb-surface-container-low: #f6f3f2;
	--hb-surface-container-lowest: #ffffff;
	--hb-surface-variant: #e4e2e1;
	--hb-on-surface: #1b1c1c;
	--hb-on-background: #1b1c1c;
	--hb-background: #fbf9f8;
	--hb-technical-slate: #1E293B;
	--hb-clean-room-white: #F8FAFC;
	--hb-optic-gray: #E2E8F0;
	--hb-outline: #737783;
	--hb-outline-variant: #c2c6d3;
	--hb-font: 'Inter', 'IBM Plex Sans', 'Helvetica Neue', sans-serif;
	--hb-font-tech: 'IBM Plex Sans', 'Inter', sans-serif;
	--hb-max: 1480px;
	--hb-gutter: 24px;
	--hb-margin-mobile: 20px;
	--hb-margin-desktop: 40px;
	--hb-header-h: 80px;
	--hb-transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
	font-size: 16px;
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: var(--hb-font);
	color: var(--hb-on-background);
	background: var(--hb-background);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

body.hb-home { padding-top: var(--hb-header-h); }
body.hb-inner { padding-top: var(--hb-header-h); }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--hb-transition); }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

.material-symbols-outlined {
	font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
	vertical-align: middle;
	line-height: 1;
}

.container {
	width: 100%;
	max-width: var(--hb-max);
	margin: 0 auto;
	padding-left: var(--hb-margin-mobile);
	padding-right: var(--hb-margin-mobile);
}

@media (min-width: 768px) {
	.container {
		padding-left: var(--hb-margin-desktop);
		padding-right: var(--hb-margin-desktop);
	}
}

/* Typography */
.hb-label {
	font-family: var(--hb-font-tech);
	font-size: 12px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--hb-primary);
}

.hb-headline-lg {
	font-size: 32px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: var(--hb-primary);
}

.hb-headline-md {
	font-size: 26px;
	font-weight: 600;
	line-height: 1.3;
	color: var(--hb-primary);
}

.hb-headline-sm {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--hb-on-surface);
}

.hb-body-lg {
	font-size: 18px;
	line-height: 1.6;
	color: var(--hb-secondary);
}

.hb-body-md {
	font-size: 16px;
	line-height: 1.6;
	color: var(--hb-secondary);
}

@media (min-width: 768px) {
	.hb-headline-lg { font-size: 48px; line-height: 1.1; }
	.hb-headline-md { font-size: 30px; }
}

/* Buttons */
.hb-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 32px;
	font-size: 15px;
	font-weight: 700;
	border-radius: 4px;
	border: none;
	cursor: pointer;
	transition: all var(--hb-transition);
	white-space: nowrap;
}

.hb-btn--primary {
	background: var(--hb-primary);
	color: var(--hb-on-primary);
}

.hb-btn--primary:hover {
	background: var(--hb-primary-container);
}

.hb-btn--outline {
	background: transparent;
	color: var(--hb-on-primary);
	border: 1px solid rgba(255,255,255,0.6);
}

.hb-btn--outline:hover {
	background: rgba(255,255,255,0.1);
}

.hb-btn--white {
	background: #fff;
	color: var(--hb-primary);
}

.hb-btn--white:hover {
	background: var(--hb-primary-fixed);
}

.hb-btn--ghost {
	background: transparent;
	color: var(--hb-primary);
	border: 1px solid var(--hb-optic-gray);
}

.hb-btn--ghost:hover {
	border-color: var(--hb-primary);
}

.hb-link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-weight: 700;
	color: var(--hb-primary);
}

.hb-link:hover { text-decoration: underline; }

/* Site Header */
.hb-site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1100;
	background: #ffffff;
	border-bottom: 1px solid var(--hb-outline-variant);
	transition: box-shadow var(--hb-transition);
}

@media (min-width: 992px) {
	.hb-site-header {
		backdrop-filter: blur(12px);
		background: rgba(255,255,255,0.95);
	}
}

.hb-site-header.is-scrolled {
	box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.hb-header-row {
	display: flex;
	align-items: center;
	min-height: var(--hb-header-h);
	gap: 16px;
}

.hb-logo {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.hb-logo img {
	height: 48px;
	width: auto;
	max-width: 220px;
	object-fit: contain;
	object-position: left center;
	flex-shrink: 0;
}

@media (min-width: 768px) {
	.hb-logo img {
		height: 82px;
		/*! max-width: 280px; */
	}
}

.hb-logo-text {
	display: none;
	border-left: 1px solid var(--hb-outline-variant);
	padding-left: 12px;
}

.hb-logo-name {
	display: block;
	font-size: 15px;
	font-weight: 600;
	color: var(--hb-primary);
	line-height: 1.3;
}

.hb-logo-tag {
	display: block;
	font-family: var(--hb-font-tech);
	font-size: 10px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--hb-secondary);
}

@media (min-width: 1024px) {
	.hb-logo-text { display: flex; flex-direction: column; }
}


.hb-nav-toggle {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	margin-left: auto;
	flex-shrink: 0;
	position: relative;
	z-index: 1002;
}

.hb-nav-toggle span {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--hb-primary);
	transition: var(--hb-transition);
}

.hb-nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hb-nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.hb-nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 992px) {
	.hb-nav-toggle { display: none; margin-left: 0; }
}

.hb-nav {
	position: fixed;
	top: var(--hb-header-h);
	left: 0;
	right: 0;
	width: 100%;
	height: calc(100vh - var(--hb-header-h));
	height: calc(100dvh - var(--hb-header-h));
	background: #ffffff;
	padding: 8px 20px 32px;
	display: flex;
	flex-direction: column;
	gap: 0;
	transform: translateX(100%);
	transition: transform var(--hb-transition);
	overflow-y: auto;
	z-index: 1090;
	-webkit-overflow-scrolling: touch;
	visibility: hidden;
}

.hb-nav.is-open {
	transform: translateX(0);
	visibility: visible;
}

@media (min-width: 992px) {
	.hb-nav {
		position: static;
		top: auto;
		left: auto;
		right: auto;
		width: auto;
		height: auto;
		flex-direction: row;
		align-items: center;
		padding: 0;
		transform: none;
		background: transparent;
		overflow: visible;
		flex: 1;
		justify-content: stretch;
		display: flex;
		visibility: visible;
		margin-left: 32px;
	}
}

.hb-nav-list {
	display: flex;
	flex-direction: column;
	gap: 0;
	width: 100%;
}

@media (min-width: 992px) {
	.hb-nav-list {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		flex: 1;
		width: 100%;
		gap: 0;
		display: flex;
	}
}

.hb-nav-item { position: relative; }

.hb-nav-caret {
	font-size: 18px;
	vertical-align: middle;
	margin-left: 2px;
	transition: transform var(--hb-transition);
}

.hb-nav-sub-toggle {
	display: none;
}

.hb-nav-sub-arrow {
	font-size: 18px;
	flex-shrink: 0;
	color: var(--hb-secondary);
}

@media (max-width: 991px) {
	.hb-nav-item {
		border-bottom: 1px solid var(--hb-optic-gray);
	}

	.hb-nav-link {
		padding: 16px 4px;
		font-size: 16px;
	}
}

@media (min-width: 992px) {
	.hb-nav-item {
		flex: 1;
		text-align: center;
	}
}

.hb-nav-link {
	display: block;
	padding: 10px 0;
	font-weight: 500;
	color: var(--hb-secondary);
	transition: color var(--hb-transition);
	white-space: nowrap;
}

@media (min-width: 992px) {
	.hb-nav-link {
		padding: 8px 4px;
		font-size: 14px;
	}
}

@media (min-width: 1200px) {
	.hb-nav-link { font-size: 15px; }
}

.hb-nav-item.is-active .hb-nav-link,
.hb-nav-link:hover {
	color: var(--hb-primary);
}

.hb-nav-item.is-active .hb-nav-link {
	font-weight: 700;
}

@media (min-width: 992px) {
	.hb-nav-item.is-active .hb-nav-link {
		box-shadow: inset 0 -2px 0 var(--hb-primary);
	}
}

.hb-nav-sub {
	display: none;
	list-style: none;
	margin: 0;
	padding: 0;
}

.hb-nav-sub--l2 {
	padding-left: 0;
}

.hb-nav-sub--l3 {
	padding-left: 0;
}

.hb-nav-sub-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.hb-nav-item.has-child:hover > .hb-nav-sub--l2,
.hb-nav-item.has-child.is-open > .hb-nav-sub--l2 {
	display: block;
}

@media (max-width: 991px) {
	.hb-nav-sub-item.has-child.is-open > .hb-nav-sub--l3 {
		display: flex;
		flex-wrap: nowrap;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		gap: 8px;
		padding: 4px 0 10px;
	}

	.hb-nav-sub-item.has-child.is-open > .hb-nav-sub--l3::-webkit-scrollbar {
		display: none;
	}

	.hb-nav-sub--l3 > .hb-nav-sub-item {
		flex: 0 0 auto;
	}
}

@media (min-width: 992px) {
	.hb-nav-sub--l3 {
		display: none;
	}

	.hb-nav-sub-item.has-child:hover > .hb-nav-sub--l3 {
		display: block;
	}

	.hb-nav-sub--l2 {
		position: absolute;
		top: 100%;
		left: 50%;
		transform: translateX(-50%);
		min-width: 240px;
		background: #fff;
		border: 1px solid var(--hb-optic-gray);
		box-shadow: 0 12px 32px rgba(0, 55, 118, 0.12);
		padding: 8px 0;
		z-index: 1200;
	}

	.hb-nav-sub--l2::before {
		content: '';
		position: absolute;
		top: -10px;
		left: 0;
		right: 0;
		height: 12px;
	}

	.hb-nav-sub--l2 .hb-nav-sub-link {
		padding: 10px 18px;
		font-size: 14px;
		font-weight: 500;
		color: var(--hb-secondary);
		white-space: nowrap;
		transition: background var(--hb-transition), color var(--hb-transition);
	}

	.hb-nav-sub--l2 > .hb-nav-sub-item:hover > .hb-nav-sub-link,
	.hb-nav-sub--l2 > .hb-nav-sub-item.is-active > .hb-nav-sub-link {
		background: var(--hb-primary);
		color: #fff;
	}

	.hb-nav-sub--l2 > .hb-nav-sub-item:hover > .hb-nav-sub-link .hb-nav-sub-arrow,
	.hb-nav-sub--l2 > .hb-nav-sub-item.is-active > .hb-nav-sub-link .hb-nav-sub-arrow {
		color: #fff;
	}

	.hb-nav-sub-item {
		position: relative;
	}

	.hb-nav-sub--l3 {
		position: absolute;
		top: 0;
		left: 100%;
		min-width: 220px;
		margin-left: 2px;
		background: #fff;
		border: 1px solid var(--hb-optic-gray);
		box-shadow: 0 12px 32px rgba(0, 55, 118, 0.12);
		padding: 8px 0;
		z-index: 1210;
	}

	.hb-nav-sub--l3::before {
		content: '';
		position: absolute;
		top: 0;
		left: -8px;
		width: 8px;
		height: 100%;
	}

	.hb-nav-sub--l3 .hb-nav-sub-link {
		padding: 9px 18px;
		font-size: 14px;
		color: var(--hb-secondary);
		white-space: nowrap;
	}

	.hb-nav-sub--l3 .hb-nav-sub-item:hover > .hb-nav-sub-link,
	.hb-nav-sub--l3 .hb-nav-sub-item.is-active > .hb-nav-sub-link {
		background: var(--hb-surface-container-low);
		color: var(--hb-primary);
	}
}

@media (max-width: 991px) {
	.hb-nav-item.has-child,
	.hb-nav-sub-item.has-child {
		position: relative;
	}

	.hb-nav-sub-toggle {
		display: flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		top: 0;
		right: 0;
		width: 48px;
		height: 52px;
		border: none;
		background: transparent;
		color: var(--hb-secondary);
		cursor: pointer;
	}

	.hb-nav-sub-toggle--deep {
		height: 44px;
	}

	.hb-nav-sub-toggle .material-symbols-outlined {
		font-size: 22px;
		transition: transform var(--hb-transition);
	}

	.hb-nav-item.has-child.is-open > .hb-nav-sub-toggle .material-symbols-outlined {
		transform: rotate(180deg);
	}

	.hb-nav-sub-item.has-child.is-open > .hb-nav-sub-toggle--deep .hb-nav-sub-arrow {
		transform: rotate(90deg);
	}

	.hb-nav-sub--l2 {
		padding-left: 12px;
	}

	.hb-nav-sub--l3 {
		padding-left: 8px;
	}

	.hb-nav-sub--l2 .hb-nav-sub-link {
		padding: 10px 48px 10px 8px;
		font-size: 15px;
		color: var(--hb-secondary);
	}

	.hb-nav-sub--l3 .hb-nav-sub-link {
		display: inline-flex;
		justify-content: center;
		padding: 8px 14px;
		font-size: 14px;
		color: var(--hb-secondary);
		white-space: nowrap;
		background: var(--hb-surface-container-low);
		border-radius: 20px;
	}

	.hb-nav-sub-item.is-active > .hb-nav-sub-link,
	.hb-nav-sub-link:hover {
		color: var(--hb-primary);
	}

	.hb-nav-sub--l3 .hb-nav-sub-item.is-active > .hb-nav-sub-link {
		background: var(--hb-primary);
		color: #fff;
	}
}

@media (min-width: 992px) {
	.hb-nav-sub a {
		display: block;
	}
}

.hb-search {
	display: none;
	align-items: center;
	gap: 8px;
	background: var(--hb-surface-container);
	border: 1px solid var(--hb-outline-variant);
	border-radius: 8px;
	padding: 6px 12px;
}

.hb-search input {
	border: none;
	background: transparent;
	outline: none;
	width: 140px;
	font-size: 13px;
}

.hb-search .material-symbols-outlined {
	font-size: 20px;
	color: var(--hb-secondary);
}

@media (min-width: 1200px) {
	.hb-search { display: flex; }
}

.hb-nav-cta {
	width: 100%;
}

@media (min-width: 992px) {
	.hb-nav-cta { width: auto; }
}

/* Hero */
.hb-hero {
	position: relative;
	min-height: calc(85vh - var(--hb-header-h));
	display: flex;
	align-items: center;
	overflow: hidden;
}

.hb-hero-bg {
	position: absolute;
	inset: 0;
	background: url('/public/hibiyama/images/hero-bg.jpg') center/cover no-repeat;
	background-color: #0a1628;
}

.hb-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(10,22,40,0.88) 0%, rgba(10,22,40,0.55) 50%, rgba(10,22,40,0.15) 100%);
}

.hb-hero-wrap {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: var(--hb-max);
	margin: 0 auto;
	padding: 48px var(--hb-margin-mobile) 72px;
	box-sizing: border-box;
}

@media (min-width: 768px) {
	.hb-hero-wrap {
		padding: 60px var(--hb-margin-desktop) 80px;
	}
}

@media (min-width: 992px) {
	.hb-hero-wrap {
		display: flex;
		justify-content: flex-start;
		align-items: center;
		min-height: calc(85vh - var(--hb-header-h) - 48px);
	}
}

.hb-hero-content {
	max-width: 100%;
	width: 100%;
	text-align: left;
	box-sizing: border-box;
}

@media (min-width: 992px) {
	.hb-hero-content {
		max-width: 62%;
	}
}

@media (min-width: 1200px) {
	.hb-hero-content {
		max-width: 720px;
	}
}

.hb-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(0,55,118,0.15);
	color: var(--hb-primary-fixed-dim);
	border: 1px solid rgba(0,55,118,0.25);
	border-radius: 999px;
	padding: 8px 16px;
	margin-bottom: 24px;
	font-family: var(--hb-font-tech);
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hb-hero h1 {
	font-size: 32px;
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
	margin-bottom: 20px;
	max-width: 100%;
}

@media (min-width: 768px) {
	.hb-hero h1 { font-size: 44px; line-height: 1.15; }
}

@media (min-width: 1200px) {
	.hb-hero h1 { font-size: 48px; }
}

.hb-hero-desc {
	font-size: 18px;
	line-height: 1.7;
	color: var(--hb-surface-variant);
	margin-bottom: 32px;
	max-width: 100%;
}

@media (min-width: 768px) {
	.hb-hero-desc {
		font-size: 19px;
		max-width: 90%;
	}
}

.hb-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.hb-hero-slogan {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--hb-primary);
	padding: 12px 0;
	display: none;
}

.hb-hero-slogan p {
	text-align: center;
	font-family: var(--hb-font-tech);
	font-size: 13px;
	color: var(--hb-on-primary);
	letter-spacing: 0.02em;
}

.hidden-mobile { display: none; }

@media (min-width: 768px) {
	.hb-hero-slogan { display: block; }
	.hidden-mobile { display: inline; }
}

/* Trust bar */
.hb-trust {
	background: var(--hb-clean-room-white);
	border-bottom: 1px solid var(--hb-optic-gray);
}

.hb-trust-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

.hb-trust-item {
	padding: 32px 20px;
	text-align: center;
	border-right: 1px solid var(--hb-optic-gray);
	border-bottom: 1px solid var(--hb-optic-gray);
}

.hb-trust-item:nth-child(2n) { border-right: none; }
.hb-trust-item:nth-last-child(-n+2) { border-bottom: none; }

.hb-trust-num {
	display: block;
	font-size: 26px;
	font-weight: 600;
	color: var(--hb-primary);
	margin-bottom: 8px;
}

.hb-trust-label {
	font-family: var(--hb-font-tech);
	font-size: 11px;
	color: var(--hb-secondary);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

@media (min-width: 768px) {
	.hb-trust-grid { grid-template-columns: repeat(4, 1fr); }
	.hb-trust-item { padding: 40px 24px; border-bottom: none; }
	.hb-trust-item:nth-child(2n) { border-right: 1px solid var(--hb-optic-gray); }
	.hb-trust-item:last-child { border-right: none; }
	.hb-trust-num { font-size: 30px; }
}

.hb-trust--inline {
	margin-top: 48px;
	background: var(--hb-surface-container-low);
	border: 1px solid var(--hb-optic-gray);
	border-radius: 8px;
}

.hb-trust--inline .hb-trust-grid {
	grid-template-columns: repeat(2, 1fr);
}

.hb-trust--inline .hb-trust-item {
	padding: 20px 16px;
	border-color: var(--hb-optic-gray);
}

.hb-trust--inline .hb-trust-num {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 4px;
}

.hb-trust--inline .hb-trust-label {
	font-size: 11px;
	text-transform: none;
	letter-spacing: 0;
}

@media (min-width: 768px) {
	.hb-trust--inline .hb-trust-grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.hb-trust--inline .hb-trust-item {
		padding: 24px 20px;
		border-bottom: none;
	}

	.hb-trust--inline .hb-trust-num {
		font-size: 20px;
	}
}

/* Section */
.hb-section {
	padding: 60px 0;
}

.hb-section--surface {
	background: var(--hb-surface-container-low);
}

.hb-section-head {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 40px;
}

.hb-section-head .hb-headline-lg,
.hb-section-head .hb-headline-md {
	margin-bottom: 8px;
}

@media (min-width: 768px) {
	.hb-section { padding: 96px 0; }
	.hb-section-head {
		flex-direction: row;
		align-items: flex-end;
		justify-content: space-between;
		margin-bottom: 64px;
	}
	.hb-section-head > div { flex: 1; }
}

.hb-section-divider {
	display: none;
	height: 1px;
	background: var(--hb-optic-gray);
	flex: 1;
	margin: 0 32px;
}

@media (min-width: 1024px) {
	.hb-section-divider { display: block; }
}

/* Product bento grid */
.hb-bento {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--hb-gutter);
}

.hb-bento-card {
	background: #fff;
	border: 1px solid var(--hb-optic-gray);
	padding: 32px;
	transition: box-shadow var(--hb-transition);
}

.hb-bento-card:hover {
	box-shadow: 0 12px 32px rgba(0,55,118,0.08);
}

.hb-bento-card__head {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 24px;
}

.hb-bento-card__icon {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--hb-secondary-container);
	color: var(--hb-primary);
	border-radius: 8px;
}

.hb-bento-card__icon .material-symbols-outlined { font-size: 32px; }

.hb-bento-card__num {
	font-family: var(--hb-font-tech);
	font-size: 36px;
	color: var(--hb-outline-variant);
	opacity: 0.3;
	transition: opacity var(--hb-transition);
}

.hb-bento-card:hover .hb-bento-card__num { opacity: 1; }

.hb-bento-card h3 { margin-bottom: 20px; }

.hb-bento-card__link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.hb-bento-card__desc {
	margin-bottom: 16px;
}

.hb-bento-list a {
	color: inherit;
	text-decoration: none;
}

.hb-bento-list a:hover,
.hb-cat-tag:hover {
	color: var(--hb-primary);
}

a.hb-cat-tag {
	text-decoration: none;
}

.hb-bento-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}

@media (min-width: 576px) {
	.hb-bento-list { grid-template-columns: 1fr 1fr; }
}

.hb-bento-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	color: var(--hb-secondary);
}

.hb-bento-list li::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--hb-primary);
	flex-shrink: 0;
}

@media (min-width: 768px) {
	.hb-bento {
		grid-template-columns: repeat(12, 1fr);
	}
	.hb-bento-card--wide { grid-column: span 8; }
	.hb-bento-card--narrow { grid-column: span 4; }
}

.hb-bento-feature {
	grid-column: 1 / -1;
	background: var(--hb-technical-slate);
	color: #fff;
	padding: 48px 32px;
	display: flex;
	flex-direction: column;
	gap: 24px;
	position: relative;
	overflow: hidden;
}

.hb-bento-feature::after {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	width: 33%;
	height: 100%;
	background: linear-gradient(to left, var(--hb-primary), transparent);
	opacity: 0.15;
	pointer-events: none;
}

.hb-bento-feature .hb-label {
	background: var(--hb-primary);
	color: #fff;
	padding: 4px 12px;
	display: inline-block;
	margin-bottom: 16px;
}

.hb-bento-feature h3 { color: #fff; margin-bottom: 12px; }

.hb-bento-feature p { color: var(--hb-secondary-fixed-dim); margin-bottom: 24px; }

.hb-bento-feature-cols {
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
	margin-bottom: 24px;
}

.hb-bento-feature-cols span {
	display: block;
	font-family: var(--hb-font-tech);
	font-size: 11px;
	color: var(--hb-optic-gray);
	text-transform: uppercase;
	margin-bottom: 6px;
}

@media (min-width: 768px) {
	.hb-bento-feature {
		flex-direction: row;
		align-items: center;
		padding: 48px;
	}
	.hb-bento-feature > div:first-child { flex: 1; }
}

/* Solutions */
.hb-solutions-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--hb-gutter);
}

.hb-solution-card {
	background: #fff;
	border: 1px solid var(--hb-optic-gray);
	overflow: hidden;
	transition: box-shadow var(--hb-transition);
}

.hb-solution-card:hover {
	box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.hb-solution-card__img {
	height: 192px;
	overflow: hidden;
}

.hb-solution-card__img div {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	transition: transform 0.5s ease;
}

.hb-solution-card:hover .hb-solution-card__img div {
	transform: scale(1.05);
}

.hb-solution-card__body { padding: 28px; }

.hb-solution-card__body .hb-label { margin-bottom: 8px; }

.hb-solution-card__body h4 { margin-bottom: 12px; }

.hb-solution-card__body p {
	font-size: 14px;
	line-height: 1.7;
	color: var(--hb-secondary);
	margin-bottom: 20px;
}

@media (min-width: 768px) {
	.hb-solutions-grid { grid-template-columns: repeat(3, 1fr); }
}

.hb-solutions-center {
	text-align: center;
	max-width: 560px;
	margin: 0 auto 48px;
}

/* About */
.hb-about-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 48px;
	align-items: center;
}

.hb-about-visual {
	position: relative;
}

.hb-about-visual::before {
	content: '';
	position: absolute;
	top: -16px;
	left: -16px;
	width: 96px;
	height: 96px;
	background: var(--hb-primary-fixed-dim);
	z-index: 0;
}

.hb-about-visual img {
	position: relative;
	z-index: 1;
	width: 100%;
	border: 1px solid var(--hb-optic-gray);
	box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.hb-about-badge {
	position: absolute;
	bottom: -24px;
	right: -8px;
	background: #fff;
	border: 1px solid var(--hb-optic-gray);
	padding: 20px 24px;
	box-shadow: 0 8px 24px rgba(0,0,0,0.08);
	z-index: 2;
	display: none;
}

.hb-about-badge-inner {
	display: flex;
	align-items: center;
	gap: 16px;
}

.hb-about-badge-icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--hb-primary);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hb-about-checks {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	margin-top: 24px;
}

.hb-about-check {
	display: flex;
	gap: 12px;
}

.hb-about-check .material-symbols-outlined {
	color: var(--hb-primary);
	flex-shrink: 0;
}

.hb-about-check h5 {
	font-weight: 700;
	color: var(--hb-primary);
	margin-bottom: 4px;
}

.hb-about-check p {
	font-size: 14px;
	color: var(--hb-secondary);
}

.hb-about-more {
	margin-top: 32px;
	padding-top: 32px;
	border-top: 1px solid var(--hb-optic-gray);
}

@media (min-width: 576px) {
	.hb-about-checks { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 992px) {
	.hb-about-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
	.hb-about-badge { display: block; }
}

/* Featured product */
.hb-featured {
	background: var(--hb-surface-container-low);
}

.hb-featured-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	align-items: center;
}

.hb-featured-specs {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	margin-top: 24px;
}

.hb-featured-spec {
	background: #fff;
	border: 1px solid var(--hb-optic-gray);
	padding: 12px 16px;
}

.hb-featured-spec strong {
	display: block;
	font-size: 13px;
	color: var(--hb-primary);
	margin-bottom: 4px;
}

.hb-featured-spec span {
	font-size: 12px;
	color: var(--hb-secondary);
}

.hb-featured-visual {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 280px;
	background: var(--hb-technical-slate);
	border-radius: 4px;
	padding: 40px;
	text-align: center;
	color: #fff;
	text-decoration: none;
}

.hb-featured-visual img {
	width: 100%;
	max-height: 320px;
	object-fit: contain;
}

.hb-featured-specs.cms-content {
	margin-top: 20px;
}

.hb-featured-specs.cms-content .hb-spec-table {
	width: 100%;
	border-collapse: collapse;
}

.hb-featured-specs.cms-content .hb-spec-table th,
.hb-featured-specs.cms-content .hb-spec-table td {
	padding: 8px 12px;
	border: 1px solid var(--hb-optic-gray);
	font-size: 13px;
	text-align: left;
}

.hb-featured-visual .material-symbols-outlined {
	font-size: 80px;
	color: var(--hb-primary-fixed-dim);
	margin-bottom: 16px;
}

@media (min-width: 768px) {
	.hb-featured-grid { grid-template-columns: 1fr 1fr; }
	.hb-featured-specs { grid-template-columns: repeat(3, 1fr); }
}

/* News */
.hb-news-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--hb-gutter);
}

.hb-news-card {
	background: #fff;
	border: 1px solid var(--hb-optic-gray);
	overflow: hidden;
	transition: box-shadow var(--hb-transition);
}

.hb-news-card:hover {
	box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.hb-news-card a { display: block; }

.hb-news-card__img {
	height: 180px;
	overflow: hidden;
	background: var(--hb-surface-dim);
}

.hb-news-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.hb-news-card:hover .hb-news-card__img img {
	transform: scale(1.04);
}

.hb-news-card__body { padding: 24px; }

.hb-news-card__date {
	font-family: var(--hb-font-tech);
	font-size: 12px;
	color: var(--hb-outline);
	margin-bottom: 8px;
}

.hb-news-card__title {
	font-size: 17px;
	font-weight: 600;
	color: var(--hb-on-surface);
	margin-bottom: 8px;
	line-height: 1.4;
}

.hb-news-card__excerpt {
	font-size: 14px;
	color: var(--hb-secondary);
	line-height: 1.6;
	margin-bottom: 12px;
}

.hb-news-card__more {
	font-size: 13px;
	font-weight: 700;
	color: var(--hb-primary);
}

@media (min-width: 768px) {
	.hb-news-grid { grid-template-columns: repeat(3, 1fr); }
}

/* CTA */
.hb-cta {
	background: var(--hb-primary);
	padding: 60px 0;
	text-align: center;
}

.hb-cta h2 {
	color: var(--hb-on-primary);
	margin-bottom: 16px;
}

.hb-cta p {
	color: var(--hb-on-primary-container);
	font-size: 18px;
	line-height: 1.6;
	max-width: 560px;
	margin: 0 auto 32px;
}

.hb-cta-actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

@media (min-width: 576px) {
	.hb-cta { padding: 80px 0; }
	.hb-cta-actions {
		flex-direction: row;
		justify-content: center;
	}
}

/* Footer */
.hb-footer {
	background: var(--hb-technical-slate);
	color: var(--hb-on-primary);
	padding: 48px 0 0;
}

.hb-footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	padding-bottom: 32px;
}

.hb-footer-logo img {
	height: 80px;
	width: auto;
	max-width: 240px;
	object-fit: contain;
}

.hb-footer-brand p {
	font-size: 14px;
	line-height: 1.7;
	color: var(--hb-surface-variant);
	margin: 16px 0;
}

.hb-footer-social {
	display: flex;
	gap: 12px;
}

.hb-footer-social a {
	width: 40px;
	height: 40px;
	border: 1px solid var(--hb-outline);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background var(--hb-transition);
}

.hb-footer-social a:hover {
	background: var(--hb-primary);
	border-color: var(--hb-primary);
}

.hb-footer-col h6 {
	font-family: var(--hb-font-tech);
	font-size: 13px;
	font-weight: 700;
	color: var(--hb-primary-fixed);
	margin-bottom: 16px;
	letter-spacing: 0.05em;
}

.hb-footer-col ul li {
	margin-bottom: 10px;
}

.hb-footer-col a,
.hb-footer-col span {
	font-size: 14px;
	color: var(--hb-surface-variant);
	line-height: 1.5;
}

.hb-footer-col a:hover { color: #fff; }

.hb-footer-contact li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	margin-bottom: 14px;
}

.hb-footer-contact .material-symbols-outlined {
	font-size: 18px;
	color: var(--hb-primary-fixed);
	flex-shrink: 0;
	margin-top: 2px;
}

.hb-footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.1);
	padding: 24px 0;
	text-align: center;
}

.hb-footer-bottom p {
	font-family: var(--hb-font-tech);
	font-size: 12px;
	color: var(--hb-outline);
}

.hb-show-mobile {
	display: none;
}

.hb-footer-contact--compact {
	margin-top: 12px;
}

.hb-footer-contact--compact li {
	margin-bottom: 8px;
}

@media (max-width: 767px) {
	.hb-footer {
		padding: 28px 0 0;
	}

	.hb-hide-mobile {
		display: none !important;
	}

	.hb-show-mobile {
		display: block;
	}

	.hb-footer-grid {
		gap: 16px;
		padding-bottom: 16px;
	}

	.hb-footer-brand {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.hb-footer-logo {
		display: inline-flex;
		justify-content: center;
	}

	.hb-footer-logo img {
		height: 32px;
	}

	.hb-footer-contact--compact {
		width: 100%;
		margin-top: 16px;
		padding: 0;
		list-style: none;
	}

	.hb-footer-contact--compact li {
		justify-content: center;
		margin-bottom: 10px;
	}

	.hb-footer-bottom {
		padding: 14px 0;
	}

	.hb-footer-bottom p {
		font-size: 11px;
		line-height: 1.5;
	}

	body.hb-home,
	body.hb-inner {
		padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px));
	}
}

/* Product category tags */
.hb-cat-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 16px;
}

@media (min-width: 768px) {
	.hb-footer-grid {
		grid-template-columns: 2fr 1fr 1.5fr 1fr;
	}
}

/* Mobile bottom tab bar */
.hb-mobile-tabbar {
	display: none;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 900;
	background: #fff;
	border-top: 1px solid var(--hb-optic-gray);
	box-shadow: 0 -4px 24px rgba(0, 55, 118, 0.08);
	padding-bottom: env(safe-area-inset-bottom, 0px);
}

.hb-mobile-tabbar__item {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	min-height: 56px;
	padding: 6px 4px;
	color: var(--hb-secondary);
	font-size: 10px;
	font-weight: 500;
	line-height: 1.2;
	text-align: center;
	transition: color var(--hb-transition);
}

.hb-mobile-tabbar__item .material-symbols-outlined {
	font-size: 22px;
}

.hb-mobile-tabbar__item.is-active {
	color: var(--hb-primary);
}

.hb-mobile-tabbar__item.is-active .material-symbols-outlined {
	font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}

@media (max-width: 767px) {
	.hb-mobile-tabbar.hb-show-mobile {
		display: flex;
	}
}

.hb-cat-tag {
	font-size: 12px;
	padding: 4px 10px;
	background: var(--hb-surface-container);
	border: 1px solid var(--hb-optic-gray);
	color: var(--hb-secondary);
	border-radius: 4px;
}

/* Solutions industry list */
.hb-industry-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	margin-top: 32px;
}

.hb-industry-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: var(--hb-secondary);
	padding: 10px 14px;
	background: #fff;
	border: 1px solid var(--hb-optic-gray);
}

.hb-industry-item .material-symbols-outlined {
	font-size: 18px;
	color: var(--hb-primary);
}

@media (min-width: 768px) {
	.hb-industry-list { grid-template-columns: repeat(5, 1fr); }
}

/* Product catalog pages */
.hb-product-main { background: var(--hb-background); }

.hb-product-hero {
	padding: 32px 0 16px;
	border-bottom: 1px solid var(--hb-optic-gray);
	background: #fff;
}

.hb-product-hero__desc {
	margin-top: 12px;
	max-width: 720px;
	color: var(--hb-secondary);
}

.hb-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: var(--hb-secondary);
	margin-bottom: 16px;
}

.hb-breadcrumb a:hover { color: var(--hb-primary); }

.hb-product-catalog {
	padding: 32px 0 64px;
}

.hb-product-tabs {
	display: flex;
	flex-wrap: nowrap;
	gap: 0;
	border-bottom: 1px solid var(--hb-optic-gray);
	margin-bottom: 32px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.hb-product-tabs::-webkit-scrollbar {
	display: none;
}

.hb-product-tabs__item {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
	padding: 14px 20px;
	font-size: 15px;
	font-weight: 500;
	color: var(--hb-secondary);
	white-space: nowrap;
	border-bottom: 2px solid transparent;
	margin-bottom: -1px;
	transition: color var(--hb-transition), border-color var(--hb-transition);
}

.hb-product-tabs__item:hover,
.hb-product-tabs__item.is-active {
	color: var(--hb-primary);
	border-bottom-color: var(--hb-primary);
}

.hb-product-subgrid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}

@media (min-width: 768px) {
	.hb-product-subgrid {
		grid-template-columns: repeat(4, 1fr);
		gap: 24px;
	}
}

.hb-product-subcard {
	display: block;
	background: #fff;
	border: 1px solid var(--hb-optic-gray);
	border-radius: 8px;
	overflow: hidden;
	transition: box-shadow var(--hb-transition), border-color var(--hb-transition);
}

.hb-product-subcard:hover {
	border-color: var(--hb-primary);
	box-shadow: 0 8px 24px rgba(0, 55, 118, 0.1);
}

.hb-product-subcard__media {
	aspect-ratio: 1;
	background: var(--hb-surface-container-low);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.hb-product-subcard__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hb-product-subcard__media .material-symbols-outlined {
	font-size: 48px;
	color: var(--hb-outline);
}

.hb-product-subcard__title {
	padding: 16px 16px 8px;
	font-size: 15px;
	font-weight: 600;
	color: var(--hb-on-background);
	text-align: center;
}

.hb-product-subcard__desc {
	padding: 0 16px 16px;
	font-size: 13px;
	color: var(--hb-secondary);
	text-align: center;
	line-height: 1.5;
}

.hb-product-grid {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 24px;
}

@media (min-width: 576px) {
	.hb-product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
	.hb-product-grid { grid-template-columns: repeat(4, 1fr); }
}

.hb-product-card {
	background: #fff;
	border: 1px solid var(--hb-optic-gray);
	border-radius: 8px;
	overflow: hidden;
}

.hb-product-card__media {
	display: block;
	aspect-ratio: 1;
	background: var(--hb-surface-container-low);
	overflow: hidden;
}

.hb-product-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--hb-transition);
}

.hb-product-card:hover .hb-product-card__media img {
	transform: scale(1.04);
}

.hb-product-card__body { padding: 16px; }

.hb-product-card__title {
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 8px;
}

.hb-product-card__title a { color: var(--hb-on-background); }
.hb-product-card__title a:hover { color: var(--hb-primary); }

.hb-product-card__desc {
	font-size: 13px;
	color: var(--hb-secondary);
	line-height: 1.5;
}

.hb-product-empty {
	text-align: center;
	padding: 48px 24px;
	background: #fff;
	border: 1px dashed var(--hb-optic-gray);
	border-radius: 8px;
}

.hb-product-empty .hb-btn { margin-top: 20px; }

.hb-pagination {
	margin-top: 40px;
	text-align: center;
}

.hb-product-detail {
	display: grid;
	gap: 32px;
}

@media (min-width: 992px) {
	.hb-product-detail {
		grid-template-columns: 1fr 1fr;
		align-items: start;
	}
}

.hb-product-detail__media {
	background: #fff;
	border: 1px solid var(--hb-optic-gray);
	border-radius: 8px;
	overflow: hidden;
}

.hb-product-detail__media img {
	width: 100%;
	height: auto;
	display: block;
}

.hb-product-detail__body {
	background: #fff;
	border: 1px solid var(--hb-optic-gray);
	border-radius: 8px;
	padding: 24px;
	line-height: 1.8;
}

.hb-product-detail__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 32px;
}

/* Screen reader only heading */
.hb-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Product breadcrumb bar */
.hb-prod-crumb-bar {
	background: var(--hb-surface-container-low);
	border-bottom: 1px solid var(--hb-optic-gray);
	padding: 14px 0;
}

.hb-prod-crumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px 8px;
	font-size: 13px;
	color: var(--hb-secondary);
}

.hb-prod-crumb__label {
	margin: 0;
	color: var(--hb-outline);
	flex-shrink: 0;
}

.hb-prod-crumb__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.hb-prod-crumb__list li:not(:last-child)::after {
	content: '>';
	margin-left: 8px;
	color: var(--hb-outline-variant);
}

.hb-prod-crumb a:hover { color: var(--hb-primary); }

.hb-prod-crumb [aria-current="page"] {
	color: var(--hb-on-background);
	font-weight: 500;
}

/* Product catalog section */
.hb-prod-catalog {
	padding: 0 0 64px;
	background: #fff;
}

.hb-prod-catalog .hb-product-tabs {
	margin-bottom: 0;
	background: #fff;
}

/* Tiled product grid (reference layout) */
.hb-prod-tile-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	border-top: 1px solid var(--hb-optic-gray);
	border-left: 1px solid var(--hb-optic-gray);
	gap: 0;
}

@media (max-width: 767px) {
	.hb-prod-tile__media {
		/*! padding: 16px; */
	}

	.hb-prod-tile__title {
		/*! padding: 0 10px; */
		font-size: 14px;
	}

	.hb-prod-tile__sub {
		padding: 4px 10px 14px;
		font-size: 12px;
	}

	.hb-product-tabs {
		margin-left: calc(-1 * var(--hb-margin-mobile));
		margin-right: calc(-1 * var(--hb-margin-mobile));
		padding-left: var(--hb-margin-mobile);
		padding-right: var(--hb-margin-mobile);
	}

	.hb-product-tabs__item {
		padding: 12px 14px;
		font-size: 14px;
	}
}

@media (min-width: 768px) {
	.hb-prod-tile-grid { grid-template-columns: repeat(4, 1fr); }
}

.hb-prod-tile-grid--related {
	border: none;
	gap: 0;
	margin-top: 20px;
}

.hb-prod-tile-grid--related .hb-prod-tile {
	border: none;
	border-radius: 0;
	background: transparent;
}

.hb-prod-tile-grid--related .hb-prod-tile:hover {
	background: transparent;
	box-shadow: none;
}

.hb-prod-tile-grid--related .hb-prod-tile__media {
	padding: 0;
	background: transparent;
}

.hb-prod-tile-grid--related .hb-prod-tile__media img {
	max-width: 100%;
	max-height: 100%;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hb-prod-tile-grid--related .hb-prod-tile__title {
	padding: 10px 0 0;
}

@media (max-width: 767px) {
	.hb-prod-tile-grid--related .hb-prod-tile__media {
		padding: 0;
	}

	.hb-prod-tile-grid--related .hb-prod-tile__title {
		padding: 8px 0 0;
	}
}

.hb-prod-tile {
	display: block;
	background: #fff;
	border-right: 1px solid var(--hb-optic-gray);
	border-bottom: 1px solid var(--hb-optic-gray);
	text-align: center;
	transition: background var(--hb-transition), box-shadow var(--hb-transition);
}

.hb-prod-tile__link {
	display: block;
	color: inherit;
	height: 100%;
}

.hb-prod-tile:hover {
	background: var(--hb-surface-container-lowest);
	box-shadow: inset 0 0 0 1px var(--hb-primary);
	z-index: 1;
	position: relative;
}

.hb-prod-tile__media {
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	/*! padding: 24px; */
	background: #fff;
}

.hb-prod-tile__media img {
	max-width: 85%;
	max-height: 85%;
	width: auto;
	height: auto;
	object-fit: contain;
}

.hb-prod-tile__media .material-symbols-outlined {
	font-size: 56px;
	color: var(--hb-outline);
}

.hb-prod-tile__title {
	/*! padding: 0 16px; */
	font-size: 15px;
	font-weight: 600;
	color: var(--hb-on-background);
	line-height: 1.4;
}

.hb-prod-tile__sub {
	padding: 6px 16px 20px;
	font-size: 13px;
	color: var(--hb-secondary);
	line-height: 1.4;
}

/* Product show page */
.hb-prod-show-hero {
	padding: 32px 0;
	background: var(--hb-background);
}

.hb-prod-show-hero__box {
	display: grid;
	gap: 32px;
	background: #fff;
	border: 1px solid var(--hb-optic-gray);
	border-radius: 4px;
	padding: 32px;
}

@media (min-width: 992px) {
	.hb-prod-show-hero__box {
		grid-template-columns: 1fr 1.2fr;
		align-items: start;
		padding: 40px;
	}
}

.hb-prod-show-hero__media {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 280px;
	background: var(--hb-surface-container-low);
	border: 1px solid var(--hb-optic-gray);
}

.hb-prod-show-hero__media img {
	max-width: 100%;
	max-height: 360px;
	object-fit: contain;
}

.hb-prod-show-hero__model {
	font-size: clamp(24px, 3vw, 32px);
	font-weight: 700;
	color: var(--hb-on-background);
	margin-bottom: 12px;
}

.hb-prod-show-hero__lead {
	font-size: 15px;
	color: var(--hb-secondary);
	line-height: 1.7;
	margin-bottom: 24px;
}

.hb-prod-show-block {
	margin-bottom: 20px;
}

.hb-prod-show-block__title {
	font-size: 15px;
	font-weight: 700;
	color: var(--hb-on-background);
	margin-bottom: 8px;
	padding-left: 10px;
	border-left: 3px solid var(--hb-primary);
}

.hb-prod-show-block__body {
	font-size: 14px;
	color: var(--hb-secondary);
	line-height: 1.8;
}

.hb-prod-show-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

/* Product detail tabs */
.hb-prod-show-tabs {
	padding: 0 0 64px;
	background: var(--hb-background);
}

.hb-prod-tabs {
	background: #fff;
	border: 1px solid var(--hb-optic-gray);
	border-radius: 4px;
	overflow: hidden;
}

.hb-prod-tabs__nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	padding: 12px 16px;
	border-bottom: 1px solid var(--hb-optic-gray);
	background: var(--hb-surface-container-low);
}

.hb-prod-tabs__btn {
	flex: 0 1 auto;
	min-width: 120px;
	padding: 10px 22px;
	border: none;
	background: transparent;
	font-family: inherit;
	font-size: 14px;
	font-weight: 500;
	color: var(--hb-secondary);
	cursor: pointer;
	border-radius: 8px;
	transition: color var(--hb-transition), background var(--hb-transition), box-shadow var(--hb-transition);
}

.hb-prod-tabs__btn:hover {
	color: var(--hb-primary);
	background: rgba(255, 255, 255, 0.7);
}

.hb-prod-tabs__btn.is-active {
	color: var(--hb-primary);
	font-weight: 600;
	background: #fff;
	box-shadow: 0 1px 3px rgba(0, 55, 118, 0.1), 0 2px 8px rgba(0, 55, 118, 0.06);
}

.hb-prod-tabs__panel {
	display: none;
	padding: 32px;
}

.hb-prod-tabs__panel.is-active {
	display: block;
}

.hb-prod-tabs__content {
	font-size: 14px;
	line-height: 1.8;
	color: var(--hb-on-background);
}

@media (max-width: 767px) {
	.hb-prod-tabs__nav {
		flex-wrap: nowrap;
		justify-content: flex-start;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		padding: 10px 12px;
	}

	.hb-prod-tabs__nav::-webkit-scrollbar {
		display: none;
	}

	.hb-prod-tabs__btn {
		min-width: auto;
		flex: 0 0 auto;
		padding: 8px 16px;
		font-size: 13px;
	}

	.hb-prod-tabs__panel {
		padding: 20px 16px;
	}
}

/* Spec table */
.hb-spec-table,
.cms-content .hb-spec-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}

.hb-spec-table th,
.hb-spec-table td,
.cms-content .hb-spec-table th,
.cms-content .hb-spec-table td {
	padding: 12px 16px;
	border: 1px solid var(--hb-optic-gray);
	text-align: left;
	vertical-align: top;
}

.hb-spec-table th,
.cms-content .hb-spec-table th {
	width: 35%;
	background: var(--hb-surface-container);
	color: var(--hb-secondary);
	font-weight: 500;
}

.hb-spec-table td,
.cms-content .hb-spec-table td {
	background: #fff;
}

/* PDF panel */
.hb-prod-pdf-panel {
	text-align: center;
	padding: 40px 24px;
}

.hb-prod-pdf-panel__icon {
	font-size: 64px;
	color: var(--hb-primary);
	display: block;
	margin-bottom: 16px;
}

.hb-prod-pdf-panel p {
	color: var(--hb-secondary);
	margin-bottom: 24px;
}

.hb-prod-pdf-panel .hb-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

/* Related products */
.hb-prod-related {
	padding: 48px 0 64px;
	background: #fff;
	border-top: 1px solid var(--hb-optic-gray);
}

.hb-prod-related .hb-headline-sm {
	margin-bottom: 8px;
}

.cms-content p { margin-bottom: 1em; }
.cms-content p:last-child { margin-bottom: 0; }

/* ============================================================
   Inner pages: About / Solution / News / Contact
   ============================================================ */
.hb-page-main {
	padding-bottom: 0;
}

.hb-page-section {
	padding: 40px 0 64px;
	background: #fff;
}

.hb-page-head {
	margin-bottom: 40px;
}

.hb-page-head__title {
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	font-weight: 700;
	color: var(--hb-on-background);
	margin: 0 0 12px;
}

.hb-page-head__line {
	width: 64px;
	height: 4px;
	background: var(--hb-primary);
	margin-bottom: 16px;
}

.hb-page-head__desc {
	font-size: 15px;
	line-height: 1.8;
	color: var(--hb-secondary);
	max-width: 720px;
	margin: 0;
}

/* Company profile table */
.hb-profile-table {
	border-top: 1px solid var(--hb-optic-gray);
}

.hb-profile-row {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 0;
	border-bottom: 1px solid var(--hb-optic-gray);
}

.hb-profile-row__label {
	padding: 20px 24px;
	font-weight: 700;
	font-size: 14px;
	color: var(--hb-on-background);
	background: transparent;
}

.hb-profile-row__value {
	padding: 20px 24px;
	font-size: 14px;
	line-height: 1.8;
	color: var(--hb-on-background);
}

.hb-profile-row__value a {
	color: var(--hb-primary);
	text-decoration: underline;
}

.hb-about-extra {
	margin-top: 48px;
	padding-top: 40px;
	border-top: 1px solid var(--hb-optic-gray);
}

.hb-about-extra__list {
	list-style: none;
	padding: 0;
	margin: 20px 0 0;
	display: grid;
	gap: 12px;
}

.hb-about-extra__list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
	line-height: 1.6;
	color: var(--hb-secondary);
}

.hb-about-extra__list .material-symbols-outlined {
	color: var(--hb-primary);
	font-size: 20px;
	flex-shrink: 0;
}

/* Solution alternating rows */
.hb-solution-list {
	display: flex;
	flex-direction: column;
	gap: 48px;
}

.hb-solution-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}

.hb-solution-row--reverse .hb-solution-row__media {
	order: 2;
}

.hb-solution-row--reverse .hb-solution-row__body {
	order: 1;
}

.hb-solution-row__media {
	border-radius: var(--hb-radius-lg, 12px);
	overflow: hidden;
	background: var(--hb-surface-container);
	aspect-ratio: 16 / 10;
}

.hb-solution-row__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.hb-solution-row__body .hb-headline-sm {
	margin: 8px 0 12px;
}

.hb-solution-row__body .hb-headline-sm a {
	color: inherit;
	text-decoration: none;
}

.hb-solution-row__body .hb-headline-sm a:hover {
	color: var(--hb-primary);
}

.hb-solution-mini-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 24px;
}

.hb-solution-mini-card {
	display: block;
	text-decoration: none;
	color: inherit;
	border: 1px solid var(--hb-optic-gray);
	border-radius: var(--hb-radius-md, 8px);
	overflow: hidden;
	transition: box-shadow var(--hb-transition), border-color var(--hb-transition);
}

.hb-solution-mini-card:hover {
	border-color: var(--hb-primary);
	box-shadow: var(--hb-shadow-md, 0 4px 16px rgba(0,0,0,.08));
}

.hb-solution-mini-card img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	display: block;
}

.hb-solution-mini-card h3 {
	font-size: 14px;
	font-weight: 600;
	padding: 12px 16px;
	margin: 0;
	line-height: 1.5;
}

/* News list (inner page) */
.hb-page-news .hb-news-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.hb-page-news .hb-news-card {
	border: 1px solid var(--hb-optic-gray);
	border-radius: var(--hb-radius-md, 8px);
	overflow: hidden;
	background: #fff;
	transition: box-shadow var(--hb-transition);
}

.hb-page-news .hb-news-card:hover {
	box-shadow: var(--hb-shadow-md, 0 4px 16px rgba(0,0,0,.08));
}

.hb-page-news .hb-news-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
	color: inherit;
}

.hb-page-news .hb-news-card__media {
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--hb-surface-container);
}

.hb-page-news .hb-news-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hb-page-news .hb-news-card__body {
	padding: 20px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.hb-page-news .hb-news-card__date {
	font-size: 13px;
	color: var(--hb-secondary);
	margin-bottom: 8px;
}

.hb-page-news .hb-news-card__title {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	margin: 0 0 8px;
	color: var(--hb-on-background);
}

.hb-page-news .hb-news-card__desc {
	font-size: 13px;
	line-height: 1.7;
	color: var(--hb-secondary);
	flex: 1;
	margin: 0 0 12px;
}

.hb-label--sm {
	font-size: 10px;
	padding: 2px 8px;
}

/* Article detail */
.hb-article-wrap {
	max-width: 840px;
	margin: 0 auto;
}

.hb-article-head {
	margin-bottom: 32px;
}

.hb-article-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
	font-size: 14px;
	color: var(--hb-secondary);
}

.hb-article-hero {
	margin-bottom: 32px;
	border-radius: var(--hb-radius-lg, 12px);
	overflow: hidden;
}

.hb-article-hero img {
	width: 100%;
	height: auto;
	display: block;
}

.hb-article-body {
	font-size: 15px;
	line-height: 1.9;
	color: var(--hb-on-background);
	margin-bottom: 40px;
}

.hb-article-body h3 {
	font-size: 18px;
	margin: 1.5em 0 0.75em;
}

.hb-article-body ul {
	padding-left: 1.5em;
	margin-bottom: 1em;
}

.hb-article-foot {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	padding-top: 32px;
	border-top: 1px solid var(--hb-optic-gray);
}

.hb-article-nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-top: 32px;
	border-top: 1px solid var(--hb-optic-gray);
}

.hb-article-nav__item {
	flex: 1;
	min-width: 200px;
	text-decoration: none;
	color: inherit;
	padding: 12px 16px;
	border: 1px solid var(--hb-optic-gray);
	border-radius: var(--hb-radius-md, 8px);
	transition: border-color var(--hb-transition);
}

.hb-article-nav__item:hover {
	border-color: var(--hb-primary);
}

.hb-article-nav__label {
	display: block;
	font-size: 12px;
	color: var(--hb-secondary);
	margin-bottom: 4px;
}

.hb-article-nav__title {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
}

.hb-article-nav__item--next {
	text-align: right;
}

/* Contact form */
.hb-contact-layout {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 40px;
	align-items: start;
}

.hb-contact-aside {
	padding: 24px;
	background: var(--hb-surface-container);
	border-radius: var(--hb-radius-md, 8px);
}

.hb-contact-phone {
	font-size: 1.5rem;
	font-weight: 700;
	margin: 8px 0;
}

.hb-contact-phone a {
	color: var(--hb-primary);
	text-decoration: none;
}

.hb-contact-address {
	margin-top: 24px;
}

.hb-contact-form {
	border: 1px solid var(--hb-optic-gray);
}

.hb-contact-row {
	display: grid;
	grid-template-columns: 220px 1fr;
	border-bottom: 1px solid var(--hb-optic-gray);
}

.hb-contact-row:last-of-type {
	border-bottom: none;
}

.hb-contact-row__label {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 16px 20px;
	background: #eef3f8;
	font-size: 14px;
	font-weight: 500;
	color: var(--hb-on-background);
}

.hb-contact-row__field {
	padding: 16px 20px;
	background: #fff;
}

.hb-contact-row__field input,
.hb-contact-row__field textarea {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid var(--hb-optic-gray);
	border-radius: 4px;
	font-family: inherit;
	font-size: 14px;
	transition: border-color var(--hb-transition);
}

.hb-contact-row__field input:focus,
.hb-contact-row__field textarea:focus {
	outline: none;
	border-color: var(--hb-primary);
}

.hb-input--short {
	max-width: 280px;
}

.hb-required {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	padding: 2px 6px;
	background: #c62828;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.4;
	flex-shrink: 0;
}

.hb-contact-note {
	margin: 8px 0 0;
	font-size: 12px;
	color: var(--hb-primary);
}

.hb-contact-actions {
	padding: 24px 20px;
	text-align: center;
	background: #fafafa;
	border-top: 1px solid var(--hb-optic-gray);
}

.hb-pagination {
	margin-top: 40px;
	text-align: center;
}

/* Responsive */
@media (max-width: 991px) {
	.hb-solution-row,
	.hb-solution-row--reverse {
		grid-template-columns: 1fr;
	}

	.hb-solution-row--reverse .hb-solution-row__media,
	.hb-solution-row--reverse .hb-solution-row__body {
		order: unset;
	}

	.hb-solution-mini-grid,
	.hb-page-news .hb-news-list {
		grid-template-columns: repeat(2, 1fr);
	}

	.hb-contact-layout {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.hb-profile-row,
	.hb-contact-row {
		grid-template-columns: 1fr;
	}

	.hb-profile-row__label,
	.hb-contact-row__label {
		padding-bottom: 8px;
		border-bottom: none;
	}

	.hb-solution-mini-grid,
	.hb-page-news .hb-news-list {
		grid-template-columns: 1fr;
	}

	.hb-input--short {
		max-width: 100%;
	}
}

