:root {
	--bg: #07161e;
	--bg-soft: #102733;
	--surface: #0f2330;
	--surface-2: #153345;
	--surface-3: #ecf2ee;
	--surface-4: #f5f1e8;
	--text: #e9f2ef;
	--text-soft: rgba(233, 242, 239, 0.76);
	--text-dark: #0f1c24;
	--text-dark-soft: rgba(15, 28, 36, 0.7);
	--accent: #db6a2c;
	--accent-2: #1a8c8e;
	--accent-3: #e5b84b;
	--line: rgba(233, 242, 239, 0.12);
	--line-dark: rgba(15, 28, 36, 0.08);
	--success: #0e9d6f;
	--radius-sm: 18px;
	--radius-md: 28px;
	--radius-lg: 42px;
	--shadow: 0 22px 80px rgba(4, 12, 18, 0.28);
	--shell: min(1180px, calc(100vw - 2.4rem));
	--shell-wide: min(1280px, calc(100vw - 2.4rem));
	--header-offset: 88px;
	--font-body: "Cairo", sans-serif;
	--font-head: "Readex Pro", sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background:
		radial-gradient(circle at top left, rgba(26, 140, 142, 0.28), transparent 28%),
		radial-gradient(circle at top right, rgba(219, 106, 44, 0.22), transparent 24%),
		linear-gradient(180deg, #07161e 0%, #0d2330 42%, #102733 100%);
	color: var(--text);
	font-family: var(--font-body);
	line-height: 1.75;
	overflow-x: hidden;
}

body.lang-en {
	direction: ltr;
}

body.lang-ar {
	direction: rtl;
}

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

a {
	color: inherit;
	text-decoration: none;
}

p,
li {
	font-size: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 0.8rem;
	font-family: var(--font-head);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.03em;
}

h1 {
	font-size: clamp(1.58rem, 3.05vw, 3.02rem);
}

h2 {
	font-size: clamp(1.24rem, 2.05vw, 1.96rem);
}

h3 {
	font-size: clamp(0.9rem, 1vw, 1.04rem);
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-shell {
	width: var(--shell);
	margin-inline: auto;
}

.button-row,
.link-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	align-items: center;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0.85rem 1.45rem;
	border-radius: 999px;
	border: 1px solid transparent;
	font-weight: 700;
	font-size: 0.95rem;
	transition: transform 0.24s ease, border-color 0.24s ease, background-color 0.24s ease, color 0.24s ease, box-shadow 0.24s ease;
}

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

.button:focus-visible,
.social-link:focus-visible,
.menu a:focus-visible,
.language-switcher a:focus-visible,
.badge-link:focus-visible,
.post-card-link:focus-visible {
	outline: 2px solid var(--accent-3);
	outline-offset: 4px;
}

.button.button-primary {
	background: linear-gradient(135deg, var(--accent) 0%, #f08a45 100%);
	color: #fff;
	box-shadow: 0 18px 40px rgba(219, 106, 44, 0.28);
}

.button.button-secondary {
	background: rgba(255, 255, 255, 0.03);
	border-color: rgba(255, 255, 255, 0.12);
	color: var(--text);
}

.editor-managed .wp-block-group,
.editor-managed .wp-block-image,
.editor-managed .wp-block-buttons,
.editor-managed .wp-block-button,
.editor-managed .wp-block-shortcode,
.editor-managed .wp-block-html {
	margin-block: 0;
}

.editor-managed figure,
.editor-managed .cta-link-card-kicker,
.editor-managed .cta-link-card-title,
.editor-managed .cta-link-card-text,
.editor-managed .about-device-title,
.editor-managed .about-trust-title,
.editor-managed .about-hero-metric-title,
.editor-managed .about-hero-metric-text,
.editor-managed .metric-card-title,
.editor-managed .metric-card-text,
.editor-managed .solution-card-index {
	margin: 0;
}

.editor-managed .wp-block-image {
	line-height: 0;
}

.editor-managed .wp-block-buttons.button-row,
.editor-managed .wp-block-buttons.link-row,
.editor-managed .wp-block-buttons.partner-store-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	align-items: center;
}

.editor-managed .wp-block-buttons.button-row .wp-block-button,
.editor-managed .wp-block-buttons.link-row .wp-block-button,
.editor-managed .wp-block-buttons.partner-store-grid .wp-block-button {
	margin: 0;
}

.editor-managed .wp-block-button .wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0.85rem 1.45rem;
	border-radius: 999px;
	border: 1px solid transparent;
	font-weight: 700;
	font-size: 0.95rem;
	transition: transform 0.24s ease, border-color 0.24s ease, background-color 0.24s ease, color 0.24s ease, box-shadow 0.24s ease;
}

.editor-managed .wp-block-button.button-primary .wp-block-button__link {
	background: linear-gradient(135deg, var(--accent) 0%, #f08a45 100%);
	color: #fff;
	box-shadow: 0 18px 40px rgba(219, 106, 44, 0.28);
}

.editor-managed .wp-block-button.button-secondary .wp-block-button__link {
	background: rgba(255, 255, 255, 0.03);
	border-color: rgba(255, 255, 255, 0.12);
	color: var(--text);
}

.editor-managed .wp-block-button.button-primary,
.editor-managed .wp-block-button.button-secondary,
.editor-content-shell .wp-block-button.button-primary,
.editor-content-shell .wp-block-button.button-secondary {
	background: transparent;
	background-image: none;
	box-shadow: none;
	border: 0;
}

.editor-managed .wp-block-button.hero-slider-link .wp-block-button__link {
	min-height: auto;
	padding: 0;
	border: none;
	background: transparent;
	box-shadow: none;
	font-size: 0.82rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.82);
}

.editor-managed .wp-block-button.hero-slider-link .wp-block-button__link:hover,
.editor-managed .wp-block-button.hero-slider-link .wp-block-button__link:focus-visible {
	transform: none;
	color: #fff;
}

.block-link-overlay {
	position: absolute;
	inset: 0;
	z-index: 3;
	text-indent: -9999px;
	overflow: hidden;
}

.cta-link-card > :not(.wp-block-html) {
	position: relative;
	z-index: 1;
}

.section-eyebrow {
	margin: 0 0 0.85rem;
	font-size: 0.82rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: rgba(229, 184, 75, 0.9);
}

.section-intro {
	max-width: 720px;
	margin-bottom: clamp(1.8rem, 3vw, 3rem);
}

.section-intro p:last-child,
.hero-text {
	color: var(--text-soft);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	backdrop-filter: blur(16px);
	background: rgba(7, 22, 30, 0.76);
	border-bottom: 1px solid var(--line);
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	background: rgba(3, 10, 14, 0.54);
	backdrop-filter: blur(2px);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.24s ease, visibility 0.24s ease;
	z-index: 46;
	pointer-events: none;
}

body.menu-open {
	overflow: hidden;
}

body.menu-open::before {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.header-main-inner,
.footer-bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.header-main-inner {
	min-height: 80px;
	gap: 1.2rem;
}

.header-main a,
.menu a {
	color: var(--text-soft);
	font-size: 0.94rem;
}

.menu a:hover {
	color: var(--text);
}

.social-links {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
}

.social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	transition: transform 0.24s ease, background-color 0.24s ease, border-color 0.24s ease;
}

.social-link svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.social-link:hover {
	transform: translateY(-2px);
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.18);
}

.site-brand {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
}

.site-brand img,
.footer-logo {
	width: auto;
	height: 38px;
}

.primary-navigation {
	flex: 1 1 auto;
	display: flex;
	justify-content: center;
}

.menu,
.menu-fallback {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 1.35rem;
}

.menu a {
	font-weight: 600;
}

.header-actions {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	flex: 0 0 auto;
}

.header-language-switcher {
	position: relative;
	z-index: 4;
}

.header-language-switcher,
.header-language-switcher .language-switcher,
.header-language-switcher .trp-shortcode-switcher__wrapper {
	display: inline-flex;
	align-items: center;
}

.header-language-switcher .language-switcher>div,
.header-language-switcher .language-switcher ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.header-language-switcher .trp-shortcode-switcher__wrapper {
	position: relative;
	min-width: 116px;
	justify-content: flex-end;
}

.header-language-switcher .trp-shortcode-anchor,
.header-language-switcher .trp-shortcode-overlay {
	min-width: 116px;
	min-height: 40px;
	padding: 0;
	border-radius: 14px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.02) 100%);
	border: 1px solid rgba(255, 255, 255, 0.09);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
	backdrop-filter: blur(16px);
}

.header-language-switcher .trp-shortcode-anchor {
	width: 100%;
}

.header-language-switcher .trp-shortcode-overlay {
	inset-inline-start: auto;
	inset-inline-end: 0;
	width: 100%;
	min-width: 100%;
	max-width: min(210px, calc(100vw - 1.6rem));
	margin-top: 0;
	padding: 0.28rem;
	overflow: hidden;
	background: rgba(7, 22, 30, 0.98);
	border-color: rgba(255, 255, 255, 0.12);
	box-shadow: 0 18px 40px rgba(2, 10, 16, 0.34);
}

body.lang-en .header-language-switcher .trp-shortcode-overlay {
	inset-inline-start: 0;
	inset-inline-end: auto;
}

.header-language-switcher .trp-current-language-item__wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.45rem;
	width: 100%;
	box-sizing: border-box;
	padding: 0.3rem 0.45rem;
}

.header-language-switcher .trp-shortcode-anchor .trp-current-language-item__wrapper {
	min-height: 40px;
}

