/* Homepage commercial layout — scoped to .home-page */

.home-page {
	--home-navy: #1a2744;
	--home-blue: #2c4387;
	--home-blue-mid: #3a5aad;
	--home-steel: #5b6b86;
	--home-amber: #c45c26;
	--home-amber-hover: #a84c1e;
	--home-bg: #f3f5f9;
	--home-surface: #ffffff;
	--home-line: #e0e5ee;
	--home-text: #243047;
	--home-muted: #5c6b82;
	--home-head-ink: #1a1d1e;
	--home-head-muted: #5f6d75;
	--home-head-body: #707070;
	--home-radius: 6px;
	--home-font-h1: clamp(22px, 2.4vw, 30px);
	--home-font-h2: clamp(22px, 2.2vw, 28px);
	--home-font-h3: 16px;
	--home-font-body: 15px;
	--home-font-small: 13px;
	--home-font-eyebrow: 12px;
	--home-font-label: 11px;
	--home-font-btn: 14px;
	--home-btn-height: 44px;
	--home-btn-padding-x: 22px;
	--home-btn-padding-x-sm: 14px;
	--home-leading-tight: 1.3;
	--home-leading-body: 1.7;
	--home-max: 1180px;
	--home-gutter: 28px;
	--home-section-gap: 64px;
	--home-block-gap: 28px;
	background: var(--home-bg);
	color: var(--home-text);
	font-family: "open_sansregular", "Segoe UI", sans-serif;
	font-size: var(--home-font-body);
	line-height: var(--home-leading-body);
}

.home-page a {
	text-decoration: none;
	color: inherit;
}

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

/* Hero + slider — full width, design 1920×650 (max height 650px) */
.home-hero {
	background: #fff;
	overflow: hidden;
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
}

.home-hero-slider {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
	background: transparent;
	box-sizing: border-box;
}

/* Modern home slider */
.as-slider {
	width: 100%;
	position: relative;
	background: transparent;
	/* Center the 1920×650 stage on ultra-wide screens */
	display: flex;
	justify-content: center;
}

.as-slider-frame {
	position: relative;
	/* Never wider than design width — keeps exact 1920:650 so cover never crops */
	width: min(100%, 1920px);
	height: auto;
	aspect-ratio: 1920 / 650;
	max-height: 650px;
	overflow: hidden;
	background: transparent;
	border-bottom: none;
	flex-shrink: 0;
}

.as-slider-track {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background: transparent;
}

.as-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.45s ease;
	z-index: 1;
	background: transparent;
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

.as-slide.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	z-index: 2;
}

.home-page .as-slide picture,
.as-slide picture {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: block;
	margin: 0;
	padding: 0;
}

.home-page .as-slide img,
.as-slide img,
.home-page .as-slide-img {
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	max-height: none !important;
	/* contain = never crop; exact 1920×650 fills the stage completely */
	object-fit: contain !important;
	object-position: center center !important;
	display: block !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent;
	transform: none !important;
}

.as-slide-caption {
	position: absolute;
	left: 16px;
	bottom: 14px;
	z-index: 3;
	padding: 0;
	background: none;
	pointer-events: none;
}

.as-slide-caption span {
	display: inline-block;
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	font-size: 14px;
	color: #fff;
	letter-spacing: 0.02em;
	background: rgba(15, 23, 41, 0.75);
	border-left: 3px solid var(--home-amber);
	padding: 6px 12px;
	line-height: 1.3;
} 

.as-slide-fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: #5c6b82;
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	font-size: 22px;
	background: #f3f5f9;
}

.as-slider-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 2px;
	background: rgba(26, 39, 68, 0.85);
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease;
	box-shadow: none;
}

.as-slider-nav:hover {
	background: var(--home-amber);
	color: #fff;
}

.as-slider-nav .fa {
	font-size: 22px;
	line-height: 1;
}

.as-slider-prev { left: 10px; }
.as-slider-next { right: 10px; }

.as-slider-dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 10px;
	z-index: 5;
	display: flex;
	justify-content: center;
	gap: 8px;
}

.as-dot {
	width: 10px;
	height: 10px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.45);
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

.as-dot.is-active {
	background: var(--home-amber);
	transform: scale(1.1);
}

.as-dot:hover {
	background: #fff;
}

/* Intro + trust — one continuous section under slider */
.home-hero-bar {
	--hero-bar-navy: #1a2744;
	--hero-bar-muted: #9eb0cb;
	--hero-bar-line: rgba(255, 255, 255, 0.12);
	--hero-bar-amber: #f0b27a;
	background: linear-gradient(180deg, #152038 0%, var(--hero-bar-navy) 55%, #121c30 100%);
	border-top: 3px solid var(--home-amber);
	border-bottom: 0;
	padding: 56px var(--home-gutter) 12px;
	color: #d5deee;
}

.home-hero-bar-inner {
	max-width: var(--home-max);
	width: 100%;
	margin: 0 auto;
	text-align: left;
	padding: 0 0 40px;
	box-sizing: border-box;
}

.home-hero-bar h1 {
	margin: 0 0 20px;
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	font-size: var(--home-font-h1);
	font-weight: 600;
	line-height: var(--home-leading-tight);
	color: #fff;
	letter-spacing: 0.01em;
	max-width: 920px;
}

.home-hero-bar p {
	margin: 0 0 8px;
	max-width: 68%;
	font-size: var(--home-font-body);
	line-height: var(--home-leading-body);
	color: var(--hero-bar-muted);
}

.home-hero-stats {
	margin-top: 8px;
	border-top: 1px solid var(--hero-bar-line);
	border-bottom: 1px solid var(--hero-bar-line);
	background: transparent;
}

.home-hero-stats-inner {
	max-width: var(--home-max);
	margin: 0 auto;
	padding: 0 var(--home-gutter);
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	box-sizing: border-box;
}

.home-hero-stat {
	padding: 32px 24px;
	text-align: center;
	border-right: 1px solid var(--hero-bar-line);
}

.home-hero-stat:last-child {
	border-right: none;
}

.home-hero-stat-value {
	display: block;
	margin: 0 0 10px;
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	font-size: clamp(28px, 3vw, 36px);
	font-weight: 600;
	line-height: 1.1;
	color: #fff;
}

.home-hero-stat-label {
	display: block;
	font-family: "open_sansregular", "Segoe UI", sans-serif;
	font-size: var(--home-font-label);
	font-weight: 400;
	line-height: var(--home-leading-tight);
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--hero-bar-muted);
}

