/* Global configs, variables and buttons moved to global.css */


/* 1. Hero Static - Full Background Image */
.gp-b2b-hero {
	--gp-b2b-hero-height: 640px;
	--gp-b2b-hero-button-width: 200px;
	--gp-b2b-hero-button-height: 50px;
	background-color: #05080d;
	background-image: var(--gp-b2b-hero-bg-image);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 0;
	height: var(--gp-b2b-hero-height);
	min-height: 0;
	border-bottom: 0;
	position: relative;
	color: var(--gp-b2b-white);
	overflow: hidden;
	display: flex;
	align-items: flex-start;
}
.gp-b2b-hero__texture { display: none; }
.gp-b2b-hero .gp-b2b-hero__layout { box-sizing: border-box; display: grid; position: relative; z-index: 2; align-items: start; width: calc(100% - 48px); max-width: 1344px; height: var(--gp-b2b-hero-height); padding: 96px 0 0; }
@media (min-width: 992px) { .gp-b2b-hero .gp-b2b-hero__layout { grid-template-columns: minmax(0, 1fr); } }

.gp-b2b-hero__content { z-index: 2; width: 100%; max-width: 680px; }
.gp-b2b-hero__preheader { display: block; font-family: var(--gp-b2b-font-regular); font-size: 16px; font-weight: 400; line-height: 20px; color: #ffffff; letter-spacing: 0; text-transform: uppercase; margin: 0 0 16px; }
.gp-b2b-hero__title { margin: 0 0 18px; color: var(--gp-b2b-white); font-family: var(--gp-b2b-font-black); font-size: 38px; font-weight: 900; line-height: 1.12; letter-spacing: 0; }
.gp-b2b-hero__subtitle { max-width: 796px; margin: 0 0 28px; color: #ffffff; font-family: var(--gp-b2b-font-regular); font-size: 16px; font-weight: 400; line-height: 1.4; letter-spacing: 0; }
.gp-b2b-hero__actions { display: flex; flex-direction: column; gap: 15px; }
.gp-b2b-hero__actions .gp-b2b-btn { box-sizing: border-box; display: inline-flex; align-items: center; justify-content: center; width: var(--gp-b2b-hero-button-width); height: var(--gp-b2b-hero-button-height); min-height: var(--gp-b2b-hero-button-height); padding: 0; border: 2px solid transparent; border-radius: 2px !important; font-family: var(--gp-b2b-font-regular) !important; font-size: 16px; font-weight: 400; line-height: 1; letter-spacing: 0; transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease; }
.gp-b2b-hero__actions .gp-b2b-btn--primary { background: #004dff; border-color: #004dff; color: #ffffff; }
.gp-b2b-hero__actions .gp-b2b-btn--ghost { background: transparent; border: 2px solid #ffffff; color: #ffffff; }
.gp-b2b-hero__actions .gp-b2b-btn:hover,
.gp-b2b-hero__actions .gp-b2b-btn:focus-visible { transform: translateY(-2px); }
.gp-b2b-hero__actions .gp-b2b-btn--primary:hover,
.gp-b2b-hero__actions .gp-b2b-btn--primary:focus-visible { background: var(--gp-b2b-primary-hover); border-color: var(--gp-b2b-primary-hover); color: #ffffff; box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.28); }
.gp-b2b-hero__actions .gp-b2b-btn--ghost:hover,
.gp-b2b-hero__actions .gp-b2b-btn--ghost:focus-visible { background: #ffffff; border-color: #ffffff; color: var(--gp-b2b-primary); box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18); }
.gp-b2b-hero__actions .gp-b2b-btn:focus-visible { outline: 2px solid #ffffff; outline-offset: 3px; }
.gp-b2b-hero__actions .gp-b2b-btn:active { transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
	.gp-b2b-hero__actions .gp-b2b-btn { transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease; }
	.gp-b2b-hero__actions .gp-b2b-btn:hover,
	.gp-b2b-hero__actions .gp-b2b-btn:focus-visible,
	.gp-b2b-hero__actions .gp-b2b-btn:active { transform: none; }
}
@media (min-width: 768px) {
	.gp-b2b-hero { --gp-b2b-hero-height: 560px; --gp-b2b-hero-button-width: 180px; --gp-b2b-hero-button-height: 48px; }
	.gp-b2b-hero .gp-b2b-hero__layout { width: calc(100% - 96px); padding-top: 120px; }
	.gp-b2b-hero__content { max-width: 700px; }
	.gp-b2b-hero__preheader { font-size: 18px; line-height: 22px; margin-bottom: 18px; }
	.gp-b2b-hero__title { font-size: 48px; line-height: 52px; margin-bottom: 20px; }
	.gp-b2b-hero__subtitle { font-size: 18px; line-height: 22px; margin-bottom: 28px; }
	.gp-b2b-hero__actions { flex-direction: row; gap: 25px; }
	.gp-b2b-hero__actions .gp-b2b-btn { font-size: 18px; }
}
@media (min-width: 1280px) {
	.gp-b2b-hero { --gp-b2b-hero-height: clamp(480px, 33.333vw, 640px); --gp-b2b-hero-button-width: clamp(170px, 10.416vw, 200px); --gp-b2b-hero-button-height: clamp(44px, 2.604vw, 50px); }
	.gp-b2b-hero .gp-b2b-hero__layout { width: min(70vw, 1344px); padding-top: clamp(127px, 8.802vw, 169px); }
	.gp-b2b-hero__content { max-width: min(44.583vw, 856px); }
	.gp-b2b-hero__preheader { font-size: 16px; line-height: 20px; margin-bottom: 16px; }
	.gp-b2b-hero__title { font-size: 44px; line-height: 48px; margin-bottom: 18px; }
	.gp-b2b-hero__subtitle { font-size: 16px; line-height: 20px; margin-bottom: 24px; }
	.gp-b2b-hero__actions { gap: clamp(20px, 1.302vw, 25px); }
	.gp-b2b-hero__actions .gp-b2b-btn { font-size: 17px; }
}
@media (min-width: 1440px) {
	.gp-b2b-hero__preheader { font-size: 18px; line-height: 22px; margin-bottom: 18px; }
	.gp-b2b-hero__title { font-size: 48px; line-height: 52px; margin-bottom: 20px; }
	.gp-b2b-hero__subtitle { font-size: 18px; line-height: 22px; margin-bottom: 26px; }
	.gp-b2b-hero__actions .gp-b2b-btn { font-size: 18px; }
}
@media (min-width: 1600px) {
	.gp-b2b-hero__title { font-size: 52px; line-height: 56px; }
}
@media (min-width: 1800px) {
	.gp-b2b-hero__preheader { font-size: 20px; line-height: 24px; margin-bottom: 20px; }
	.gp-b2b-hero__title { font-size: 60px; line-height: 65px; margin-bottom: 23px; }
	.gp-b2b-hero__subtitle { font-size: 20px; line-height: 24px; margin-bottom: 31px; }
	.gp-b2b-hero__actions .gp-b2b-btn { font-size: 20px; }
}

/* Ghost button block moved to global.css */

@media (max-width: 767px) {
	.gp-b2b-hero {
		--gp-b2b-hero-height: 560px;
		height: auto;
		background-image: var(--gp-b2b-hero-bg-image);
		min-height: 560px;
		background-position: 68% top;
	}

	.gp-b2b-hero .gp-b2b-hero__layout {
		width: 100%;
		height: auto;
		min-height: 560px;
		padding: 72px 24px;
		align-items: center;
	}

	.gp-b2b-hero__actions .gp-b2b-btn {
		width: 100%;
		max-width: 220px;
		font-size: 16px;
	}
}

/* 2. Features */
.gp-b2b-features { margin: 0; padding: 92px 0; background: var(--gp-b2b-white); border-bottom: 0; overflow-x: clip; }
.gp-b2b-features .gp-b2b-features__container { box-sizing: border-box; width: calc(100% - 96px); max-width: 1344px; padding: 0; }
.gp-b2b-features__grid { position: relative; display: grid; grid-template-columns: repeat(4, 300px); align-items: center; justify-content: start; column-gap: 30px; row-gap: 0; min-height: 246px; padding: 12px 28px 12px 26px; overflow: visible; }
.gp-b2b-feature-card { position: relative; z-index: 1; width: 100%; min-width: 0; min-height: 222px; padding: 0; background: transparent; border: 0; border-radius: 0; display: flex; flex-direction: column; transition: transform 0.3s ease; }
.gp-b2b-feature-card:not(:first-child)::before { content: ""; position: absolute; top: 25px; left: -16px; width: 2px; height: 185px; background: #e0e4ea; pointer-events: none; }
.gp-b2b-feature-card:hover { transform: translateY(-3px); }
.gp-b2b-feature-card__icon { display: block; width: 74px; height: 74px; object-fit: contain; object-position: left top; margin: 0 0 14px; }
.gp-b2b-feature-card__title { width: 100%; min-height: 24px; font-size: 20px; line-height: 1.2; font-weight: 900; font-family: var(--gp-b2b-font-black); margin: 0 0 12px; color: #383838; letter-spacing: 0; }
.gp-b2b-feature-card__desc { width: 100%; min-height: 57px; font-size: 16px; color: #383838; line-height: 1.18; letter-spacing: -0.03em; margin: 0 0 18px; flex-grow: 1; font-family: var(--gp-b2b-font-regular); }
.gp-b2b-feature-card__link { display: inline-flex; width: 110px; height: 24px; align-items: center; justify-content: center; font-size: 10px; line-height: 1; font-weight: 400; font-family: var(--gp-b2b-font-regular); color: #004ea2; text-decoration: none; border: 2px solid #004ea2; background: #ffffff; transition: color 0.3s ease, background-color 0.3s ease; margin-top: auto; align-self: flex-start; }
.gp-b2b-feature-card__link:hover { color: #ffffff; background: #004ea2; border-color: #004ea2; }
@media (max-width: 1439px) {
	.gp-b2b-features__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 1287px) {
	.gp-b2b-features .gp-b2b-features__container { width: auto; max-width: none; padding: 0 32px; }
	.gp-b2b-features__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); column-gap: 24px; row-gap: 28px; min-height: 0; padding: 28px 0; }
	.gp-b2b-feature-card { min-height: 0; }
	.gp-b2b-feature-card:not(:first-child)::before { top: 8px; left: -13px; height: calc(100% - 16px); }
	.gp-b2b-feature-card__icon { width: clamp(50px, 5vw, 62px); height: clamp(50px, 5vw, 62px); margin-bottom: 12px; }
	.gp-b2b-feature-card__title { min-height: 0; font-size: clamp(16px, 1.5vw, 18px); line-height: 1.22; margin-bottom: 10px; }
	.gp-b2b-feature-card__desc { min-height: 0; font-size: 14px; line-height: 1.25; margin-bottom: 16px; letter-spacing: -0.015em; }
	.gp-b2b-feature-card__link { width: 106px; height: 23px; font-size: 9.5px; }
}
@media (max-width: 1024px) {
	.gp-b2b-features__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 28px; row-gap: 30px; padding: 26px 0; justify-items: stretch; }
	.gp-b2b-feature-card:not(:first-child)::before { display: none; }
	.gp-b2b-feature-card:nth-child(even)::before { display: block; top: 0; left: -15px; height: 100%; }
	.gp-b2b-feature-card__icon { width: clamp(46px, 6vw, 58px); height: clamp(46px, 6vw, 58px); }
}
@media (max-width: 640px) {
	.gp-b2b-features { padding: 18px 0 24px; }
	.gp-b2b-features .gp-b2b-features__container { padding: 0 24px; }
	.gp-b2b-features__grid { grid-template-columns: 1fr; row-gap: 22px; padding: 22px 0; }
	.gp-b2b-feature-card { max-width: none; }
	.gp-b2b-feature-card::before { display: none !important; }
	.gp-b2b-feature-card + .gp-b2b-feature-card { border-top: 1px solid #e0e4ea; padding-top: 18px; }
	.gp-b2b-feature-card__icon { width: 44px; height: 44px; margin-bottom: 10px; }
	.gp-b2b-feature-card__title { font-size: 16px; line-height: 1.25; margin-bottom: 8px; }
	.gp-b2b-feature-card__desc { font-size: 13.5px; line-height: 1.3; margin-bottom: 14px; letter-spacing: 0; }
	.gp-b2b-feature-card__link { width: 102px; height: 22px; font-size: 9px; border-width: 1.5px; }
}

/* 3. Products Grid Matrix */
.gp-b2b-products { background: var(--gp-b2b-white); overflow-x: clip; }
.gp-b2b-products.section-spacing { padding: 96px 0 104px; }
.gp-b2b-products .gp-b2b-products__container { box-sizing: border-box; width: calc(100% - 96px); max-width: 1344px; padding: 0; }
.gp-b2b-products__header { position: relative; min-height: 127px; margin-bottom: 64px; }
.gp-b2b-products__title { display: flex; flex-direction: column; width: 60.8%; margin: 0; color: #383838; font-family: var(--gp-b2b-font-black); font-size: 48px; font-weight: 900; line-height: 65px; letter-spacing: 0; }
.gp-b2b-products__meta { position: absolute; top: 96px; left: 37.07%; right: 0; height: 31px; margin: 0; color: #383838; font-family: var(--gp-b2b-font-regular); font-size: 16px; line-height: 1; }
.gp-b2b-products__meta-line { position: absolute; top: 0; left: 0; right: 44px; display: block; height: 4px; background: #f6f6f6; }
.gp-b2b-products__meta-text { position: absolute; top: 8px; right: 45px; line-height: 22px; white-space: nowrap; }
.gp-b2b-products__meta-caret { position: absolute; top: 4px; right: 0; width: 0; height: 0; border-left: 9px solid transparent; border-right: 9px solid transparent; border-top: 20px solid #004ea2; }
.gp-b2b-products__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 60px; row-gap: 84px; margin-top: 0; }

.gp-b2b-product-card { position: relative; display: flex; flex-direction: column; min-width: 0; min-height: 507px; background: transparent; border: 0; border-radius: 0 !important; overflow: visible; }
.gp-b2b-product-card::before,
.gp-b2b-product-card__blueprint { display: none; }
.gp-b2b-product-card__image { position: relative; z-index: 1; display: flex; align-items: flex-start; justify-content: center; height: 403px; padding: 0; border: 0; background: #f6f6f6; overflow: hidden; }
.gp-b2b-product-card__image .gp-b2b-img-placeholder { height: 100%; border-radius: 0; border: none; background: transparent; }
.gp-b2b-product-card__media { display: block; width: 100%; height: 100%; object-fit: contain; object-position: center center; }
.gp-b2b-home-image-preview-trigger,
.gp-b2b-app-card__media { cursor: zoom-in; }

.gp-b2b-product-card__specs { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(132px, 150px) repeat(4, minmax(0, 1fr)); align-items: stretch; height: 60px; min-height: 60px; margin-top: -60px; background: #f6f6f6; overflow: hidden; }
.gp-b2b-product-card__title { display: flex; flex-direction: column; justify-content: center; gap: 0; min-width: 0; min-height: 60px; margin: 0; padding: 6px 12px 6px 18px; color: #ffffff; background: #004ea2; font-family: var(--gp-b2b-font-black) !important; font-size: 18px; font-weight: 900; line-height: 22px; letter-spacing: 0; text-transform: uppercase !important; }
.gp-b2b-product-card--din-rail .gp-b2b-product-card__title,
.gp-b2b-product-card--distribution-box .gp-b2b-product-card__title { font-size: 14px; }
.gp-b2b-product-card--distribution-box .gp-b2b-product-card__title { line-height: 20px; }
.gp-b2b-product-card__title span { white-space: nowrap; }
.gp-b2b-spec-item { min-width: 0; display: flex; flex-direction: column; justify-content: center; gap: 1px; padding: 7px 10px 7px 12px; border: 0; border-left: 1px solid #d9d9d9; background: transparent; color: #383838; font-family: var(--gp-b2b-font-regular); }
.gp-b2b-spec-item strong { color: #383838; font-family: var(--gp-b2b-font-regular); font-size: 11px; font-weight: 400; line-height: 14px; letter-spacing: 0; text-transform: uppercase !important; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gp-b2b-spec-item span { color: #383838; font-family: var(--gp-b2b-font-black); font-size: 12px; font-weight: 900; line-height: 14px; letter-spacing: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gp-b2b-product-card__footer { display: grid; grid-template-columns: minmax(0, 350px) 185px; align-items: start; justify-content: space-between; gap: 24px; min-height: 104px; margin-top: 0; padding: 34px 20px 0; }
.gp-b2b-product-card__content { display: contents; }
.gp-b2b-product-card__desc { max-width: 350px; margin: 0; color: #383838; font-family: var(--gp-b2b-font-regular); font-size: 16px; line-height: 18px; letter-spacing: 0; }
.gp-b2b-product-card__link { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 185px; height: 45px; padding: 0 42px 0 18px; border: 2px solid #dbe6f2; border-radius: 2px; background: #ffffff; color: #383838; font-family: var(--gp-b2b-font-black); font-size: 15px; font-weight: 900; line-height: 22px; text-decoration: none; text-transform: uppercase !important; white-space: nowrap; transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease; }
.gp-b2b-product-card__link::after { content: ""; position: absolute; right: 17px; width: 8px; height: 8px; border-top: 2px solid #bddced; border-right: 2px solid #bddced; transform: rotate(45deg); }
.gp-b2b-product-card__link:hover { color: #004ea2; border-color: #bddced; transform: translateX(2px); }

@media (min-width: 721px) {
	.gp-b2b-spec-item span { overflow: visible; text-overflow: clip; }
	.gp-b2b-product-card--din-rail .gp-b2b-spec-item:nth-of-type(2) strong { font-size: 10px; }
	.gp-b2b-product-card--distribution-box .gp-b2b-spec-item:last-child span { font-size: 10px; line-height: 12px; white-space: normal; }
}

@media (max-width: 1439px) {
	.gp-b2b-products .gp-b2b-products__container { width: calc(100% - 48px); }
}
@media (max-width: 1180px) {
	.gp-b2b-products.section-spacing { padding: 76px 0 88px; }
	.gp-b2b-products .gp-b2b-products__container { width: auto; max-width: none; padding: 0 32px; }
	.gp-b2b-products__header { min-height: 0; margin-bottom: 48px; }
	.gp-b2b-products__title { width: auto; font-size: 42px; line-height: 1.18; }
	.gp-b2b-products__meta { position: relative; top: auto; left: auto; right: auto; display: grid; grid-template-columns: minmax(80px, 1fr) auto 18px; align-items: center; gap: 24px; height: auto; margin-top: 20px; line-height: 1.2; }
	.gp-b2b-products__meta-line,
	.gp-b2b-products__meta-text,
	.gp-b2b-products__meta-caret { position: static; }
	.gp-b2b-products__meta-line { height: 4px; }
	.gp-b2b-products__meta-text { line-height: 1.2; }
	.gp-b2b-products__meta-caret { border-left-width: 9px; border-right-width: 9px; border-top-width: 20px; }
	.gp-b2b-products__grid { grid-template-columns: 1fr; row-gap: 64px; }
	.gp-b2b-product-card { max-width: 760px; margin: 0 auto; width: 100%; }
}
@media (max-width: 720px) {
	.gp-b2b-products.section-spacing { padding: 56px 0 64px; }
	.gp-b2b-products .gp-b2b-products__container { padding: 0 24px; }
	.gp-b2b-products__title { font-size: 34px; line-height: 1.18; }
	.gp-b2b-products__meta { grid-template-columns: 1fr 18px; gap: 16px; font-size: 14px; }
	.gp-b2b-products__meta-line { grid-column: 1 / -1; }
	.gp-b2b-products__meta-text { white-space: normal; }
	.gp-b2b-products__meta-caret { border-left-width: 8px; border-right-width: 8px; border-top-width: 18px; }
	.gp-b2b-products__grid { row-gap: 46px; }
	.gp-b2b-product-card__image { height: 300px; }
	.gp-b2b-product-card__media { height: 100%; object-fit: contain; object-position: center center; }
	.gp-b2b-product-card__specs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); height: auto; min-height: 0; margin-top: 0; }
	.gp-b2b-product-card__title { grid-column: 1 / -1; flex-basis: auto; min-height: 58px; padding: 7px 16px; font-size: 18px; }
	.gp-b2b-spec-item { min-height: 58px; padding: 10px 14px; border-left: 0; border-top: 1px solid #d9d9d9; }
	.gp-b2b-spec-item:nth-of-type(even) { border-left: 1px solid #d9d9d9; }
	.gp-b2b-spec-item strong { font-size: 11px; }
	.gp-b2b-spec-item span { font-size: 14px; }
	.gp-b2b-product-card__footer { grid-template-columns: 1fr; gap: 18px; margin-top: 22px; padding: 0; }
	.gp-b2b-product-card__desc { max-width: none; font-size: 15px; line-height: 1.28; }
	.gp-b2b-product-card__link { width: 176px; height: 42px; font-size: 14px; }
}

body.gp-b2b-home-image-preview-open { overflow: hidden; }

.gp-b2b-home-image-preview {
	position: fixed;
	inset: 0;
	z-index: 12000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(7, 17, 29, 0.88);
	backdrop-filter: blur(2px);
}

.gp-b2b-home-image-preview[hidden] {
	display: none !important;
}

.gp-b2b-home-image-preview__shell {
	position: relative;
	max-width: min(1200px, 96vw);
	max-height: 90vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.gp-b2b-home-image-preview__img {
	display: block;
	max-width: 100%;
	max-height: 90vh;
	width: auto;
	height: auto;
	border: 1px solid rgba(255, 255, 255, 0.28);
	background: #0f1824;
}

.gp-b2b-home-image-preview__close {
	position: absolute;
	top: -44px;
	right: 0;
	width: 36px;
	height: 36px;
	border: 1px solid rgba(255, 255, 255, 0.46);
	background: rgba(7, 17, 29, 0.82);
	color: #ffffff;
	font-size: 23px;
	line-height: 1;
	cursor: pointer;
}

.gp-b2b-home-image-preview__close:hover,
.gp-b2b-home-image-preview__close:focus {
	border-color: #ffffff;
	background: rgba(7, 17, 29, 0.96);
}

/* 4. Factory Infrastructure */
.gp-b2b-factory { background-color: var(--gp-b2b-white); position: relative; border-bottom: 1px solid var(--gp-b2b-border); overflow: hidden; }
.gp-b2b-factory.section-spacing { padding: 93px 0 110px; }
.gp-b2b-factory::before { content: none; }

.gp-b2b-factory .gp-b2b-factory__container { box-sizing: border-box; width: calc(100% - 96px); max-width: 1344px; padding: 0; position: relative; z-index: 2; }
.gp-b2b-factory__header { position: relative; min-height: 140px; margin-bottom: 84px; }
.gp-b2b-factory .gp-b2b-factory__title { display: flex; flex-direction: column; width: 60.8%; margin: 0; color: #383838; font-family: var(--gp-b2b-font-black); font-size: 48px; font-weight: 900; line-height: 65px; letter-spacing: 0; text-transform: uppercase !important; }
.gp-b2b-factory__meta { position: absolute; top: 110px; left: 36.91%; right: 0; height: 30px; margin: 0; color: #383838; font-family: var(--gp-b2b-font-regular); font-size: 16px; line-height: 1; }
.gp-b2b-factory__meta-line { position: absolute; top: 0; left: 0; right: 44px; display: block; height: 4px; background: #f6f6f6; }
.gp-b2b-factory__meta-text { position: absolute; top: 8px; right: 45px; line-height: 22px; white-space: nowrap; }
.gp-b2b-factory__meta-caret { position: absolute; top: 4px; right: 0; width: 0; height: 0; border-left: 9px solid transparent; border-right: 9px solid transparent; border-top: 20px solid #004ea2; }
.gp-b2b-factory__body { --factory-image-offset: 329px; --factory-copy-width: 480px; position: relative; min-height: 727px; }
.gp-b2b-factory__content { position: absolute; top: 0; left: 0; z-index: 3; display: flex; flex-direction: column; align-items: flex-start; width: var(--factory-copy-width); }
.gp-b2b-factory__desc { width: 100%; min-height: 160px; margin: 0 0 41px; padding: 32px 39px; background: rgba(0, 78, 162, 0.9); color: #ffffff; font-family: var(--gp-b2b-font-regular); font-size: 15px; font-weight: 400; line-height: 24px; letter-spacing: 0.02em; }
.gp-b2b-factory-stats { display: flex; flex-direction: column; gap: 16px; width: 274px; margin: 0 0 78px; }
.gp-b2b-factory-stat { width: 274px; min-height: 85px; padding-bottom: 0; border-bottom: 2px solid #dbe6f2; }
.gp-b2b-factory-stat__value { display: flex; align-items: baseline; gap: 8px; margin: 0 0 3px; white-space: nowrap; color: #383838; font-family: var(--gp-b2b-font-black); font-weight: 900; letter-spacing: -0.02em; }
.gp-b2b-factory-stat__number { color: #004ea2; font-size: 47px; line-height: 48px; }
.gp-b2b-factory-stat__unit { font-size: 28px; line-height: 48px; }
.gp-b2b-factory-stat__label { margin-left: 3px; color: #383838; font-family: var(--gp-b2b-font-regular); font-size: 18px; font-weight: 400; line-height: 20px; text-transform: uppercase; white-space: nowrap; }
.gp-b2b-factory__facility-link { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 274px; height: 60px; padding: 0 44px 0 18px; border: 2px solid #dbe6f2; border-radius: 2px; background: #ffffff; color: #383838; font-family: var(--gp-b2b-font-black); font-size: 16px; font-weight: 900; line-height: 22px; text-decoration: none; text-transform: uppercase !important; white-space: nowrap; transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease; }
.gp-b2b-factory__facility-link::after { content: ""; position: absolute; right: 23px; width: 8px; height: 8px; border-top: 2px solid #bddced; border-right: 2px solid #bddced; transform: rotate(45deg); }
.gp-b2b-factory__facility-link:hover,
.gp-b2b-factory__facility-link:focus { color: #004ea2; border-color: #bddced; transform: translateX(2px); }
.gp-b2b-factory__images { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 35px; margin-left: var(--factory-image-offset); }
.gp-b2b-factory-img-main,
.gp-b2b-factory-img-sub { overflow: hidden; border: 0; border-radius: 0; background: #f6f6f6; box-shadow: none; }
.gp-b2b-factory-img-main { grid-column: 1 / -1; width: 100%; height: 470px; }
.gp-b2b-factory-img-sub { width: 100%; height: 222px; }
.gp-b2b-factory__images-sub { display: contents; }
.gp-b2b-factory__media { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }

@media (max-width: 1439px) {
	.gp-b2b-factory .gp-b2b-factory__container { width: calc(100% - 96px); }
	.gp-b2b-factory__body { --factory-image-offset: clamp(260px, 22.85vw, 329px); --factory-copy-width: clamp(420px, 33.33vw, 480px); }
	.gp-b2b-factory__desc { padding: 28px clamp(28px, 2.75vw, 39px); }
}
@media (max-width: 1180px) {
	.gp-b2b-factory.section-spacing { padding: 76px 0 88px; }
	.gp-b2b-factory .gp-b2b-factory__container { width: auto; max-width: none; padding: 0 32px; }
	.gp-b2b-factory__header { min-height: 0; margin-bottom: 48px; }
	.gp-b2b-factory .gp-b2b-factory__title { width: auto; font-size: 42px; line-height: 1.18; }
	.gp-b2b-factory__meta { position: relative; top: auto; left: auto; right: auto; display: grid; grid-template-columns: minmax(80px, 1fr) auto 18px; align-items: center; gap: 24px; height: auto; margin-top: 20px; line-height: 1.2; }
	.gp-b2b-factory__meta-line,
	.gp-b2b-factory__meta-text,
	.gp-b2b-factory__meta-caret { position: static; }
	.gp-b2b-factory__meta-line { height: 4px; }
	.gp-b2b-factory__meta-text { line-height: 1.2; }
	.gp-b2b-factory__meta-caret { border-left-width: 9px; border-right-width: 9px; border-top-width: 20px; }
	.gp-b2b-factory__body { min-height: 0; }
	.gp-b2b-factory__content { position: relative; width: 100%; display: grid; grid-template-columns: minmax(0, 1fr) minmax(220px, 274px); align-items: start; gap: 32px; margin-bottom: 32px; }
	.gp-b2b-factory__desc { min-height: 0; margin-bottom: 0; }
	.gp-b2b-factory-stats { margin-bottom: 28px; }
	.gp-b2b-factory__images { margin-left: 0; gap: 24px; }
	.gp-b2b-factory-img-main { height: 420px; }
	.gp-b2b-factory-img-sub { height: 220px; }
}
@media (max-width: 720px) {
	.gp-b2b-factory.section-spacing { padding: 56px 0 64px; }
	.gp-b2b-factory .gp-b2b-factory__container { padding: 0 24px; }
	.gp-b2b-factory .gp-b2b-factory__title { font-size: 34px; line-height: 1.18; }
	.gp-b2b-factory__meta { grid-template-columns: 1fr 18px; gap: 16px; font-size: 14px; }
	.gp-b2b-factory__meta-line { grid-column: 1 / -1; }
	.gp-b2b-factory__meta-text { white-space: normal; }
	.gp-b2b-factory__meta-caret { border-left-width: 8px; border-right-width: 8px; border-top-width: 18px; }
	.gp-b2b-factory__content { display: flex; gap: 28px; margin-bottom: 28px; }
	.gp-b2b-factory__desc { padding: 24px; font-size: 15px; line-height: 1.45; letter-spacing: 0; }
	.gp-b2b-factory-stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 20px; width: 100%; }
	.gp-b2b-factory-stat { width: auto; min-width: 0; padding-bottom: 12px; }
	.gp-b2b-factory-stat__value { gap: 6px; }
	.gp-b2b-factory-stat__number { font-size: clamp(30px, 9vw, 40px); }
	.gp-b2b-factory-stat__unit { font-size: clamp(17px, 5vw, 22px); }
	.gp-b2b-factory-stat__label { margin-left: 0; font-size: 12px; line-height: 1.2; white-space: normal; }
	.gp-b2b-factory__facility-link { width: min(100%, 274px); height: 52px; font-size: 14px; }
	.gp-b2b-factory__images { grid-template-columns: 1fr; gap: 18px; }
	.gp-b2b-factory-img-main { height: 300px; }
	.gp-b2b-factory__images-sub { display: grid; grid-template-columns: 1fr; gap: 18px; }
	.gp-b2b-factory-img-sub { height: 210px; }
}
@media (max-width: 560px) {
	.gp-b2b-factory-stats { grid-template-columns: 1fr; }
	.gp-b2b-factory-img-main { height: 260px; }
	.gp-b2b-factory-img-sub { height: 190px; }
}

/* 5. Apps */
.gp-b2b-applications { background-color: #0d151e; color: #ffffff; overflow-x: clip; }
.gp-b2b-applications.section-spacing { padding: 95px 0 110px; }
.gp-b2b-applications .gp-b2b-applications__container { box-sizing: border-box; width: calc(100% - 96px); max-width: 1344px; padding: 0; }
.gp-b2b-applications__header { position: relative; min-height: 139px; margin-bottom: 108px; }
.gp-b2b-applications__title { display: flex; flex-direction: column; width: 58%; margin: 0; color: #ffffff; font-family: var(--gp-b2b-font-black); font-size: 48px; font-weight: 900; line-height: 65px; letter-spacing: 0; text-transform: uppercase !important; }
.gp-b2b-applications__meta { position: absolute; top: 110px; left: 36.96%; right: 0; height: 28px; margin: 0; color: #ffffff; font-family: var(--gp-b2b-font-regular); font-size: 16px; line-height: 1; }
.gp-b2b-applications__meta-line { position: absolute; top: 0; left: 0; right: 44px; display: block; height: 4px; background: #f6f6f6; }
.gp-b2b-applications__meta-text { position: absolute; top: 8px; right: 45px; line-height: 22px; white-space: nowrap; }
.gp-b2b-applications__meta-caret { position: absolute; top: 4px; right: 0; width: 0; height: 0; border-left: 9px solid transparent; border-right: 9px solid transparent; border-top: 20px solid #004ea2; }
.gp-b2b-applications__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: start; gap: 42px; margin: 0; }
.gp-b2b-app-card { display: flex; flex-direction: column; min-width: 0; background: transparent; border: 0; border-radius: 0; }
.gp-b2b-app-card__image-wrapper { width: 100%; aspect-ratio: 420 / 237.557; margin: 0 0 47px; overflow: hidden; background: #111820; border: 0; }
.gp-b2b-app-card__media { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.gp-b2b-app-card__content { display: flex; flex-direction: column; align-items: flex-start; flex-grow: 1; padding: 0; }
.gp-b2b-app-card__title { margin: 0 0 11px; color: #ffffff; font-family: var(--gp-b2b-font-black); font-size: 20px; font-weight: 900; line-height: 24px; letter-spacing: 0; text-transform: uppercase !important; }
.gp-b2b-app-card__desc { width: max-content; max-width: 100%; min-height: 60px; margin: 0 0 40px; color: #ffffff; font-family: var(--gp-b2b-font-regular); font-size: 16px; font-weight: 400; line-height: 20px; letter-spacing: 0; }
.gp-b2b-app-card__desc span { line-height: inherit; white-space: nowrap; }
.gp-b2b-app-card__link { position: relative; display: inline-flex; align-items: center; justify-content: flex-start; width: 138px; height: 24px; padding: 0 26px 0 12px; border: 0; border-radius: 2px; background: #004ea2; color: #ffffff; font-family: var(--gp-b2b-font-black); font-size: 12px; font-weight: 900; line-height: 24px; text-decoration: none; text-transform: uppercase !important; white-space: nowrap; transition: background-color 0.2s ease, transform 0.2s ease; }
.gp-b2b-app-card__link::after { content: ">"; position: absolute; right: 9px; top: 0; color: #ffffff; font-family: var(--gp-b2b-font-black); font-size: 12px; font-weight: 900; line-height: 24px; }
.gp-b2b-app-card__link:hover,
.gp-b2b-app-card__link:focus { background: #0060c7; color: #ffffff; transform: translateY(-1px); }
@media (max-width: 1439px) {
	.gp-b2b-applications .gp-b2b-applications__container { width: calc(100% - 96px); }
}
@media (max-width: 1180px) {
	.gp-b2b-applications.section-spacing { padding: 76px 0 88px; }
	.gp-b2b-applications .gp-b2b-applications__container { width: auto; max-width: none; padding: 0 32px; }
	.gp-b2b-applications__header { min-height: 0; margin-bottom: 58px; }
	.gp-b2b-applications__title { width: auto; font-size: 42px; line-height: 1.18; }
	.gp-b2b-applications__meta { position: relative; top: auto; left: auto; right: auto; display: grid; grid-template-columns: minmax(80px, 1fr) auto 18px; align-items: center; gap: 24px; height: auto; margin-top: 20px; line-height: 1.2; }
	.gp-b2b-applications__meta-line,
	.gp-b2b-applications__meta-text,
	.gp-b2b-applications__meta-caret { position: static; }
	.gp-b2b-applications__meta-line { height: 4px; }
	.gp-b2b-applications__meta-text { line-height: 1.2; }
	.gp-b2b-applications__meta-caret { border-left-width: 9px; border-right-width: 9px; border-top-width: 20px; }
	.gp-b2b-applications__grid { gap: 32px; }
	.gp-b2b-app-card__image-wrapper { margin-bottom: 32px; }
	.gp-b2b-app-card__desc { min-height: 0; margin-bottom: 28px; font-size: 15px; line-height: 1.35; }
}
@media (max-width: 900px) {
	.gp-b2b-applications__grid { grid-template-columns: 1fr; gap: 42px; max-width: 560px; }
	.gp-b2b-app-card__image-wrapper { margin-bottom: 24px; }
}
@media (max-width: 720px) {
	.gp-b2b-applications.section-spacing { padding: 56px 0 64px; }
	.gp-b2b-applications .gp-b2b-applications__container { padding: 0 24px; }
	.gp-b2b-applications__header { margin-bottom: 44px; }
	.gp-b2b-applications__title { font-size: 34px; line-height: 1.18; }
	.gp-b2b-applications__meta { grid-template-columns: 1fr 18px; gap: 16px; font-size: 14px; }
	.gp-b2b-applications__meta-line { grid-column: 1 / -1; }
	.gp-b2b-applications__meta-text { white-space: normal; }
	.gp-b2b-applications__meta-caret { border-left-width: 8px; border-right-width: 8px; border-top-width: 18px; }
	.gp-b2b-app-card__title { font-size: 18px; line-height: 22px; }
	.gp-b2b-app-card__desc { width: 100%; margin-bottom: 22px; font-size: 15px; line-height: 1.35; }
	.gp-b2b-app-card__desc span { white-space: normal; }
}

/* 7. Trust Logos */
.gp-b2b-trust { border-bottom: 1px solid var(--gp-b2b-border); background: var(--gp-b2b-white); }
.gp-b2b-trust__logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; align-items: center; }
@media (min-width: 768px) { .gp-b2b-trust__logos { justify-content: space-between; gap: 40px; } }
.gp-b2b-trust__logo { font-size: 18px; font-weight: 800; color: #999; text-transform: uppercase; filter: grayscale(100%) opacity(0.7); transition: all 0.3s ease; cursor: default; }
.gp-b2b-trust__logo:hover { filter: grayscale(0%) opacity(1); color: var(--gp-b2b-primary); }

/* 8. CTA Banner */
.gp-b2b-cta-banner { background-color: #0d151e; color: var(--gp-b2b-white); text-align: center; position: relative; overflow: hidden; border: 0; }
.gp-b2b-cta-banner.section-spacing { min-height: 417px; padding: 99.5px 0; }
.gp-b2b-cta-banner::before { content: none; }

.gp-b2b-cta-banner__marker { display: none; }

@media (max-width: 620px) {
	.gp-b2b-home-image-preview {
		padding: 14px;
	}

	.gp-b2b-home-image-preview__close {
		top: -40px;
	}
}

@media (orientation: landscape) and (max-height: 520px) {
	.gp-b2b-home-image-preview {
		padding: 10px;
	}

	.gp-b2b-home-image-preview__shell {
		max-width: 100%;
		max-height: 100%;
	}

	.gp-b2b-home-image-preview__img {
		max-height: calc(100vh - 20px);
	}

	.gp-b2b-home-image-preview__close {
		position: fixed;
		top: 10px;
		right: 10px;
	}
}
.gp-b2b-cta-banner__marker--tl { top: 30px; left: 30px; border-right: none; border-bottom: none; }
.gp-b2b-cta-banner__marker--tr { top: 30px; right: 30px; border-left: none; border-bottom: none; }
.gp-b2b-cta-banner__marker--bl { bottom: 30px; left: 30px; border-right: none; border-top: none; }
.gp-b2b-cta-banner__marker--br { bottom: 30px; right: 30px; border-left: none; border-top: none; }

.gp-b2b-cta-banner__content { position: relative; z-index: 3; max-width: 1007px; margin: 0 auto; }
.gp-b2b-cta-banner__title { margin: 0 0 18px; color: var(--gp-b2b-white); font-family: var(--gp-b2b-font-black); font-size: 48px; font-weight: 900; line-height: 1; letter-spacing: 0; text-transform: uppercase; }
.gp-b2b-cta-banner__desc { display: flex; flex-direction: column; align-items: center; margin: 0 auto 38px; color: #ffffff; font-family: var(--gp-b2b-font-regular); font-size: 16px; font-weight: 400; line-height: 1.75; letter-spacing: 0.02em; }
.gp-b2b-cta-banner__actions { display: flex; gap: 42px; justify-content: center; align-items: center; }
.gp-b2b-cta-banner__btn { display: inline-flex; align-items: center; justify-content: center; width: 246px; height: 58px; border-radius: 2px; font-family: var(--gp-b2b-font-black) !important; font-size: 20px; font-weight: 900; line-height: 1; text-decoration: none; white-space: nowrap; transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease; }
.gp-b2b-cta-banner__btn--primary { background: #004dff; color: #ffffff; }
.gp-b2b-cta-banner__btn--secondary { width: 248px; background: #ffffff; color: #383838; }
.gp-b2b-cta-banner__btn:hover { transform: translateY(-2px); }
.gp-b2b-cta-banner__btn--primary:hover { background: #003fe0; color: #ffffff; }
.gp-b2b-cta-banner__btn--secondary:hover { background: #f2f4f7; color: #383838; }
@media (max-width: 900px) {
	.gp-b2b-cta-banner.section-spacing { min-height: 0; padding: 80px 0; }
	.gp-b2b-cta-banner__content { max-width: 720px; padding: 0 24px; }
	.gp-b2b-cta-banner__title { font-size: 40px; line-height: 1.12; }
	.gp-b2b-cta-banner__actions { gap: 24px; }
}
@media (max-width: 640px) {
	.gp-b2b-cta-banner.section-spacing { padding: 64px 0; }
	.gp-b2b-cta-banner__title { font-size: 32px; line-height: 1.16; }
	.gp-b2b-cta-banner__desc { margin-bottom: 30px; font-size: 15px; line-height: 1.6; }
	.gp-b2b-cta-banner__actions { flex-direction: column; gap: 16px; }
	.gp-b2b-cta-banner__btn,
	.gp-b2b-cta-banner__btn--secondary { width: min(100%, 248px); height: 52px; font-size: 17px; }
}

.gp-b2b-btn--white { background-color: var(--gp-b2b-white); color: var(--gp-b2b-primary); border: 1px solid var(--gp-b2b-white); font-weight: 800; letter-spacing: 1px; font-family: 'Inter', sans-serif;}
.gp-b2b-btn--white:hover { background-color: #f1f1f1; color: var(--gp-b2b-primary); border-color: #f1f1f1; }
.gp-b2b-btn--transparent { background-color: transparent; color: var(--gp-b2b-white); border: 1px solid var(--gp-b2b-white); font-weight: 800; letter-spacing: 1px; font-family: 'Inter', sans-serif;}
.gp-b2b-btn--transparent:hover { background-color: rgba(255,255,255,0.1); color: var(--gp-b2b-white); }

/* 6. CTA / Inquiry Form */
.gp-b2b-cta { position: relative; box-sizing: border-box; min-height: 600px; border-top: 0; background: #f5f5f5; overflow: hidden; }
.gp-b2b-cta.section-spacing { padding: 98px 0 99px; }
.gp-b2b-cta__anchor { position: absolute; top: -96px; left: 0; width: 1px; height: 1px; pointer-events: none; }
.gp-b2b-cta::before { content: none; }
.gp-b2b-cta__layout { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 992px) { .gp-b2b-container.gp-b2b-cta__layout { box-sizing: border-box; width: calc(100% - 96px); max-width: 1344px; height: 403px; padding: 0; grid-template-columns: minmax(0, 554fr) minmax(0, 733fr); align-items: start; gap: 57px; } }

.gp-b2b-cta__content { width: 100%; max-width: 554px; color: #383838; display: flex; flex-direction: column; gap: 48px; }
.gp-b2b-cta__title { display: flex; flex-direction: column; gap: 0; font-size: 48px; font-weight: 900; font-family: var(--gp-b2b-font-black); letter-spacing: 0; color: #383838; margin: 0; line-height: 48px; text-transform: uppercase; }
.gp-b2b-cta__text { width: 100%; font-size: 16px; color: #383838; margin: 0; line-height: 1.5; letter-spacing: 0.02em; font-family: var(--gp-b2b-font-regular); }
@media (max-width: 991px) {
	.gp-b2b-cta.section-spacing { padding: 76px 0 88px; }
	.gp-b2b-container.gp-b2b-cta__layout { max-width: none; padding: 0 32px; }
	.gp-b2b-cta__content { max-width: none; gap: 28px; }
	.gp-b2b-cta__title { font-size: clamp(34px, 8vw, 48px); line-height: 1.05; }
}
@media (max-width: 720px) {
	.gp-b2b-cta.section-spacing { padding: 56px 0 64px; }
	.gp-b2b-container.gp-b2b-cta__layout { padding: 0 24px; }
}

/* The integrated form */
.gp-b2b-cta__form-wrap { width: 100%; height: 403px; }
.gp-b2b-form { box-sizing: border-box; display: flex; flex-direction: column; width: 100%; height: 403px; min-height: 0; background: var(--gp-b2b-white); padding: 40px; border: 0; border-radius: 0; box-shadow: none; position: relative; z-index: 2; }
body .gp-b2b-footer { margin-top: 0; }
.gp-b2b-form__field { margin-bottom: 20px; }
.gp-b2b-form input, .gp-b2b-form textarea { width: 100%; padding: 14px 15px; border: 1px solid var(--gp-b2b-border); background: var(--gp-b2b-white); border-radius: 0 !important; font-size: 15px; font-family: var(--gp-b2b-font-regular); color: var(--gp-b2b-text); transition: border-color 0.3s ease; box-shadow: none; appearance: none; -webkit-appearance: none; }
.gp-b2b-form textarea { height: 96px; resize: vertical; }
.gp-b2b-form .gp-b2b-btn { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; margin-top: auto; font-family: var(--gp-b2b-font-black); }
.gp-b2b-form input:focus, .gp-b2b-form textarea:focus { border-color: var(--gp-b2b-primary); outline: none; box-shadow: none; }
@media (max-width: 991px) {
	.gp-b2b-cta__form-wrap { height: auto; }
	.gp-b2b-form { min-height: 0; }
}
@media (max-width: 520px) {
	.gp-b2b-form { padding: 28px 24px; }
}

/* Homepage adaptive system */
.gp-b2b-homepage-wrap {
	--gp-b2b-home-container: min(70vw, 1344px);
}

@media (min-width: 1181px) {
	.gp-b2b-features {
		padding: clamp(64px, 4.792vw, 92px) 0;
	}

	.gp-b2b-features .gp-b2b-features__container,
	.gp-b2b-products .gp-b2b-products__container,
	.gp-b2b-factory .gp-b2b-factory__container,
	.gp-b2b-applications .gp-b2b-applications__container {
		width: min(calc(100% - 96px), 1344px);
		max-width: none;
	}

	.gp-b2b-features__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		column-gap: clamp(22px, 1.56vw, 30px);
		min-height: 0;
		padding: clamp(8px, 0.63vw, 12px) clamp(20px, 1.46vw, 28px) clamp(8px, 0.63vw, 12px) clamp(18px, 1.35vw, 26px);
	}

	.gp-b2b-feature-card {
		min-height: clamp(198px, 15.42vw, 222px);
	}

	.gp-b2b-feature-card__icon {
		width: clamp(62px, 5.14vw, 74px);
		height: clamp(62px, 5.14vw, 74px);
	}

	.gp-b2b-products.section-spacing,
	.gp-b2b-factory.section-spacing,
	.gp-b2b-applications.section-spacing,
	.gp-b2b-cta.section-spacing {
		padding-left: 0;
		padding-right: 0;
	}

	.gp-b2b-products.section-spacing {
		padding-top: clamp(64px, 5vw, 96px);
		padding-bottom: clamp(70px, 5.42vw, 104px);
	}

	.gp-b2b-products__header,
	.gp-b2b-factory__header,
	.gp-b2b-applications__header {
		margin-bottom: clamp(56px, 4.44vw, 84px);
	}

	.gp-b2b-products__title,
	.gp-b2b-factory .gp-b2b-factory__title,
	.gp-b2b-applications__title {
		font-size: clamp(42px, 3.33vw, 48px);
		line-height: clamp(54px, 4.51vw, 65px);
	}

	.gp-b2b-products__grid {
		column-gap: clamp(36px, 3.13vw, 60px);
		row-gap: clamp(56px, 4.38vw, 84px);
	}

	.gp-b2b-product-card {
		min-height: 0;
	}

	.gp-b2b-product-card__image {
		height: clamp(300px, 20.99vw, 403px);
	}

	.gp-b2b-product-card__specs {
		grid-template-columns: minmax(128px, 150px) repeat(4, minmax(0, 1fr));
	}

	.gp-b2b-product-card__footer {
		grid-template-columns: minmax(0, 1fr) minmax(164px, 185px);
		gap: clamp(16px, 1.67vw, 24px);
		min-height: 0;
		padding: clamp(22px, 1.77vw, 34px) clamp(16px, 1.04vw, 20px) 0;
	}

	.gp-b2b-product-card__link {
		width: clamp(164px, 12.85vw, 185px);
	}

	.gp-b2b-factory.section-spacing {
		padding-top: clamp(64px, 4.84vw, 93px);
		padding-bottom: clamp(74px, 5.73vw, 110px);
	}

	.gp-b2b-factory__body {
		--factory-copy-width: clamp(420px, 25vw, 480px);
		--factory-image-offset: clamp(260px, 17.14vw, 329px);
		min-height: calc(clamp(330px, 24.48vw, 470px) + 35px + 240px);
	}

	.gp-b2b-factory__desc {
		min-height: 0;
		padding: clamp(26px, 1.67vw, 32px) clamp(28px, 2.03vw, 39px);
	}

	.gp-b2b-factory-stats {
		margin-bottom: clamp(54px, 4.06vw, 78px);
	}

	.gp-b2b-factory-img-main {
		height: clamp(330px, 24.48vw, 470px);
	}

	.gp-b2b-factory-img-sub {
		height: 240px;
	}

	.gp-b2b-applications.section-spacing {
		padding-top: clamp(64px, 4.95vw, 95px);
		padding-bottom: clamp(74px, 5.73vw, 110px);
	}

	.gp-b2b-applications__header {
		margin-bottom: clamp(64px, 5.63vw, 108px);
	}

	.gp-b2b-applications__grid {
		gap: clamp(28px, 2.19vw, 42px);
	}

	.gp-b2b-app-card__image-wrapper {
		margin-bottom: clamp(30px, 2.45vw, 47px);
	}

	.gp-b2b-cta-banner.section-spacing {
		min-height: clamp(300px, 21.72vw, 417px);
		padding: clamp(70px, 5.18vw, 99.5px) 0;
	}

	.gp-b2b-cta-banner__content {
		max-width: min(70vw, 1007px);
	}

	.gp-b2b-cta-banner__title {
		font-size: clamp(40px, 3.33vw, 48px);
	}

	.gp-b2b-cta-banner__actions {
		flex-wrap: wrap;
		gap: clamp(24px, 2.92vw, 42px);
	}

	.gp-b2b-cta.section-spacing {
		padding-top: clamp(68px, 5.1vw, 98px);
		padding-bottom: clamp(70px, 5.16vw, 99px);
	}

	.gp-b2b-container.gp-b2b-cta__layout {
		width: min(calc(100% - 96px), 1344px);
		height: auto;
		min-height: 403px;
		grid-template-columns: minmax(320px, 554fr) minmax(420px, 733fr);
		gap: clamp(38px, 2.97vw, 57px);
	}

	.gp-b2b-cta__title {
		font-size: clamp(42px, 3.33vw, 48px);
		line-height: clamp(44px, 3.33vw, 48px);
	}

	.gp-b2b-cta__form-wrap,
	.gp-b2b-form {
		height: auto;
		min-height: 403px;
	}
}

@media (min-width: 1440px) {
	.gp-b2b-factory__body {
		min-height: calc(clamp(330px, 24.48vw, 470px) + 35px + (464px - 16.875vw));
	}

	.gp-b2b-factory-img-sub {
		height: calc(464px - 16.875vw);
	}
}

@media (min-width: 1600px) {
	.gp-b2b-factory__body {
		min-height: calc(clamp(330px, 24.48vw, 470px) + 35px + clamp(194px, 11.85vw, 222px));
	}

	.gp-b2b-factory-img-sub {
		height: clamp(194px, 11.85vw, 222px);
	}
}

@media (min-width: 1280px) {
	.gp-b2b-hero .gp-b2b-hero__layout,
	.gp-b2b-features .gp-b2b-features__container,
	.gp-b2b-products .gp-b2b-products__container,
	.gp-b2b-factory .gp-b2b-factory__container,
	.gp-b2b-applications .gp-b2b-applications__container,
	.gp-b2b-cta-banner .gp-b2b-container,
	.gp-b2b-container.gp-b2b-cta__layout {
		width: var(--gp-b2b-home-container);
		max-width: none;
		padding-left: 0;
		padding-right: 0;
	}
}

@media (max-width: 1180px) and (min-width: 721px) {
	.gp-b2b-hero .gp-b2b-hero__layout,
	.gp-b2b-features .gp-b2b-features__container,
	.gp-b2b-products .gp-b2b-products__container,
	.gp-b2b-factory .gp-b2b-factory__container,
	.gp-b2b-applications .gp-b2b-applications__container,
	.gp-b2b-cta-banner .gp-b2b-container,
	.gp-b2b-container.gp-b2b-cta__layout {
		width: calc(100% - 96px);
		max-width: none;
		padding-left: 0;
		padding-right: 0;
	}

	.gp-b2b-features__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: 32px;
		row-gap: 30px;
	}

	.gp-b2b-feature-card:not(:first-child)::before {
		display: none;
	}

	.gp-b2b-feature-card:nth-child(even)::before {
		display: block;
		top: 0;
		left: -17px;
		height: 100%;
	}

	.gp-b2b-products__grid {
		row-gap: 56px;
	}

	.gp-b2b-product-card__image {
		height: clamp(320px, 42vw, 380px);
	}

	.gp-b2b-factory__content {
		grid-template-columns: minmax(0, 1fr) minmax(220px, 274px);
	}

	.gp-b2b-applications__grid {
		grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
	}

	.gp-b2b-cta-banner__actions {
		flex-wrap: wrap;
	}

	.gp-b2b-form {
		height: auto;
	}
}

@media (max-width: 720px) {
	.gp-b2b-products__header,
	.gp-b2b-factory__header,
	.gp-b2b-applications__header {
		margin-bottom: 40px;
	}

	.gp-b2b-product-card__image {
		height: clamp(238px, 66vw, 300px);
	}

	.gp-b2b-product-card__footer {
		min-height: 0;
	}

	.gp-b2b-factory__content {
		flex-direction: column;
	}

	.gp-b2b-factory__desc {
		width: 100%;
	}

	.gp-b2b-applications__grid {
		max-width: none;
	}

	.gp-b2b-cta-banner .gp-b2b-container {
		width: 100%;
		max-width: none;
		padding-left: 24px;
		padding-right: 24px;
	}

	.gp-b2b-app-card__image-wrapper {
		margin-bottom: 22px;
	}

	.gp-b2b-cta-banner__desc {
		display: block;
	}

	.gp-b2b-cta-banner__desc span {
		display: inline;
	}

	.gp-b2b-cta__text {
		line-height: 1.55;
	}

	.gp-b2b-form {
		height: auto;
	}
}

/* Desktop visual scale: 1920 design, 1600 laptop density. */
@media (min-width: 1280px) {
	.gp-b2b-hero {
		--gp-b2b-hero-button-width: clamp(166px, 10.416vw, 200px);
		--gp-b2b-hero-button-height: clamp(42px, 2.604vw, 50px);
	}

	.gp-b2b-hero__preheader,
	.gp-b2b-hero__subtitle {
		font-size: clamp(16px, 1.041vw, 20px);
		line-height: clamp(20px, 1.25vw, 24px);
	}

	.gp-b2b-hero__title {
		font-size: clamp(44px, 3.125vw, 60px);
		line-height: clamp(48px, 3.385vw, 65px);
	}

	.gp-b2b-hero__actions .gp-b2b-btn {
		font-size: clamp(16px, 1.041vw, 20px);
	}

	.gp-b2b-products__title,
	.gp-b2b-factory .gp-b2b-factory__title,
	.gp-b2b-applications__title {
		font-size: clamp(40px, 2.5vw, 48px);
		line-height: clamp(54px, 3.385vw, 65px);
	}

	.gp-b2b-products__meta,
	.gp-b2b-factory__meta,
	.gp-b2b-applications__meta,
	.gp-b2b-cta__text,
	.gp-b2b-cta-banner__desc {
		font-size: clamp(14px, 0.833vw, 16px);
	}

	.gp-b2b-feature-card__icon {
		width: clamp(60px, 3.854vw, 74px);
		height: clamp(60px, 3.854vw, 74px);
	}

	.gp-b2b-feature-card__title,
	.gp-b2b-app-card__title {
		font-size: clamp(16px, 1.041vw, 20px);
		line-height: clamp(20px, 1.25vw, 24px);
	}

	.gp-b2b-feature-card__desc,
	.gp-b2b-app-card__desc {
		font-size: clamp(14px, 0.833vw, 16px);
	}

	.gp-b2b-feature-card__link {
		width: clamp(92px, 5.729vw, 110px);
		height: clamp(20px, 1.25vw, 24px);
		font-size: clamp(9px, 0.521vw, 10px);
	}

	.gp-b2b-product-card__specs {
		grid-template-columns: minmax(124px, 150px) repeat(4, minmax(0, 1fr));
		height: clamp(50px, 3.125vw, 60px);
		min-height: clamp(50px, 3.125vw, 60px);
		margin-top: calc(clamp(50px, 3.125vw, 60px) * -1);
	}

	.gp-b2b-product-card__title {
		min-height: clamp(50px, 3.125vw, 60px);
		font-size: clamp(15px, 0.937vw, 18px);
		line-height: clamp(18px, 1.145vw, 22px);
		padding: clamp(5px, 0.312vw, 6px) clamp(10px, 0.625vw, 12px) clamp(5px, 0.312vw, 6px) clamp(15px, 0.937vw, 18px);
	}

	.gp-b2b-product-card--din-rail .gp-b2b-product-card__title,
	.gp-b2b-product-card--distribution-box .gp-b2b-product-card__title {
		font-size: clamp(12px, 0.729vw, 14px);
	}

	.gp-b2b-spec-item {
		padding: clamp(6px, 0.364vw, 7px) clamp(8px, 0.52vw, 10px) clamp(6px, 0.364vw, 7px) clamp(10px, 0.625vw, 12px);
	}

	.gp-b2b-spec-item strong {
		font-size: clamp(10px, 0.572vw, 11px);
		line-height: clamp(12px, 0.729vw, 14px);
	}

	.gp-b2b-spec-item span {
		font-size: clamp(11px, 0.625vw, 12px);
		line-height: clamp(12px, 0.729vw, 14px);
	}

	.gp-b2b-product-card__desc {
		font-size: clamp(14px, 0.833vw, 16px);
		line-height: clamp(16px, 0.937vw, 18px);
	}

	.gp-b2b-product-card__link {
		width: clamp(154px, 9.635vw, 185px);
		height: clamp(38px, 2.343vw, 45px);
		font-size: clamp(13px, 0.781vw, 15px);
	}

	.gp-b2b-factory__desc {
		font-size: clamp(13px, 0.781vw, 15px);
		line-height: clamp(20px, 1.25vw, 24px);
	}

	.gp-b2b-factory-stats,
	.gp-b2b-factory-stat,
	.gp-b2b-factory__facility-link {
		width: clamp(228px, 14.27vw, 274px);
	}

	.gp-b2b-factory-stat {
		min-height: clamp(70px, 4.427vw, 85px);
	}

	.gp-b2b-factory-stat__number {
		font-size: clamp(39px, 2.447vw, 47px);
		line-height: clamp(40px, 2.5vw, 48px);
	}

	.gp-b2b-factory-stat__unit {
		font-size: clamp(23px, 1.458vw, 28px);
		line-height: clamp(40px, 2.5vw, 48px);
	}

	.gp-b2b-factory-stat__label {
		font-size: clamp(15px, 0.937vw, 18px);
		line-height: clamp(17px, 1.041vw, 20px);
	}

	.gp-b2b-factory__facility-link {
		height: clamp(50px, 3.125vw, 60px);
		font-size: clamp(13px, 0.833vw, 16px);
	}

	.gp-b2b-app-card__link {
		width: clamp(115px, 7.187vw, 138px);
		height: clamp(20px, 1.25vw, 24px);
		font-size: clamp(10px, 0.625vw, 12px);
		line-height: clamp(20px, 1.25vw, 24px);
	}

	.gp-b2b-app-card__link::after {
		font-size: clamp(10px, 0.625vw, 12px);
		line-height: clamp(20px, 1.25vw, 24px);
	}

	.gp-b2b-cta-banner__title {
		font-size: clamp(40px, 2.5vw, 48px);
		line-height: clamp(46px, 2.916vw, 56px);
	}

	.gp-b2b-cta-banner__btn,
	.gp-b2b-cta-banner__btn--secondary {
		width: clamp(205px, 12.812vw, 246px);
		height: clamp(48px, 3.02vw, 58px);
		font-size: clamp(16px, 1.041vw, 20px);
	}

	.gp-b2b-cta__title {
		font-size: clamp(40px, 2.5vw, 48px);
		line-height: clamp(40px, 2.5vw, 48px);
	}

	.gp-b2b-form {
		padding: clamp(32px, 2.083vw, 40px);
	}

	.gp-b2b-form input,
	.gp-b2b-form textarea {
		padding: clamp(12px, 0.729vw, 14px) clamp(13px, 0.781vw, 15px);
		font-size: clamp(14px, 0.781vw, 15px);
	}

	.gp-b2b-form .gp-b2b-btn {
		min-height: clamp(44px, 2.708vw, 52px);
		font-size: clamp(15px, 0.833vw, 16px);
	}
}
.screen-reader-text { border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal !important; }