.header-language-switcher .trp-shortcode-overlay .trp-current-language-item__wrapper {
	min-height: 34px;
	margin-bottom: 0.15rem;
	padding-bottom: 0.35rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-language-switcher .trp-shortcode-anchor .trp-language-item__current,
.header-language-switcher .trp-shortcode-overlay .trp-language-item__current,
.header-language-switcher .trp-shortcode-overlay .trp-language-item,
.header-language-switcher .language-switcher>a {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	width: 100%;
	min-height: auto;
	padding: 0;
	border-radius: 12px;
	background: transparent;
	border: none;
	color: rgba(233, 242, 239, 0.88);
	font-size: 0.82rem;
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: 0;
	text-decoration: none;
}

.header-language-switcher .trp-shortcode-anchor .trp-language-item__current,
.header-language-switcher .trp-shortcode-overlay .trp-language-item__current {
	padding-inline-end: 0;
}

.header-language-switcher .trp-switcher-dropdown-list {
	display: grid;
	gap: 0.15rem;
	padding-top: 0;
	width: 100%;
	max-width: 100%;
	overflow-x: hidden !important;
}

.header-language-switcher .trp-shortcode-overlay .trp-switcher-dropdown-list .trp-language-item {
	min-height: 34px;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	padding: 0.38rem 0.45rem;
}

.header-language-switcher .trp-shortcode-overlay .trp-language-item:hover {
	background: rgba(255, 255, 255, 0.06);
}

.header-language-switcher .trp-language-item-name {
	color: inherit;
	flex: 1 1 auto;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.header-language-switcher .trp-shortcode-overlay .trp-language-item:hover,
.header-language-switcher .trp-shortcode-overlay .trp-language-item:hover .trp-language-item-name {
	color: #fff;
}

.header-language-switcher .trp-flag-image {
	width: 16px;
	height: 12px;
	border-radius: 3px;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.header-language-switcher .trp-shortcode-arrow {
	width: 12px;
	height: 12px;
	margin-inline-start: auto;
	color: rgba(233, 242, 239, 0.82);
}

.header-language-switcher .trp-shortcode-arrow path {
	stroke: currentColor;
}

.header-language-switcher {
	position: relative;
	z-index: 55;
}

.header-language-switcher .language-switcher-control {
	position: relative;
}

.header-language-switcher .language-switcher-button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0.55rem;
	min-width: 126px;
	height: 42px;
	padding: 0 0.72rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 14px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.02) 100%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
	backdrop-filter: blur(16px);
	color: rgba(233, 242, 239, 0.9);
	transition: transform 0.24s ease, border-color 0.24s ease, background-color 0.24s ease, color 0.24s ease;
}

.header-language-switcher .language-switcher-button:hover,
.header-language-switcher .language-switcher-button:focus-visible {
	transform: translateY(-1px);
	border-color: rgba(255, 255, 255, 0.18);
	color: #fff;
}

.header-language-switcher .language-switcher-button svg {
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
}

.header-language-switcher .language-switcher-current-label {
	white-space: nowrap;
	font-size: 0.82rem;
	font-weight: 700;
	line-height: 1;
}

.header-language-switcher .language-switcher-current-code {
	display: none;
	align-items: center;
	justify-content: center;
	min-width: 28px;
	height: 24px;
	padding: 0 0.42rem;
	border-radius: 999px;
	background: rgba(26, 140, 142, 0.22);
	border: 1px solid rgba(26, 140, 142, 0.48);
	color: #f1f7f4;
	font-size: 0.66rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.04em;
	margin-inline-start: auto;
	flex: 0 0 auto;
}

.header-language-switcher .language-switcher-chevron {
	width: 8px;
	height: 8px;
	border-inline-end: 1.8px solid currentColor;
	border-bottom: 1.8px solid currentColor;
	transform: rotate(45deg) translateY(-1px);
	flex: 0 0 auto;
	opacity: 0.82;
	margin-inline-start: 0.12rem;
}

.header-language-switcher.is-open .language-switcher-button {
	border-color: rgba(26, 140, 142, 0.44);
	background: rgba(18, 52, 66, 0.94);
	color: #fff;
}

.header-language-switcher.is-open .language-switcher-chevron {
	transform: rotate(225deg) translateY(-1px);
}

.header-language-switcher .language-switcher-menu {
	position: absolute;
	top: calc(100% + 0.55rem);
	inset-inline-end: 0;
	min-width: 174px;
	padding: 0.35rem;
	border-radius: 18px;
	background: rgba(7, 22, 30, 0.98);
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 18px 40px rgba(2, 10, 16, 0.34);
	backdrop-filter: blur(18px);
}

body.lang-en .header-language-switcher .language-switcher-menu {
	inset-inline-start: 0;
	inset-inline-end: auto;
}

.header-language-switcher .language-switcher-list {
	display: grid;
	gap: 0.18rem;
}

.header-language-switcher .language-switcher-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.7rem;
	padding: 0.62rem 0.72rem;
	border-radius: 12px;
	color: rgba(233, 242, 239, 0.88);
	font-size: 0.82rem;
	font-weight: 700;
	line-height: 1.2;
	transition: background-color 0.24s ease, color 0.24s ease;
}

.header-language-switcher .language-switcher-item:hover,
.header-language-switcher .language-switcher-item:focus-visible {
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
}

.header-language-switcher .language-switcher-item.is-current {
	background: rgba(255, 255, 255, 0.04);
	cursor: default;
}

.header-language-switcher .language-switcher-item-meta {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	min-width: 0;
}

.header-language-switcher .language-switcher-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 34px;
	height: 28px;
	padding: 0 0.5rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.header-language-switcher .language-switcher-name {
	white-space: nowrap;
}

.header-language-switcher .language-switcher-state {
	font-size: 0.68rem;
	color: rgba(233, 242, 239, 0.56);
}

.header-cta {
	min-width: 96px;
	min-height: 38px;
	padding: 0.48rem 0.82rem;
	font-size: 0.78rem;
	box-shadow: 0 14px 30px rgba(219, 106, 44, 0.22);
}

.menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 0.28rem;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.04);
	border-radius: 14px;
	color: #fff;
}

.menu-toggle>span:not(.screen-reader-text) {
	width: 18px;
	height: 2px;
	background: currentColor;
	border-radius: 999px;
	transition: transform 0.24s ease, opacity 0.24s ease;
}

body.menu-open .menu-toggle {
	background: rgba(219, 106, 44, 0.16);
	border-color: rgba(219, 106, 44, 0.34);
}

body.menu-open .menu-toggle span:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
	opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}

.site-main section {
	padding: clamp(4rem, 7vw, 7rem) 0;
}

.hero-home {
	padding-top: clamp(4.2rem, 9vw, 8rem);
}

.hero-grid,
.product-hero-grid,
.about-band-grid,
.feature-layout,
.contact-layout,
.cta-panel-inner,
.solution-layout {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(1.6rem, 3vw, 3rem);
	align-items: center;
}

.hero-copy h1,
.page-hero h1 {
	max-width: 12ch;
}

.hero-points {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin-top: 1.3rem;
}

.hero-points span,
.product-chip,
.timeline-index {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	padding: 0.5rem 0.85rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 0.82rem;
	font-weight: 700;
}

.hero-stack {
	position: relative;
	display: grid;
	gap: 1rem;
}

.hero-slider {
	--hero-slider-height: 332px;
	display: grid;
	gap: 1rem;
}

.hero-slider-window {
	position: relative;
	width: 100%;
	height: var(--hero-slider-height);
}

.hero-slider-slide {
	position: absolute;
	inset: 0;
	height: 100%;
	opacity: 0;
	pointer-events: none;
	transform: translateY(18px) scale(0.985);
	transition: opacity 0.45s ease, transform 0.55s ease;
}

.hero-slider-slide.is-active {
	position: relative;
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0) scale(1);
}

.hero-slider-card {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.12fr) minmax(220px, 0.78fr);
	grid-template-areas: "copy media";
	gap: clamp(0.9rem, 2.2vw, 1.5rem);
	align-items: center;
	height: 100%;
	min-height: var(--hero-slider-height);
	padding: clamp(1.1rem, 2.2vw, 1.45rem);
	border-radius: clamp(28px, 4vw, 38px);
	background:
		radial-gradient(circle at bottom left, rgba(26, 140, 142, 0.18), transparent 34%),
		linear-gradient(180deg, rgba(21, 51, 69, 0.92), rgba(9, 28, 38, 0.96));
	border: 1px solid rgba(103, 160, 185, 0.22);
	box-shadow: 0 26px 64px rgba(2, 12, 18, 0.24);
	overflow: hidden;
}

.hero-slider-slide.accent-water .hero-slider-card {
	background:
		radial-gradient(circle at bottom left, rgba(26, 140, 142, 0.24), transparent 34%),
		linear-gradient(180deg, rgba(21, 51, 69, 0.92), rgba(9, 28, 38, 0.96));
}

.hero-slider-slide.accent-fuel .hero-slider-card {
	background:
		radial-gradient(circle at bottom left, rgba(229, 184, 75, 0.22), transparent 34%),
		radial-gradient(circle at top right, rgba(219, 106, 44, 0.14), transparent 30%),
		linear-gradient(180deg, rgba(22, 45, 61, 0.92), rgba(10, 26, 35, 0.96));
}

.hero-slider-slide.accent-lpg .hero-slider-card {
	background:
		radial-gradient(circle at bottom left, rgba(219, 106, 44, 0.2), transparent 34%),
		radial-gradient(circle at top right, rgba(229, 184, 75, 0.12), transparent 30%),
		linear-gradient(180deg, rgba(23, 48, 65, 0.92), rgba(10, 26, 35, 0.96));
}

.hero-slider-copy {
	grid-area: copy;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.65rem;
	min-width: 0;
	min-height: 100%;
	align-self: stretch;
}

.hero-slider-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: 42px;
	margin-bottom: 0.2rem;
}

.hero-slider-chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 30px;
	padding: 0.42rem 0.72rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	color: rgba(255, 255, 255, 0.88);
}

.hero-slider-slide.accent-water .hero-slider-chip {
	background: rgba(26, 140, 142, 0.18);
}

.hero-slider-slide.accent-fuel .hero-slider-chip {
	background: rgba(229, 184, 75, 0.18);
}

.hero-slider-slide.accent-lpg .hero-slider-chip {
	background: rgba(219, 106, 44, 0.18);
}

.hero-slider-link {
	font-size: 0.82rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.82);
	text-decoration: none;
}

.hero-slider-link:hover {
	color: #fff;
}

.hero-slider-copy h3 {
	margin: 0;
	font-size: clamp(0.92rem, 1.12vw, 1.18rem);
	line-height: 1.2;
	max-width: 12ch;
	min-height: calc(1.2em * 2);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	overflow: hidden;
}

.hero-slider-copy p {
	max-width: 28ch;
	margin: 0;
	font-size: clamp(0.82rem, 1.1vw, 0.94rem);
	line-height: 1.55;
	color: rgba(240, 245, 247, 0.92);
	min-height: calc(1.55em * 3);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	overflow: hidden;
}

.hero-slider-media {
	grid-area: media;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	min-height: 100%;
	padding-block: 0.2rem;
}

.hero-slider-media img {
	width: min(100%, 286px);
	height: 228px;
	max-height: 228px;
	object-fit: contain;
	filter: drop-shadow(0 28px 48px rgba(1, 8, 12, 0.38));
	transform: translateY(4px);
}

.hero-slider-controls {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	width: fit-content;
	margin-inline: auto;
	padding: 0.38rem 0.52rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.045);
	border: 1px solid rgba(255, 255, 255, 0.09);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
	backdrop-filter: blur(12px);
}

.hero-slider-dot {
	appearance: none;
	width: 11px;
	height: 11px;
	padding: 0;
	border: none;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.2);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
	transition: transform 0.24s ease, background-color 0.24s ease, width 0.24s ease, box-shadow 0.24s ease, opacity 0.24s ease;
	opacity: 0.82;
}

.hero-slider-dot.is-active {
	width: 36px;
	background: linear-gradient(135deg, rgba(68, 217, 204, 0.96), rgba(26, 140, 142, 1));
	box-shadow: 0 10px 22px rgba(32, 182, 170, 0.24), inset 0 0 0 1px rgba(255, 255, 255, 0.14);
	opacity: 1;
}