.home-hero-actions-wrap {
	max-width: var(--home-max);
	margin: 0 auto;
	padding: 40px var(--home-gutter) 20px;
	box-sizing: border-box;
}

.home-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: center;
}

.home-hero-bar .home-btn-primary {
	background: var(--home-amber);
	color: #fff !important;
}

.home-hero-bar .home-btn-primary:hover {
	background: var(--home-amber-hover);
	box-shadow: 0 8px 20px rgba(196, 92, 38, 0.35);
}

.home-hero-bar .home-btn-outline {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.45);
	color: #fff !important;
}

.home-hero-bar .home-btn-outline:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: #fff;
	color: #fff !important;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.home-btn-outline {
	background: #fff;
	border-color: var(--home-blue);
	color: var(--home-blue) !important;
}

.home-btn-outline:hover {
	background: var(--home-blue);
	border-color: var(--home-blue);
	color: #fff !important;
	box-shadow: 0 8px 20px rgba(44, 67, 135, 0.28);
}

.home-hero-bar .home-btn-ghost {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.45);
	color: #fff !important;
}

.home-hero-bar .home-btn-ghost:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: #fff;
	color: #fff !important;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.home-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: var(--home-btn-height);
	padding: 0 var(--home-btn-padding-x);
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	font-size: var(--home-font-btn);
	font-weight: 600;
	letter-spacing: 0.02em;
	border-radius: var(--home-radius);
	border: 1px solid transparent;
	box-sizing: border-box;
	transition:
		background 0.3s cubic-bezier(0.22, 1, 0.36, 1),
		color 0.3s ease,
		border-color 0.3s ease,
		transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-btn:hover {
	transform: translateY(-2px);
}

.home-btn:focus-visible {
	outline: 2px solid var(--home-amber);
	outline-offset: 3px;
}

.home-btn-primary {
	background: var(--home-blue);
	color: #fff !important;
}

.home-btn-primary:hover {
	background: var(--home-blue-mid);
	color: #fff !important;
	box-shadow: 0 8px 20px rgba(44, 67, 135, 0.32);
}

.home-btn-ghost {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.45);
	color: #fff !important;
}

.home-btn-ghost:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.08);
	color: #fff !important;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.home-btn-accent {
	background: var(--home-amber);
	color: #fff !important;
}

.home-btn-accent:hover {
	background: var(--home-amber-hover);
	color: #fff !important;
	box-shadow: 0 8px 20px rgba(196, 92, 38, 0.35);
}

/* Trust / USP strip — directly under hero intro */
.home-hero-bar .home-trust {
	background: transparent;
	border: 0;
	margin: 0;
}

.home-trust-inner {
	max-width: var(--home-max);
	width: 100%;
	margin: 0 auto;
	padding: 12px var(--home-gutter) 48px;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 14px;
	box-sizing: border-box;
}

.home-trust-item {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 18px 16px 20px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--home-radius);
	box-shadow: none;
	transition:
		background 0.3s ease,
		border-color 0.3s ease,
		box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-trust-row {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-start;
	gap: 12px;
	width: 100%;
	max-width: 100%;
}

.home-trust-item:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.22);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
	transform: translateY(-2px);
}

