:root {
	--gj-green-950: #082b24;
	--gj-green-800: #124b3d;
	--gj-green-650: #1c6854;
	--gj-orange: #e96f24;
	--gj-orange-dark: #c95716;
	--gj-white: #ffffff;
	--gj-black: #111817;
	--gj-gray-100: #f3f5f4;
	--gj-gray-300: #d5dcda;
	--gj-gray-600: #5f6c68;
	--gj-silver: #aeb8b5;
	--gj-content: 1200px;
	--gj-radius: 4px;
	--gj-shadow: 0 12px 34px rgb(8 43 36 / 10%);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	margin: 0;
	overflow-x: hidden;
	color: var(--gj-black);
	background: var(--gj-white);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1rem;
	line-height: 1.65;
}

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

a {
	color: var(--gj-green-650);
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

a:hover,
a:focus-visible {
	color: var(--gj-orange-dark);
}

button,
input,
select,
textarea {
	font: inherit;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	z-index: 100000;
	top: 8px;
	inset-inline-start: 8px;
	width: auto;
	height: auto;
	padding: 12px 16px;
	clip: auto;
	background: var(--gj-white);
	color: var(--gj-black);
}

.content-shell,
.site-header__inner,
.site-footer__grid,
.site-footer__bottom {
	width: calc(100% - 32px);
	max-width: var(--gj-content);
	margin-inline: auto;
}

/* Global expandable RFQ contact button. */
.gj-contact-fab {
	position: fixed;
	z-index: 9999;
	right: 24px;
	bottom: 24px;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 12px;
	direction: ltr;
	font-family: Arial, Helvetica, sans-serif;
	pointer-events: none;
}

.gj-contact-fab__toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-width: 76px;
	height: 54px;
	padding: 0 18px;
	border: 0;
	border-radius: 999px;
	background: #f97316;
	box-shadow: 0 12px 30px rgb(8 43 36 / 28%);
	color: #fff;
	font-size: 0.9375rem;
	font-weight: 800;
	line-height: 1;
	cursor: pointer;
	pointer-events: auto;
	transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.gj-contact-fab__toggle:hover,
.gj-contact-fab__toggle:focus-visible {
	background: #e55f08;
	box-shadow: 0 16px 34px rgb(8 43 36 / 34%);
	color: #fff;
	transform: scale(1.04);
}

.gj-contact-fab__toggle-icon,
.gj-contact-fab__icon {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
}

.gj-contact-fab svg {
	display: block;
	width: 21px;
	height: 21px;
	fill: currentColor;
}

.gj-contact-fab__menu {
	display: flex;
	flex-direction: column;
	gap: 8px;
	width: min(230px, calc(100vw - 32px));
	padding: 10px;
	border: 1px solid rgb(8 43 36 / 12%);
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 18px 46px rgb(8 43 36 / 22%);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(14px) scale(0.96);
	transform-origin: bottom right;
	transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
}

.gj-contact-fab.is-open .gj-contact-fab__menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0) scale(1);
}

.gj-contact-fab__item {
	display: flex;
	align-items: center;
	gap: 11px;
	min-height: 46px;
	padding: 10px 12px;
	border-radius: 8px;
	color: #082b24;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.gj-contact-fab__item:hover,
.gj-contact-fab__item:focus-visible {
	background: #f3f5f4;
	color: #124b3d;
	transform: translateX(-2px);
}

.gj-contact-fab__item--whatsapp .gj-contact-fab__icon {
	color: #16a34a;
}

@media (max-width: 600px) {
	.gj-contact-fab {
		right: max(16px, env(safe-area-inset-right));
		bottom: max(16px, env(safe-area-inset-bottom));
	}

	.gj-contact-fab__toggle {
		height: 50px;
		min-width: 70px;
		padding-inline: 15px;
	}

	.gj-contact-fab__menu {
		max-height: min(320px, calc(100vh - 100px));
		overflow-y: auto;
	}
}

@media (prefers-reduced-motion: reduce) {
	.gj-contact-fab__toggle,
	.gj-contact-fab__menu,
	.gj-contact-fab__item {
		transition: none;
	}
}

.content-shell {
	padding-block: clamp(48px, 8vw, 96px);
}

.content-shell--narrow {
	max-width: 820px;
}

.site-main {
	min-height: 45vh;
}

.entry-title,
.archive-title,
.error-404 h1 {
	margin-block: 0 24px;
	color: var(--gj-green-950);
	font-size: clamp(2rem, 6vw, 4rem);
	line-height: 1.08;
	letter-spacing: -0.025em;
}

.entry-content > * {
	max-width: 820px;
}

.entry-content > .alignwide {
	max-width: var(--gj-content);
}

.entry-content > .alignfull {
	max-width: none;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 10px 20px;
	border: 2px solid transparent;
	border-radius: var(--gj-radius);
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	text-align: center;
	transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover,
.button:focus-visible {
	transform: translateY(-1px);
}

.button--cta {
	background: var(--gj-orange);
	color: var(--gj-white);
}

.button--cta:hover,
.button--cta:focus-visible {
	background: var(--gj-orange-dark);
	color: var(--gj-white);
}

.site-header {
	position: relative;
	z-index: 20;
	border-bottom: 1px solid var(--gj-gray-300);
	background: var(--gj-white);
}

.site-header__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	min-height: 68px;
	gap: 10px;
}

.site-branding {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	min-width: max-content;
	padding-left: 14px;
	margin-right: 16px;
}

.site-branding .custom-logo-link {
	display: inline-flex;
	align-items: center;
	line-height: 0;
}

.site-branding .custom-logo {
	display: block;
	width: auto;
	height: 30px;
	max-width: none;
	object-fit: contain;
	flex: 0 0 auto;
}

.menu-toggle {
	display: inline-grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border: 1px solid var(--gj-gray-300);
	border-radius: var(--gj-radius);
	background: var(--gj-white);
	color: var(--gj-green-950);
	cursor: pointer;
}

.menu-toggle__icon,
.menu-toggle__icon::before,
.menu-toggle__icon::after {
	display: block;
	width: 22px;
	height: 2px;
	background: currentColor;
	content: "";
}

.menu-toggle__icon::before {
	transform: translateY(-7px);
}

.menu-toggle__icon::after {
	transform: translateY(5px);
}

.primary-navigation {
	display: none;
}

.site-header.is-menu-open .primary-navigation {
	display: block;
	grid-column: 1 / -1;
	padding-block: 8px 18px;
}

.header-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	white-space: nowrap;
}