.hero-slider-dot:hover,
.hero-slider-dot:focus-visible {
	transform: scale(1.05);
	opacity: 1;
}

.hero-card,
.glass-card,
.product-card,
.solution-card,
.solution-detail-card,
.metric-card,
.soft-card,
.timeline-card,
.info-card,
.form-panel,
.post-card,
.bullet-panel {
	position: relative;
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: var(--shadow);
}

.hero-card,
.glass-card,
.metric-card,
.soft-card,
.timeline-card,
.info-card,
.bullet-panel {
	padding: 1.4rem;
}

.hero-card-main {
	display: grid;
	grid-template-columns: 180px 1fr;
	gap: 1.25rem;
	padding: clamp(1.2rem, 3vw, 1.7rem);
	background: linear-gradient(180deg, rgba(21, 51, 69, 0.88), rgba(11, 29, 38, 0.92));
}

.hero-card-main img,
.product-display img {
	filter: drop-shadow(0 28px 40px rgba(2, 10, 14, 0.35));
}

.hero-mini-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.hero-mini-grid .hero-card {
	padding: 1.25rem;
}

.hero-mini-grid .hero-card span,
.metric-card strong,
.metric-card .metric-card-title {
	display: block;
	font-family: var(--font-head);
	font-size: clamp(0.98rem, 1.2vw, 1.28rem);
	color: #fff;
}

.metric-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 0.7rem;
	text-align: center;
	overflow: hidden;
}

.metric-card strong,
.metric-card span,
.metric-card .metric-card-title,
.metric-card .metric-card-text {
	max-width: 100%;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.metric-card span,
.metric-card .metric-card-text {
	font-size: 0.98rem;
	line-height: 1.55;
	color: var(--text-soft);
	text-wrap: balance;
}

.capability-band,
.page-hero,
.use-case-panel,
.contact-section,
.blog-archive,
.generic-content {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.card-grid {
	display: grid;
	gap: 1rem;
}

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

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

.glass-card p,
.product-card p,
.solution-card p,
.solution-detail-card p,
.post-card p,
.bullet-panel li,
.form-placeholder p {
	color: var(--text-soft);
}

.products-overview,
.solutions-grid-panel,
.stats-ribbon,
.cta-panel {
	background: linear-gradient(180deg, rgba(4, 11, 17, 0.24), rgba(255, 255, 255, 0.02));
}

.cta-panel-copy {
	max-width: 36rem;
}

.cta-panel-copy p:last-child {
	max-width: 34rem;
}

.cta-panel-actions {
	width: 100%;
}

.cta-link-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	align-items: stretch;
}

.cta-link-card {
	position: relative;
	display: grid;
	grid-template-rows: auto auto 1fr;
	gap: 0.6rem;
	min-height: 168px;
	padding: 1.25rem 1.35rem;
	border-radius: 28px;
	background:
		radial-gradient(circle at top right, rgba(229, 184, 75, 0.08), transparent 34%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.025));
	border: 1px solid rgba(255, 255, 255, 0.09);
	box-shadow: var(--shadow);
	transition: transform 0.24s ease, border-color 0.24s ease, background-color 0.24s ease, box-shadow 0.24s ease;
	overflow: hidden;
}

.cta-link-card::after {
	content: "";
	position: absolute;
	inset-block-end: 1.2rem;
	inset-inline-end: 1.2rem;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
		linear-gradient(135deg, rgba(26, 140, 142, 0.22), rgba(26, 140, 142, 0));
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
	opacity: 0.92;
}

.cta-link-card:hover,
.cta-link-card:focus-visible {
	transform: translateY(-4px);
	border-color: rgba(229, 184, 75, 0.28);
}

.cta-link-card.is-primary {
	grid-column: 1 / -1;
	min-height: 188px;
	background:
		radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 30%),
		radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.08), transparent 28%),
		linear-gradient(135deg, rgba(219, 106, 44, 0.94), rgba(240, 138, 69, 0.88));
	border-color: rgba(255, 255, 255, 0.08);
	box-shadow: 0 24px 48px rgba(219, 106, 44, 0.24);
}

.cta-link-card.is-primary::after {
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08)),
		linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.cta-link-card-kicker {
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(229, 184, 75, 0.9);
}

.cta-link-card.is-primary .cta-link-card-kicker {
	color: rgba(255, 246, 237, 0.84);
}

.cta-link-card-title {
	font-family: var(--font-head);
	font-size: clamp(1.04rem, 1.2vw, 1.28rem);
	line-height: 1.2;
	color: #fff;
}

.cta-link-card-text {
	max-width: 28ch;
	font-size: 0.95rem;
	line-height: 1.7;
	color: var(--text-soft);
}

.cta-link-card.is-primary .cta-link-card-text {
	color: rgba(255, 248, 243, 0.92);
}

.about-hero {
	padding-top: clamp(3.2rem, 6vw, 5rem);
}

.about-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
	gap: clamp(1.4rem, 3vw, 2.8rem);
	align-items: start;
}

.about-hero-copy h1 {
	max-width: 12ch;
}

.about-hero-lead {
	max-width: 38rem;
	margin: 0;
	font-size: 1.02rem;
	line-height: 1.85;
	color: var(--text-soft);
}

.about-hero-actions {
	margin-top: 1.2rem;
}

.about-hero-metrics {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.9rem;
	margin-top: 1.45rem;
}

.about-hero-metric {
	padding: 1rem 1.05rem;
	border-radius: 24px;
	background:
		radial-gradient(circle at top right, rgba(229, 184, 75, 0.08), transparent 34%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
	border: 1px solid rgba(255, 255, 255, 0.09);
	box-shadow: var(--shadow);
}

.about-hero-metric strong,
.about-hero-metric .about-hero-metric-title {
	display: block;
	margin-bottom: 0.45rem;
	font-family: var(--font-head);
	font-size: 1rem;
	color: #fff;
}

.about-hero-metric span,
.about-hero-metric .about-hero-metric-text {
	display: block;
	font-size: 0.9rem;
	line-height: 1.65;
	color: var(--text-soft);
}

.about-hero-visual {
	display: grid;
	gap: 1rem;
}

.about-device-showcase {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(190px, 0.82fr);
	gap: 1rem;
}

.about-device-card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 0.9rem;
	min-height: 220px;
	padding: 1.15rem;
	border-radius: 30px;
	background:
		radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 28%),
		linear-gradient(180deg, rgba(21, 51, 69, 0.94), rgba(8, 24, 33, 0.98));
	border: 1px solid rgba(255, 255, 255, 0.09);
	box-shadow: var(--shadow);
	overflow: hidden;
}

.about-device-card.is-large {
	grid-row: span 2;
	min-height: 100%;
}

.about-device-card.is-water {
	background:
		radial-gradient(circle at top right, rgba(26, 140, 142, 0.24), transparent 30%),
		linear-gradient(180deg, rgba(16, 47, 64, 0.96), rgba(8, 24, 33, 0.98));
}

.about-device-card.is-fuel {
	background:
		radial-gradient(circle at top right, rgba(229, 184, 75, 0.18), transparent 30%),
		radial-gradient(circle at bottom left, rgba(219, 106, 44, 0.12), transparent 34%),
		linear-gradient(180deg, rgba(22, 45, 61, 0.96), rgba(9, 24, 33, 0.98));
}

.about-device-card.is-lpg {
	background:
		radial-gradient(circle at top right, rgba(219, 106, 44, 0.18), transparent 30%),
		radial-gradient(circle at bottom left, rgba(229, 184, 75, 0.12), transparent 34%),
		linear-gradient(180deg, rgba(23, 48, 65, 0.96), rgba(9, 24, 33, 0.98));
}

.about-device-card img {
	width: min(100%, 240px);
	height: 170px;
	object-fit: contain;
	margin-inline: auto;
	filter: drop-shadow(0 28px 42px rgba(2, 10, 16, 0.32));
}

.about-device-card.is-large img {
	width: min(100%, 320px);
	height: 250px;
}

.about-device-chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-height: 30px;
	padding: 0.42rem 0.75rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	color: rgba(255, 255, 255, 0.88);
}

.about-device-card strong,
.about-device-card .about-device-title {
	font-family: var(--font-head);
	font-size: 1rem;
	line-height: 1.2;
	color: #fff;
}

.about-trust-panel {
	display: grid;
	grid-template-columns: 68px 1fr;
	gap: 1rem;
	align-items: center;
	padding: 1rem 1.15rem;
	border-radius: 26px;
	background:
		radial-gradient(circle at top right, rgba(229, 184, 75, 0.08), transparent 28%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.025));
	border: 1px solid rgba(255, 255, 255, 0.09);
	box-shadow: var(--shadow);
}

.about-trust-panel img {
	width: 60px;
	height: auto;
}

.about-trust-panel strong,
.about-trust-panel .about-trust-title {
	display: block;
	margin-bottom: 0.35rem;
	font-family: var(--font-head);
	font-size: 1rem;
	color: #fff;
}

.about-trust-panel p:not(.about-trust-title) {
	margin: 0;
	font-size: 0.94rem;
	line-height: 1.65;
	color: var(--text-soft);
}

.about-pillars {
	padding-top: 1.2rem !important;
}

.about-pillars-grid,
.about-industries-grid,
.about-process-grid {
	align-items: stretch;
}

.about-pillar-card,
.about-step-card,
.about-sector-card {
	height: 100%;
}

.about-pillar-card {
	padding: 1.45rem;
}

.about-pillar-card p,
.about-step-card p {
	color: var(--text-soft);
}

.about-process {
	padding-top: clamp(1.8rem, 3vw, 2.8rem) !important;
}

.about-step-card {
	padding: 1.45rem;
}

.about-capabilities {
	background: linear-gradient(180deg, rgba(4, 11, 17, 0.18), rgba(255, 255, 255, 0.02));
}

.about-capabilities-grid {
	align-items: start;
}

.about-capability-copy p {
	max-width: 40rem;
	color: var(--text-soft);
}

.about-capability-list {
	margin-top: 1rem;
}

.about-system-panel {
	display: grid;
	gap: 1rem;
}

.about-system-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.about-system-card {
	padding: 1.2rem 1.25rem;
	border-radius: 26px;
	background:
		radial-gradient(circle at top right, rgba(26, 140, 142, 0.1), transparent 34%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.025));
	border: 1px solid rgba(255, 255, 255, 0.09);
	box-shadow: var(--shadow);
}

.about-system-card h3 {
	margin-bottom: 0.6rem;
	font-size: clamp(0.98rem, 1.1vw, 1.14rem);
}

.about-system-card p,
.about-contact-card p {
	margin: 0;
	color: var(--text-soft);
}

.about-contact-card {
	padding: 1.25rem 1.35rem;
}

.about-contact-card p + p {
	margin-top: 0.55rem;
}