.home-trust-icon {
	flex: 0 0 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(240, 178, 122, 0.45);
	color: #f0b27a;
	font-size: 16px;
	line-height: 1;
	transition:
		background 0.3s ease,
		border-color 0.3s ease,
		color 0.3s ease,
		transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-trust-item:hover .home-trust-icon {
	background: var(--home-amber);
	border-color: var(--home-amber);
	color: #fff;
	transform: scale(1.04);
}

.home-trust-copy {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 3px;
}

.home-trust-tag {
	display: block;
	font-family: "open_sansregular", "Segoe UI", sans-serif;
	font-size: var(--home-font-label);
	font-weight: 400;
	line-height: var(--home-leading-tight);
	letter-spacing: 0.02em;
	color: var(--hero-bar-muted, #9eb0cb);
}

.home-trust-title {
	display: block;
	align-items: flex-start;
	gap: 0;
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	font-size: var(--home-font-small);
	font-weight: 600;
	line-height: var(--home-leading-tight);
	color: #fff;
}

.home-trust-lead,
.home-trust-accent {
	display: inline;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	color: inherit;
	transition: color 0.3s ease;
}

.home-trust-lead::after {
	content: " ";
}

.home-trust-accent {
	color: inherit;
}

.home-trust-item:hover .home-trust-lead,
.home-trust-item:hover .home-trust-accent {
	color: #f0b27a;
}

/* Main content */
.home-body {
	max-width: var(--home-max);
	width: 100%;
	margin: 0 auto;
	padding: 52px var(--home-gutter) 64px;
	box-sizing: border-box;
}

.home-section {
	margin-bottom: var(--home-section-gap);
}

.home-section:last-of-type {
	margin-bottom: var(--home-section-gap);
}

.home-section-head {
	margin-bottom: var(--home-block-gap);
}

/* Editorial section typography */
.home-page .home-eyebrow,
.home-compare-eyebrow {
	margin: 0 0 8px;
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	font-size: var(--home-font-eyebrow);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--home-head-muted);
}

.home-page .home-section-head h2,
.home-page .home-industries-head-main h2,
.home-page .home-applications-head-main h2,
.home-page .home-global-head h2,
.home-page .home-compare-head h2,
.home-page .home-cta h2 {
	margin: 0 0 14px;
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	font-size: var(--home-font-h2);
	font-weight: 600;
	line-height: var(--home-leading-tight);
	color: var(--home-head-ink);
	padding: 0;
	background: none;
	text-align: left;
}

.home-page .home-section-lead,
.home-page .home-industries-head .home-section-lead,
.home-page .home-applications-head .home-section-lead,
.home-page .home-global-head .home-section-lead,
.home-page .home-compare-head .home-section-lead,
.home-page .home-cta p {
	margin: 0;
	max-width: 78ch;
	font-family: "open_sansregular", "Segoe UI", sans-serif;
	font-size: var(--home-font-body);
	font-weight: 400;
	line-height: var(--home-leading-body);
	color: var(--home-head-body);
	text-align: left;
}

.home-page .home-industries-head-main h2,
.home-page .home-applications-head-main h2 {
	margin: 0;
}

.home-page .home-compare-head h2 {
	color: #fff;
}

.home-page .home-compare-head .home-section-lead {
	color: var(--compare-muted, #9eb0cb);
}

.home-page .home-cta {
	text-align: center;
}

.home-page .home-cta h2,
.home-page .home-cta p {
	text-align: center;
	color: #fff;
}

.home-page .home-cta p {
	margin: 0 auto 24px;
	max-width: 540px;
	color: #c5d0e4;
}

.home-page h3,
.home-industry-name,
.home-application-name,
.home-global-export-text h3,
.home-apps h4 {
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	font-size: var(--home-font-h3);
	font-weight: 600;
	line-height: var(--home-leading-tight);
	color: var(--home-navy);
	padding-left: 0;
}

.home-section-lead strong {
	color: var(--home-head-ink);
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
}

.home-industry-desc,
.home-application-desc,
.home-apps li,
.home-about-copy,
.home-about-copy p,
.home-compare-table tbody td,
.home-compare-table tbody th {
	font-size: var(--home-font-small);
	line-height: var(--home-leading-body);
}

/* Product cards — same catalogue pl-card design as product-list */
.home-pl-grid {
	margin: 0;
	gap: 24px;
}
.home-page .pl-card a {
	color: inherit;
}
.home-page .pl-card {
	transition:
		border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.home-page .pl-card:hover {
	border-color: #9eb0d4;
	box-shadow: 0 14px 32px rgba(26, 39, 68, 0.12);
	transform: translateY(-4px);
}
.home-page .pl-card-media {
	overflow: hidden;
}
.home-page .pl-card-media img {
	transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.home-page .pl-card:hover .pl-card-media img {
	transform: scale(1.05);
}
.home-page .pl-card-name a {
	position: relative;
	display: inline;
	transition: color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
	background-image: linear-gradient(var(--home-blue), var(--home-blue));
	background-position: 0 100%;
	background-repeat: no-repeat;
	background-size: 0 1.5px;
}
.home-page .pl-card-name a:hover {
	color: var(--home-blue);
	background-size: 100% 1.5px;
}
.home-page .pl-card-btn {
	min-height: var(--home-btn-height);
	padding: 0 var(--home-btn-padding-x-sm);
	font-size: var(--home-font-btn);
	border-radius: var(--home-radius);
	transition:
		background 0.3s cubic-bezier(0.22, 1, 0.36, 1),
		border-color 0.3s ease,
		color 0.3s ease,
		transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.3s ease;
}
.home-page .pl-card-btn:hover {
	transform: translateY(-1px);
}
.home-page .pl-card-btn-ghost:hover {
	border-color: var(--home-blue);
	color: var(--home-blue) !important;
	background: #f5f8fc;
	box-shadow: 0 4px 12px rgba(44, 67, 135, 0.12);
}
.home-page .pl-card-btn-accent:hover {
	box-shadow: 0 6px 14px rgba(196, 92, 38, 0.3);
}
.home-page .pl-card-btn-accent,
.home-page .pl-card-btn-accent:hover {
	color: #fff !important;
}
.home-page .pl-card-name {
	padding-left: 0;
	background: none;
}

/* Applications */
.home-apps {
	margin-top: 32px;
	padding: 24px 28px;
	background: var(--home-surface);
	border: 1px solid var(--home-line);
	border-left: 4px solid var(--home-blue);
	border-radius: var(--home-radius);
}

.home-apps h4 {
	margin: 0 0 14px;
	text-align: left;
}

.home-apps ul {
	margin: 0;
	padding: 0 0 0 18px;
	text-align: left;
}

.home-apps li {
	margin-bottom: 10px;
	color: var(--home-muted);
}

.home-apps li:last-child {
	margin-bottom: 0;
}

/* Evaluating manufacturers — comparison table */
.home-compare {
	--compare-navy: #1a2744;
	--compare-muted: #9eb0cb;
	--compare-line: rgba(255, 255, 255, 0.12);
	--compare-amber: #f0b27a;
	width: 100%;
	background: linear-gradient(180deg, #152038 0%, var(--compare-navy) 55%, #121c30 100%);
	border-top: 3px solid var(--home-amber);
	padding: 56px 0 60px;
	margin: 0;
	color: #d5deee;
}

.home-compare-inner {
	max-width: var(--home-max);
	width: 100%;
	margin: 0 auto;
	padding: 0 var(--home-gutter);
	box-sizing: border-box;
}

.home-compare-head {
	margin-bottom: 28px;
}

.home-compare-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
}

.home-compare-eyebrow {
	margin: 0;
	color: var(--compare-amber, #f0b27a);
}

.home-compare-num {
	flex: 0 0 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	background: var(--home-amber);
	color: #fff;
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	font-size: var(--home-font-eyebrow);
	font-weight: 600;
	line-height: 1;
}

.home-compare-head .home-section-lead {
	margin: 0;
	max-width: 78ch;
}

.home-compare-table-wrap {
	overflow-x: auto;
	margin-bottom: 24px;
	-webkit-overflow-scrolling: touch;
}

.home-compare-table {
	width: 100%;
	min-width: 640px;
	border-collapse: collapse;
	border-spacing: 0;
}

.home-compare-table thead th {
	padding: 0 0 14px;
	border-bottom: 1px solid var(--compare-line);
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	font-size: var(--home-font-label);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--compare-muted);
	text-align: left;
	vertical-align: bottom;
}

.home-compare-table thead th:nth-child(2),
.home-compare-table tbody td:nth-child(2) {
	width: 34%;
}

.home-compare-table thead th:nth-child(3),
.home-compare-table tbody td:nth-child(3) {
	width: 36%;
}

.home-compare-table tbody th,
.home-compare-table tbody td {
	padding: 16px 16px 16px 0;
	border-bottom: 1px solid var(--compare-line);
	vertical-align: top;
	text-align: left;
}

.home-compare-table tbody tr:last-child th,
.home-compare-table tbody tr:last-child td {
	border-bottom: none;
}

.home-compare-table tbody th {
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	font-weight: 600;
	color: #fff;
	white-space: nowrap;
	padding-right: 24px;
}

.home-compare-table tbody td {
	font-family: "open_sansregular", "Segoe UI", sans-serif;
	color: #c5d0e4;
}

.home-compare-table tbody td.is-highlight {
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	font-weight: 600;
	color: var(--compare-amber);
}

.home-compare-badges {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}

.home-compare-badges li {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: var(--home-btn-height);
	padding: 10px 14px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--compare-line);
	border-radius: var(--home-radius);
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	font-size: var(--home-font-label);
	font-weight: 600;
	line-height: var(--home-leading-tight);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	text-align: center;
	color: #e8eef8;
}

/* Industries we serve — full-width white band */
.home-industries {
	position: relative;
	width: 100%;
	background: #fff;
	border-top: 1px solid var(--home-line);
	border-bottom: 1px solid var(--home-line);
	padding: 56px 0 60px;
	margin: 0;
}

.home-industries-inner {
	max-width: var(--home-max);
	width: 100%;
	margin: 0 auto;
	padding: 0 var(--home-gutter);
	box-sizing: border-box;
}

.home-industries .home-section-head {
	margin-bottom: var(--home-block-gap);
}

.home-industries-head {
	margin-bottom: var(--home-block-gap);
}

.home-industries-head-row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px 32px;
	margin-bottom: 14px;
}

.home-industries-head-main {
	flex: 1 1 auto;
	min-width: 0;
}

.home-industries-head-main .home-eyebrow {
	margin-bottom: 8px;
}

.home-industries-head-cta {
	flex: 0 0 auto;
	margin-left: auto;
	text-align: right;
}

.home-industries-cta {
	white-space: nowrap;
}

.home-industries-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.home-industry-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
	padding: 28px 24px 26px;
	background: var(--home-bg);
	border: 1px solid var(--home-line);
	border-radius: var(--home-radius);
	overflow: hidden;
	transition:
		border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-industry-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--home-blue) 0%, var(--home-amber) 100%);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-industry-card:hover {
	border-color: #b8c4da;
	box-shadow: 0 16px 36px rgba(26, 39, 68, 0.1);
	transform: translateY(-4px);
}