.header-contact-cta {
	display: none;
	align-items: center;
	justify-content: center;
	height: 46px;
	padding: 0 20px;
	border-radius: 5px;
	background: var(--gj-orange);
	box-shadow: 0 8px 18px rgb(244 122 32 / 24%);
	color: var(--gj-white);
	font-size: 0.9375rem;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
}

.header-contact-cta:hover,
.header-contact-cta:focus-visible {
	background: var(--gj-orange-dark);
	color: var(--gj-white);
}

.primary-menu,
.language-menu,
.footer-menu,
.footer-language-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-menu .sub-menu {
	margin: 0;
	padding: 8px 0 8px 18px;
	list-style: none;
}

.primary-menu .sub-menu a {
	font-size: 0.92rem;
	font-weight: 600;
}

.primary-menu .menu-item-rfq > a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding-inline: 18px;
	border-radius: 5px;
	background: var(--gj-orange);
	color: var(--gj-white);
	font-weight: 800;
	white-space: nowrap;
}

.primary-menu .menu-item-rfq > a:hover,
.primary-menu .menu-item-rfq > a:focus-visible {
	background: var(--gj-orange-dark);
	color: var(--gj-white);
}

.primary-menu a,
.language-menu a {
	display: block;
	padding-block: 10px;
	color: var(--gj-green-950);
	font-weight: 700;
	text-decoration: none;
}

.primary-menu > li,
.primary-menu > li > a {
	white-space: nowrap;
}

.footer-language-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 14px;
}

.footer-language-menu .is-current-language a {
	color: #f5b184;
	font-weight: 800;
}

.language-switcher {
	position: relative;
	display: block;
	z-index: 999;
}

.gj-language-switcher {
	position: relative;
	display: inline-flex;
	align-items: center;
	z-index: 999;
}

.gj-language-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	height: 44px;
	padding: 0 14px;
	border: 0;
	border-radius: 5px;
	background: var(--gj-green-950);
	color: var(--gj-white);
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
	cursor: pointer;
}

.gj-language-toggle:hover,
.gj-language-toggle:focus-visible,
.gj-language-switcher.is-open .gj-language-toggle {
	border-color: var(--gj-green-650);
	background: var(--gj-green-800);
	box-shadow: 0 6px 18px rgb(8 43 36 / 18%);
}

.gj-language-icon {
	font-size: 0.95rem;
	line-height: 1;
}

.gj-language-arrow {
	font-size: 0.72rem;
	transition: transform 180ms ease;
}

.gj-language-switcher.is-open .gj-language-arrow {
	transform: rotate(180deg);
}

.gj-language-menu {
	position: absolute;
	top: calc(100% + 8px);
	inset-inline-end: 0;
	width: max-content;
	min-width: 160px;
	padding: 8px 0;
	margin: 0;
	border: 1px solid var(--gj-gray-300);
	border-radius: 8px;
	background: var(--gj-white);
	box-shadow: 0 12px 30px rgb(0 0 0 / 16%);
	list-style: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
	z-index: 1000;
}

.gj-language-switcher:hover .gj-language-menu,
.gj-language-switcher:focus-within .gj-language-menu,
.gj-language-switcher.is-open .gj-language-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.gj-language-menu a {
	display: block;
	padding: 10px 16px;
	color: var(--gj-black);
	font-size: 0.875rem;
	font-weight: 650;
	text-decoration: none;
	white-space: nowrap;
}

.gj-language-menu a:hover,
.gj-language-menu a:focus-visible,
.gj-language-menu a.is-active {
	background: var(--gj-gray-100);
	color: var(--gj-green-950);
}

.gj-language-menu a.is-active {
	box-shadow: inset 3px 0 0 var(--gj-green-650);
}

.gj-language-menu a[dir="rtl"] {
	direction: rtl;
	text-align: start;
}

.site-footer {
	padding-block-start: 56px;
	background: var(--gj-green-950);
	color: var(--gj-gray-300);
}

.site-footer__brand {
	display: flex;
	justify-content: center;
	width: calc(100% - 32px);
	max-width: var(--gj-content);
	margin: 0 auto 36px;
	text-align: center;
}

.site-footer__brand .custom-logo-link {
	display: inline-flex;
	justify-content: center;
	line-height: 0;
}

.site-footer__brand .custom-logo {
	display: block;
	width: 120px;
	height: auto;
	max-height: none;
	object-fit: contain;
}

.site-footer__grid {
	display: grid;
	gap: 32px;
}