.about-industries {
	padding-top: clamp(1.8rem, 3vw, 2.8rem) !important;
}

.about-sector-card {
	padding: 1.45rem;
}

.about-sector-tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 28px;
	padding: 0.35rem 0.62rem;
	border-radius: 999px;
	background: rgba(229, 184, 75, 0.16);
	border: 1px solid rgba(229, 184, 75, 0.22);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	color: rgba(229, 184, 75, 0.92);
}

.about-sector-card p {
	color: var(--text-soft);
}

.about-sector-list {
	display: grid;
	gap: 0.55rem;
	margin-top: 1rem;
}

.about-sector-list li {
	position: relative;
	padding-inline-start: 1rem;
	font-size: 0.95rem;
	line-height: 1.65;
	color: var(--text-soft);
}

body.lang-ar .about-sector-list li {
	padding-inline-start: 0;
	padding-inline-end: 1rem;
}

.about-sector-list li::before {
	content: "";
	position: absolute;
	top: 0.64rem;
	inset-inline-start: 0;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent), var(--accent-3));
}

body.lang-ar .about-sector-list li::before {
	inset-inline-start: auto;
	inset-inline-end: 0;
}

.about-cta {
	padding-top: clamp(2rem, 4vw, 3rem) !important;
}

.services-summary {
	padding-bottom: 0 !important;
}

.services-summary-grid {
	align-items: stretch;
}

.services-summary-card {
	height: 100%;
	padding: 1.4rem;
}

.services-summary-card p {
	color: var(--text-soft);
}

.services-detail-section {
	padding-top: clamp(1.2rem, 3vw, 2rem) !important;
}

.services-stack {
	display: grid;
	gap: 1.45rem;
}

.service-detail-card {
	position: relative;
	display: grid;
	align-items: stretch;
	border-radius: 34px;
	background:
		radial-gradient(circle at top right, rgba(229, 184, 75, 0.08), transparent 28%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: var(--shadow);
	overflow: hidden;
}

.service-layout-alpha {
	grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
}

.service-layout-beta {
	grid-template-columns: 1fr;
	padding: 1rem;
	background:
		radial-gradient(circle at top right, rgba(219, 106, 44, 0.1), transparent 24%),
		radial-gradient(circle at bottom left, rgba(26, 140, 142, 0.1), transparent 28%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
}

.service-layout-gamma {
	grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.8fr);
	grid-template-areas: "copy media";
}

.service-detail-media {
	position: relative;
	min-height: 100%;
	background: #0a1e29;
}

.service-layout-gamma .service-detail-media {
	grid-area: media;
	padding: 1.2rem 1.2rem 1.2rem 0;
	background:
		radial-gradient(circle at center, rgba(26, 140, 142, 0.16), transparent 60%),
		linear-gradient(180deg, rgba(8, 24, 33, 0.94), rgba(8, 19, 27, 0.98));
}

.service-detail-media-frame {
	position: relative;
	height: 100%;
	min-height: 340px;
	border-radius: 28px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background:
		linear-gradient(180deg, rgba(12, 30, 40, 0.94), rgba(7, 19, 27, 0.98));
	box-shadow: 0 22px 44px rgba(2, 10, 16, 0.28);
}

.service-detail-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-detail-media.is-contain {
	padding: 1.4rem;
}

.service-detail-media.is-contain .service-detail-media-frame {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.8rem;
	background:
		radial-gradient(circle at top right, rgba(229, 184, 75, 0.18), transparent 26%),
		radial-gradient(circle at bottom left, rgba(26, 140, 142, 0.2), transparent 28%),
		linear-gradient(180deg, rgba(15, 35, 48, 0.92), rgba(10, 25, 34, 0.98));
}

.service-detail-media.is-contain img {
	width: min(100%, 360px);
	height: auto;
	max-height: 300px;
	object-fit: contain;
	filter: drop-shadow(0 28px 40px rgba(2, 10, 14, 0.35));
}

.service-layout-beta .service-detail-media {
	padding: 0;
}

.service-layout-beta .service-detail-media-frame {
	min-height: 360px;
	border-radius: 26px 26px 20px 20px;
}

.service-slug-mobile-applications .service-detail-media-frame {
	min-height: 290px;
}

.service-slug-mobile-applications .service-detail-media img {
	object-position: center 58%;
}

.service-layout-gamma .service-detail-media-frame {
	min-height: 100%;
	transform: translateY(1rem);
}

.service-detail-copy {
	display: grid;
	align-content: center;
	gap: 0.9rem;
	padding: clamp(1.5rem, 3vw, 2.2rem);
}

.service-layout-gamma .service-detail-copy {
	grid-area: copy;
}

.service-layout-beta .service-detail-copy {
	padding: 1.5rem 1.4rem 1.6rem;
	max-width: 920px;
}

.service-detail-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
}

.service-detail-title-wrap {
	display: grid;
	gap: 0.45rem;
}

.service-detail-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 46px;
	height: 46px;
	padding: 0 0.7rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: rgba(233, 242, 239, 0.76);
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	line-height: 1;
	flex: 0 0 auto;
}

.service-detail-kicker {
	margin: 0;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(229, 184, 75, 0.88);
}

.service-detail-copy h2 {
	margin: 0;
	max-width: 18ch;
}

.service-layout-beta .service-detail-copy h2 {
	max-width: 20ch;
}

.service-detail-lead {
	margin: 0;
	font-size: 1rem;
	line-height: 1.75;
	color: rgba(233, 242, 239, 0.9);
}

.service-detail-copy>p:last-of-type {
	margin: 0;
	color: var(--text-soft);
}

.service-detail-list {
	display: grid;
	gap: 0.85rem;
	margin-top: 0.2rem;
}

.service-layout-beta .service-detail-list {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.85rem 1rem;
}

.product-grid,
.post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.2rem;
}

.product-card,
.post-card {
	overflow: hidden;
}

.product-card {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.product-card-top {
	position: relative;
	padding: 1.2rem 1.2rem 0;
	background:
		radial-gradient(circle at top right, rgba(229, 184, 75, 0.28), transparent 26%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
}

.product-card-top img {
	width: min(220px, 80%);
	margin-inline: auto;
}

.product-chip {
	position: absolute;
	top: 1rem;
	inset-inline-start: 1rem;
}

.product-card-body,
.product-card-actions,
.post-card-content {
	padding: 1.2rem 1.2rem 1.4rem;
}

.product-card-body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
}

.product-card-actions {
	margin-top: auto;
	padding-top: 0;
}

.accent-fuel .product-chip {
	background: rgba(229, 184, 75, 0.18);
}

.accent-lpg .product-chip {
	background: rgba(219, 106, 44, 0.18);
}

.accent-water .product-chip {
	background: rgba(26, 140, 142, 0.18);
}

.solution-cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.solution-card,
.solution-detail-card {
	padding: 1.4rem;
	transition: transform 0.24s ease, border-color 0.24s ease, background-color 0.24s ease;
}

.solution-card:hover,
.solution-detail-card:hover,
.product-card:hover,
.post-card:hover {
	transform: translateY(-6px);
	border-color: rgba(229, 184, 75, 0.28);
}

.solution-card span:first-child,
.solution-card .solution-card-index {
	font-family: var(--font-head);
	font-size: 0.82rem;
	letter-spacing: 0.2em;
	color: rgba(229, 184, 75, 0.88);
}

.solutions-hero-metrics {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 1.2rem;
}

.solutions-hero-metric {
	height: 100%;
	padding: 1.25rem 1.3rem;
}

.solutions-hero-metric p {
	color: var(--text-soft);
}

.solutions-showcase {
	padding-top: clamp(1.1rem, 2.5vw, 1.8rem) !important;
}

.solutions-showcase-stack {
	display: grid;
	gap: 1.4rem;
}

.solution-showcase-card {
	display: grid;
	border-radius: 34px;
	background:
		radial-gradient(circle at top right, rgba(229, 184, 75, 0.08), transparent 28%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: var(--shadow);
	overflow: hidden;
}

.solution-showcase-alpha {
	grid-template-columns: minmax(300px, 0.84fr) minmax(0, 1fr);
}

.solution-showcase-beta {
	grid-template-columns: 1fr;
	padding: 1rem;
}

.solution-showcase-gamma {
	grid-template-columns: minmax(0, 1fr) minmax(300px, 0.84fr);
	grid-template-areas: "copy media";
}

.solution-showcase-media {
	position: relative;
	min-height: 100%;
	background:
		linear-gradient(180deg, rgba(10, 24, 32, 0.94), rgba(8, 20, 28, 0.98));
}

.solution-showcase-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.solution-showcase-beta .solution-showcase-media {
	min-height: 340px;
	border-radius: 28px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.solution-showcase-gamma .solution-showcase-media {
	grid-area: media;
}

.solution-showcase-copy {
	display: grid;
	align-content: center;
	gap: 0.95rem;
	padding: clamp(1.45rem, 3vw, 2.1rem);
}

.solution-showcase-gamma .solution-showcase-copy {
	grid-area: copy;
}

.solution-showcase-beta .solution-showcase-copy {
	padding: 1.45rem 1.35rem 1.5rem;
}

.solution-showcase-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
}

.solution-showcase-title-wrap {
	display: grid;
	gap: 0.45rem;
}

.solution-showcase-kicker {
	margin: 0;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(229, 184, 75, 0.88);
}

.solution-showcase-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 46px;
	height: 46px;
	padding: 0 0.72rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: rgba(233, 242, 239, 0.76);
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	line-height: 1;
	flex: 0 0 auto;
}

.solution-showcase-copy h2 {
	margin: 0;
	max-width: 18ch;
}

.solution-showcase-lead {
	margin: 0;
	font-size: 1rem;
	line-height: 1.75;
	color: rgba(233, 242, 239, 0.9);
}

.solution-showcase-copy > p:last-of-type {
	margin: 0;
	color: var(--text-soft);
}

.solution-showcase-columns {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.solution-showcase-block {
	padding: 1rem 1.05rem;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.solution-showcase-block h3 {
	margin-bottom: 0.8rem;
}

.solution-showcase-points {
	display: grid;
	gap: 0.75rem;
}

.solution-showcase-points li {
	position: relative;
	padding-inline-start: 1.15rem;
	color: var(--text-soft);
}

body.lang-ar .solution-showcase-points li {
	padding-inline-start: 0;
	padding-inline-end: 1.15rem;
}

.solution-showcase-points li::before {
	content: "";
	position: absolute;
	inset-inline-start: 0;
	top: 0.78rem;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent), var(--accent-3));
}

body.lang-ar .solution-showcase-points li::before {
	inset-inline-start: auto;
	inset-inline-end: 0;
}

.solution-process-panel {
	padding-top: clamp(1.1rem, 2.6vw, 2rem) !important;
}

.solution-process-card {
	height: 100%;
	padding: 1.35rem;
}

.solution-process-card p {
	color: var(--text-soft);
}

.metric-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 1rem;
}