.home-industry-card:hover::before {
	transform: scaleX(1);
}

.home-industry-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: var(--home-radius);
	background: linear-gradient(145deg, #eef2fa 0%, #e4eaf5 100%);
	color: var(--home-blue);
	font-size: 18px;
	transition:
		background 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		color 0.35s ease,
		transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.35s ease;
}

.home-industry-card:hover .home-industry-icon {
	background: linear-gradient(145deg, var(--home-blue) 0%, var(--home-blue-mid) 100%);
	color: #fff;
	transform: scale(1.06);
	box-shadow: 0 8px 18px rgba(44, 67, 135, 0.28);
}

.home-industry-name {
	margin: 0;
	transition: color 0.3s ease;
}

.home-industry-card:hover .home-industry-name {
	color: var(--home-blue);
}

.home-industry-desc {
	margin: 0;
	color: var(--home-muted);
	transition: color 0.3s ease;
}

.home-industry-card:hover .home-industry-desc {
	color: var(--home-steel);
}

/* Request pricing — footer-like navy band */
.home-pricing {
	--pricing-navy: #1a2744;
	--pricing-muted: #9eb0cb;
	--pricing-line: rgba(255, 255, 255, 0.12);
	--pricing-amber: #f0b27a;
	width: 100%;
	background: linear-gradient(180deg, #152038 0%, var(--pricing-navy) 55%, #121c30 100%);
	border-top: 3px solid var(--home-amber);
	padding: 56px 0 60px;
	margin: 0;
	color: #d5deee;
}

.home-pricing-inner {
	max-width: var(--home-max);
	width: 100%;
	margin: 0 auto;
	padding: 0 var(--home-gutter);
	box-sizing: border-box;
}

.home-pricing-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
	gap: 40px 48px;
	align-items: start;
}

