:root {
	--b2b-ink: #142033;
	--b2b-muted: #5a6678;
	--b2b-line: #dfe5ec;
	--b2b-bg: #f5f7fa;
	--b2b-panel: #ffffff;
	--b2b-primary: #0f6fb7;
	--b2b-primary-dark: #0a4f84;
	--b2b-accent: #e62121;
	--b2b-carbon: #111111;
}

* {
	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: var(--b2b-header-bg, #111111);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 10px 34px rgba(0, 0, 0, 0.22);
}

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: 72px;
	gap: 24px;
}

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

.site-header__logo {
	width: auto;
	max-width: 180px;
	max-height: 48px;
	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-header-text, #fff);
	font-weight: 600;
}

.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-header-text, #fff);
}

.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 {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 20px;
	border: 0;
	border-radius: 3px;
	background: var(--b2b-accent);
	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: linear-gradient(135deg, #0b70df 0%, #0870d9 48%, #f6fbff 48%, #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: #fff;
}

.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);
}

.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: cover;
	background: var(--b2b-bg);
}

.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: #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: #0d1b2d;
	color: #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: rgba(255, 255, 255, 0.08);
}

.b2b-home-strength-item h3 {
	margin: 0 0 10px;
	color: #fff;
	font-size: 20px;
}

.b2b-home-strength-item p {
	margin: 0;
	color: rgba(255, 255, 255, 0.74);
}

.b2b-home-bottom-cta {
	overflow: hidden;
	background: linear-gradient(135deg, #0870d9, #0d4d94);
	color: #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);
	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;
}

.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__grid {
	display: grid;
	grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
	gap: 48px;
	align-items: start;
}

.b2b-product-gallery__main {
	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__image {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: contain;
	padding: 20px;
}

.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: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 22px;
}

.b2b-product-summary__badges span {
	padding: 7px 10px;
	background: #f2f3f5;
	border-left: 3px solid var(--b2b-accent);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.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-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 h2,
.b2b-product-main-copy h2 {
	text-transform: uppercase;
}

.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;
}

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

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

/* 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-accent);
}

.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-accent);
}

.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-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-404-help-strip,
		.b2b-section-heading--split {
		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: #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;
	}
}