.stats-grid,
.timeline-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
}

.timeline-card {
	min-height: 100%;
}

.timeline-index {
	margin-bottom: 0.9rem;
	color: #fff;
	background: linear-gradient(135deg, var(--accent-2), #22afb2);
}

.partner-panel-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 1.4rem;
	align-items: center;
}

.partner-store-grid,
.store-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
}

.spacious {
	gap: 1rem;
}

.partner-store-button {
	min-width: 164px;
}

.badge-link img {
	height: 54px;
	width: auto;
}

.feature-list {
	display: grid;
	gap: 0.9rem;
}

.feature-list li {
	position: relative;
	padding-inline-start: 1.6rem;
}

body.lang-ar .feature-list li {
	padding-inline-end: 1.6rem;
	padding-inline-start: 0;
}

.feature-list li::before {
	content: "";
	position: absolute;
	top: 0.62rem;
	inset-inline-start: 0;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent), var(--accent-3));
}

body.lang-ar .feature-list li::before {
	inset-inline-start: auto;
	inset-inline-end: 0;
}

.page-hero {
	padding: clamp(2.8rem, 5vw, 4.2rem) 0 clamp(2.2rem, 4vw, 3rem) !important;
}

.page-hero .section-intro {
	margin-bottom: 0;
}

.page-hero-product .product-display {
	padding: 1.5rem;
	border-radius: var(--radius-lg);
	background:
		radial-gradient(circle at top right, rgba(219, 106, 44, 0.18), transparent 24%),
		radial-gradient(circle at bottom left, rgba(26, 140, 142, 0.22), transparent 26%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: var(--shadow);
}

.product-page.accent-water .product-display {
	background:
		radial-gradient(circle at top right, rgba(26, 140, 142, 0.26), transparent 24%),
		radial-gradient(circle at bottom left, rgba(229, 184, 75, 0.18), transparent 26%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.product-page.accent-fuel .product-display {
	background:
		radial-gradient(circle at top right, rgba(229, 184, 75, 0.24), transparent 24%),
		radial-gradient(circle at bottom left, rgba(219, 106, 44, 0.2), transparent 26%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.contact-cards {
	display: grid;
	gap: 1rem;
}

.form-panel {
	padding: clamp(1.4rem, 3vw, 2rem);
}

.form-panel .ff-el-group,
.form-panel .ff_submit_btn_wrapper,
.form-panel .ff-btn-submit {
	width: 100%;
}

.form-panel input,
.form-panel textarea,
.form-panel select,
.ff-el-form-control,
.ff-el-group input,
.ff-el-group textarea,
.ff-el-group select {
	width: 100%;
	border-radius: 18px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.05);
	color: var(--text);
	padding: 0.95rem 1rem;
	font-family: inherit;
}

.ff-btn-submit,
.ff-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0.85rem 1.45rem;
	border-radius: 999px !important;
	border: none !important;
	background: linear-gradient(135deg, var(--accent), #f08a45) !important;
	color: #fff !important;
	font-family: inherit !important;
	font-weight: 700 !important;
}

.form-placeholder {
	padding: 1rem;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px dashed rgba(255, 255, 255, 0.16);
}

.prose-content {
	max-width: 820px;
}

.page-builder-section {
	padding-top: clamp(1.2rem, 3vw, 2rem) !important;
}

.editor-content-shell {
	max-width: 960px;
}

.editor-content-shell > *:first-child {
	margin-top: 0;
}

.editor-content-shell > *:last-child {
	margin-bottom: 0;
}

.editor-content-shell p,
.editor-content-shell li,
.editor-content-shell figcaption,
.editor-content-shell cite {
	color: var(--text-soft);
}

.editor-content-shell .wp-block-group,
.editor-content-shell .wp-block-cover,
.editor-content-shell .wp-block-media-text,
.editor-content-shell .wp-block-quote,
.editor-content-shell .wp-block-pullquote,
.editor-content-shell .wp-block-table,
.editor-content-shell .wp-block-columns.is-layout-flex {
	margin-top: 0;
	margin-bottom: 1.35rem;
}

.editor-content-shell .wp-block-group.has-background,
.editor-content-shell .wp-block-cover,
.editor-content-shell .wp-block-media-text.has-background,
.editor-content-shell .wp-block-quote,
.editor-content-shell .wp-block-pullquote {
	padding: 1.5rem;
	border-radius: 30px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background:
		radial-gradient(circle at top right, rgba(229, 184, 75, 0.08), transparent 30%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
	box-shadow: var(--shadow);
}

.editor-content-shell .wp-block-cover {
	overflow: hidden;
}

.editor-content-shell .wp-block-image img,
.editor-content-shell .wp-block-cover img,
.editor-content-shell .wp-block-media-text__media img {
	border-radius: 24px;
}

.editor-content-shell .wp-block-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
}

.editor-content-shell .wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0.85rem 1.45rem;
	border-radius: 999px;
	font-weight: 700;
}

.editor-content-shell .wp-block-button:not(.is-style-outline) .wp-block-button__link {
	background: linear-gradient(135deg, var(--accent), #f08a45);
	color: #fff;
}

.editor-content-shell .wp-block-button.is-style-outline .wp-block-button__link,
.editor-content-shell .wp-block-button.button-secondary .wp-block-button__link,
.editor-content-shell .wp-block-button__link.is-style-outline {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: var(--text);
}

.editor-content-shell .wp-block-columns {
	gap: 1rem;
}

.editor-content-shell .wp-block-column > *:last-child {
	margin-bottom: 0;
}

.editor-content-shell .wp-block-separator {
	margin: 1.6rem auto;
	border-color: rgba(255, 255, 255, 0.12);
}

.editor-content-shell .wp-block-table table {
	border-collapse: collapse;
	width: 100%;
	overflow: hidden;
	border-radius: 20px;
}

.editor-content-shell .wp-block-table td,
.editor-content-shell .wp-block-table th {
	border-color: rgba(255, 255, 255, 0.12);
}

.editor-content-shell .alignwide {
	width: min(calc(100% + 120px), 1080px);
	max-width: none;
	margin-inline: auto;
}

.prose-content p,
.prose-content li {
	color: var(--text-soft);
}

.post-card-link {
	display: block;
	height: 100%;
}

.post-card-date {
	margin-bottom: 0.8rem;
	font-size: 0.84rem;
	color: rgba(229, 184, 75, 0.88);
}

.pagination-wrap {
	grid-column: 1 / -1;
	display: flex;
	justify-content: center;
	margin-top: 1rem;
}

.site-footer {
	padding-top: 3rem;
	background:
		radial-gradient(circle at top left, rgba(26, 140, 142, 0.18), transparent 24%),
		linear-gradient(180deg, rgba(3, 10, 15, 0.18), #061219 100%);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.3fr 0.8fr 1fr 1fr;
	gap: 1.4rem;
}

.footer-grid h3 {
	font-size: 1rem;
	margin-bottom: 1rem;
}

.footer-grid p,
.footer-grid li,
.footer-grid a {
	color: var(--text-soft);
}

.footer-grid ul {
	display: grid;
	gap: 0.55rem;
}

.footer-bottom {
	margin-top: 2rem;
	padding: 1rem 0 1.4rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-badge img {
	width: 70px;
	margin-top: 1rem;
}

.theme-toggle-float {
	position: fixed;
	inset-block-end: 1rem;
	inset-inline-start: 1rem;
	z-index: 60;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 18px;
	background: linear-gradient(180deg, rgba(9, 24, 34, 0.94), rgba(7, 18, 26, 0.98));
	box-shadow: 0 18px 38px rgba(2, 10, 16, 0.28);
	backdrop-filter: blur(18px);
	color: #eef4f2;
	transition: transform 0.24s ease, border-color 0.24s ease, background-color 0.24s ease, color 0.24s ease, box-shadow 0.24s ease;
}

.theme-toggle-float:hover,
.theme-toggle-float:focus-visible {
	transform: translateY(-2px);
	border-color: rgba(255, 255, 255, 0.22);
}

.theme-toggle-float .theme-toggle-icon {
	position: absolute;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.24s ease, transform 0.24s ease;
}

.theme-toggle-float svg {
	width: 21px;
	height: 21px;
}

.theme-toggle-icon-sun {
	color: #ffcd67;
	opacity: 0;
	transform: scale(0.78) rotate(-18deg);
}

.theme-toggle-icon-moon {
	color: #eef1ff;
	opacity: 1;
	transform: scale(1) rotate(0deg);
}

html[data-theme="light"] {
	--bg: #f7f1e8;
	--bg-soft: #fcfaf5;
	--surface: #ffffff;
	--surface-2: #edf4f0;
	--surface-3: #ffffff;
	--surface-4: #f4ede2;
	--text: #122530;
	--text-soft: rgba(18, 37, 48, 0.72);
	--text-dark: #122530;
	--text-dark-soft: rgba(18, 37, 48, 0.66);
	--line: rgba(18, 37, 48, 0.1);
	--line-dark: rgba(18, 37, 48, 0.08);
	--shadow: 0 20px 60px rgba(14, 30, 39, 0.12);
}

html[data-theme="light"] body {
	background:
		radial-gradient(circle at top left, rgba(26, 140, 142, 0.12), transparent 30%),
		radial-gradient(circle at top right, rgba(219, 106, 44, 0.1), transparent 24%),
		linear-gradient(180deg, #faf6ef 0%, #f5efe6 45%, #edf4ef 100%);
	color: var(--text);
}

html[data-theme="light"] body::before {
	background: rgba(18, 37, 48, 0.12);
}

html[data-theme="light"] .site-header {
	background: rgba(249, 245, 238, 0.88);
	border-bottom-color: rgba(18, 37, 48, 0.08);
}

html[data-theme="light"] .site-header::before {
	background: rgba(249, 245, 238, 0.94);
}

html[data-theme="light"] .site-brand img,
html[data-theme="light"] .footer-logo {
	filter: brightness(0) saturate(100%) contrast(1.08);
}

html[data-theme="light"] .primary-navigation {
	background: rgba(249, 245, 238, 0.97);
	border-color: rgba(18, 37, 48, 0.1);
}

html[data-theme="light"] .header-main a,
html[data-theme="light"] .menu a {
	color: rgba(18, 37, 48, 0.72);
}

html[data-theme="light"] .menu a:hover,
html[data-theme="light"] .hero-slider-link:hover {
	color: var(--text);
}

html[data-theme="light"] .social-link,
html[data-theme="light"] .menu-toggle,
html[data-theme="light"] .header-language-switcher .language-switcher-button,
html[data-theme="light"] .header-language-switcher .language-switcher-menu,
html[data-theme="light"] .form-panel input,
html[data-theme="light"] .form-panel textarea,
html[data-theme="light"] .form-panel select,
html[data-theme="light"] .ff-el-form-control,
html[data-theme="light"] .ff-el-group input,
html[data-theme="light"] .ff-el-group textarea,
html[data-theme="light"] .ff-el-group select,
html[data-theme="light"] .form-placeholder {
	background: rgba(255, 255, 255, 0.86);
	border-color: rgba(18, 37, 48, 0.1);
	color: var(--text);
	box-shadow: 0 10px 30px rgba(18, 37, 48, 0.06);
}

html[data-theme="light"] .social-link:hover,
html[data-theme="light"] .header-language-switcher .language-switcher-item:hover,
html[data-theme="light"] .header-language-switcher .language-switcher-item:focus-visible {
	background: rgba(18, 37, 48, 0.06);
	color: var(--text);
}

html[data-theme="light"] .button.button-secondary,
html[data-theme="light"] .editor-managed .wp-block-button.button-secondary .wp-block-button__link,
html[data-theme="light"] .editor-content-shell .wp-block-button.button-secondary .wp-block-button__link,
html[data-theme="light"] .editor-content-shell .wp-block-button.is-style-outline .wp-block-button__link,
html[data-theme="light"] .editor-content-shell .wp-block-button__link.is-style-outline {
	background: rgba(255, 255, 255, 0.86);
	border-color: rgba(18, 37, 48, 0.1);
	color: var(--text);
	box-shadow: 0 10px 30px rgba(18, 37, 48, 0.06);
}

html[data-theme="light"] .button.button-secondary:hover,
html[data-theme="light"] .button.button-secondary:focus-visible,
html[data-theme="light"] .editor-managed .wp-block-button.button-secondary .wp-block-button__link:hover,
html[data-theme="light"] .editor-managed .wp-block-button.button-secondary .wp-block-button__link:focus-visible,
html[data-theme="light"] .editor-content-shell .wp-block-button.button-secondary .wp-block-button__link:hover,
html[data-theme="light"] .editor-content-shell .wp-block-button.button-secondary .wp-block-button__link:focus-visible,
html[data-theme="light"] .editor-content-shell .wp-block-button.is-style-outline .wp-block-button__link:hover,
html[data-theme="light"] .editor-content-shell .wp-block-button.is-style-outline .wp-block-button__link:focus-visible,
html[data-theme="light"] .editor-content-shell .wp-block-button__link.is-style-outline:hover,
html[data-theme="light"] .editor-content-shell .wp-block-button__link.is-style-outline:focus-visible {
	background: rgba(255, 255, 255, 0.96);
	border-color: rgba(18, 37, 48, 0.12);
	color: var(--text);
}

html[data-theme="light"] body.menu-open .menu-toggle {
	background: rgba(219, 106, 44, 0.12);
	border-color: rgba(219, 106, 44, 0.28);
}

html[data-theme="light"] .header-language-switcher .language-switcher-item,
html[data-theme="light"] .header-language-switcher .language-switcher-state,
html[data-theme="light"] .header-language-switcher .language-switcher-current-code,
html[data-theme="light"] .header-language-switcher .language-switcher-current-label {
	color: var(--text);
}

html[data-theme="light"] .header-language-switcher .language-switcher-item.is-current,
html[data-theme="light"] .header-language-switcher .language-switcher-badge {
	background: rgba(18, 37, 48, 0.05);
	border-color: rgba(18, 37, 48, 0.08);
}

html[data-theme="light"] .hero-card,
html[data-theme="light"] .glass-card,
html[data-theme="light"] .product-card,
html[data-theme="light"] .solution-card,
html[data-theme="light"] .solution-detail-card,
html[data-theme="light"] .metric-card,
html[data-theme="light"] .soft-card,
html[data-theme="light"] .timeline-card,
html[data-theme="light"] .info-card,
html[data-theme="light"] .form-panel,
html[data-theme="light"] .post-card,
html[data-theme="light"] .bullet-panel {
	background: rgba(255, 255, 255, 0.76);
	border-color: rgba(18, 37, 48, 0.08);
	box-shadow: var(--shadow);
}

html[data-theme="light"] .hero-card-main {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(243, 237, 227, 0.96));
}

html[data-theme="light"] .hero-slider-card {
	background:
		radial-gradient(circle at bottom left, rgba(26, 140, 142, 0.12), transparent 34%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(238, 246, 242, 0.96));
	border-color: rgba(18, 37, 48, 0.1);
	box-shadow: 0 24px 52px rgba(14, 30, 39, 0.14);
}

html[data-theme="light"] .hero-slider-slide.accent-water .hero-slider-card {
	background:
		radial-gradient(circle at bottom left, rgba(26, 140, 142, 0.15), transparent 34%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(237, 247, 243, 0.96));
}

html[data-theme="light"] .hero-slider-slide.accent-fuel .hero-slider-card {
	background:
		radial-gradient(circle at bottom left, rgba(229, 184, 75, 0.14), transparent 34%),
		radial-gradient(circle at top right, rgba(219, 106, 44, 0.08), transparent 30%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 243, 231, 0.96));
}

html[data-theme="light"] .hero-slider-slide.accent-lpg .hero-slider-card {
	background:
		radial-gradient(circle at bottom left, rgba(219, 106, 44, 0.13), transparent 34%),
		radial-gradient(circle at top right, rgba(229, 184, 75, 0.08), transparent 30%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 240, 232, 0.96));
}

html[data-theme="light"] .hero-slider-chip,
html[data-theme="light"] .hero-points span,
html[data-theme="light"] .product-chip,
html[data-theme="light"] .timeline-index {
	border-color: rgba(18, 37, 48, 0.08);
}

html[data-theme="light"] .hero-slider-chip {
	background: rgba(18, 37, 48, 0.05);
	color: var(--text);
}

html[data-theme="light"] .hero-slider-link,
html[data-theme="light"] .editor-managed .wp-block-button.hero-slider-link .wp-block-button__link,
html[data-theme="light"] .hero-slider-copy p,
html[data-theme="light"] .hero-mini-grid .hero-card span,
html[data-theme="light"] .metric-card strong,
html[data-theme="light"] .metric-card .metric-card-title {
	color: rgba(18, 37, 48, 0.8);
}

html[data-theme="light"] .hero-slider-controls {
	background: rgba(255, 255, 255, 0.82);
	border-color: rgba(18, 37, 48, 0.08);
	box-shadow: 0 14px 28px rgba(18, 37, 48, 0.08);
}

html[data-theme="light"] .hero-slider-dot {
	background: rgba(18, 37, 48, 0.16);
	box-shadow: inset 0 0 0 1px rgba(18, 37, 48, 0.08);
}

html[data-theme="light"] .hero-slider-dot.is-active {
	box-shadow: 0 10px 20px rgba(26, 140, 142, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

html[data-theme="light"] .about-hero-metric,
html[data-theme="light"] .about-device-card,
html[data-theme="light"] .about-trust-panel,
html[data-theme="light"] .about-system-card {
	background: rgba(255, 255, 255, 0.82);
	border-color: rgba(18, 37, 48, 0.08);
	box-shadow: var(--shadow);
}

html[data-theme="light"] .about-device-card.is-water {
	background:
		radial-gradient(circle at top right, rgba(26, 140, 142, 0.12), transparent 30%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(237, 247, 243, 0.98));
}

html[data-theme="light"] .about-device-card.is-fuel {
	background:
		radial-gradient(circle at top right, rgba(229, 184, 75, 0.12), transparent 30%),
		radial-gradient(circle at bottom left, rgba(219, 106, 44, 0.08), transparent 34%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 243, 231, 0.98));
}

html[data-theme="light"] .about-device-card.is-lpg {
	background:
		radial-gradient(circle at top right, rgba(219, 106, 44, 0.1), transparent 30%),
		radial-gradient(circle at bottom left, rgba(229, 184, 75, 0.08), transparent 34%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 240, 232, 0.98));
}

html[data-theme="light"] .about-hero-metric strong,
html[data-theme="light"] .about-hero-metric .about-hero-metric-title,
html[data-theme="light"] .about-device-card strong,
html[data-theme="light"] .about-device-card .about-device-title,
html[data-theme="light"] .about-trust-panel strong,
html[data-theme="light"] .about-trust-panel .about-trust-title,
html[data-theme="light"] .about-system-card h3 {
	color: var(--text);
}

html[data-theme="light"] .about-hero-metric span,
html[data-theme="light"] .about-hero-metric .about-hero-metric-text,
html[data-theme="light"] .about-trust-panel p:not(.about-trust-title),
html[data-theme="light"] .about-pillar-card p,
html[data-theme="light"] .about-step-card p,
html[data-theme="light"] .about-capability-copy p,
html[data-theme="light"] .about-system-card p,
html[data-theme="light"] .about-contact-card p,
html[data-theme="light"] .about-sector-card p,
html[data-theme="light"] .about-sector-list li {
	color: var(--text-soft);
}

html[data-theme="light"] .about-device-chip {
	background: rgba(18, 37, 48, 0.05);
	border-color: rgba(18, 37, 48, 0.08);
	color: var(--text);
}

html[data-theme="light"] .products-overview,
html[data-theme="light"] .solutions-grid-panel,
html[data-theme="light"] .stats-ribbon,
html[data-theme="light"] .cta-panel,
html[data-theme="light"] .capability-band,
html[data-theme="light"] .page-hero,
html[data-theme="light"] .use-case-panel,
html[data-theme="light"] .contact-section,
html[data-theme="light"] .blog-archive,
html[data-theme="light"] .generic-content {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent);
}

html[data-theme="light"] .editor-content-shell .wp-block-group.has-background,
html[data-theme="light"] .editor-content-shell .wp-block-cover,
html[data-theme="light"] .editor-content-shell .wp-block-media-text.has-background,
html[data-theme="light"] .editor-content-shell .wp-block-quote,
html[data-theme="light"] .editor-content-shell .wp-block-pullquote {
	background: rgba(255, 255, 255, 0.82);
	border-color: rgba(18, 37, 48, 0.08);
	box-shadow: var(--shadow);
}

html[data-theme="light"] .editor-content-shell p,
html[data-theme="light"] .editor-content-shell li,
html[data-theme="light"] .editor-content-shell figcaption,
html[data-theme="light"] .editor-content-shell cite {
	color: var(--text-soft);
}

html[data-theme="light"] .editor-content-shell .wp-block-button.is-style-outline .wp-block-button__link,
html[data-theme="light"] .editor-content-shell .wp-block-button.button-secondary .wp-block-button__link,
html[data-theme="light"] .editor-content-shell .wp-block-button__link.is-style-outline {
	background: rgba(255, 255, 255, 0.86);
	border-color: rgba(18, 37, 48, 0.1);
	color: var(--text);
	box-shadow: 0 10px 30px rgba(18, 37, 48, 0.06);
}

html[data-theme="light"] .editor-content-shell .wp-block-separator,
html[data-theme="light"] .editor-content-shell .wp-block-table td,
html[data-theme="light"] .editor-content-shell .wp-block-table th {
	border-color: rgba(18, 37, 48, 0.1);
}

html[data-theme="light"] .cta-link-card {
	background:
		radial-gradient(circle at top right, rgba(229, 184, 75, 0.08), transparent 34%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(244, 238, 228, 0.86));
	border-color: rgba(18, 37, 48, 0.08);
	box-shadow: 0 18px 38px rgba(18, 37, 48, 0.08);
}

html[data-theme="light"] .cta-link-card::after {
	background:
		linear-gradient(135deg, rgba(18, 37, 48, 0.06), rgba(18, 37, 48, 0.02)),
		linear-gradient(135deg, rgba(26, 140, 142, 0.14), rgba(26, 140, 142, 0));
	box-shadow: inset 0 0 0 1px rgba(18, 37, 48, 0.06);
}

html[data-theme="light"] .cta-link-card:hover,
html[data-theme="light"] .cta-link-card:focus-visible {
	border-color: rgba(219, 106, 44, 0.22);
}

html[data-theme="light"] .cta-link-card.is-primary {
	background:
		radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 30%),
		linear-gradient(135deg, rgba(219, 106, 44, 0.92), rgba(240, 138, 69, 0.88));
	box-shadow: 0 22px 42px rgba(219, 106, 44, 0.18);
}

html[data-theme="light"] .cta-link-card-title {
	color: var(--text);
}

html[data-theme="light"] .cta-link-card-text {
	color: rgba(18, 37, 48, 0.72);
}

html[data-theme="light"] .cta-link-card.is-primary .cta-link-card-title,
html[data-theme="light"] .cta-link-card.is-primary .cta-link-card-text,
html[data-theme="light"] .cta-link-card.is-primary .cta-link-card-kicker {
	color: #fff7f1;
}

html[data-theme="light"] .services-summary-card,
html[data-theme="light"] .service-detail-card {
	background:
		radial-gradient(circle at top right, rgba(229, 184, 75, 0.08), transparent 28%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 238, 228, 0.88));
	border-color: rgba(18, 37, 48, 0.08);
	box-shadow: 0 18px 38px rgba(18, 37, 48, 0.08);
}

html[data-theme="light"] .service-detail-media {
	background: #dfe9e5;
}

html[data-theme="light"] .service-detail-media-frame,
html[data-theme="light"] .service-detail-count {
	border-color: rgba(18, 37, 48, 0.08);
	box-shadow: 0 16px 34px rgba(18, 37, 48, 0.08);
}

html[data-theme="light"] .service-detail-count {
	background: rgba(18, 37, 48, 0.05);
	color: rgba(18, 37, 48, 0.72);
}

html[data-theme="light"] .service-detail-media.is-contain {
	background:
		radial-gradient(circle at top right, rgba(229, 184, 75, 0.14), transparent 26%),
		radial-gradient(circle at bottom left, rgba(26, 140, 142, 0.12), transparent 28%),
		linear-gradient(180deg, rgba(247, 244, 238, 0.98), rgba(235, 244, 239, 0.96));
}

html[data-theme="light"] .service-detail-media.is-contain .service-detail-media-frame {
	background:
		radial-gradient(circle at top right, rgba(229, 184, 75, 0.14), transparent 26%),
		radial-gradient(circle at bottom left, rgba(26, 140, 142, 0.12), transparent 28%),
		linear-gradient(180deg, rgba(247, 244, 238, 0.98), rgba(235, 244, 239, 0.96));
}

html[data-theme="light"] .service-layout-beta {
	background:
		radial-gradient(circle at top right, rgba(219, 106, 44, 0.08), transparent 24%),
		radial-gradient(circle at bottom left, rgba(26, 140, 142, 0.08), transparent 28%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 238, 228, 0.9));
}