.home-pricing-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
}

.home-pricing-num {
	flex: 0 0 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	background: var(--home-amber);
	color: #fff;
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	font-size: var(--home-font-eyebrow);
	font-weight: 600;
	line-height: 1;
}

.home-pricing-eyebrow {
	margin: 0;
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	font-size: var(--home-font-eyebrow);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--pricing-amber);
}

.home-pricing-copy h2 {
	margin: 0 0 16px;
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	font-size: var(--home-font-h2);
	font-weight: 600;
	line-height: var(--home-leading-tight);
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.home-pricing-lead {
	margin: 0 0 28px;
	max-width: 52ch;
	font-size: var(--home-font-body);
	line-height: var(--home-leading-body);
	color: var(--pricing-muted);
}

.home-pricing-details {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px 28px;
}

.home-pricing-detail {
	position: relative;
}

.home-pricing-detail h3 {
	margin: 0 0 8px;
	padding-left: 0;
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	font-size: var(--home-font-h3);
	font-weight: 600;
	line-height: var(--home-leading-tight);
	color: #fff;
}

.home-pricing-detail p {
	margin: 0;
	padding-left: 16px;
	border-left: 3px solid var(--home-amber);
	font-size: var(--home-font-small);
	line-height: var(--home-leading-body);
	color: var(--pricing-muted);
}

.home-pricing-form-panel {
	padding: 28px 26px 24px;
	background: rgba(0, 0, 0, 0.28);
	border: 1px solid var(--pricing-line);
	border-radius: var(--home-radius);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.home-pricing-form-panel h3 {
	margin: 0 0 8px;
	padding-left: 0;
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	font-size: var(--home-font-h3);
	font-weight: 600;
	line-height: var(--home-leading-tight);
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.home-pricing-form-lead {
	margin: 0 0 20px;
	font-size: var(--home-font-small);
	line-height: var(--home-leading-body);
	color: var(--pricing-muted);
}

.home-pricing-alert {
	margin-bottom: 14px;
	padding: 10px 12px;
	border-radius: var(--home-radius);
	font-size: var(--home-font-small);
	line-height: var(--home-leading-body);
}

.home-pricing-alert.is-error {
	background: rgba(196, 92, 38, 0.18);
	border: 1px solid rgba(240, 178, 122, 0.45);
	color: #ffd8c2;
}

.home-pricing-alert.is-success {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.18);
	color: #fff;
}

.home-pricing-form {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.home-pricing-hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.home-pricing-label {
	display: block;
	margin-bottom: 6px;
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	font-size: var(--home-font-label);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--pricing-muted);
}

.home-pricing-field input {
	display: block;
	width: 100%;
	min-height: var(--home-btn-height);
	padding: 0 14px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--home-radius);
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	font-family: "open_sansregular", "Segoe UI", sans-serif;
	font-size: var(--home-font-body);
	line-height: 1.4;
	box-sizing: border-box;
	transition:
		border-color 0.3s ease,
		background 0.3s ease,
		box-shadow 0.3s ease;
}

.home-pricing-field input::placeholder {
	color: rgba(158, 176, 203, 0.72);
}

.home-pricing-field input:focus {
	outline: none;
	border-color: var(--pricing-amber);
	background: rgba(255, 255, 255, 0.1);
	box-shadow: 0 0 0 2px rgba(240, 178, 122, 0.22);
}

.home-pricing-submit {
	width: 100%;
	margin-top: 4px;
	box-shadow: 0 8px 20px rgba(196, 92, 38, 0.35);
}

.home-pricing-submit:hover {
	box-shadow: 0 12px 24px rgba(196, 92, 38, 0.42);
}

.home-pricing-form-note {
	margin: 16px 0 0;
	font-size: var(--home-font-small);
	line-height: var(--home-leading-body);
	color: var(--pricing-muted);
}

.home-pricing-form-note a {
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 2px;
	transition: color 0.3s ease;
}

.home-pricing-form-note a:hover {
	color: var(--pricing-amber);
}

/* Applications — full-width surface-prep band */
.home-applications {
	position: relative;
	width: 100%;
	background: linear-gradient(180deg, #e8eef8 0%, #eef3fa 48%, #e4ebf6 100%);
	border-top: 1px solid #d4deec;
	border-bottom: 1px solid #d4deec;
	padding: 56px 0 60px;
	margin: 0;
	overflow: hidden;
}

.home-applications::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at 12% 18%, rgba(44, 67, 135, 0.08), transparent 52%),
		radial-gradient(ellipse at 88% 82%, rgba(196, 92, 38, 0.06), transparent 48%);
	pointer-events: none;
}

.home-applications-inner {
	position: relative;
	z-index: 1;
	max-width: var(--home-max);
	width: 100%;
	margin: 0 auto;
	padding: 0 var(--home-gutter);
	box-sizing: border-box;
}