.site-footer h2 {
	margin-block: 0 12px;
	color: var(--gj-white);
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.site-footer a {
	color: var(--gj-white);
}

.site-footer__bottom {
	margin-block-start: 40px;
	padding-block: 20px;
	border-top: 1px solid rgb(255 255 255 / 18%);
	font-size: 0.875rem;
}

.post-grid {
	display: grid;
	gap: 24px;
}

.post-card {
	padding: 24px;
	border: 1px solid var(--gj-gray-300);
	border-top: 4px solid var(--gj-green-650);
	background: var(--gj-white);
	box-shadow: var(--gj-shadow);
}

.post-card__title {
	margin-block-start: 0;
}

.entry-meta,
.eyebrow {
	color: var(--gj-gray-600);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

@media (min-width: 700px) {
	.site-footer__grid,
	.post-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1025px) {
	.site-header__inner {
		display: flex;
		width: calc(100% - 48px);
		max-width: 1320px;
		min-height: 78px;
		gap: 20px;
	}

	.site-branding .custom-logo {
		height: 40px;
	}

	.menu-toggle {
		display: none;
	}

	.primary-navigation {
		display: flex;
		flex: 1 1 auto;
		align-items: center;
		justify-content: center;
		min-width: 0;
	}

	.primary-menu {
		display: flex;
		align-items: center;
		justify-content: center;
		flex-wrap: nowrap;
		gap: 18px;
		width: 100%;
	}

	.primary-menu > .menu-item {
		position: relative;
		flex: 0 0 auto;
	}

	.primary-menu > .menu-item > a {
		display: inline-flex;
		align-items: center;
		min-height: 78px;
		padding-block: 0;
		font-size: 0.875rem;
		line-height: 1;
	}

	.primary-menu .sub-menu {
		position: absolute;
		z-index: 30;
		top: 100%;
		inset-inline-start: 0;
		display: none;
		width: 260px;
		padding: 10px;
		border: 1px solid var(--gj-gray-300);
		background: var(--gj-white);
		box-shadow: var(--gj-shadow);
	}

	.primary-menu .sub-menu a {
		padding: 9px 10px;
	}

	.primary-menu .menu-item:hover > .sub-menu,
	.primary-menu .menu-item:focus-within > .sub-menu {
		display: block;
	}

	.primary-navigation {
		margin-inline-start: 0;
	}

	.primary-menu > .menu-item-rfq {
		display: none;
	}

	.header-contact-cta {
		display: inline-flex;
	}

	.site-footer__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.post-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 1199px) and (min-width: 1025px) {
	.site-header__inner {
		width: calc(100% - 36px);
		gap: 14px;
	}

	.primary-menu {
		gap: 12px;
	}

	.primary-menu > .menu-item > a {
		font-size: 0.79rem;
	}

	.gj-language-toggle {
		height: 40px;
		padding-inline: 11px;
		font-size: 0.82rem;
	}

	.header-contact-cta {
		height: 42px;
		padding-inline: 15px;
		font-size: 0.82rem;
	}
}

@media (max-width: 1024px) {
	.site-header__inner {
		gap: 8px;
	}

	.site-branding {
		padding-left: 12px;
		margin-right: 8px;
	}

	.site-branding .custom-logo {
		height: 30px;
	}

	.gj-language-toggle {
		height: 38px;
		padding: 0 10px;
		font-size: 0.8125rem;
	}

	.gj-language-icon {
		display: none;
	}

	.gj-language-menu {
		min-width: 150px;
		max-width: calc(100vw - 32px);
	}

	.primary-menu > li > a {
		width: 100%;
	}

	.primary-menu .menu-item-rfq {
		margin-block-start: 10px;
	}

	.primary-menu .menu-item-rfq > a {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.gj-language-icon {
		display: none;
	}

	.gj-language-current {
		max-width: 82px;
		overflow: hidden;
		text-overflow: ellipsis;
	}
}

/* Front page V1 */
.home-container {
	width: calc(100% - 32px);
	max-width: var(--gj-content);
	margin-inline: auto;
}

.home-hero {
	padding-block: clamp(64px, 10vw, 128px);
	background:
		linear-gradient(120deg, rgb(8 43 36 / 98%), rgb(18 75 61 / 88%)),
		linear-gradient(45deg, var(--gj-green-950), var(--gj-silver));
	color: var(--gj-white);
}

.home-hero__grid,
.split-layout,
.home-rfq__inner,
.home-faq {
	display: grid;
	gap: clamp(32px, 6vw, 72px);
	align-items: center;
}

.home-hero h1 {
	max-width: 820px;
	margin: 0;
	overflow-wrap: anywhere;
	font-size: clamp(2.5rem, 8vw, 5.25rem);
	line-height: 1.02;
	letter-spacing: -0.045em;
}

.home-hero__subtitle {
	max-width: 720px;
	margin-block: 24px 0;
	color: rgb(255 255 255 / 82%);
	font-size: clamp(1.05rem, 2.5vw, 1.35rem);
}

.home-kicker {
	margin-block: 0 14px;
	color: var(--gj-green-650);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.home-kicker--light {
	color: #f5b184;
}

.home-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-block-start: 32px;
}

.button--outline,
.button--outline-light {
	border-color: currentColor;
	background: transparent;
	color: var(--gj-white);
}

.button--outline:hover,
.button--outline:focus-visible,
.button--outline-light:hover,
.button--outline-light:focus-visible {
	border-color: var(--gj-orange);
	background: var(--gj-orange);
	color: var(--gj-white);
}

.button--dark {
	margin-block-start: 28px;
	background: var(--gj-green-950);
	color: var(--gj-white);
}

.button--dark:hover,
.button--dark:focus-visible {
	background: var(--gj-green-650);
	color: var(--gj-white);
}

.button--large {
	min-height: 56px;
	padding-inline: 28px;
}

.home-section {
	padding-block: clamp(64px, 9vw, 112px);
}

.home-section--dark {
	background: var(--gj-green-950);
	color: rgb(255 255 255 / 78%);
}

.home-section--dark h2,
.home-section--dark h3 {
	color: var(--gj-white);
}

.home-section--silver {
	background: var(--gj-gray-100);
}

.section-heading {
	max-width: 760px;
	margin-block-end: 36px;
}

.section-heading h2,
.split-layout h2,
.home-rfq h2,
.home-faq h2 {
	margin-block: 0 18px;
	color: var(--gj-green-950);
	font-size: clamp(2rem, 5vw, 3.65rem);
	line-height: 1.08;
	letter-spacing: -0.035em;
}

.home-section--dark .split-layout h2,
.home-rfq h2 {
	color: var(--gj-white);
}

.service-grid,
.feature-grid,
.case-grid {
	display: grid;
	gap: 18px;
}

.service-card,
.feature-grid article {
	position: relative;
	padding: 24px;
	border: 1px solid var(--gj-gray-300);
	background: var(--gj-white);
}

.service-card {
	border-top: 4px solid var(--gj-green-650);
}

.service-card__number {
	color: var(--gj-silver);
	font-size: 0.75rem;
	font-weight: 800;
}

.service-card h3,
.feature-grid h3,
.case-card h3 {
	margin-block: 18px 8px;
	color: var(--gj-green-950);
	font-size: 1.18rem;
}

.service-card a,
.text-link {
	font-weight: 800;
}

.check-list {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.check-list li {
	position: relative;
	padding: 14px 16px 14px 48px;
	border: 1px solid rgb(255 255 255 / 14%);
	background: rgb(255 255 255 / 5%);
	color: var(--gj-white);
	font-weight: 700;
}

.check-list li::before {
	position: absolute;
	top: 15px;
	left: 17px;
	color: var(--gj-orange);
	content: "✓";
}

[dir="rtl"] .check-list li {
	padding: 14px 48px 14px 16px;
}

[dir="rtl"] .check-list li::before {
	right: 17px;
	left: auto;
}

.media-placeholder {
	display: grid;
	place-items: center;
	min-height: 280px;
	border: 1px solid var(--gj-gray-300);
	background:
		linear-gradient(135deg, rgb(174 184 181 / 18%) 25%, transparent 25%) 0 0 / 28px 28px,
		var(--gj-gray-100);
	color: var(--gj-gray-600);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.media-placeholder--hero {
	min-height: min(62vw, 480px);
	border-color: rgb(255 255 255 / 22%);
	background:
		linear-gradient(135deg, rgb(255 255 255 / 8%) 25%, transparent 25%) 0 0 / 32px 32px,
		rgb(255 255 255 / 5%);
	color: rgb(255 255 255 / 65%);
}

.media-placeholder--dark {
	border-color: rgb(255 255 255 / 16%);
	background:
		linear-gradient(135deg, rgb(255 255 255 / 7%) 25%, transparent 25%) 0 0 / 28px 28px,
		rgb(255 255 255 / 4%);
	color: rgb(255 255 255 / 60%);
}

.home-media {
	overflow: hidden;
	min-height: 280px;
	margin: 0;
	border: 1px solid var(--gj-gray-300);
	background: var(--gj-gray-100);
}

.home-media img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: inherit;
	object-fit: cover;
}

.home-media--hero {
	min-height: min(62vw, 480px);
	border-color: rgb(255 255 255 / 22%);
	box-shadow: 0 22px 54px rgb(0 0 0 / 24%);
}

.home-media--dark {
	border-color: rgb(255 255 255 / 16%);
	background: rgb(255 255 255 / 4%);
}

.home-media--case {
	min-height: 210px;
	border: 0;
	border-bottom: 1px solid var(--gj-gray-300);
}

.home-media--case img {
	aspect-ratio: 16 / 10;
}

.industry-grid {
	display: grid;
	gap: 1px;
	background: var(--gj-gray-300);
	border: 1px solid var(--gj-gray-300);
}

.industry-grid a {
	padding: 24px;
	background: var(--gj-white);
	color: var(--gj-green-950);
	font-size: 1.1rem;
	font-weight: 800;
	text-decoration: none;
}

.industry-grid a:hover,
.industry-grid a:focus-visible {
	background: var(--gj-green-950);
	color: var(--gj-white);
}

.case-card {
	border: 1px solid var(--gj-gray-300);
	background: var(--gj-white);
}

.case-card .media-placeholder {
	min-height: 210px;
	border: 0;
	border-bottom: 1px solid var(--gj-gray-300);
}

.case-card h3,
.case-card p {
	margin-inline: 22px;
}

.case-card p {
	margin-block-end: 24px;
}

.home-rfq {
	padding-block: clamp(52px, 8vw, 84px);
	background: var(--gj-green-800);
	color: rgb(255 255 255 / 80%);
}

.home-rfq__inner {
	align-items: center;
}

.faq-list {
	border-top: 1px solid var(--gj-gray-300);
}

.faq-list details {
	border-bottom: 1px solid var(--gj-gray-300);
}

.faq-list summary {
	padding-block: 20px;
	color: var(--gj-green-950);
	font-weight: 800;
	cursor: pointer;
}

.faq-list details p {
	margin-block: 0 20px;
	color: var(--gj-gray-600);
}

@media (min-width: 700px) {
	.service-grid,
	.feature-grid,
	.case-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

@media (min-width: 960px) {
	.home-hero__grid,
	.split-layout,
	.home-faq {
		grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
	}

	.home-rfq__inner {
		grid-template-columns: 1fr auto;
	}

	.service-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.feature-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.case-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.industry-grid {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}

	.section-heading--row {
		display: flex;
		align-items: end;
		justify-content: space-between;
		max-width: none;
		gap: 32px;
	}
}

/* Stage 10 case studies and blog hub */
.cases-container,
.blog-hub__container {
	width: calc(100% - 32px);
	max-width: var(--gj-content);
	margin-inline: auto;
}

.cases-hero,
.blog-hub__hero {
	padding-block: clamp(56px, 8vw, 100px);
	background: var(--gj-green-950);
	color: rgb(255 255 255 / 82%);
}

.cases-hero h1,
.blog-hub__hero h1 {
	max-width: 900px;
	margin-block: 0 20px;
	color: var(--gj-white);
	font-size: clamp(2.4rem, 7vw, 4.8rem);
	line-height: 1.04;
	letter-spacing: -0.04em;
}

.cases-hero p:not(.home-kicker),
.blog-hub__hero p:not(.home-kicker) {
	max-width: 760px;
	font-size: 1.08rem;
}

.cases-section,
.blog-hub__section {
	padding-block: clamp(60px, 8vw, 100px);
}

.cases-list {
	display: grid;
	gap: 34px;
}

.case-study {
	overflow: hidden;
	border: 1px solid var(--gj-gray-300);
	background: var(--gj-white);
	box-shadow: var(--gj-shadow);
}

.case-study__media {
	min-height: 280px;
	margin: 0;
	background: var(--gj-gray-100);
}

.case-study__media img {
	width: 100%;
	height: 100%;
	min-height: inherit;
	object-fit: cover;
}

.case-study__content {
	padding: clamp(24px, 5vw, 46px);
}

.case-study__number {
	color: var(--gj-orange);
	font-weight: 800;
	letter-spacing: 0.12em;
}

.case-study h2 {
	margin-block: 8px 24px;
	color: var(--gj-green-950);
	font-size: clamp(1.75rem, 4vw, 2.7rem);
	line-height: 1.12;
}

.case-study dl {
	margin: 0 0 24px;
}

.case-study dl div {
	display: grid;
	gap: 5px;
	padding-block: 13px;
	border-bottom: 1px solid var(--gj-gray-300);
}

.case-study dt {
	color: var(--gj-green-950);
	font-weight: 800;
}

.case-study dd {
	margin: 0;
	color: var(--gj-gray-600);
}

.case-study__related {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 14px;
	margin-block-end: 24px;
}

.case-study__related strong {
	width: 100%;
	color: var(--gj-green-950);
}

.blog-hub__grid {
	display: grid;
	gap: 20px;
}

.blog-card {
	padding: 26px;
	border: 1px solid var(--gj-gray-300);
	border-top: 4px solid var(--gj-green-650);
	background: var(--gj-white);
}

.blog-card__meta {
	color: var(--gj-gray-600);
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.blog-card h2 {
	margin-block: 8px 12px;
	font-size: 1.45rem;
	line-height: 1.2;
}

.blog-card h2 a {
	color: var(--gj-green-950);
	text-decoration: none;
}

.cases-page--ar,
.blog-hub--ar {
	text-align: right;
}

@media (min-width: 760px) {
	.blog-hub__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 960px) {
	.case-study {
		display: grid;
		grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
	}

	.case-study:nth-child(even) .case-study__media {
		order: 2;
	}

	.case-study dl div {
		grid-template-columns: 145px minmax(0, 1fr);
		gap: 18px;
	}
}

@media (max-width: 480px) {
	.home-actions .button,
	.home-rfq .button {
		width: 100%;
	}
}

/* Contact / RFQ page */
.rfq-container {
	width: calc(100% - 32px);
	max-width: var(--gj-content);
	margin-inline: auto;
}

.rfq-page,
.rfq-hero,
.rfq-section,
.rfq-hero__grid > *,
.rfq-form-card,
.rfq-form-card .wpforms-container,
.rfq-form-card .wpforms-form,
.rfq-form-card .wpforms-field-container,
.rfq-form-card .wpforms-field,
.rfq-form-card .forminator-ui,
.rfq-form-card .forminator-row,
.rfq-form-card .forminator-col,
.rfq-form-card .forminator-field {
	min-width: 0;
	max-width: 100%;
}

.rfq-page {
	overflow-x: clip;
}

.rfq-hero {
	padding-block: clamp(36px, 6vw, 76px);
	background: var(--gj-green-950);
	color: rgb(255 255 255 / 82%);
}

.rfq-hero__grid {
	display: grid;
	gap: 28px;
	align-items: start;
}

.rfq-hero__intro {
	padding-block-start: 14px;
}

.rfq-hero h1 {
	margin-block: 0 22px;
	color: var(--gj-white);
	font-size: clamp(2.25rem, 6vw, 4.6rem);
	line-height: 1.03;
	letter-spacing: -0.04em;
	overflow-wrap: anywhere;
}

.rfq-hero__intro > p:not(.home-kicker) {
	max-width: 680px;
	font-size: 1.08rem;
}

.rfq-hero__points {
	display: grid;
	gap: 10px;
	margin-block: 26px 0;
	padding: 0;
	list-style: none;
}

.rfq-hero__points li {
	position: relative;
	padding-inline-start: 27px;
	color: var(--gj-white);
	font-weight: 700;
	overflow-wrap: anywhere;
}

.rfq-hero__points li::before {
	position: absolute;
	inset-inline-start: 0;
	color: var(--gj-orange);
	content: "✓";
}

.rfq-form-card {
	padding: clamp(20px, 4vw, 34px);
	border-radius: 8px;
	background: var(--gj-white);
	box-shadow: 0 22px 50px rgb(0 0 0 / 24%);
	color: var(--gj-black);
}

.rfq-form-card h2 {
	margin-block: 0 4px;
	color: var(--gj-green-950);
	font-size: clamp(1.6rem, 4vw, 2.25rem);
}

.rfq-form-card__note,
.rfq-form__preview {
	color: var(--gj-gray-600);
	font-size: 0.82rem;
}

.rfq-form-card .wpforms-container {
	margin-block: 20px 0;
}

.rfq-form-card .wpforms-container .wpforms-field {
	padding-block: 7px;
}

.rfq-form-card .wpforms-container .wpforms-field-label {
	margin-block-end: 6px;
	color: var(--gj-green-950);
	font-size: 0.875rem;
	font-weight: 800;
}

.rfq-form-card .wpforms-container input[type="text"],
.rfq-form-card .wpforms-container input[type="email"],
.rfq-form-card .wpforms-container input[type="tel"],
.rfq-form-card .wpforms-container select,
.rfq-form-card .wpforms-container textarea {
	width: 100%;
	max-width: none;
	min-height: 46px;
	border: 1px solid var(--gj-gray-300);
	border-radius: 4px;
	box-sizing: border-box;
}

.rfq-form-card .wpforms-container textarea {
	min-height: 120px;
}

.rfq-form-card .wpforms-container input:focus,
.rfq-form-card .wpforms-container select:focus,
.rfq-form-card .wpforms-container textarea:focus {
	border-color: var(--gj-green-650);
	box-shadow: 0 0 0 3px rgb(28 104 84 / 14%);
	outline: 0;
}

.rfq-form-card .wpforms-submit-container {
	padding-block-start: 12px;
}

.rfq-form-card .wpforms-container button[type="submit"] {
	width: 100%;
	min-height: 54px;
	border: 0;
	border-radius: var(--gj-radius);
	background: var(--gj-orange);
	color: var(--gj-white);
	font-weight: 800;
}

.rfq-form-card .wpforms-container button[type="submit"]:hover,
.rfq-form-card .wpforms-container button[type="submit"]:focus {
	background: var(--gj-orange-dark);
}

.rfq-form-card .wpforms-confirmation-container-full {
	border: 0;
	border-inline-start: 4px solid var(--gj-green-650);
	background: #edf8f4;
	color: var(--gj-green-950);
}

.rfq-form__grid {
	display: grid;
	gap: 14px 16px;
	margin-block-start: 22px;
}

.rfq-field {
	margin: 0;
}

.rfq-field label {
	display: block;
	margin-block-end: 6px;
	color: var(--gj-green-950);
	font-size: 0.875rem;
	font-weight: 800;
}

.rfq-field input,
.rfq-field select,
.rfq-field textarea {
	width: 100%;
	min-height: 46px;
	padding: 10px 12px;
	border: 1px solid var(--gj-gray-300);
	border-radius: 4px;
	background: var(--gj-white);
	color: var(--gj-black);
}

.rfq-field textarea {
	min-height: 120px;
	resize: vertical;
}

.rfq-field input:focus,
.rfq-field select:focus,
.rfq-field textarea:focus {
	border-color: var(--gj-green-650);
	outline: 3px solid rgb(28 104 84 / 14%);
}

.rfq-upload {
	padding: 14px;
	border: 1px dashed var(--gj-silver);
	border-radius: 5px;
	background: var(--gj-gray-100);
}

.rfq-upload input {
	min-height: auto;
	padding: 0;
	border: 0;
	background: transparent;
}

.rfq-upload input:disabled {
	cursor: not-allowed;
	opacity: 0.55;
}

.rfq-upload small {
	display: block;
	margin-block-start: 8px;
	color: var(--gj-gray-600);
}

.rfq-upload--upgrade {
	margin-block-start: 18px;
}

.rfq-upload--upgrade strong,
.rfq-upload--upgrade p {
	display: block;
	margin-block: 0 6px;
	color: var(--gj-green-950);
}

.rfq-submit {
	width: 100%;
	margin-block-start: 18px;
}

.rfq-form__status {
	margin-block: 16px 0;
	padding: 14px;
	border-inline-start: 4px solid var(--gj-green-650);
	background: #edf8f4;
	color: var(--gj-green-950);
	font-weight: 700;
}

.rfq-section {
	padding-block: clamp(60px, 8vw, 100px);
}

.rfq-section--silver {
	background: var(--gj-gray-100);
}

.rfq-section h2 {
	margin-block: 0 18px;
	color: var(--gj-green-950);
	font-size: clamp(1.9rem, 5vw, 3.4rem);
	line-height: 1.1;
	letter-spacing: -0.03em;
}

.rfq-steps {
	display: grid;
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: rfq-step;
}

.rfq-steps li {
	position: relative;
	padding: 20px 20px 20px 66px;
	border: 1px solid var(--gj-gray-300);
	background: var(--gj-white);
	counter-increment: rfq-step;
}

.rfq-steps li::before {
	position: absolute;
	top: 18px;
	left: 18px;
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--gj-green-950);
	color: var(--gj-white);
	font-weight: 800;
	content: counter(rfq-step);
}

.rfq-steps strong,
.rfq-steps span {
	display: block;
}

.rfq-steps strong {
	color: var(--gj-green-950);
}

.rfq-steps span {
	margin-block-start: 4px;
	color: var(--gj-gray-600);
}

.rfq-info-grid,
.rfq-faq-grid {
	display: grid;
	gap: 36px;
}

.file-format-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.file-format-list li {
	padding: 10px 14px;
	border: 1px solid var(--gj-gray-300);
	border-radius: 4px;
	background: var(--gj-white);
	color: var(--gj-green-950);
	font-weight: 800;
}

.rfq-contact-card {
	padding: 28px;
	border-top: 4px solid var(--gj-orange);
	background: var(--gj-white);
	box-shadow: var(--gj-shadow);
}

.rfq-contact-card h2 {
	font-size: clamp(1.6rem, 4vw, 2.4rem);
}

.rfq-contact-card dl {
	margin: 0;
}

.rfq-contact-card dl div {
	display: grid;
	grid-template-columns: 90px 1fr;
	gap: 16px;
	padding-block: 12px;
	border-bottom: 1px solid var(--gj-gray-300);
}

.rfq-contact-card dt {
	color: var(--gj-green-950);
	font-weight: 800;
}

.rfq-contact-card dd {
	margin: 0;
	color: var(--gj-gray-600);
}

[dir="rtl"] .rfq-page,
.rfq-page--ar {
	text-align: right;
}

[dir="rtl"] .rfq-form-card .wpforms-container,
[dir="rtl"] .rfq-form-card .wpforms-field,
[dir="rtl"] .rfq-form-card input,
[dir="rtl"] .rfq-form-card select,
[dir="rtl"] .rfq-form-card textarea,
.rfq-page--ar .rfq-form-card .wpforms-container,
.rfq-page--ar .rfq-form-card .wpforms-field,
.rfq-page--ar .rfq-form-card input,
.rfq-page--ar .rfq-form-card select,
.rfq-page--ar .rfq-form-card textarea {
	direction: rtl;
	text-align: right;
}

[dir="rtl"] .rfq-steps li,
.rfq-page--ar .rfq-steps li {
	padding: 20px 66px 20px 20px;
}

[dir="rtl"] .rfq-steps li::before,
.rfq-page--ar .rfq-steps li::before {
	right: 18px;
	left: auto;
}

[dir="rtl"] .rfq-contact-card dl div,
.rfq-page--ar .rfq-contact-card dl div {
	grid-template-columns: minmax(100px, auto) 1fr;
}

.rfq-page--ar .rfq-container,
.rfq-page--ar .rfq-hero__grid,
.rfq-page--ar .rfq-form-card,
.rfq-page--ar .wpforms-container,
.rfq-page--ar .wpforms-form,
.rfq-page--ar .wpforms-field-container,
.rfq-page--ar .wpforms-field {
	width: 100%;
	max-width: 100%;
	min-width: 0;
}

.rfq-page--ar .wpforms-field-label,
.rfq-page--ar .rfq-hero h1,
.rfq-page--ar .rfq-hero p,
.rfq-page--ar .rfq-hero li {
	white-space: normal;
	overflow-wrap: anywhere;
}

@media (max-width: 699px) {
	body.page-template-page-contact-rfq.rtl .site-header__inner,
	.rfq-page--ar .rfq-container {
		width: calc(100% - 32px);
		max-width: calc(100vw - 32px);
		margin-right: auto;
		margin-left: auto;
	}

	body.page-template-page-contact-rfq.rtl .site-header__inner {
		grid-template-columns: minmax(0, 1fr) auto;
	}

	body.page-template-page-contact-rfq.rtl .site-branding,
	body.page-template-page-contact-rfq.rtl .header-actions {
		min-width: 0;
		max-width: 100%;
	}

	.rfq-page--ar .rfq-form-card {
		padding: 20px;
		overflow: hidden;
	}

	.rfq-page--ar .rfq-hero h1 {
		font-size: clamp(2rem, 10vw, 2.8rem);
		line-height: 1.18;
	}
}

@media (min-width: 760px) {
	.rfq-form__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.rfq-field--full {
		grid-column: 1 / -1;
	}

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

	.rfq-info-grid,
	.rfq-faq-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1040px) {
	.rfq-hero__grid {
		grid-template-columns: minmax(0, 0.78fr) minmax(560px, 1.22fr);
		gap: 48px;
	}

	.rfq-form-card {
		margin-block-end: -132px;
	}

	.rfq-hero + .rfq-section {
		padding-block-start: 190px;
	}

	.rfq-steps {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}
}

@media (max-width: 480px) {
	.page-id-17 .site-title {
		max-width: 126px;
	}

	.page-id-17 .header-actions {
		min-width: 0;
	}

	.rfq-hero h1 {
		font-size: 2.15rem;
	}

	.rfq-hero__intro > p:not(.home-kicker) {
		font-size: 1rem;
	}

	.rfq-form-card {
		padding: 20px;
	}
}

/* Reusable service page template */
.service-container {
	width: calc(100% - 32px);
	max-width: var(--gj-content);
	margin-inline: auto;
}

.service-hero {
	padding-block: clamp(56px, 9vw, 112px);
	background: var(--gj-green-950);
	color: rgb(255 255 255 / 80%);
}

.service-hero__grid,
.service-two-column,
.service-overview,
.service-faq-layout,
.service-final-cta .service-container {
	display: grid;
	gap: clamp(30px, 6vw, 70px);
	align-items: center;
}

.service-hero h1 {
	margin-block: 0 22px;
	color: var(--gj-white);
	font-size: clamp(2.5rem, 7vw, 5rem);
	line-height: 1.02;
	letter-spacing: -0.045em;
}

.service-hero p {
	max-width: 680px;
	font-size: 1.08rem;
}

.service-section {
	padding-block: clamp(60px, 8vw, 100px);
}

.service-section--silver {
	background: var(--gj-gray-100);
}

.service-section--dark,
.service-final-cta {
	background: var(--gj-green-950);
	color: rgb(255 255 255 / 78%);
}

.service-section h2,
.service-final-cta h2 {
	margin-block: 0 18px;
	color: var(--gj-green-950);
	font-size: clamp(1.9rem, 5vw, 3.4rem);
	line-height: 1.1;
	letter-spacing: -0.03em;
}

.service-section--dark h2,
.service-final-cta h2 {
	color: var(--gj-white);
}

.service-overview > p {
	color: var(--gj-gray-600);
	font-size: 1.08rem;
}

.service-chip-list,
.service-check-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.service-chip-list li,
.service-check-list li {
	padding: 10px 14px;
	border: 1px solid var(--gj-gray-300);
	border-radius: 4px;
	background: var(--gj-white);
	color: var(--gj-green-950);
	font-weight: 750;
}

.service-note {
	color: var(--gj-gray-600);
	font-size: 0.9rem;
}

.service-card-grid,
.service-image-grid,
.service-related-grid {
	display: grid;
	gap: 18px;
}

.service-card-grid article {
	padding: 24px;
	border-top: 4px solid var(--gj-green-650);
	background: var(--gj-gray-100);
}

.service-card-grid h3 {
	margin-block-start: 0;
	color: var(--gj-green-950);
}

.service-image-grid .media-placeholder {
	min-height: 240px;
}

.service-media {
	overflow: hidden;
	min-height: 240px;
	margin: 0;
	border: 1px solid rgb(255 255 255 / 16%);
	background: rgb(255 255 255 / 5%);
}

.service-media img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: inherit;
	object-fit: cover;
}

.service-media--hero {
	min-height: min(62vw, 470px);
	box-shadow: 0 22px 54px rgb(0 0 0 / 24%);
}

.service-page--ar {
	text-align: right;
}

.service-page--ar .service-container,
.service-page--ar .service-hero__grid,
.service-page--ar .service-two-column,
.service-page--ar .service-card-grid,
.service-page--ar .service-image-grid,
.service-page--ar .service-related-grid {
	min-width: 0;
	max-width: 100%;
}

.service-page--ar h1,
.service-page--ar h2,
.service-page--ar h3,
.service-page--ar p,
.service-page--ar li,
.service-page--ar a {
	overflow-wrap: anywhere;
}

/* Stage 9 multilingual trust pages */
.trust-container {
	width: calc(100% - 32px);
	max-width: var(--gj-content);
	margin-inline: auto;
}

.trust-hero {
	padding-block: clamp(52px, 8vw, 104px);
	background: var(--gj-green-950);
	color: rgb(255 255 255 / 82%);
}

.trust-hero__grid,
.trust-final-cta__inner {
	display: grid;
	gap: clamp(28px, 6vw, 68px);
	align-items: center;
}

.trust-hero h1 {
	margin-block: 0 22px;
	color: var(--gj-white);
	font-size: clamp(2.4rem, 7vw, 4.8rem);
	line-height: 1.04;
	letter-spacing: -0.04em;
}

.trust-hero p:not(.home-kicker) {
	max-width: 680px;
	margin-block-end: 28px;
	font-size: 1.08rem;
}

.trust-section {
	padding-block: clamp(60px, 8vw, 100px);
}

.trust-section--dark,
.trust-final-cta {
	background: var(--gj-green-950);
	color: rgb(255 255 255 / 78%);
}

.trust-section--dark h2,
.trust-final-cta h2 {
	color: var(--gj-white);
}

.trust-card-grid,
.trust-industry-grid,
.trust-image-grid {
	display: grid;
	gap: 18px;
}

.trust-card-grid article,
.trust-industry-grid article {
	padding: 24px;
	border: 1px solid var(--gj-gray-300);
	border-top: 4px solid var(--gj-green-650);
	background: var(--gj-white);
}

.trust-card-grid h3,
.trust-industry-grid h3 {
	margin-block: 0 10px;
	color: var(--gj-green-950);
}

.trust-industry-grid article {
	display: flex;
	align-items: center;
	min-height: 96px;
}

.trust-industry-grid h3 {
	margin: 0;
	font-size: 1.08rem;
}

.trust-process {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: trust-step;
}

.trust-process li {
	position: relative;
	padding: 20px 20px 20px 68px;
	border: 1px solid var(--gj-gray-300);
	background: var(--gj-white);
	counter-increment: trust-step;
}

.trust-process li::before {
	position: absolute;
	top: 14px;
	left: 18px;
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--gj-green-950);
	color: var(--gj-white);
	font-weight: 800;
	content: counter(trust-step);
}

.trust-media {
	overflow: hidden;
	min-height: 230px;
	margin: 0;
	border: 1px solid rgb(255 255 255 / 16%);
	background: rgb(255 255 255 / 5%);
}

.trust-media img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: inherit;
	object-fit: cover;
}

.trust-media--hero {
	min-height: min(64vw, 470px);
	box-shadow: 0 22px 54px rgb(0 0 0 / 24%);
}

.trust-final-cta {
	padding-block: clamp(52px, 8vw, 84px);
	background: var(--gj-green-800);
}

.trust-final-cta h2 {
	margin-block: 0;
	font-size: clamp(2rem, 5vw, 3.5rem);
	line-height: 1.08;
}

.trust-page--ar {
	text-align: right;
}

.trust-page--ar .trust-container,
.trust-page--ar .trust-hero__grid,
.trust-page--ar .trust-card-grid,
.trust-page--ar .trust-industry-grid,
.trust-page--ar .trust-image-grid {
	min-width: 0;
	max-width: 100%;
}

.trust-page--ar h1,
.trust-page--ar h2,
.trust-page--ar h3,
.trust-page--ar p,
.trust-page--ar li {
	overflow-wrap: anywhere;
}

.trust-page--ar .trust-process li {
	padding: 20px 68px 20px 20px;
}

.trust-page--ar .trust-process li::before {
	right: 18px;
	left: auto;
}

@media (min-width: 720px) {
	.trust-card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.trust-industry-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.trust-image-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.trust-image-grid--5 {
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}

	.trust-image-grid--5 .trust-media {
		grid-column: span 2;
	}

	.trust-image-grid--5 .trust-media:nth-child(4),
	.trust-image-grid--5 .trust-media:nth-child(5) {
		grid-column: span 3;
	}
}

@media (min-width: 960px) {
	.trust-hero__grid {
		grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
	}

	.trust-final-cta__inner {
		grid-template-columns: minmax(0, 1fr) auto;
	}

	.trust-process {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.service-quality-steps {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: service-quality;
}

.service-quality-steps li {
	position: relative;
	padding: 18px 18px 18px 60px;
	border: 1px solid var(--gj-gray-300);
	counter-increment: service-quality;
}

.service-quality-steps li::before {
	position: absolute;
	top: 13px;
	left: 15px;
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--gj-green-950);
	color: var(--gj-white);
	font-weight: 800;
	content: counter(service-quality);
}

.service-related-grid a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 22px;
	border: 1px solid var(--gj-gray-300);
	background: var(--gj-white);
	color: var(--gj-green-950);
	text-decoration: none;
}

.service-related-grid a:hover,
.service-related-grid a:focus-visible {
	border-color: var(--gj-green-650);
	box-shadow: var(--gj-shadow);
}

.service-related-grid span {
	color: var(--gj-orange-dark);
	font-size: 0.875rem;
	font-weight: 800;
	white-space: nowrap;
}

.service-final-cta {
	padding-block: clamp(52px, 7vw, 82px);
}

@media (min-width: 720px) {
	.service-card-grid,
	.service-image-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.service-quality-steps {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 960px) {
	.service-hero__grid,
	.service-two-column,
	.service-overview,
	.service-faq-layout {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.service-card-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.service-image-grid,
	.service-related-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.service-quality-steps {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}

	.service-final-cta .service-container {
		grid-template-columns: 1fr auto;
	}
}

/* Russian navigation fit — intentionally scoped to /ru/ only. */
@media (min-width: 1025px) {
	.lang-ru .site-header__inner {
		gap: 18px;
	}

	.lang-ru .site-branding {
		flex: 0 0 auto;
		min-width: 150px;
		white-space: nowrap;
	}

	.lang-ru .primary-navigation {
		flex: 1 1 auto;
		min-width: 0;
	}

	.lang-ru .primary-menu {
		gap: 14px;
		flex-wrap: nowrap;
	}

	.lang-ru .primary-menu > li {
		flex: 0 0 auto;
		white-space: nowrap;
	}

	.lang-ru .primary-menu > li > a {
		font-size: 12.5px;
		letter-spacing: 0;
		white-space: nowrap;
	}

	.lang-ru .gj-language-toggle {
		height: 40px;
		padding: 0 12px;
		font-size: 13px;
		white-space: nowrap;
	}

	.lang-ru .header-contact-cta,
	.lang-ru .menu-item-rfq > a {
		height: 42px;
		padding: 0 16px;
		font-size: 13px;
		white-space: nowrap;
	}
}

@media (max-width: 1360px) and (min-width: 1025px) {
	.lang-ru .site-header__inner {
		gap: 14px;
		padding-right: 20px;
		padding-left: 20px;
	}

	.lang-ru .primary-menu {
		gap: 10px;
	}

	.lang-ru .primary-menu > li > a {
		font-size: 12px;
	}

	.lang-ru .site-branding {
		min-width: 135px;
	}
}

@media (max-width: 1200px) and (min-width: 1025px) {
	.lang-ru .primary-menu {
		gap: 8px;
	}

	.lang-ru .primary-menu > li > a {
		font-size: 11.5px;
	}

	.lang-ru .gj-language-toggle {
		height: 38px;
		padding: 0 10px;
		font-size: 12px;
	}

	.lang-ru .header-contact-cta,
	.lang-ru .menu-item-rfq > a {
		height: 38px;
		padding: 0 12px;
		font-size: 12px;
	}
}


/* Forminator RFQ form styling */
.rfq-form-card .forminator-ui.forminator-custom-form,
.rfq-form-card .forminator-ui {
	margin-block: 20px 0;
}

.rfq-form-card .forminator-row {
	margin-block: 0 8px !important;
}

.rfq-form-card .forminator-label,
.rfq-form-card .forminator-field label {
	margin-block-end: 6px;
	color: var(--gj-green-950) !important;
	font-size: 0.875rem !important;
	font-weight: 800 !important;
}

.rfq-form-card .forminator-input,
.rfq-form-card .forminator-textarea,
.rfq-form-card .forminator-select2 + .forminator-select .selection .select2-selection,
.rfq-form-card .forminator-select .selection .select2-selection,
.rfq-form-card .forminator-file-upload,
.rfq-form-card .forminator-uploaded-file {
	width: 100% !important;
	max-width: none !important;
	min-height: 46px !important;
	border: 1px solid var(--gj-gray-300) !important;
	border-radius: 4px !important;
	box-sizing: border-box !important;
}

.rfq-form-card .forminator-textarea {
	min-height: 120px !important;
}

.rfq-form-card .forminator-input:focus,
.rfq-form-card .forminator-textarea:focus,
.rfq-form-card .forminator-select .selection .select2-selection:focus {
	border-color: var(--gj-green-650) !important;
	box-shadow: 0 0 0 3px rgb(28 104 84 / 14%) !important;
	outline: 0 !important;
}

.rfq-form-card .forminator-button-submit {
	width: 100% !important;
	min-height: 54px !important;
	border: 0 !important;
	border-radius: var(--gj-radius) !important;
	background: var(--gj-orange) !important;
	color: var(--gj-white) !important;
	font-weight: 800 !important;
}

.rfq-form-card .forminator-button-submit:hover,
.rfq-form-card .forminator-button-submit:focus {
	background: var(--gj-orange-dark) !important;
}

.rfq-form-card .forminator-response-message.forminator-success {
	border: 0 !important;
	border-inline-start: 4px solid var(--gj-green-650) !important;
	background: #edf8f4 !important;
	color: var(--gj-green-950) !important;
}

.rfq-form-card__formats {
	margin-block: 12px 0;
	color: var(--gj-gray-600);
	font-size: 0.82rem;
}

[dir="rtl"] .rfq-form-card .forminator-ui,
[dir="rtl"] .rfq-form-card .forminator-row,
[dir="rtl"] .rfq-form-card .forminator-field,
[dir="rtl"] .rfq-form-card .forminator-input,
[dir="rtl"] .rfq-form-card .forminator-textarea,
.rfq-page--ar .rfq-form-card .forminator-ui,
.rfq-page--ar .rfq-form-card .forminator-row,
.rfq-page--ar .rfq-form-card .forminator-field,
.rfq-page--ar .rfq-form-card .forminator-input,
.rfq-page--ar .rfq-form-card .forminator-textarea {
	direction: rtl;
	text-align: right;
}