html[data-theme="light"] .service-layout-gamma .service-detail-media {
	background:
		radial-gradient(circle at center, rgba(26, 140, 142, 0.1), transparent 60%),
		linear-gradient(180deg, rgba(238, 245, 242, 0.96), rgba(231, 239, 236, 0.98));
}

html[data-theme="light"] .service-slug-mobile-applications .service-detail-media-frame {
	box-shadow: 0 14px 28px rgba(18, 37, 48, 0.07);
}

html[data-theme="light"] .service-detail-copy>p:last-of-type,
html[data-theme="light"] .services-summary-card p {
	color: rgba(18, 37, 48, 0.72);
}

html[data-theme="light"] .service-detail-lead {
	color: rgba(18, 37, 48, 0.9);
}

html[data-theme="light"] .solutions-hero-metric,
html[data-theme="light"] .solution-showcase-card,
html[data-theme="light"] .solution-process-card {
	background:
		radial-gradient(circle at top right, rgba(229, 184, 75, 0.08), transparent 28%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 238, 228, 0.88));
	border-color: rgba(18, 37, 48, 0.08);
	box-shadow: 0 18px 38px rgba(18, 37, 48, 0.08);
}

html[data-theme="light"] .solutions-hero-metric p,
html[data-theme="light"] .solution-process-card p,
html[data-theme="light"] .solution-showcase-copy > p:last-of-type,
html[data-theme="light"] .solution-showcase-points li {
	color: rgba(18, 37, 48, 0.72);
}