.home-applications-head {
	margin-bottom: var(--home-block-gap);
}

.home-applications-head-row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px 32px;
	margin-bottom: 14px;
}

.home-applications-head-main {
	flex: 1 1 auto;
	min-width: 0;
}

.home-applications-head-main .home-eyebrow {
	margin-bottom: 8px;
}

.home-applications-head-cta {
	flex: 0 0 auto;
	margin-left: auto;
	text-align: right;
}

.home-applications-cta {
	white-space: nowrap;
}

.home-applications-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.home-application-card {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 22px 22px 20px;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(44, 67, 135, 0.12);
	border-radius: var(--home-radius);
	box-shadow: 0 2px 8px rgba(26, 39, 68, 0.04);
	transition:
		border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		background 0.35s ease;
}

.home-application-card:hover {
	background: #fff;
	border-color: rgba(44, 67, 135, 0.22);
	box-shadow: 0 14px 28px rgba(26, 39, 68, 0.1);
	transform: translateY(-3px);
}

.home-application-icon {
	flex: 0 0 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: var(--home-radius);
	background: linear-gradient(145deg, var(--home-blue) 0%, var(--home-blue-mid) 100%);
	color: #fff;
	font-size: 18px;
	transition:
		background 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.35s ease;
}

.home-application-card:hover .home-application-icon {
	background: linear-gradient(145deg, var(--home-amber) 0%, var(--home-amber-hover) 100%);
	transform: scale(1.06);
	box-shadow: 0 8px 16px rgba(196, 92, 38, 0.28);
}

.home-application-body {
	min-width: 0;
}

.home-application-name {
	margin: 0 0 6px;
	transition: color 0.3s ease;
}

.home-application-card:hover .home-application-name {
	color: var(--home-blue);
}

.home-application-desc {
	margin: 0;
	color: var(--home-muted);
}

/* Buyer's guide — footer-like navy band */
.home-guide {
	--guide-navy: #1a2744;
	--guide-muted: #9eb0cb;
	--guide-amber: #f0b27a;
	width: 100%;
	background: linear-gradient(180deg, #152038 0%, var(--guide-navy) 55%, #121c30 100%);
	border-top: 3px solid var(--home-amber);
	padding: 56px 0 60px;
	margin: 0;
	color: #d5deee;
}

.home-guide-inner {
	max-width: var(--home-max);
	width: 100%;
	margin: 0 auto;
	padding: 0 var(--home-gutter);
	box-sizing: border-box;
}

.home-guide-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
}

.home-guide-num {
	flex: 0 0 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	background: var(--home-amber);
	color: #fff;
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	font-size: var(--home-font-eyebrow);
	font-weight: 600;
	line-height: 1;
}

.home-guide-eyebrow {
	margin: 0;
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	font-size: var(--home-font-eyebrow);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--guide-amber);
}

.home-guide-head h2 {
	margin: 0 0 14px;
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	font-size: var(--home-font-h2);
	font-weight: 600;
	line-height: var(--home-leading-tight);
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.home-guide-lead {
	margin: 0 0 32px;
	max-width: 62ch;
	font-size: var(--home-font-body);
	line-height: var(--home-leading-body);
	color: var(--guide-muted);
}

.home-guide-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px 40px;
}

.home-guide-item h3 {
	margin: 0 0 8px;
	padding-left: 0;
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	font-size: var(--home-font-h3);
	font-weight: 600;
	line-height: var(--home-leading-tight);
	color: #fff;
}

.home-guide-item p {
	margin: 0;
	padding-left: 16px;
	border-left: 3px solid var(--home-amber);
	font-size: var(--home-font-small);
	line-height: var(--home-leading-body);
	color: var(--guide-muted);
}

