:root {
	--b2b-ink: #102033;
	--b2b-muted: #6b7a86;
	--b2b-line: #dce8ee;
	--b2b-bg: #e7f8fb;
	--b2b-panel: #ffffff;
	--b2b-primary: #003b6f;
	--b2b-primary-dark: #00284c;
	--b2b-accent: #12bfd0;
	--b2b-carbon: #05263f;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	color: var(--b2b-ink);
	font-family: Inter, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	line-height: 1.6;
	background: #fff;
}

body.single-post.admin-bar {
	margin-top: -32px !important;
	padding-top: 32px !important;
}

html:has(body.single-post.admin-bar) {
	margin-top: 0 !important;
}

a {
	color: inherit;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

.b2b-container,
.site-header__inner,
.site-footer__inner {
	width: min(1180px, calc(100% - 32px));
	margin: 0 auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid rgba(18, 191, 208, 0.2);
	box-shadow: 0 10px 28px rgba(0, 59, 111, 0.08);
	backdrop-filter: blur(14px);
}

body.single-post.admin-bar .site-header {
	top: 32px !important;
	margin-top: 0 !important;
}

body.single-post.admin-bar .site-main {
	margin-top: 0 !important;
	padding-top: 0 !important;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 78px;
	gap: 24px;
}

.site-header__brand {
	display: inline-flex;
	align-items: center;
	font-weight: 700;
	text-decoration: none;
	font-size: 20px;
	color: var(--b2b-primary-dark);
}

.site-header__logo {
	width: auto;
	max-width: 260px;
	max-height: 64px;
	object-fit: contain;
}

.site-header__nav ul {
	display: flex;
	gap: 20px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.site-header__nav a {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	text-decoration: none;
	color: var(--b2b-primary-dark);
	font-weight: 600;
	transition: color 0.16s ease;
}

.site-header__nav a:hover,
.site-header__nav a:focus-visible {
	color: var(--b2b-accent);
}

.site-header__nav {
	display: flex;
	align-items: center;
	gap: 20px;
}

.site-header__tools {
	display: flex;
	align-items: center;
	gap: 12px;
}

.site-language-switcher {
	font-size: 14px;
	color: var(--b2b-primary-dark);
}

.site-language-switcher select {
	max-width: 150px;
}

.site-language-switcher--placeholder {
	padding: 6px 10px;
	border: 1px solid var(--b2b-line);
	border-radius: 4px;
}

.site-mega {
	position: relative;
	list-style: none;
}

.site-mega::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 16px;
}

.site-mega__trigger {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	border: 0;
	background: transparent;
	padding: 0;
	color: var(--b2b-header-text, #fff);
	font: inherit;
	font-weight: 600;
	cursor: pointer;
}

.site-mega__panel {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(180px, 1fr));
	gap: 26px;
	width: min(760px, calc(100vw - 40px));
	padding: 24px;
	background: #fff;
	border: 1px solid var(--b2b-line);
	border-radius: 8px;
	box-shadow: 0 18px 40px rgba(20, 32, 51, 0.14);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(8px);
	transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
	z-index: 30;
}

.site-mega__panel--cols-2 {
	grid-template-columns: repeat(2, minmax(180px, 1fr));
	width: min(560px, calc(100vw - 40px));
}

.site-mega__panel--cols-3 {
	grid-template-columns: repeat(3, minmax(180px, 1fr));
}

.site-mega__panel--cols-4 {
	grid-template-columns: repeat(4, minmax(170px, 1fr));
	width: min(960px, calc(100vw - 40px));
}

.site-mega:hover .site-mega__panel,
.site-mega:focus-within .site-mega__panel,
.site-mega.is-open .site-mega__panel {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.site-mega__column {
	display: grid;
	align-content: start;
	gap: 8px;
}

.site-mega__column strong {
	color: var(--b2b-ink);
}

.site-mega__column a {
	display: block;
	padding: 7px 10px;
	margin: 0 -10px;
	border-radius: 5px;
	color: var(--b2b-muted);
	text-decoration: none;
	transition: color 0.16s ease, background-color 0.16s ease, transform 0.16s ease;
}

.site-mega__column a:hover,
.site-mega__column a:focus {
	background: var(--b2b-mega-hover-bg, #f2f6fb);
	color: var(--b2b-mega-hover-color, var(--b2b-primary));
	transform: translateX(3px);
	outline: none;
}

.site-header__cta,
.b2b-button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 20px;
	border: 0;
	border-radius: 3px;
	background: var(--b2b-primary);
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 0;
}

.b2b-button--arrow::after {
	content: "->";
	margin-left: 14px;
	font-weight: 800;
}

.b2b-button--ghost {
	background: #fff;
	color: var(--b2b-primary-dark);
}

.b2b-button--outline {
	border: 1px solid #cbd5e1;
	background: #fff;
	color: #0b2f5f;
}

.b2b-button--small {
	min-height: 38px;
	padding: 0 14px;
	font-size: 14px;
}

.b2b-hero {
	position: relative;
	min-height: 520px;
	background: linear-gradient(135deg, #123655, #176f9b);
	background-size: cover;
	background-position: center;
	color: #fff;
}

.b2b-support-hero {
	position: relative;
	min-height: 460px;
	background: linear-gradient(135deg, #173a5c, #1a6c99);
	background-size: cover;
	background-position: center;
	color: #fff;
}

.b2b-support-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(10, 27, 48, 0.8), rgba(10, 27, 48, 0.35));
}

.b2b-support-hero__inner {
	position: relative;
	display: grid;
	align-content: center;
	min-height: 460px;
	max-width: 860px;
	padding: 72px 0;
}

.b2b-support-hero h1 {
	margin: 0 0 18px;
	font-size: clamp(38px, 6vw, 64px);
	line-height: 1.06;
}

.b2b-support-hero p {
	max-width: 680px;
	font-size: 19px;
	color: rgba(255, 255, 255, 0.88);
}

.b2b-home-hero {
	overflow: hidden;
	background:
		radial-gradient(circle at 78% 30%, rgba(18, 191, 208, 0.24), transparent 34%),
		linear-gradient(135deg, var(--home-hero-primary, #003b6f) 0%, var(--home-hero-secondary, #056f95) 48%, var(--home-hero-surface-tint, #e7f8fb) 48%, var(--home-hero-surface, #ffffff) 100%);
}

.b2b-home-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
	gap: 42px;
	align-items: center;
	min-height: 620px;
	padding: 76px 0;
}

.b2b-home-hero__content {
	color: var(--home-hero-text, #fff);
}

.b2b-home-hero .b2b-kicker {
	color: var(--home-hero-kicker, var(--b2b-accent));
}

.b2b-home-hero__content h1 {
	margin: 0 0 20px;
	font-size: clamp(42px, 6vw, 74px);
	line-height: 1.02;
}

.b2b-home-hero__content p:not(.b2b-kicker) {
	max-width: 620px;
	margin: 0;
	font-size: 19px;
	color: rgba(255, 255, 255, 0.9);
	color: color-mix(in srgb, var(--home-hero-text, #ffffff) 90%, transparent);
}

.b2b-home-hero__media {
	position: relative;
}

.b2b-home-hero__image {
	width: 100%;
	max-height: 560px;
	object-fit: contain;
	filter: drop-shadow(0 24px 36px rgba(12, 44, 92, 0.25));
}

.b2b-home-products {
	background: #fff;
}

.b2b-home-card-grid,
.b2b-home-application-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

.b2b-home-card,
.b2b-home-application-card {
	overflow: hidden;
	border: 1px solid var(--b2b-line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 14px 32px rgba(20, 32, 51, 0.08);
}

.b2b-home-card a,
.b2b-home-application-card a {
	display: block;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.b2b-home-card__image,
.b2b-home-application-card__image {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: contain;
	background: linear-gradient(180deg, #f7fcfd, var(--b2b-bg));
	padding: 20px;
}

.b2b-home-card__body,
.b2b-home-application-card {
	padding: 22px;
}

.b2b-home-card h3,
.b2b-home-application-card h3 {
	margin: 0 0 10px;
	font-size: 22px;
	line-height: 1.2;
}

.b2b-home-card p,
.b2b-home-application-card p {
	color: var(--b2b-muted);
}

.b2b-home-applications {
	background: var(--home-applications-bg, #f5f8fb);
}

.b2b-home-about {
	background: #fff;
}

.b2b-home-about__grid {
	display: grid;
	grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
	gap: 54px;
	align-items: center;
}

.b2b-home-about__content h2 {
	margin: 0 0 18px;
	font-size: 38px;
	line-height: 1.14;
}

.b2b-home-about__content p:not(.b2b-kicker) {
	color: var(--b2b-muted);
	font-size: 18px;
}

.b2b-home-strengths {
	background: var(--home-strengths-bg, #0d1b2d);
	color: var(--home-strengths-text, #fff);
}

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

.b2b-home-strength-item {
	padding: 26px 22px;
	border-top: 3px solid var(--b2b-accent);
	background: var(--home-strengths-card, rgba(255, 255, 255, 0.08));
}

.b2b-home-strength-item h3 {
	margin: 0 0 10px;
	color: var(--home-strengths-text, #fff);
	font-size: 20px;
}

.b2b-home-strength-item p {
	margin: 0;
	color: rgba(255, 255, 255, 0.74);
	color: color-mix(in srgb, var(--home-strengths-text, #ffffff) 74%, transparent);
}

.b2b-home-bottom-cta {
	overflow: hidden;
	background: linear-gradient(135deg, var(--home-cta-primary, #0870d9), var(--home-cta-secondary, #0d4d94));
	color: var(--home-cta-text, #fff);
}

.b2b-home-bottom-cta__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
	gap: 36px;
	align-items: center;
	padding: 58px 0;
}

.b2b-home-bottom-cta h2 {
	margin: 0 0 14px;
	font-size: 38px;
	line-height: 1.12;
}

.b2b-home-bottom-cta p {
	max-width: 650px;
	color: rgba(255, 255, 255, 0.84);
	color: color-mix(in srgb, var(--home-cta-text, #ffffff) 84%, transparent);
	font-size: 18px;
}

.b2b-home-bottom-cta__image {
	width: 100%;
	max-height: 300px;
	object-fit: contain;
}

.b2b-about-page {
	padding: 54px 0 76px;
	background:
		radial-gradient(circle at 50% 0, rgba(15, 111, 183, 0.12), transparent 32%),
		linear-gradient(180deg, #f6f8fb 0, #fff 540px, #f8fafc 100%);
}

.b2b-about-page__header {
	max-width: 960px;
	margin: 0 auto 34px;
	text-align: center;
}

.b2b-about-page__header h1 {
	margin: 12px 0 16px;
	color: #071629;
	font-size: clamp(40px, 5vw, 68px);
	font-weight: 800;
	line-height: 1.08;
}

.b2b-about-page__header > p:not(.b2b-kicker) {
	max-width: 760px;
	margin: 0 auto;
	color: #243044;
	font-size: 18px;
	line-height: 1.65;
}

.b2b-about-page__feature {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
	gap: 32px;
	align-items: stretch;
}

.b2b-about-page__media,
.b2b-about-page__overview,
.b2b-about-stats,
.b2b-about-quality,
.b2b-about-bottom-cta {
	border: 1px solid rgba(203, 213, 225, 0.92);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 14px 36px rgba(20, 32, 51, 0.08);
}

.b2b-about-page__media {
	margin: 0;
	overflow: hidden;
}

.b2b-about-page__image {
	width: 100%;
	height: 100%;
	min-height: 420px;
	object-fit: cover;
}

.b2b-about-page__overview {
	display: grid;
	align-content: center;
	padding: 34px 32px;
}

.b2b-about-tagline {
	margin: 0 0 16px;
	color: #073f75;
	font-size: 19px;
	font-weight: 800;
	line-height: 1.4;
}

.b2b-about-page__overview h2 {
	margin: 0 0 18px;
	color: #071629;
	font-size: clamp(30px, 3vw, 42px);
	font-weight: 800;
	line-height: 1.14;
}

.b2b-about-page__overview p {
	color: #243044;
	font-size: 17px;
	line-height: 1.72;
}

.b2b-about-stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
	margin-top: 32px;
	overflow: hidden;
}

.b2b-about-stats div {
	padding: 26px 24px;
	border-right: 1px solid var(--b2b-line);
	text-align: center;
}

.b2b-about-stats div:last-child {
	border-right: 0;
}

.b2b-about-stats strong {
	display: block;
	color: #073f75;
	font-size: 34px;
	font-weight: 800;
	line-height: 1;
}

.b2b-about-stats span {
	display: block;
	margin-top: 8px;
	color: #243044;
	font-size: 14px;
	font-weight: 700;
}

.b2b-about-capabilities {
	margin-top: 42px;
}

.b2b-about-capability-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.b2b-about-value-item {
	position: relative;
	padding: 30px 26px;
	border: 1px solid rgba(203, 213, 225, 0.92);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 12px 30px rgba(20, 32, 51, 0.06);
}

.b2b-about-value-item::before {
	content: "";
	display: block;
	width: 42px;
	height: 4px;
	margin-bottom: 18px;
	border-radius: 999px;
	background: linear-gradient(90deg, #073f75, var(--b2b-accent));
}

.b2b-about-value-item h3 {
	margin: 0 0 10px;
	color: #071629;
	font-size: 22px;
	font-weight: 800;
}

.b2b-about-value-item p {
	margin: 0;
	color: #243044;
	font-size: 16px;
	line-height: 1.6;
}

.b2b-about-quality {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
	gap: 28px;
	align-items: center;
	margin-top: 32px;
	padding: 34px;
}

.b2b-about-quality h2 {
	margin: 0 0 14px;
	color: #071629;
	font-size: 32px;
	line-height: 1.14;
}

.b2b-about-quality p {
	margin: 0;
	color: #243044;
	font-size: 17px;
	line-height: 1.7;
}

.b2b-about-quality ul {
	display: grid;
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.b2b-about-quality li {
	position: relative;
	padding-left: 30px;
	color: #243044;
	font-size: 16px;
	line-height: 1.45;
}

.b2b-about-quality li::before {
	content: "\2713";
	position: absolute;
	left: 0;
	top: 1px;
	display: inline-grid;
	place-items: center;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #073f75;
	color: #fff;
	font-size: 12px;
	font-weight: 800;
}

.b2b-about-bottom-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-top: 32px;
	padding: 30px 34px;
	background: #073f75;
	color: #fff;
}

.b2b-about-bottom-cta h2 {
	margin: 0 0 8px;
	font-size: 30px;
	line-height: 1.15;
}

.b2b-about-bottom-cta p {
	margin: 0;
	max-width: 680px;
	color: rgba(255, 255, 255, 0.86);
	font-size: 16px;
}

.b2b-contact-page {
	padding: 54px 0 76px;
	background:
		radial-gradient(circle at 50% 0, rgba(15, 111, 183, 0.12), transparent 32%),
		linear-gradient(180deg, #f6f8fb 0, #fff 540px, #f8fafc 100%);
}

.b2b-contact-page__header {
	max-width: 980px;
	margin: 0 auto 34px;
	text-align: center;
}

.b2b-contact-page__header h1 {
	margin: 12px 0 16px;
	color: #071629;
	font-size: clamp(40px, 5vw, 64px);
	font-weight: 800;
	line-height: 1.08;
}

.b2b-contact-page__header > p:not(.b2b-kicker) {
	max-width: 760px;
	margin: 0 auto;
	color: #243044;
	font-size: 18px;
	line-height: 1.65;
}

.b2b-contact-page__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.56fr);
	gap: 32px;
	align-items: start;
}

.b2b-contact-page__form,
.b2b-contact-info-card,
.b2b-contact-page__media,
.b2b-contact-trust-card {
	border: 1px solid rgba(203, 213, 225, 0.92);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 14px 36px rgba(20, 32, 51, 0.08);
}

.b2b-contact-page__form {
	padding: 34px;
}

.b2b-contact-page__form h2 {
	margin: 0 0 10px;
	color: #071629;
	font-size: 34px;
	line-height: 1.15;
}

.b2b-contact-page__form > p:not(.b2b-kicker) {
	margin: 0 0 24px;
	color: #243044;
	font-size: 16px;
	line-height: 1.65;
}

.b2b-contact-page__form .b2b-inquiry-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin-top: 22px;
}

.b2b-form-field--wide,
.b2b-contact-page__form .b2b-captcha,
.b2b-contact-page__form .b2b-form-privacy,
.b2b-contact-page__form .b2b-form-message,
.b2b-contact-page__form .b2b-button {
	grid-column: 1 / -1;
}

.b2b-form-help {
	display: block;
	margin-top: 8px;
	color: #64748b;
	font-size: 13px;
	line-height: 1.45;
}

.b2b-contact-page__info {
	display: grid;
	gap: 18px;
}

.b2b-contact-info-card,
.b2b-contact-trust-card {
	padding: 28px;
}

.b2b-contact-info-card h2 {
	margin: 0 0 18px;
	color: #071629;
	font-size: 24px;
	line-height: 1.15;
}

.b2b-contact-info-list {
	display: grid;
	gap: 14px;
}

.b2b-contact-info-list > div {
	padding-bottom: 14px;
	border-bottom: 1px solid var(--b2b-line);
}

.b2b-contact-info-list > div:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.b2b-contact-info-list strong {
	display: block;
	margin-bottom: 5px;
	color: #073f75;
	font-size: 15px;
}

.b2b-contact-info-list p {
	margin: 0;
	color: #243044;
	font-size: 15px;
	line-height: 1.55;
}

.b2b-contact-page__media {
	margin: 0;
	overflow: hidden;
}

.b2b-contact-page__image {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.b2b-contact-trust-card {
	background: #073f75;
	color: #fff;
}

.b2b-contact-trust-card strong {
	display: block;
	margin-bottom: 10px;
	font-size: 22px;
	line-height: 1.18;
}

.b2b-contact-trust-card p {
	margin: 0 0 20px;
	color: rgba(255, 255, 255, 0.86);
	font-size: 15px;
	line-height: 1.55;
}

.b2b-hero__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(5, 25, 44, 0.9), rgba(5, 25, 44, 0.56) 52%, rgba(5, 25, 44, 0.24)),
		linear-gradient(180deg, rgba(0, 0, 0, 0.15), transparent);
}

.b2b-hero__inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
	align-items: center;
	gap: 48px;
	padding: 82px 0;
}

.b2b-hero h1 {
	margin: 0 0 20px;
	font-size: clamp(38px, 6vw, 68px);
	line-height: 1.04;
	max-width: 820px;
	text-transform: uppercase;
}

.site-header__quote {
	gap: 8px;
	cursor: pointer;
}

.site-header__cta-count {
	position: absolute;
	top: -8px;
	right: -8px;
	display: inline-grid;
	place-items: center;
	min-width: 22px;
	height: 22px;
	padding: 0 6px;
	border: 2px solid #fff;
	border-radius: 999px;
	background: var(--b2b-primary);
	color: #fff;
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
}

.site-header__cta-count[hidden] {
	display: none;
}

.b2b-hero p {
	max-width: 680px;
	font-size: 19px;
	color: rgba(255, 255, 255, 0.88);
}

.b2b-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.b2b-section {
	padding: 72px 0;
}

.b2b-section-heading {
	margin-bottom: 30px;
}

.b2b-section-heading h2 {
	margin-bottom: 0;
	text-transform: uppercase;
}

.b2b-section-heading--split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
	gap: 32px;
	align-items: end;
}

.b2b-section-heading--split > p {
	margin: 0;
	color: var(--b2b-muted);
}

.b2b-kicker {
	margin: 0 0 8px;
	color: var(--b2b-accent);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.2;
	text-transform: uppercase;
}

.b2b-section:nth-of-type(even) {
	background: var(--b2b-bg);
}

.b2b-section h2,
.b2b-cta h2 {
	margin: 0 0 16px;
	font-size: 34px;
	line-height: 1.16;
}

.b2b-text-link {
	display: inline-flex;
	align-items: center;
	color: var(--b2b-primary-dark);
	font-weight: 800;
	text-decoration: none;
	text-transform: uppercase;
}

.b2b-text-link::after {
	content: "->";
	margin-left: 10px;
	color: var(--b2b-accent);
}

.b2b-section-intro {
	max-width: 760px;
	color: var(--b2b-muted);
	margin-bottom: 34px;
}

.b2b-split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
	align-items: center;
	gap: 48px;
}

.b2b-split--reverse {
	grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
}

.b2b-media-image,
.b2b-video {
	width: 100%;
	border-radius: 8px;
	box-shadow: 0 18px 45px rgba(20, 32, 51, 0.14);
}

.b2b-video {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: #0f1722;
}

.b2b-video iframe,
.b2b-video__poster {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border: 0;
}

.b2b-video iframe {
	display: none;
}

.b2b-video.is-playing iframe {
	display: block;
}

.b2b-video.is-playing .b2b-video__poster,
.b2b-video.is-playing .b2b-video__play {
	display: none;
}

.b2b-video__play {
	position: absolute;
	inset: 50% auto auto 50%;
	transform: translate(-50%, -50%);
	width: 82px;
	height: 82px;
	border: 0;
	border-radius: 50%;
	background: rgba(233, 91, 45, 0.95);
	color: #fff;
	font-weight: 700;
	cursor: pointer;
}

.b2b-product-group {
	margin-top: 42px;
}

.b2b-product-detail-hero {
	padding: 64px 0;
	background: var(--b2b-bg);
}

.b2b-truck-detail-hero {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 46%, rgba(255, 255, 255, 0.58) 100%),
		linear-gradient(135deg, #f8f8f8 0%, #e5e7eb 48%, #b8c0cc 100%);
}

.b2b-truck-detail-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0));
	pointer-events: none;
}

.b2b-truck-detail-hero > .b2b-container {
	position: relative;
}

.b2b-product-detail-hero--industrial {
	background:
		radial-gradient(circle at 12% 8%, rgba(15, 111, 183, 0.13), transparent 32%),
		linear-gradient(135deg, #f8fafc 0%, #eef4f8 48%, #dbe5ec 100%);
}

.b2b-product-detail-hero__grid {
	display: grid;
	grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
	gap: 48px;
	align-items: stretch;
}

.b2b-product-gallery__main {
	position: relative;
	display: grid;
	place-items: center;
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 6px;
	background: #fff;
	box-shadow: 0 22px 46px rgba(0, 0, 0, 0.12);
}

.b2b-product-gallery__zoom-trigger {
	display: grid;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: zoom-in;
}

.b2b-product-gallery__image {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: contain;
	padding: 20px;
}

.b2b-product-gallery__zoom-button {
	position: absolute;
	top: 14px;
	right: 14px;
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(7, 22, 41, 0.14);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 12px 28px rgba(7, 22, 41, 0.16);
	cursor: zoom-in;
	transition: transform 0.18s ease, background 0.18s ease;
}

.b2b-product-gallery__zoom-button:hover,
.b2b-product-gallery__zoom-button:focus-visible {
	background: #fff;
	transform: translateY(-1px);
}

.b2b-product-gallery__zoom-button span {
	position: relative;
	display: block;
	width: 16px;
	height: 16px;
	border: 2px solid var(--b2b-primary-dark);
	border-radius: 999px;
}

.b2b-product-gallery__zoom-button span::before,
.b2b-product-gallery__zoom-button span::after {
	content: "";
	position: absolute;
	background: var(--b2b-primary-dark);
}

.b2b-product-gallery__zoom-button span::before {
	right: -8px;
	bottom: -6px;
	width: 9px;
	height: 2px;
	transform: rotate(45deg);
	transform-origin: left center;
}

.b2b-product-gallery__zoom-button span::after {
	inset: 3px;
	background:
		linear-gradient(var(--b2b-primary-dark), var(--b2b-primary-dark)) center / 8px 2px no-repeat,
		linear-gradient(var(--b2b-primary-dark), var(--b2b-primary-dark)) center / 2px 8px no-repeat;
}

.b2b-product-lightbox {
	position: fixed;
	inset: 0;
	z-index: 140;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.b2b-product-lightbox.is-open {
	display: flex;
}

.b2b-product-lightbox__overlay {
	position: absolute;
	inset: 0;
	background: rgba(7, 22, 41, 0.82);
	backdrop-filter: blur(6px);
}

.b2b-product-lightbox__dialog {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	width: min(1120px, 96vw);
	max-height: 92vh;
	padding: 18px;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.b2b-product-lightbox__dialog img {
	display: block;
	width: auto;
	max-width: 100%;
	max-height: calc(92vh - 36px);
	object-fit: contain;
}

.b2b-product-lightbox__close {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 2;
	width: 42px;
	height: 42px;
	border: 0;
	border-radius: 999px;
	background: rgba(7, 22, 41, 0.86);
	color: #fff;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
}

.b2b-product-hero-notes {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin-top: 14px;
}

.b2b-product-hero-notes div {
	padding: 16px;
	border: 1px solid rgba(203, 213, 225, 0.92);
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.88);
	box-shadow: 0 12px 28px rgba(20, 32, 51, 0.06);
}

.b2b-product-hero-notes strong,
.b2b-product-hero-notes span {
	display: block;
}

.b2b-product-hero-notes strong {
	margin-bottom: 5px;
	color: var(--b2b-primary-dark);
	font-size: 20px;
	line-height: 1;
}

.b2b-product-hero-notes span {
	color: var(--b2b-muted);
	font-size: 13px;
	line-height: 1.35;
}

.b2b-product-gallery__thumbs {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	margin-top: 14px;
}

.b2b-product-gallery__thumbs button {
	padding: 6px;
	border: 1px solid var(--b2b-line);
	border-radius: 6px;
	background: #fff;
	cursor: pointer;
}

.b2b-product-gallery__thumbs img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: contain;
}

.b2b-product-summary {
	padding: 34px;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 6px;
	box-shadow: 0 24px 58px rgba(0, 0, 0, 0.12);
}

.b2b-product-summary__eyebrow {
	margin: 0 0 10px;
	color: var(--b2b-primary);
	font-weight: 700;
}

.b2b-product-summary h1 {
	margin: 0 0 18px;
	font-size: clamp(34px, 5vw, 52px);
	line-height: 1.1;
	text-transform: uppercase;
}

.b2b-product-summary__desc {
	color: var(--b2b-muted);
	font-size: 18px;
}

.b2b-product-summary__badges {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin-top: 22px;
}

.b2b-product-summary__badges span {
	display: flex;
	align-items: center;
	min-height: 44px;
	padding: 10px 12px;
	background: #f5f7fa;
	border: 1px solid rgba(203, 213, 225, 0.92);
	border-left: 4px solid var(--b2b-accent);
	border-radius: 4px;
	color: var(--b2b-ink);
	font-size: 12px;
	font-weight: 800;
	line-height: 1.25;
	text-transform: uppercase;
}

.b2b-product-summary .b2b-actions {
	margin-top: 26px;
}

.b2b-button--outline {
	border: 1px solid rgba(15, 111, 183, 0.25);
	background: #fff;
	color: var(--b2b-primary-dark);
}

.b2b-product-spec-table {
	width: 100%;
	margin-top: 28px;
	border-collapse: collapse;
	font-size: 15px;
}

.b2b-product-spec-table th,
.b2b-product-spec-table td {
	padding: 12px 10px;
	border-bottom: 1px solid var(--b2b-line);
	text-align: left;
	vertical-align: top;
}

.b2b-product-spec-table th {
	width: 34%;
	color: var(--b2b-muted);
	font-weight: 700;
}

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

.b2b-support-stats div {
	padding: 24px;
	border: 1px solid var(--b2b-line);
	border-radius: 8px;
	background: #fff;
	text-align: center;
}

.b2b-support-stats strong {
	display: block;
	font-size: 38px;
	line-height: 1;
	color: var(--b2b-primary);
}

.b2b-support-stats span {
	display: block;
	margin-top: 10px;
	color: var(--b2b-muted);
}

.b2b-contact-info-list {
	display: grid;
	gap: 14px;
	margin-top: 24px;
}

.b2b-contact-info-list div {
	padding: 16px;
	border-left: 4px solid var(--b2b-primary);
	background: #fff;
}

.b2b-contact-info-list p {
	margin: 6px 0 0;
	color: var(--b2b-muted);
}

.b2b-product-content__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
	gap: 42px;
	align-items: start;
}

.b2b-product-main-copy {
	min-width: 0;
}

.b2b-product-main-copy > p:not(.b2b-kicker) {
	color: var(--b2b-muted);
	font-size: 17px;
	line-height: 1.72;
}

.b2b-product-process {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	margin-top: 28px;
}

.b2b-product-process__item {
	padding: 20px;
	border: 1px solid rgba(203, 213, 225, 0.92);
	border-radius: 8px;
	background: #fff;
}

.b2b-product-process__item span {
	display: inline-flex;
	margin-bottom: 14px;
	color: var(--b2b-accent);
	font-size: 13px;
	font-weight: 900;
}

.b2b-product-process__item h3 {
	margin: 0 0 8px;
	color: var(--b2b-ink);
	font-size: 18px;
	line-height: 1.24;
}

.b2b-product-process__item p {
	margin: 0;
	color: var(--b2b-muted);
}

.b2b-product-detail-panel {
	display: grid;
	grid-template-columns: minmax(0, 1.12fr) minmax(260px, 0.88fr);
	gap: 18px;
	margin-top: 20px;
	padding: 22px;
	border: 1px solid rgba(203, 213, 225, 0.92);
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(7, 63, 117, 0.05), transparent 42%),
		#fff;
}

.b2b-product-detail-panel h3 {
	margin: 0 0 12px;
	color: var(--b2b-ink);
	font-size: 18px;
	line-height: 1.25;
}

.b2b-product-detail-panel ul {
	display: grid;
	gap: 9px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.b2b-product-detail-panel li {
	position: relative;
	padding-left: 22px;
	color: var(--b2b-muted);
	line-height: 1.45;
}

.b2b-product-detail-panel li::before {
	content: "";
	position: absolute;
	top: 0.68em;
	left: 0;
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: var(--b2b-accent);
	transform: translateY(-50%);
}

.b2b-product-side-card {
	position: sticky;
	top: 94px;
	padding: 22px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 6px;
	background: #fff;
	box-shadow: 0 14px 36px rgba(20, 32, 51, 0.08);
}

.b2b-product-side-card--compact {
	padding: 18px;
}

.b2b-product-side-card--compact h2 {
	margin-bottom: 14px;
	font-size: 30px;
}

.b2b-product-side-card--compact .b2b-inquiry-form {
	gap: 10px;
	padding: 18px;
}

.b2b-product-side-card--compact .b2b-inquiry-form label {
	gap: 6px;
	font-size: 14px;
}

.b2b-product-side-card--compact .b2b-inquiry-form input:not([type="file"]),
.b2b-product-side-card--compact .b2b-inquiry-form textarea {
	min-height: 42px;
	padding: 9px 10px;
}

.b2b-product-side-card--compact .b2b-inquiry-form textarea {
	min-height: 112px;
}

.b2b-product-side-card--compact .b2b-form-field--wide input[type="file"] {
	padding: 10px;
}

.b2b-product-side-card h2,
.b2b-product-main-copy h2 {
	text-transform: uppercase;
}

.b2b-product-selection-cta {
	background: #f6fbfd;
}

.b2b-product-selection-cta__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 24px;
	align-items: center;
	padding: 28px 0;
	border-top: 1px solid var(--b2b-border);
	border-bottom: 1px solid var(--b2b-border);
}

.b2b-product-selection-cta h2 {
	margin: 0 0 10px;
	color: var(--b2b-primary-dark);
	font-size: clamp(28px, 4vw, 44px);
	text-transform: uppercase;
}

.b2b-product-selection-cta p:not(.b2b-kicker) {
	max-width: 760px;
	margin: 0;
	color: var(--b2b-muted);
}

.b2b-product-feature-grid .b2b-feature-item {
	border-left-color: var(--b2b-accent);
	background: #fff;
}

.b2b-product-application-card .b2b-industry-card__image {
	object-fit: cover;
}

.b2b-product-grid,
.b2b-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.b2b-product-card,
.b2b-testimonial,
.b2b-logo {
	background: var(--b2b-panel);
	border: 1px solid var(--b2b-line);
	border-radius: 8px;
	padding: 20px;
}

.b2b-product-card__image {
	aspect-ratio: 4 / 3;
	object-fit: cover;
	width: 100%;
	border-radius: 6px;
	margin-bottom: 16px;
	background: var(--b2b-bg);
}

.b2b-product-card h4,
.b2b-feature-item h3 {
	margin: 0 0 8px;
	font-size: 20px;
}

.b2b-product-card__specs {
	color: var(--b2b-primary-dark);
	font-weight: 700;
}

.b2b-feature-list {
	display: grid;
	gap: 16px;
}

.b2b-feature-item {
	padding: 18px;
	border-left: 4px solid var(--b2b-accent);
	background: #fff;
}

.b2b-landing-industries,
.b2b-landing-specification,
.b2b-landing-faq-guide {
	background: #fff;
}

.b2b-industry-grid,
.b2b-manufacturing-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.b2b-industry-card,
.b2b-manufacturing-card {
	overflow: hidden;
	border: 1px solid var(--b2b-line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 16px 34px rgba(20, 32, 51, 0.08);
}

.b2b-industry-card__image,
.b2b-manufacturing-card__image {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	background: var(--b2b-bg);
}

.b2b-industry-card__body,
.b2b-manufacturing-card {
	padding: 22px;
}

.b2b-industry-card h3,
.b2b-manufacturing-card h3 {
	margin: 0 0 10px;
	font-size: 20px;
	line-height: 1.25;
}

.b2b-industry-card p,
.b2b-manufacturing-card p {
	color: var(--b2b-muted);
}

.b2b-landing-advantages,
.b2b-landing-manufacturing {
	background: var(--b2b-bg);
}

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

.b2b-advantage-item {
	position: relative;
	min-height: 210px;
	padding: 28px 22px;
	border-top: 4px solid var(--b2b-accent);
	background: #fff;
	box-shadow: 0 14px 30px rgba(20, 32, 51, 0.07);
}

.b2b-advantage-item span {
	display: block;
	margin-bottom: 24px;
	color: rgba(20, 32, 51, 0.22);
	font-size: 34px;
	font-weight: 800;
	line-height: 1;
}

.b2b-advantage-item h3 {
	margin: 0 0 10px;
	font-size: 20px;
}

.b2b-advantage-item p {
	margin: 0;
	color: var(--b2b-muted);
}

.b2b-spec-table-wrap {
	overflow-x: auto;
	border: 1px solid var(--b2b-line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 16px 34px rgba(20, 32, 51, 0.08);
}

.b2b-spec-table {
	width: 100%;
	min-width: 620px;
	border-collapse: collapse;
}

.b2b-spec-table th,
.b2b-spec-table td {
	padding: 16px 20px;
	border-bottom: 1px solid var(--b2b-line);
	text-align: left;
	vertical-align: top;
}

.b2b-spec-table th {
	width: 34%;
	background: #f7f9fb;
	color: var(--b2b-ink);
	font-weight: 800;
}

.b2b-spec-table tr:last-child th,
.b2b-spec-table tr:last-child td {
	border-bottom: 0;
}

.b2b-faq-guide-layout {
	display: grid;
	grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
	gap: 44px;
	align-items: start;
}

.b2b-faq-guide-media {
	position: sticky;
	top: 104px;
}

.b2b-faq-guide-content {
	max-width: 840px;
}

.b2b-faq-guide-content h2 {
	margin-top: 0;
}

.b2b-faq-guide-content h3 {
	margin: 32px 0 10px;
	font-size: 24px;
	line-height: 1.2;
}

.b2b-faq-guide-content p,
.b2b-faq-guide-content li {
	color: var(--b2b-muted);
}

.b2b-truck-catalog-hero {
	position: relative;
	min-height: 360px;
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.9) 38%, rgba(255, 255, 255, 0.34) 70%, rgba(255, 255, 255, 0.08) 100%),
		linear-gradient(135deg, #f8f8f8 0%, #e5e7eb 48%, #b8c0cc 100%);
}

.b2b-truck-catalog-hero__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	min-height: 360px;
	padding: 64px 0;
}

.b2b-truck-catalog-hero h1 {
	max-width: 720px;
	margin: 0 0 16px;
	color: #050505;
	font-size: clamp(42px, 6vw, 76px);
	line-height: 0.98;
	text-transform: uppercase;
}

.b2b-truck-catalog-hero p:not(.b2b-kicker) {
	max-width: 620px;
	margin: 0;
	color: #222;
	font-size: 18px;
}

.b2b-catalog-categories {
	position: relative;
	z-index: 2;
	margin-top: -52px;
}

.b2b-catalog-categories__grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 12px;
}

.b2b-catalog-category {
	display: grid;
	align-items: end;
	min-height: 112px;
	padding: 18px;
	background: linear-gradient(180deg, #ffffff, #f4f5f7);
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 6px;
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
	color: #111;
	text-decoration: none;
}

.b2b-catalog-category span {
	display: block;
	padding: 12px 10px;
	background: #151515;
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	text-align: center;
	text-transform: uppercase;
}

.b2b-catalog-category span::after {
	content: "";
	display: block;
	width: 28px;
	height: 2px;
	margin: 8px auto 0;
	background: var(--b2b-accent);
}

.b2b-catalog-section {
	background: #fff;
}

.b2b-truck-product-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.b2b-truck-card {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 6px;
	box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.b2b-truck-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 48px rgba(0, 0, 0, 0.14);
}

.b2b-truck-card__link {
	display: grid;
	height: 100%;
	padding: 18px;
	color: inherit;
	text-decoration: none;
}

.b2b-truck-card__media {
	display: grid;
	place-items: center;
	aspect-ratio: 4 / 3;
	margin: -18px -18px 18px;
	background: linear-gradient(180deg, #fbfbfb, #eef1f4);
	border-radius: 6px 6px 0 0;
}

.b2b-truck-card__image {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 16px;
}

.b2b-truck-card__placeholder {
	width: 72%;
	aspect-ratio: 16 / 9;
	background: linear-gradient(135deg, #dfe3e8, #ffffff);
	border-radius: 4px;
}

.b2b-truck-card__category {
	margin: 0 0 8px;
	color: var(--b2b-accent);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.b2b-truck-card h2 {
	margin: 0 0 10px;
	color: #111;
	font-size: 20px;
	line-height: 1.25;
}

.b2b-truck-card p {
	margin: 0 0 14px;
	color: var(--b2b-muted);
}

.b2b-truck-card__specs {
	display: grid;
	gap: 6px;
	padding: 12px 0 0;
	margin: auto 0 14px;
	border-top: 1px solid var(--b2b-line);
	color: #2b3440;
	font-size: 14px;
	list-style: none;
}

.b2b-card-more {
	color: var(--b2b-accent);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
}

.b2b-truck-feature-grid .b2b-feature-item {
	border-left-color: var(--b2b-accent);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.b2b-switcher__tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 24px 0;
}

.b2b-switcher__tabs button {
	border: 1px solid var(--b2b-line);
	background: #fff;
	border-radius: 4px;
	padding: 10px 16px;
	cursor: pointer;
}

.b2b-switcher__tabs .is-active {
	background: var(--b2b-primary);
	color: #fff;
	border-color: var(--b2b-primary);
}

.b2b-switcher__panel {
	display: none;
	padding: 28px;
	background: #fff;
	border: 1px solid var(--b2b-line);
	border-radius: 8px;
}

.b2b-switcher__panel.is-active {
	display: block;
}

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

.b2b-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 120px;
	text-align: center;
	color: var(--b2b-muted);
}

.b2b-cta {
	padding: 76px 0;
	background: var(--b2b-primary-dark);
	background-size: cover;
	background-position: center;
	color: #fff;
	text-align: center;
}

.b2b-cta__inner {
	max-width: 820px;
}

.b2b-form-section__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
	gap: 42px;
	align-items: start;
}

.b2b-inquiry-form {
	display: grid;
	gap: 14px;
	padding: 24px;
	background: #fff;
	border: 1px solid var(--b2b-line);
	border-radius: 8px;
	box-shadow: 0 14px 36px rgba(20, 32, 51, 0.1);
}

.b2b-inquiry-form label {
	display: grid;
	gap: 6px;
	font-weight: 700;
}

.b2b-inquiry-form input,
.b2b-inquiry-form textarea {
	width: 100%;
	border: 1px solid var(--b2b-line);
	border-radius: 4px;
	padding: 11px 12px;
	font: inherit;
}

.b2b-form-message {
	padding: 12px;
	background: #e8f6ed;
	border-left: 4px solid #2f9e55;
	border-radius: 4px;
	color: #17452a;
	font-weight: 700;
	line-height: 1.5;
}

.b2b-form-message--success {
	background: #e8f6ed;
	border-left-color: #2f9e55;
	color: #17452a;
}

.b2b-form-message--error {
	background: #fdecec;
	border-left-color: #d94848;
	color: #7a1d1d;
}

.b2b-captcha {
	min-height: 72px;
}

.b2b-catalog-hero {
	background:
		radial-gradient(circle at 82% 16%, rgba(18, 191, 208, 0.2), transparent 30%),
		linear-gradient(135deg, #f8fdff 0%, #e7f8fb 52%, #ffffff 100%);
	border-bottom: 1px solid rgba(18, 191, 208, 0.18);
}

.b2b-catalog-hero__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	min-height: 320px;
	padding: 56px 0;
}

.b2b-catalog-hero h1 {
	max-width: 760px;
	margin: 0 0 16px;
	color: var(--b2b-primary-dark);
	font-size: 54px;
	line-height: 1.03;
}

.b2b-catalog-hero p:not(.b2b-kicker) {
	max-width: 720px;
	margin: 0;
	color: var(--b2b-muted);
	font-size: 18px;
}

.b2b-catalog-workspace {
	background: #fff;
}

.b2b-catalog-toolbar {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 24px;
}

.b2b-catalog-toolbar h2 {
	margin: 0;
	color: var(--b2b-primary-dark);
	font-size: 34px;
}

.b2b-catalog-search {
	display: grid;
	gap: 8px;
	min-width: min(360px, 100%);
	font-weight: 700;
	color: var(--b2b-primary-dark);
}

.b2b-catalog-search input {
	width: 100%;
	padding: 13px 14px;
	border: 1px solid var(--b2b-line);
	border-radius: 8px;
	font: inherit;
}

.b2b-catalog-layout {
	display: grid;
	grid-template-columns: 300px minmax(0, 1fr);
	gap: 24px;
	align-items: start;
}

.b2b-catalog-layout--full {
	grid-template-columns: minmax(0, 1fr);
}

.b2b-catalog-filters {
	position: sticky;
	top: 102px;
	max-height: calc(100vh - 124px);
	overflow-y: auto;
	border: 1px solid var(--b2b-line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 16px 38px rgba(0, 59, 111, 0.08);
	scrollbar-gutter: stable;
}

.b2b-catalog-filters {
	padding: 18px;
}

.b2b-catalog-filters__header,
.b2b-quote-cart__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.b2b-catalog-filters h3,
.b2b-quote-cart h3 {
	margin: 0;
	color: var(--b2b-primary-dark);
}

.b2b-catalog-filters__header button {
	border: 0;
	background: transparent;
	color: var(--b2b-accent);
	font: inherit;
	font-weight: 800;
	cursor: pointer;
}

.b2b-catalog-filters fieldset {
	display: grid;
	gap: 8px;
	padding: 16px 0 0;
	margin: 16px 0 0;
	border: 0;
	border-top: 1px solid var(--b2b-line);
}

.b2b-catalog-filters legend {
	padding: 0 0 6px;
	color: var(--b2b-primary-dark);
	font-weight: 800;
}

.b2b-catalog-filters label {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--b2b-muted);
	font-size: 14px;
}

.b2b-catalog-count {
	margin: 0 0 16px;
	color: var(--b2b-muted);
	font-weight: 700;
}

.b2b-catalog-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	align-items: stretch;
}

.b2b-catalog-card {
	display: grid;
	grid-template-rows: auto minmax(0, 1fr);
	min-width: 0;
	height: 100%;
	overflow: hidden;
	border: 1px solid var(--b2b-line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 12px 30px rgba(0, 59, 111, 0.07);
}

.b2b-catalog-card[hidden] {
	display: none;
}

.b2b-catalog-card__media {
	display: grid;
	place-items: center;
	aspect-ratio: 1 / 1;
	min-height: 0;
	background: linear-gradient(180deg, #f7fcfd, #e7f8fb);
}

.b2b-catalog-card__image-link {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.b2b-catalog-card__image-link:focus-visible {
	outline: 3px solid var(--b2b-accent);
	outline-offset: -3px;
}

.b2b-catalog-card__image {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: clamp(12px, 2vw, 20px);
}

.b2b-catalog-card__placeholder {
	width: 74%;
	aspect-ratio: 1 / 1;
	border-radius: 8px;
	background: #dce8ee;
}

.b2b-catalog-card__body {
	display: grid;
	grid-template-rows: auto auto auto 1fr auto;
	gap: 12px;
	padding: 18px;
	min-width: 0;
	height: 100%;
}

.b2b-catalog-card__category {
	margin: 0;
	color: var(--b2b-accent);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.b2b-catalog-card h2 {
	display: -webkit-box;
	margin: 0;
	overflow: hidden;
	color: var(--b2b-primary-dark);
	font-size: 19px;
	line-height: 1.25;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.b2b-catalog-card p {
	margin: 0;
	color: var(--b2b-muted);
}

.b2b-catalog-card__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.b2b-catalog-card__badges span {
	padding: 5px 8px;
	border-radius: 999px;
	background: #e7f8fb;
	color: var(--b2b-primary-dark);
	font-size: 12px;
	font-weight: 800;
}

.b2b-catalog-card__specs {
	display: grid;
	gap: 6px;
	padding: 10px 0 0;
	margin: 0;
	border-top: 1px solid var(--b2b-line);
	color: var(--b2b-muted);
	font-size: 13px;
	list-style: none;
}

.b2b-catalog-card__specs li {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.b2b-catalog-card__actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	align-self: end;
	margin-top: 12px;
}

.b2b-catalog-card__actions .b2b-button {
	justify-content: center;
	min-height: 40px;
	padding-inline: 12px;
}

.b2b-quote-cart {
	padding: 18px;
}

.b2b-quote-bar {
	position: fixed;
	right: 24px;
	bottom: 22px;
	z-index: 30;
	display: flex;
	align-items: center;
	gap: 18px;
	max-width: min(560px, calc(100vw - 32px));
	padding: 14px 16px;
	border: 1px solid rgba(18, 191, 208, 0.32);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 18px 46px rgba(0, 59, 111, 0.18);
	backdrop-filter: blur(14px);
}

.b2b-quote-bar[hidden] {
	display: none;
}

.b2b-quote-bar div {
	display: grid;
	gap: 2px;
}

.b2b-quote-bar strong {
	color: var(--b2b-primary-dark);
}

.b2b-quote-bar span {
	color: var(--b2b-muted);
	font-size: 14px;
}

.b2b-quote-cart-modal {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: none;
}

.b2b-quote-cart-modal.is-open {
	display: block;
}

.b2b-quote-cart-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(5, 38, 63, 0.58);
}

.b2b-quote-cart-modal__dialog {
	position: absolute;
	top: 50%;
	left: 50%;
	width: min(720px, calc(100vw - 32px));
	max-height: min(760px, calc(100vh - 36px));
	overflow: auto;
	padding: 28px;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
	transform: translate(-50%, -50%);
}

.b2b-quote-cart__header strong {
	display: inline-grid;
	place-items: center;
	min-width: 34px;
	height: 34px;
	border-radius: 999px;
	background: var(--b2b-primary);
	color: #fff;
}

.b2b-quote-cart__header-actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.b2b-quote-cart__header-actions button {
	border: 0;
	background: transparent;
	color: var(--b2b-accent);
	font-weight: 800;
	cursor: pointer;
}

.b2b-quote-cart__header-actions button[hidden] {
	display: none;
}

.b2b-quote-cart-modal .b2b-quote-cart__header {
	margin-bottom: 16px;
}

.b2b-quote-cart__items {
	display: grid;
	gap: 10px;
	max-height: 320px;
	overflow: auto;
	padding: 16px 0;
}

.b2b-quote-cart-modal .b2b-quote-cart__items {
	max-height: 260px;
	padding-top: 0;
}

.b2b-quote-cart__empty {
	margin: 0;
	color: var(--b2b-muted);
}

.b2b-quote-cart__item {
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr);
	gap: 10px;
	align-items: center;
	padding: 10px;
	border: 1px solid var(--b2b-line);
	border-radius: 8px;
	background: #f8fdff;
}

.b2b-quote-cart__item img {
	width: 58px;
	aspect-ratio: 1 / 1;
	object-fit: contain;
	border-radius: 6px;
	background: #fff;
}

.b2b-quote-cart__item a {
	display: block;
	color: var(--b2b-primary-dark);
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
}

.b2b-quote-cart__item div div {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 8px;
}

.b2b-quote-cart__item input {
	width: 64px;
	padding: 6px;
	border: 1px solid var(--b2b-line);
	border-radius: 6px;
}

.b2b-quote-cart__item button {
	border: 0;
	background: transparent;
	color: #c2413b;
	font: inherit;
	font-size: 13px;
	font-weight: 800;
	cursor: pointer;
}

.b2b-quote-form {
	padding: 0;
	border: 0;
	box-shadow: none;
}

.b2b-quote-form .b2b-button:disabled {
	cursor: not-allowed;
	opacity: 0.5;
}

/* Truck manufacturer demo preset overrides. */
.b2b-support-hero__overlay,
.b2b-hero__overlay {
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.05));
}

.b2b-support-hero__inner,
.b2b-hero__content {
	color: #111;
}

.b2b-support-hero h1,
.b2b-hero h1,
.b2b-section h2,
.b2b-cta h2 {
	text-transform: uppercase;
	font-weight: 900;
	letter-spacing: 0;
}

.b2b-support-hero h1,
.b2b-hero h1 {
	color: #080808;
}

.b2b-support-hero p,
.b2b-hero p {
	color: #222;
}

.b2b-product-card {
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.b2b-product-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
}

.b2b-product-card h3,
.b2b-product-card h4 {
	position: relative;
	margin: 0 -20px 12px;
	padding: 14px 18px;
	background: #151515;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	font-size: 16px;
}

.b2b-product-card h3::after,
.b2b-product-card h4::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 7px;
	width: 34px;
	height: 2px;
	background: var(--b2b-accent);
	transform: translateX(-50%);
}

.b2b-product-card__specs {
	color: var(--b2b-primary);
}

.b2b-feature-item {
	border-left-color: var(--b2b-accent);
}

.b2b-blog-archive-hero {
	background: linear-gradient(135deg, #123655, #176f9b);
	color: #fff;
}

.b2b-blog-archive-hero__inner {
	display: grid;
	align-content: center;
	min-height: 330px;
	padding: 70px 0;
}

.b2b-blog-archive-hero h1 {
	max-width: 840px;
	margin: 0 0 14px;
	font-size: clamp(40px, 6vw, 70px);
	line-height: 1;
	text-transform: uppercase;
}

.b2b-blog-archive-hero p:not(.b2b-kicker) {
	max-width: 680px;
	margin: 0;
	color: rgba(255, 255, 255, 0.86);
	font-size: 18px;
}

.b2b-blog-archive {
	background: #fff;
}

.b2b-blog-grid {
	display: grid;
	grid-template-columns: repeat(var(--b2b-blog-columns, 3), minmax(0, 1fr));
	gap: 28px;
}

.b2b-blog-card {
	overflow: hidden;
	border: 1px solid var(--b2b-line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 14px 32px rgba(20, 32, 51, 0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.b2b-blog-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 44px rgba(20, 32, 51, 0.13);
}

.b2b-blog-card a {
	display: grid;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.b2b-blog-card__media {
	aspect-ratio: 16 / 10;
	background: linear-gradient(135deg, #e8edf2, #fff);
}

.b2b-blog-archive--ratio-4-3 .b2b-blog-card__media {
	aspect-ratio: 4 / 3;
}

.b2b-blog-archive--ratio-1-1 .b2b-blog-card__media {
	aspect-ratio: 1 / 1;
}

.b2b-blog-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.b2b-blog-card__body {
	display: grid;
	align-content: start;
	gap: 12px;
	padding: 24px;
}

.b2b-blog-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 14px;
	color: var(--b2b-accent);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
}

.b2b-blog-card h2 {
	margin: 0;
	color: var(--b2b-blog-card-title, var(--b2b-ink));
	font-size: var(--b2b-blog-title-size, 22px);
	line-height: 1.22;
}

.b2b-blog-card p {
	margin: 0;
	color: var(--b2b-blog-card-text, var(--b2b-muted));
	font-size: var(--b2b-blog-excerpt-size, 16px);
}

.b2b-blog-card strong {
	color: var(--b2b-blog-card-accent, var(--b2b-accent));
	font-size: 14px;
	text-transform: uppercase;
}

.b2b-blog-card__meta {
	color: var(--b2b-blog-card-accent, var(--b2b-accent));
}

.b2b-blog-archive--flat .b2b-blog-card {
	box-shadow: none;
}

.b2b-blog-archive--minimal .b2b-blog-card {
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.b2b-blog-archive--minimal .b2b-blog-card__body {
	padding: 18px 0 0;
}

.b2b-pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin-top: 44px;
}

@media (max-width: 980px) {
	.b2b-blog-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.b2b-blog-grid {
		grid-template-columns: 1fr;
	}
}

.b2b-pagination .page-numbers {
	min-width: 42px;
	padding: 10px 14px;
	border: 1px solid var(--b2b-line);
	border-radius: 4px;
	background: #fff;
	text-align: center;
	text-decoration: none;
	font-weight: 700;
}

.b2b-pagination .current {
	background: var(--b2b-primary-dark);
	color: #fff;
}

.b2b-post-section {
	background:
		radial-gradient(circle at 50% 0, rgba(15, 111, 183, 0.12), transparent 32%),
		linear-gradient(180deg, #f6f8fb 0, #fff 520px, #f8fafc 100%);
	padding: 0 0 78px;
}

.b2b-post-hero {
	padding: 50px 0 30px;
	overflow: hidden;
}

.b2b-post-hero__inner {
	display: grid;
	gap: 0;
}

.b2b-post-header {
	max-width: 980px;
	margin: 0 auto;
	text-align: center;
}

.b2b-post-header h1 {
	margin: 12px auto 18px;
	max-width: 980px;
	color: #071629;
	font-size: clamp(36px, 4.1vw, 54px);
	font-weight: 800;
	line-height: 1.1;
}

.b2b-post-meta {
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 10px 24px;
	color: #21324a;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0;
	text-transform: none;
}

.b2b-post-meta::before,
.b2b-post-meta::after {
	display: none;
}

.b2b-post-meta__item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.b2b-post-meta__item::before {
	display: inline-grid;
	place-items: center;
	width: 18px;
	height: 18px;
	border: 1.5px solid #123a63;
	border-radius: 50%;
	color: #123a63;
	font-size: 11px;
	font-weight: 800;
	line-height: 1;
}

.b2b-post-meta__item--author::before {
	content: "i";
}

.b2b-post-meta__item--date::before {
	content: "";
	border-radius: 3px;
	background: linear-gradient(#123a63 0 3px, transparent 3px);
}

.b2b-post-meta__item--time::before {
	content: "";
	background:
		linear-gradient(90deg, transparent 8px, #123a63 8px 10px, transparent 10px),
		linear-gradient(transparent 4px, #123a63 4px 6px, transparent 6px);
}

.b2b-post-layout {
	display: grid;
	grid-template-columns: minmax(0, 800px) minmax(280px, 340px);
	justify-content: center;
	gap: 32px;
	align-items: start;
}

.b2b-post-content {
	max-width: none;
	overflow: hidden;
	padding: 0;
	border: 1px solid rgba(203, 213, 225, 0.92);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 14px 36px rgba(20, 32, 51, 0.08);
	font-size: 16px;
	line-height: 1.58;
}

.b2b-post-content__inner {
	padding: 20px 28px 10px;
}

.b2b-post-featured-image {
	position: relative;
	margin: 0;
	border-radius: 0;
	overflow: hidden;
	box-shadow: none;
}

.b2b-post-featured-image img {
	width: 100%;
	max-height: 320px;
	object-fit: cover;
	aspect-ratio: 16 / 4.45;
	border-radius: 0;
	box-shadow: none;
}

.b2b-post-featured-image::after {
	display: none;
}

.b2b-post-content h2,
.b2b-post-content h3,
.b2b-post-content h4 {
	color: #101827;
	font-weight: 800;
	line-height: 1.22;
}

.b2b-post-content h2 {
	margin: 22px 0 7px;
	padding-top: 0;
	font-size: 24px;
}

.b2b-post-content h3 {
	margin: 18px 0 6px;
	font-size: 20px;
}

.b2b-post-content p,
.b2b-post-content li {
	color: #243044;
}

.b2b-post-content p {
	margin: 0 0 12px;
}

.b2b-post-content ul,
.b2b-post-content ol {
	margin: 0 0 12px;
	padding-left: 20px;
}

.b2b-post-content li + li {
	margin-top: 3px;
}

.b2b-post-content strong {
	color: var(--b2b-ink);
	font-weight: 800;
}

.b2b-post-content a {
	color: var(--b2b-primary-dark);
	font-weight: 700;
	text-decoration-thickness: 2px;
	text-underline-offset: 4px;
}

.b2b-post-content img {
	border-radius: 8px;
	box-shadow: 0 14px 32px rgba(20, 32, 51, 0.1);
}

.b2b-post-content blockquote {
	margin: 22px 0;
	padding: 18px 22px;
	border-left: 5px solid var(--b2b-accent);
	border-radius: 0 10px 10px 0;
	background: #f4f8fc;
	color: var(--b2b-ink);
	font-size: 17px;
	line-height: 1.6;
}

.b2b-post-sidebar {
	position: sticky;
	top: 104px;
	display: grid;
	gap: 18px;
}

.b2b-post-sidebar__toc {
	padding: 24px;
	border: 1px solid var(--b2b-line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 12px 28px rgba(20, 32, 51, 0.07);
}

.b2b-post-sidebar__toc h2 {
	margin: 0 0 14px;
	font-size: 22px;
}

.b2b-post-toc-list {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.b2b-post-toc-list a {
	color: var(--b2b-muted);
	text-decoration: none;
	font-weight: 700;
}

.b2b-post-toc-list a:hover {
	color: var(--b2b-accent);
}

.b2b-post-toc-list .is-subtopic {
	padding-left: 14px;
	font-size: 14px;
}

.b2b-post-sidebar__card {
	position: relative;
	overflow: hidden;
	padding: 0 0 24px;
	border: 1px solid rgba(203, 213, 225, 0.92);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 12px 30px rgba(20, 32, 51, 0.08);
	color: #071629;
	text-align: center;
}

.b2b-post-sidebar__card::before {
	display: none;
}

.b2b-post-sidebar__card h2 {
	margin: 0;
	padding: 22px 24px 10px;
	color: #fff;
	font-size: 22px;
	font-weight: 800;
	line-height: 1.18;
	background: #073f75;
}

.b2b-post-sidebar__card p {
	margin: 0;
	padding: 0 24px 22px;
	background: #073f75;
	color: rgba(255, 255, 255, 0.9);
	font-size: 14px;
	line-height: 1.35;
}

.b2b-post-sidebar__benefits {
	display: grid;
	gap: 14px;
	margin: 22px 24px 22px;
	padding: 0;
	list-style: none;
	text-align: left;
}

.b2b-post-sidebar__benefits li {
	position: relative;
	padding-left: 30px;
	color: #243044;
	font-size: 16px;
	line-height: 1.45;
}

.b2b-post-sidebar__benefits li::before {
	content: "\2713";
	position: absolute;
	left: 0;
	top: 2px;
	display: inline-grid;
	place-items: center;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #073f75;
	color: #fff;
	font-size: 12px;
	font-weight: 800;
}

.b2b-post-sidebar__card .b2b-button {
	width: calc(100% - 48px);
	justify-content: center;
	background: var(--b2b-primary);
}

.b2b-author-box {
	display: grid;
	gap: 18px;
	max-width: none;
	margin: 0;
	padding: 22px;
	border: 1px solid rgba(203, 213, 225, 0.92);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 12px 30px rgba(20, 32, 51, 0.06);
}

.b2b-author-box__body {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	gap: 18px;
	align-items: start;
}

.b2b-author-box__avatar {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	object-fit: cover;
}

.b2b-author-box__avatar-link {
	display: inline-flex;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	text-decoration: none;
}

.b2b-author-box h2 {
	margin: 0;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--b2b-line);
	color: #071629;
	font-size: 18px;
	font-weight: 800;
}

.b2b-author-box h3 {
	margin: 0 0 6px;
	color: #071629;
	font-size: 14px;
	font-weight: 800;
}

.b2b-author-box h3 a {
	color: inherit;
	text-decoration: none;
}

.b2b-author-box h3 a:hover,
.b2b-author-box h3 a:focus {
	color: var(--b2b-primary-dark);
}

.b2b-author-box p {
	margin: 0;
	color: #243044;
	font-size: 13px;
	line-height: 1.55;
}

.b2b-post-categories {
	padding: 22px;
	border: 1px solid rgba(203, 213, 225, 0.92);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 12px 30px rgba(20, 32, 51, 0.06);
}

.b2b-post-categories h2 {
	margin: 0 0 14px;
	color: #071629;
	font-size: 18px;
	font-weight: 800;
}

.b2b-post-categories ul {
	display: grid;
	margin: 0;
	padding: 0;
	list-style: none;
}

.b2b-post-categories li {
	border-top: 1px solid var(--b2b-line);
}

.b2b-post-categories a,
.b2b-post-categories span {
	display: flex;
	justify-content: space-between;
	gap: 14px;
	padding: 10px 0;
	color: #243044;
	font-size: 13px;
	text-decoration: none;
}

.b2b-post-categories a::after {
	content: "›";
	color: #64748b;
	font-size: 18px;
	line-height: 0.8;
}

.b2b-post-navigation {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 28px 28px 0;
	padding-top: 18px;
	border-top: 1px solid var(--b2b-line);
}

.b2b-post-navigation__item {
	min-height: 52px;
	padding: 0 0 8px;
}

.b2b-post-navigation__item--next {
	text-align: right;
}

.b2b-post-navigation__item span {
	display: block;
	margin-bottom: 6px;
	color: #071629;
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
}

.b2b-post-navigation a {
	color: #071629;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.25;
	text-decoration: none;
}

.b2b-related-posts {
	margin-top: 16px;
	padding: 22px 24px;
	border: 1px solid rgba(203, 213, 225, 0.92);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 12px 30px rgba(20, 32, 51, 0.06);
}

.b2b-related-posts > h2 {
	margin: 0 0 16px;
	text-align: left;
	color: #07315d;
	font-size: 24px;
	font-weight: 800;
}

.b2b-related-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 28px;
}

.b2b-popup {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 100;
}

.b2b-popup.is-open {
	display: block;
}

.b2b-popup__overlay {
	position: absolute;
	inset: 0;
	background: rgba(9, 18, 31, 0.72);
}

.b2b-popup__dialog {
	position: relative;
	width: min(620px, calc(100% - 32px));
	max-height: calc(100vh - 48px);
	overflow: auto;
	margin: 24px auto;
	padding: 28px;
	background: #fff;
	border-radius: 8px;
}

.b2b-popup__close {
	position: absolute;
	top: 12px;
	right: 14px;
	border: 0;
	background: transparent;
	font-size: 30px;
	cursor: pointer;
}

.site-footer {
	padding: 40px 0 32px;
	background: var(--b2b-footer-bg, #101928);
	color: var(--b2b-footer-text, #dce4ef);
}

.site-footer__inner {
	display: grid;
	grid-template-columns: minmax(210px, 0.82fr) minmax(0, 2.18fr);
	align-items: start;
	gap: 72px;
}

.site-footer__brand a {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 14px;
	color: var(--b2b-footer-text, #dce4ef);
	text-decoration: none;
}

.site-footer__logo {
	width: auto;
	max-width: 190px;
	max-height: 110px;
	object-fit: contain;
}

.site-footer__brand p {
	margin: 4px 0 0;
	color: var(--b2b-footer-text, #dce4ef);
	font-size: 24px;
	font-weight: 800;
	letter-spacing: 6px;
	line-height: 1.18;
	text-transform: uppercase;
}

.site-footer__columns {
	display: grid;
	grid-template-columns: 1.25fr 1fr 0.9fr;
	gap: 44px;
	padding-top: 0;
}

.site-footer__column h2 {
	margin: 0 0 14px;
	color: rgba(220, 228, 239, 0.72);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.25;
	text-transform: uppercase;
}

.site-footer__column ul {
	display: grid;
	gap: 9px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.site-footer__column a {
	color: var(--b2b-footer-text, #dce4ef);
	text-decoration: none;
	font-size: 17px;
	font-weight: 600;
	line-height: 1.35;
}

.site-footer__column a:hover,
.site-footer__column a:focus {
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 5px;
}

.b2b-404-page {
	padding: 48px 0 64px;
	background:
		radial-gradient(circle at 50% 0, rgba(15, 111, 183, 0.08), transparent 36%),
		#f5f7fa;
}

.b2b-404-page__header {
	max-width: 820px;
	margin: 0 auto 28px;
	text-align: center;
}

.b2b-404-page__code {
	margin: 0 0 8px;
	color: #0b3b78;
	font-size: clamp(58px, 8vw, 104px);
	font-weight: 800;
	line-height: 1;
}

.b2b-404-page h1 {
	margin: 0 0 14px;
	color: #071629;
	font-size: clamp(34px, 5vw, 56px);
	line-height: 1.1;
}

.b2b-404-page__header > p:not(.b2b-kicker):not(.b2b-404-page__code) {
	margin: 0 auto 28px;
	max-width: 700px;
	color: #243044;
	font-size: 18px;
	line-height: 1.65;
}

.b2b-404-page__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
}

.b2b-404-page__feature {
	display: grid;
	grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
	gap: 28px;
	align-items: stretch;
	margin-top: 28px;
}

.b2b-404-page__media,
.b2b-404-page__panel,
.b2b-404-help-strip,
.b2b-404-bottom-cta {
	border: 1px solid rgba(203, 213, 225, 0.92);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 16px 36px rgba(20, 32, 51, 0.08);
}

.b2b-404-page__media {
	overflow: hidden;
	min-height: 360px;
}

.b2b-404-page__image {
	width: 100%;
	height: 100%;
	min-height: 360px;
	object-fit: cover;
}

.b2b-404-page__image--placeholder {
	background: linear-gradient(135deg, #dfe7f0, #f8fafc);
}

.b2b-404-page__panel {
	display: grid;
	align-content: center;
	padding: 34px 32px;
}

.b2b-404-page__panel-icon {
	display: inline-grid;
	place-items: center;
	width: 46px;
	height: 46px;
	margin-bottom: 18px;
	border-radius: 50%;
	background: #0b2f5f;
	color: #fff;
	font-size: 26px;
	font-weight: 800;
}

.b2b-404-page__panel h2 {
	margin: 0 0 12px;
	color: #0b2f5f;
	font-size: 26px;
	line-height: 1.15;
}

.b2b-404-page__panel p {
	margin: 0 0 22px;
	color: #243044;
	font-size: 16px;
	line-height: 1.65;
}

.b2b-404-page__links {
	display: grid;
	gap: 10px;
}

.b2b-404-page__links a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 46px;
	padding: 0 16px;
	border: 1px solid #dce4ef;
	border-radius: 6px;
	color: #0b2f5f;
	text-decoration: none;
	font-weight: 800;
}

.b2b-404-page__links a::after {
	content: "->";
	color: var(--b2b-accent);
}

.b2b-404-page__links a:hover,
.b2b-404-page__links a:focus {
	border-color: rgba(230, 33, 33, 0.38);
	background: #fff7f7;
}

.b2b-404-help-strip {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: 24px;
}

.b2b-404-help-strip div {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	padding: 20px 24px;
	border-right: 1px solid var(--b2b-line);
}

.b2b-404-help-strip div:last-child {
	border-right: 0;
}

.b2b-404-help-strip span {
	grid-row: span 2;
	width: 40px;
	height: 40px;
	border: 2px solid #0b3b78;
	border-radius: 50%;
}

.b2b-404-help-strip strong {
	color: #0b3b78;
	font-size: 22px;
	line-height: 1;
}

.b2b-404-help-strip em {
	color: #243044;
	font-size: 13px;
	font-style: normal;
	line-height: 1.25;
}

.b2b-404-bottom-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-top: 24px;
	padding: 24px 32px;
	background: linear-gradient(135deg, #08203d, #0b4e93);
	color: #fff;
}

.b2b-404-bottom-cta h2 {
	margin: 0 0 4px;
	font-size: 24px;
	line-height: 1.2;
}

.b2b-404-bottom-cta p {
	margin: 0;
	color: rgba(255, 255, 255, 0.82);
}

.b2b-404-bottom-cta .b2b-button {
	flex: 0 0 auto;
	min-width: 180px;
}

@media (max-width: 860px) {
	body.single-post.admin-bar {
		margin-top: -46px !important;
		padding-top: 46px !important;
	}

	body.single-post.admin-bar .site-header {
		top: 46px !important;
	}

	.site-header__nav {
		display: none;
	}

	.site-header__inner,
	.site-header__tools {
		gap: 12px;
	}

	.b2b-hero__inner,
	.b2b-home-hero__inner,
	.b2b-split,
	.b2b-split--reverse,
	.b2b-form-section__inner,
	.b2b-product-detail-hero__grid,
	.b2b-product-content__grid,
	.b2b-post-layout,
	.b2b-author-box,
	.b2b-home-about__grid,
	.b2b-home-bottom-cta__inner,
	.b2b-about-intro__grid,
	.b2b-contact-page__grid,
	.b2b-404-page__feature {
		grid-template-columns: 1fr;
	}

	.b2b-product-side-card,
	.b2b-post-sidebar {
		position: static;
	}

	.b2b-product-grid,
	.b2b-card-grid,
	.b2b-logo-grid,
	.b2b-support-stats,
	.b2b-catalog-layout,
	.b2b-catalog-categories__grid,
	.b2b-truck-product-grid,
	.b2b-related-grid,
	.b2b-home-card-grid,
	.b2b-home-application-grid,
	.b2b-home-strength-grid,
	.b2b-industry-grid,
	.b2b-manufacturing-grid,
	.b2b-advantage-grid,
	.b2b-faq-guide-layout,
	.b2b-product-process,
	.b2b-product-detail-panel,
	.b2b-product-selection-cta__inner,
	.b2b-product-hero-notes,
	.b2b-404-help-strip,
	.b2b-section-heading--split {
		grid-template-columns: 1fr;
	}

	.b2b-catalog-hero__inner,
	.b2b-catalog-toolbar {
		display: grid;
	}

	.b2b-catalog-hero h1 {
		font-size: 38px;
	}

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

	.b2b-catalog-filters,
	.b2b-quote-cart {
		position: static;
		max-height: none;
		overflow: visible;
	}

	.b2b-product-summary__badges {
		grid-template-columns: 1fr;
	}

	.b2b-faq-guide-media {
		position: static;
	}

	.b2b-post-navigation {
		grid-template-columns: 1fr;
	}

	.b2b-post-header {
		text-align: left;
	}

	.b2b-post-section {
		padding-bottom: 52px;
	}

	.b2b-post-hero {
		padding: 46px 0 30px;
	}

	.b2b-post-hero__inner {
		gap: 28px;
	}

	.b2b-post-header h1 {
		margin-top: 8px;
		font-size: clamp(32px, 10vw, 42px);
		line-height: 1.12;
	}

	.b2b-post-meta {
		justify-content: flex-start;
		gap: 10px 14px;
		font-size: 13px;
	}

	.b2b-post-meta::before,
	.b2b-post-meta::after {
		display: none;
	}

	.b2b-post-layout {
		gap: 36px;
	}

	.b2b-post-content {
		font-size: 16px;
		line-height: 1.62;
	}

	.b2b-post-content__inner {
		padding: 22px 20px 8px;
	}

	.b2b-post-featured-image {
		border-radius: 0;
	}

	.b2b-post-featured-image img {
		aspect-ratio: 16 / 8;
	}

	.b2b-post-content h2 {
		margin-top: 24px;
		font-size: 24px;
	}

	.b2b-post-content h3 {
		font-size: 20px;
	}

	.b2b-post-sidebar__card {
		text-align: left;
	}

	.b2b-post-sidebar__card h2,
	.b2b-post-sidebar__card p {
		text-align: center;
	}

	.b2b-author-box {
		gap: 16px;
		padding: 20px;
	}

	.b2b-author-box__body {
		grid-template-columns: 64px minmax(0, 1fr);
	}

	.b2b-author-box__avatar {
		width: 64px;
		height: 64px;
	}

	.b2b-post-navigation {
		margin: 8px 20px 0;
	}

	.b2b-post-navigation__item--next {
		border-top: 1px solid var(--b2b-line);
		text-align: left;
	}

	.b2b-about-page {
		padding: 42px 0 56px;
	}

	.b2b-about-page__header {
		text-align: left;
	}

	.b2b-about-page__feature,
	.b2b-about-stats,
	.b2b-about-capability-grid,
	.b2b-about-quality {
		grid-template-columns: 1fr;
	}

	.b2b-about-page__image {
		min-height: 260px;
	}

	.b2b-about-page__overview,
	.b2b-about-quality,
	.b2b-about-bottom-cta {
		padding: 24px 22px;
	}

	.b2b-about-stats div {
		border-right: 0;
		border-bottom: 1px solid var(--b2b-line);
	}

	.b2b-about-stats div:last-child {
		border-bottom: 0;
	}

	.b2b-about-bottom-cta {
		display: grid;
	}

	.b2b-contact-page {
		padding: 42px 0 56px;
	}

	.b2b-contact-page__header {
		text-align: left;
	}

	.b2b-contact-page__grid,
	.b2b-contact-page__form .b2b-inquiry-form {
		grid-template-columns: 1fr;
	}

	.b2b-contact-page__form,
	.b2b-contact-info-card,
	.b2b-contact-trust-card {
		padding: 24px 22px;
	}

	.b2b-404-page {
		padding: 42px 0 56px;
	}

	.b2b-404-page__header {
		text-align: left;
	}

	.b2b-404-page__actions {
		justify-content: flex-start;
	}

	.b2b-404-page__media,
	.b2b-404-page__image {
		min-height: 250px;
	}

	.b2b-404-page__panel,
	.b2b-404-bottom-cta {
		padding: 24px 22px;
	}

	.b2b-404-help-strip div,
	.b2b-404-help-strip div:last-child {
		border-right: 0;
		border-bottom: 1px solid var(--b2b-line);
	}

	.b2b-404-help-strip div:last-child {
		border-bottom: 0;
	}

	.b2b-404-bottom-cta {
		display: grid;
	}

	.b2b-home-hero {
		background: var(--home-hero-secondary, #0870d9);
	}

	.b2b-home-hero__inner {
		min-height: auto;
		padding: 54px 0;
	}

	.b2b-truck-catalog-hero__inner {
		display: grid;
		min-height: 420px;
		align-content: center;
	}

	.b2b-catalog-categories {
		margin-top: -30px;
	}

	.b2b-section {
		padding: 52px 0;
	}

	.site-footer__inner {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.site-footer__columns {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.site-footer__brand p {
		font-size: 22px;
		letter-spacing: 5px;
	}

	.site-footer__column a {
		font-size: 16px;
	}
}

@media (max-width: 640px) {
	.b2b-catalog-workspace {
		padding-top: 36px;
	}

	.b2b-catalog-toolbar {
		gap: 18px;
	}

	.b2b-catalog-toolbar h2 {
		font-size: 28px;
		line-height: 1.15;
	}

	.b2b-catalog-search input {
		min-height: 46px;
	}

	.b2b-catalog-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.b2b-catalog-card__media {
		aspect-ratio: 1 / 0.82;
	}

	.b2b-catalog-card__body {
		padding: 16px;
	}

	.b2b-catalog-card h2 {
		font-size: 18px;
		-webkit-line-clamp: 2;
	}

	.b2b-catalog-card__actions {
		grid-template-columns: 1fr;
	}

	.b2b-catalog-card__actions .b2b-button {
		min-height: 44px;
	}
}