html[data-theme="light"] .solution-showcase-lead {
	color: rgba(18, 37, 48, 0.9);
}

html[data-theme="light"] .solution-showcase-count {
	background: rgba(18, 37, 48, 0.05);
	border-color: rgba(18, 37, 48, 0.08);
	color: rgba(18, 37, 48, 0.72);
}

html[data-theme="light"] .solution-showcase-media {
	background:
		linear-gradient(180deg, rgba(238, 245, 242, 0.96), rgba(231, 239, 236, 0.98));
}

html[data-theme="light"] .solution-showcase-beta .solution-showcase-media,
html[data-theme="light"] .solution-showcase-block {
	border-color: rgba(18, 37, 48, 0.08);
	background: rgba(18, 37, 48, 0.03);
}

html[data-theme="light"] .product-card-top {
	background:
		radial-gradient(circle at top right, rgba(229, 184, 75, 0.16), transparent 26%),
		linear-gradient(180deg, rgba(18, 37, 48, 0.03), transparent);
}

html[data-theme="light"] .page-hero-product .product-display,
html[data-theme="light"] .product-page.accent-water .product-display,
html[data-theme="light"] .product-page.accent-fuel .product-display,
html[data-theme="light"] .product-page.accent-lpg .product-display {
	border-color: rgba(18, 37, 48, 0.08);
	box-shadow: var(--shadow);
}

html[data-theme="light"] .page-hero-product .product-display {
	background:
		radial-gradient(circle at top right, rgba(219, 106, 44, 0.12), transparent 24%),
		radial-gradient(circle at bottom left, rgba(26, 140, 142, 0.14), transparent 26%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 239, 231, 0.96));
}

html[data-theme="light"] .product-page.accent-water .product-display {
	background:
		radial-gradient(circle at top right, rgba(26, 140, 142, 0.16), transparent 24%),
		radial-gradient(circle at bottom left, rgba(229, 184, 75, 0.12), transparent 26%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(238, 247, 243, 0.96));
}

html[data-theme="light"] .product-page.accent-fuel .product-display {
	background:
		radial-gradient(circle at top right, rgba(229, 184, 75, 0.16), transparent 24%),
		radial-gradient(circle at bottom left, rgba(219, 106, 44, 0.14), transparent 26%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(249, 244, 233, 0.96));
}

html[data-theme="light"] .product-page.accent-lpg .product-display {
	background:
		radial-gradient(circle at top right, rgba(219, 106, 44, 0.14), transparent 24%),
		radial-gradient(circle at bottom left, rgba(229, 184, 75, 0.1), transparent 26%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 239, 232, 0.96));
}

html[data-theme="light"] .feature-list li::before,
html[data-theme="light"] .timeline-index,
html[data-theme="light"] .ff-btn-submit,
html[data-theme="light"] .ff-btn {
	box-shadow: none;
}

html[data-theme="light"] .site-footer {
	background:
		radial-gradient(circle at top left, rgba(26, 140, 142, 0.1), transparent 24%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.58), #ece5da 100%);
	border-top-color: rgba(18, 37, 48, 0.08);
}

html[data-theme="light"] .footer-grid p,
html[data-theme="light"] .footer-grid li,
html[data-theme="light"] .footer-grid a,
html[data-theme="light"] .footer-bottom {
	color: rgba(18, 37, 48, 0.72);
}

html[data-theme="light"] .footer-bottom {
	border-top-color: rgba(18, 37, 48, 0.08);
}

html[data-theme="light"] .hero-card-main img,
html[data-theme="light"] .product-display img,
html[data-theme="light"] .hero-slider-media img {
	filter: drop-shadow(0 20px 28px rgba(48, 65, 76, 0.18));
}

html[data-theme="light"] .theme-toggle-float {
	background: rgba(255, 255, 255, 0.92);
	border-color: rgba(18, 37, 48, 0.12);
	box-shadow: 0 18px 42px rgba(18, 37, 48, 0.14);
	color: var(--text);
}

html[data-theme="light"] .theme-toggle-icon-sun {
	opacity: 1;
	transform: scale(1) rotate(0deg);
}

html[data-theme="light"] .theme-toggle-icon-moon {
	opacity: 0;
	transform: scale(0.78) rotate(18deg);
}

[data-reveal],
.has-reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible,
.has-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.admin-bar .site-header {
	top: 32px;
}

@media screen and (max-width: 782px) {
	html.admin-bar {
		margin-top: calc(46px + env(safe-area-inset-top, 0px)) !important;
	}

	#wpadminbar {
		box-sizing: border-box;
		padding-top: env(safe-area-inset-top, 0px);
		height: calc(46px + env(safe-area-inset-top, 0px));
	}

	#wpadminbar::before {
		content: "";
		position: absolute;
		inset-inline: 0;
		inset-block-start: calc(env(safe-area-inset-top, 0px) * -1);
		height: env(safe-area-inset-top, 0px);
		background: #1d2327;
		pointer-events: none;
	}

	.admin-bar .site-header {
		top: calc(46px + env(safe-area-inset-top, 0px));
	}

	.admin-bar .primary-navigation {
		top: calc(var(--header-offset) + 46px + env(safe-area-inset-top, 0px));
		max-height: calc(100vh - var(--header-offset) - 46px - env(safe-area-inset-top, 0px) - 1rem);
	}
}