/* Global markets — country grid + export CTA */
.home-global {
	position: relative;
	width: 100%;
	background-color: #f3f5f8;
	background-image:
		linear-gradient(rgba(26, 39, 68, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(26, 39, 68, 0.035) 1px, transparent 1px);
	background-size: 28px 28px;
	border-top: 1px solid var(--home-line);
	padding: 56px 0 60px;
	margin: 0;
}

.home-global-inner {
	max-width: var(--home-max);
	width: 100%;
	margin: 0 auto;
	padding: 0 var(--home-gutter);
	box-sizing: border-box;
}

.home-global-head {
	margin-bottom: var(--home-block-gap);
}

.home-global-grid {
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 14px;
}

.home-global-card {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 88px;
	padding: 18px 14px 22px;
	background: #fff;
	border: 1px solid #e4e9f0;
	border-radius: var(--home-radius);
	box-shadow: 0 2px 8px rgba(26, 39, 68, 0.05);
	overflow: hidden;
	transition:
		border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-global-card:hover {
	border-color: #c5d0e4;
	box-shadow: 0 12px 24px rgba(26, 39, 68, 0.1);
	transform: translateY(-3px);
}

.home-global-card.is-home {
	border-color: rgba(44, 67, 135, 0.28);
	background: linear-gradient(180deg, #fff 0%, #f7f9fd 100%);
}

.home-global-card.is-home .home-global-name {
	color: var(--home-blue);
}

.home-global-num {
	position: absolute;
	top: 8px;
	left: 10px;
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	font-size: 22px;
	font-weight: 600;
	line-height: 1;
	color: rgba(26, 39, 68, 0.08);
	pointer-events: none;
	user-select: none;
	transition: color 0.3s ease;
}

.home-global-card:hover .home-global-num {
	color: rgba(44, 67, 135, 0.14);
}

.home-global-name {
	position: relative;
	z-index: 1;
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	font-size: var(--home-font-label);
	font-weight: 700;
	line-height: 1.35;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--home-navy);
	transition: color 0.3s ease;
}

.home-global-pin {
	position: absolute;
	right: 10px;
	bottom: 8px;
	font-size: var(--home-font-small);
	line-height: 1;
	color: var(--home-amber);
	opacity: 0.85;
	transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}

.home-global-card:hover .home-global-pin {
	opacity: 1;
	transform: translateY(-2px);
}

.home-global-export {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px 32px;
	padding: 24px 28px;
	background: linear-gradient(135deg, #121c30 0%, var(--home-navy) 55%, #1e3058 100%);
	border-radius: var(--home-radius);
	box-shadow: 0 12px 32px rgba(18, 28, 48, 0.22);
}

.home-global-export-text {
	flex: 1 1 auto;
	min-width: 0;
}

.home-global-export-text h3 {
	margin: 0 0 6px;
	color: #fff;
	background: none;
	padding: 0;
}

.home-global-export-text p {
	margin: 0;
	font-size: var(--home-font-small);
	line-height: var(--home-leading-body);
	color: #9eb0cb;
	max-width: 52ch;
}

.home-global-export-btn {
	flex: 0 0 auto;
	white-space: nowrap;
	box-shadow: 0 8px 20px rgba(196, 92, 38, 0.35);
}

.home-global-export-btn:hover {
	box-shadow: 0 12px 24px rgba(196, 92, 38, 0.42);
}

.home-global-export-btn i {
	font-size: var(--home-font-btn);
	transition: transform 0.3s ease;
}

.home-global-export-btn:hover i {
	transform: translateX(3px);
}

/* About */
.home-about {
	padding: 36px 40px;
	background: var(--home-surface);
	border: 1px solid var(--home-line);
	border-radius: var(--home-radius);
	margin-bottom: 48px;
}

.home-about-copy {
	color: var(--home-muted);
	text-align: left;
	margin-bottom: 24px;
	text-align: justify;
}

.home-about-copy p {
	margin: 0 0 14px;
}

.home-about-copy a {
	position: relative;
	display: inline;
	color: var(--home-blue);
	font-family: inherit;
	text-decoration: none;
	background-image: linear-gradient(currentColor, currentColor);
	background-position: 0 calc(100% - 1px);
	background-repeat: no-repeat;
	background-size: 100% 1px;
	transition:
		color 0.3s cubic-bezier(0.22, 1, 0.36, 1),
		background-size 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-about-copy a strong,
.home-about-copy a b {
	color: inherit;
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	font-weight: 600;
	transition: color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-about-copy a:hover,
.home-about-copy a:focus-visible {
	color: var(--home-amber);
	background-size: 100% 2px;
}

.home-about-copy a:focus-visible {
	outline: 2px solid var(--home-amber);
	outline-offset: 3px;
	border-radius: 2px;
}

.home-about .home-btn {
	margin-top: 4px;
}

/* CTA band */
.home-cta {
	background: linear-gradient(135deg, var(--home-navy) 0%, var(--home-blue) 100%);
	border-radius: var(--home-radius);
	padding: 48px 36px;
	position: relative;
	overflow: hidden;
}

.home-cta::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 80% 20%, rgba(196, 92, 38, 0.25), transparent 55%);
	pointer-events: none;
}

.home-cta-inner {
	position: relative;
	z-index: 1;
}

/* Keep homepage slider visible on small screens (override legacy CSS) */
@media only screen and (max-width: 450px) {
	.home-page .home-hero,
	.home-page .home-hero-slider,
	.home-page .slidermain {
		display: block !important;
	}
}

@media only screen and (max-width: 900px) {
	.home-page {
		--home-gutter: 22px;
		--home-section-gap: 52px;
		--home-block-gap: 24px;
	}

	.home-trust-inner {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
		padding: 10px var(--home-gutter) 40px;
	}

	.home-trust-item {
		padding: 16px 14px 18px;
	}

	.home-trust-item:last-child {
		grid-column: 1 / -1;
	}

	.home-hero-stats-inner {
		grid-template-columns: repeat(3, 1fr);
	}

	.home-hero-stat {
		padding: 24px 16px;
	}

	.home-pl-grid {
		gap: 20px;
	}

	.home-compare {
		padding: 44px 0 48px;
	}

	.home-compare-badges {
		grid-template-columns: repeat(2, 1fr);
	}

	.home-industries {
		padding: 44px 0 48px;
	}

	.home-pricing {
		padding: 44px 0 48px;
	}

	.home-pricing-layout {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.home-pricing-details {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.home-industries-head-row {
		align-items: flex-start;
	}

	.home-applications {
		padding: 44px 0 48px;
	}

	.home-applications-head-row {
		align-items: flex-start;
	}

	.home-applications-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

	.home-guide {
		padding: 44px 0 48px;
	}

	.home-guide-grid {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.home-global {
		padding: 44px 0 48px;
	}

	.home-global-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 12px;
	}

	.home-industries-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

	.home-about {
		padding: 28px 24px;
	}

	/* Tablet — same locked 1920:650 stage */
	.as-slider-frame {
		width: min(100%, 1920px);
		height: auto;
		aspect-ratio: 1920 / 650;
		max-height: 650px;
	}

	.as-slider-nav {
		width: 40px;
		height: 40px;
	}
}

@media only screen and (max-width: 600px) {
	.home-page {
		--home-gutter: 16px;
		--home-section-gap: 44px;
		--home-block-gap: 20px;
	}

	.home-body {
		padding: 36px var(--home-gutter) 48px;
	}

	.home-compare {
		padding: 36px 0 40px;
	}

	.home-compare-badges {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.home-industries {
		padding: 36px 0 40px;
	}

	.home-industries-head-row {
		flex-direction: column;
		align-items: stretch;
		gap: 18px;
		margin-bottom: 12px;
	}

	.home-industries-head-cta {
		margin-left: 0;
		text-align: left;
	}

	.home-industries-cta {
		width: 100%;
		white-space: normal;
	}

	.home-applications {
		padding: 36px 0 40px;
	}

	.home-applications-head-row {
		flex-direction: column;
		align-items: stretch;
		gap: 18px;
		margin-bottom: 12px;
	}

	.home-applications-head-cta {
		margin-left: 0;
		text-align: left;
	}

	.home-applications-cta {
		width: 100%;
		white-space: normal;
	}

	.home-applications-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.home-global {
		padding: 36px 0 40px;
	}

	.home-global-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.home-global-card {
		min-height: 78px;
		padding: 16px 12px 20px;
	}

	.home-global-num {
		font-size: 18px;
	}

	.home-global-name {
		font-size: 10px;
	}

	.home-global-export {
		flex-direction: column;
		align-items: stretch;
		padding: 20px 18px;
		gap: 18px;
	}

	.home-global-export-btn {
		width: 100%;
		white-space: normal;
	}

	.home-trust-inner {
		grid-template-columns: 1fr;
		gap: 10px;
		padding: 8px var(--home-gutter) 36px;
	}

	.home-trust-item {
		padding: 16px 14px 18px;
		justify-content: flex-start;
	}

	.home-trust-item:last-child {
		grid-column: auto;
	}

	.home-trust-row {
		justify-content: flex-start;
	}

	.home-trust-lead,
	.home-trust-accent {
		font-size: var(--home-font-small);
	}

	.home-about {
		padding: 24px 18px;
		margin-bottom: 36px;
	}

	.home-hero-bar {
		padding: 40px var(--home-gutter) 8px;
	}

	.home-hero-bar-inner {
		padding-bottom: 28px;
	}

	.home-hero-bar h1 {
		margin-bottom: 16px;
		font-size: clamp(20px, 5.5vw, 26px);
	}

	.home-hero-bar p {
		max-width: 100%;
		font-size: var(--home-font-body);
		margin-bottom: 4px;
	}

	.home-hero-stats {
		margin-top: 4px;
	}

	.home-hero-stats-inner {
		grid-template-columns: 1fr;
		padding: 0 var(--home-gutter);
	}

	.home-hero-stat {
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
		padding: 22px 16px;
	}

	.home-hero-stat:last-child {
		border-bottom: none;
	}

	.home-hero-actions-wrap {
		padding: 28px var(--home-gutter) 12px;
	}

	.home-hero-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.home-hero-actions .home-btn {
		width: 100%;
	}

	.home-pl-grid {
		gap: 16px;
	}

	.home-industries-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.home-apps {
		margin-top: 24px;
		padding: 18px 16px;
	}

	.home-cta {
		padding: 36px 20px;
	}

	.home-hero-slider {
		width: 100%;
	}

	/* Mobile — portrait frame (previous good view) for mobile slider images */
	.as-slider {
		display: block;
	}

	.as-slider-frame {
		width: 100%;
		height: auto;
		aspect-ratio: 3 / 4;
		max-height: 85vh;
		min-height: 360px;
	}

	.as-slide,
	.as-slide picture {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
	}

	.home-page .as-slide img,
	.as-slide img,
	.home-page .as-slide-img {
		position: absolute !important;
		inset: 0 !important;
		width: 100% !important;
		height: 100% !important;
		object-fit: cover !important;
		object-position: center center !important;
	}

	.as-slide {
		padding: 0;
	}

	.as-slider-nav {
		width: 34px;
		height: 34px;
	}

	.as-slider-prev { left: 6px; }
	.as-slider-next { right: 6px; }

	.as-slide-caption {
		left: 10px;
		bottom: 10px;
	}

	.as-slide-caption span {
		font-size: 12px;
		padding: 4px 8px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.home-btn,
	.home-page .pl-card,
	.home-page .pl-card-media img,
	.home-page .pl-card-name a,
	.home-page .pl-card-btn,
	.home-about-copy a,
	.home-about-copy a strong,
	.home-about-copy a b,
	.home-industry-card,
	.home-industry-card::before,
	.home-industry-icon,
	.home-industry-name,
	.home-industry-desc,
	.home-application-card,
	.home-application-icon,
	.home-application-name,
	.home-global-card,
	.home-global-num,
	.home-global-pin,
	.home-global-export-btn,
	.home-global-export-btn i,
	.home-pricing-field input,
	.home-pricing-submit,
	.home-pricing-form-note a {
		transition: none !important;
	}
	.home-btn:hover,
	.home-page .pl-card:hover,
	.home-page .pl-card-btn:hover,
	.home-industry-card:hover,
	.home-application-card:hover,
	.home-global-card:hover,
	.home-global-export-btn:hover,
	.home-pricing-submit:hover {
		transform: none;
	}
	.home-page .pl-card:hover .pl-card-media img {
		transform: none;
	}
	.home-industry-card:hover .home-industry-icon,
	.home-application-card:hover .home-application-icon {
		transform: none;
	}
	.home-global-export-btn:hover i {
		transform: none;
	}
}