@media (max-width: 1100px) {

	.footer-grid,
	.hero-grid,
	.product-hero-grid,
	.about-band-grid,
	.feature-layout,
	.contact-layout,
	.cta-panel-inner,
	.solution-layout,
	.partner-panel-grid {
		grid-template-columns: 1fr;
	}

	.card-grid-3,
	.product-grid,
	.solution-cards,
	.footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.card-grid-4,
	.metric-grid,
	.stats-grid,
	.timeline-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.about-hero-grid,
	.about-capabilities-grid {
		grid-template-columns: 1fr;
	}

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

	.about-device-card.is-large {
		grid-row: auto;
		grid-column: 1 / -1;
		min-height: 280px;
	}

	.editor-content-shell .alignwide {
		width: 100%;
	}

	.solutions-hero-metrics,
	.solution-showcase-columns {
		grid-template-columns: 1fr;
	}

	.solution-showcase-alpha,
	.solution-showcase-gamma {
		grid-template-columns: 1fr;
		grid-template-areas:
			"media"
			"copy";
	}

	.solution-showcase-media {
		min-height: 320px;
	}

	.service-detail-card {
		grid-template-columns: 1fr;
	}

	.service-layout-gamma {
		grid-template-areas:
			"media"
			"copy";
	}

	.service-detail-media {
		min-height: 320px;
	}

	.service-layout-gamma .service-detail-media {
		padding: 1rem 1rem 0;
	}

	.service-layout-gamma .service-detail-media-frame {
		transform: none;
	}

	.service-layout-beta .service-detail-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.service-slug-mobile-applications .service-detail-media-frame {
		min-height: 260px;
	}
}

@media (max-width: 900px) {
	.primary-navigation {
		position: fixed;
		top: var(--header-offset);
		inset-inline: 2.15rem;
		z-index: 52;
		max-height: calc(100vh - var(--header-offset) - 1rem);
		overflow: auto;
		padding: 1rem;
		border-radius: 24px;
		background: rgba(7, 22, 30, 0.97);
		border: 1px solid rgba(255, 255, 255, 0.08);
		box-shadow: var(--shadow);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateY(-10px);
		transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
	}

	.header-main-inner {
		min-height: 74px;
	}

	body.menu-open .primary-navigation {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(0);
	}

	.menu,
	.menu-fallback {
		display: grid;
		gap: 0.6rem;
	}

	.menu-toggle {
		display: inline-flex;
	}

	.header-cta {
		display: none;
	}

	.header-language-switcher .trp-shortcode-switcher__wrapper,
	.header-language-switcher .trp-shortcode-anchor,
	.header-language-switcher .trp-shortcode-overlay {
		min-width: 108px;
	}

	.header-language-switcher .language-switcher-button {
		width: 40px;
		min-width: 40px;
		height: 40px;
		padding: 0;
		justify-content: center;
		gap: 0;
	}

	.header-language-switcher .language-switcher-menu {
		min-width: 162px;
	}

	.header-language-switcher .language-switcher-current-label,
	.header-language-switcher .language-switcher-chevron {
		display: none;
	}

	.header-language-switcher .language-switcher-current-code {
		display: inline-flex;
		position: absolute;
		inset-inline-end: -5px;
		inset-block-end: -4px;
		min-width: 22px;
		height: 22px;
		padding: 0 0.32rem;
		margin-inline-start: 0;
		font-size: 0.62rem;
	}
}

@media (max-width: 760px) {
	:root {
		--shell: min(100vw - 2rem, 100vw - 2rem);
		--shell-wide: min(100vw - 2rem, 100vw - 2rem);
		--header-offset: 80px;
	}

	.site-header::before {
		content: "";
		position: absolute;
		inset-inline: 0;
		inset-block-start: calc(env(safe-area-inset-top, 0px) * -1);
		height: env(safe-area-inset-top, 0px);
		background: rgba(7, 22, 30, 0.92);
		backdrop-filter: blur(16px);
		pointer-events: none;
	}

	.header-main-inner,
	.footer-bottom-inner {
		align-items: center;
	}

	.footer-bottom-inner {
		justify-content: center;
		text-align: center;
	}

	.header-main-inner {
		min-height: 70px;
		gap: 0.7rem;
	}

	.theme-toggle-float {
		width: 48px;
		height: 48px;
		inset-block-end: 0.85rem;
		inset-inline-start: 1rem;
		border-radius: 16px;
	}

	.theme-toggle-float svg {
		width: 19px;
		height: 19px;
	}

	.primary-navigation {
		top: var(--header-offset);
		inset-inline: 1rem;
	}

	.site-brand img {
		height: 32px;
	}

	.header-actions {
		margin-inline-start: auto;
		gap: 0.4rem;
	}

	.header-language-switcher .language-switcher-button {
		width: 38px;
		min-width: 38px;
		height: 38px;
		border-radius: 13px;
	}

	.header-language-switcher .language-switcher-button svg {
		width: 16px;
		height: 16px;
	}

	.header-language-switcher .language-switcher-current-code {
		display: inline-flex;
		position: absolute;
		inset-inline-end: -5px;
		inset-block-end: -4px;
		min-width: 20px;
		height: 20px;
		padding: 0 0.28rem;
		margin-inline-start: 0;
		font-size: 0.58rem;
	}

	.header-language-switcher .language-switcher-menu {
		min-width: 88px;
		padding: 0.3rem;
	}

	.header-language-switcher .language-switcher-item {
		justify-content: center;
		padding: 0.45rem;
		font-size: 0.76rem;
	}

	.header-language-switcher .language-switcher-item-meta {
		justify-content: center;
		width: 100%;
	}

	.header-language-switcher .language-switcher-badge {
		min-width: 42px;
		height: 30px;
		font-size: 0.7rem;
	}

	.header-language-switcher .language-switcher-name,
	.header-language-switcher .language-switcher-state {
		display: none;
	}

	.header-language-switcher .trp-shortcode-switcher__wrapper,
	.header-language-switcher .trp-shortcode-anchor,
	.header-language-switcher .trp-shortcode-overlay {
		min-width: 96px;
	}

	.header-language-switcher .trp-shortcode-anchor,
	.header-language-switcher .trp-shortcode-overlay {
		min-height: 38px;
		border-radius: 13px;
	}

	.header-language-switcher .trp-shortcode-anchor .trp-current-language-item__wrapper {
		min-height: 38px;
	}

	.header-language-switcher .trp-shortcode-overlay .trp-current-language-item__wrapper {
		min-height: 32px;
	}

	.header-language-switcher .trp-shortcode-anchor .trp-language-item__current,
	.header-language-switcher .trp-shortcode-overlay .trp-language-item__current,
	.header-language-switcher .trp-shortcode-overlay .trp-language-item,
	.header-language-switcher .language-switcher>a {
		min-height: auto;
		font-size: 0.76rem;
	}

	.header-language-switcher .trp-current-language-item__wrapper {
		padding: 0.28rem 0.38rem;
	}

	.header-language-switcher .trp-flag-image {
		width: 15px;
		height: 11px;
	}

	.header-language-switcher .trp-shortcode-arrow {
		width: 11px;
		height: 11px;
	}

	.about-hero-lead {
		font-size: 1rem;
	}

	.about-hero-metrics,
	.about-system-grid {
		grid-template-columns: 1fr;
	}

	.about-device-showcase {
		grid-template-columns: 1fr;
	}

	.about-device-card,
	.about-device-card.is-large {
		min-height: auto;
	}

	.about-device-card img {
		height: 180px;
	}

	.about-device-card.is-large img {
		height: 220px;
	}

	.about-trust-panel {
		grid-template-columns: 58px 1fr;
		padding: 0.95rem 1rem;
	}

	.about-trust-panel img {
		width: 52px;
	}

	.about-pillar-card,
	.about-step-card,
	.about-sector-card,
	.about-system-card,
	.about-contact-card {
		padding: 1.2rem;
	}

	.editor-content-shell .wp-block-group.has-background,
	.editor-content-shell .wp-block-cover,
	.editor-content-shell .wp-block-media-text.has-background,
	.editor-content-shell .wp-block-quote,
	.editor-content-shell .wp-block-pullquote {
		padding: 1.2rem;
		border-radius: 24px;
	}

	.solution-showcase-media {
		min-height: 240px;
	}

	.solution-showcase-beta {
		padding: 0.75rem;
	}

	.solution-showcase-beta .solution-showcase-media {
		min-height: 240px;
		border-radius: 24px;
	}

	.solution-showcase-copy {
		padding: 1.2rem;
	}

	.solution-showcase-copy h2 {
		max-width: none;
	}

	.solution-showcase-head {
		flex-wrap: wrap;
	}

	.solution-showcase-columns {
		grid-template-columns: 1fr;
	}

	.service-detail-media {
		min-height: 240px;
	}

	.service-detail-media-frame,
	.service-layout-beta .service-detail-media-frame {
		min-height: 240px;
		border-radius: 24px;
	}

	.service-slug-mobile-applications .service-detail-media-frame {
		min-height: 210px;
	}

	.service-detail-media.is-contain {
		padding: 1.2rem;
	}

	.service-detail-media.is-contain img {
		max-height: 220px;
	}

	.service-detail-copy {
		padding: 1.2rem;
	}

	.service-detail-copy h2 {
		max-width: none;
	}

	.service-detail-head {
		flex-wrap: wrap;
	}

	.service-layout-beta {
		padding: 0.75rem;
	}

	.service-layout-beta .service-detail-list {
		grid-template-columns: 1fr;
	}

	.cta-link-grid {
		grid-template-columns: 1fr;
	}

	.cta-link-card,
	.cta-link-card.is-primary {
		grid-column: auto;
		min-height: 0;
	}

	.cta-link-card {
		padding: 1.15rem 1.1rem;
	}

	.cta-link-card::after {
		width: 30px;
		height: 30px;
		inset-block-end: 1rem;
		inset-inline-end: 1rem;
	}

	.cta-link-card-text {
		max-width: none;
		font-size: 0.9rem;
	}

	.hero-card-main,
	.hero-slider-card {
		grid-template-columns: 1fr;
		grid-template-areas:
			"media"
			"copy";
		min-height: var(--hero-slider-height);
	}

	.hero-slider {
		--hero-slider-height: 410px;
	}

	.hero-slider-window {
		height: var(--hero-slider-height);
	}

	.hero-slider-head {
		flex-wrap: wrap;
	}

	.hero-slider-copy h3,
	.hero-slider-copy p {
		max-width: none;
	}

	.hero-slider-media img {
		width: min(100%, 232px);
		height: 184px;
		max-height: 184px;
		transform: none;
	}

	.hero-slider-controls {
		padding: 0.34rem 0.45rem;
		gap: 0.38rem;
	}

	.hero-slider-dot {
		width: 10px;
		height: 10px;
	}

	.hero-slider-dot.is-active {
		width: 30px;
	}

	.hero-mini-grid,
	.card-grid-3,
	.card-grid-4,
	.product-grid,
	.solution-cards,
	.metric-grid,
	.stats-grid,
	.timeline-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.badge-link img {
		height: 48px;
	}

	.footer-logo {
		height: 38px;
	}

	.page-hero {
		padding: 2.35rem 0 1.9rem !important;
	}

	.site-main section {
		padding: 3.5rem 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation: none !important;
		transition: none !important;
	}

	[data-reveal],
	.has-reveal {
		opacity: 1;
		transform: none;
	}
}
