:root {
	--navy-950: #061829;
	--navy-900: #09253e;
	--navy-800: #103552;
	--blue-600: #1e5f8a;
	--orange-500: #ed7a34;
	--orange-400: #f59a52;
	--red-600: #c92f3f;
	--ink: #13283a;
	--muted: #5d6d7b;
	--line: #d9e1e7;
	--paper: #f4f6f7;
	--white: #ffffff;
	--shadow-sm: 0 12px 32px rgba(6, 24, 41, 0.09);
	--shadow-lg: 0 30px 80px rgba(6, 24, 41, 0.2);
	--radius-sm: 8px;
	--radius-md: 16px;
	--radius-lg: 28px;
	--shell: min(1200px, calc(100% - 48px));
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: 110px;
}

body {
	margin: 0;
	background: var(--white);
	color: var(--ink);
	font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

body.nav-is-open {
	overflow: hidden;
}

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

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

button,
input,
textarea {
	font: inherit;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

::selection {
	background: var(--orange-500);
	color: var(--white);
}

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

.skip-link {
	background: var(--white);
	border: 2px solid var(--orange-500);
	color: var(--navy-950);
	font-weight: 800;
	left: 20px;
	padding: 10px 16px;
	position: fixed;
	top: -100px;
	z-index: 99999;
}

.skip-link:focus {
	top: 20px;
}

.utility-bar {
	background: var(--navy-950);
	color: rgba(255, 255, 255, 0.76);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.utility-bar__inner {
	align-items: center;
	display: flex;
	height: 34px;
	justify-content: space-between;
}

.utility-bar p {
	margin: 0;
}

.utility-bar p span {
	color: var(--orange-500);
	margin-inline: 8px;
}

.utility-bar__links {
	display: flex;
	gap: 22px;
}

.utility-bar a {
	transition: color 180ms ease;
}

.utility-bar a:hover,
.utility-bar a:focus-visible {
	color: var(--white);
}

.site-header {
	background: rgba(255, 255, 255, 0.97);
	border-bottom: 1px solid rgba(19, 40, 58, 0.08);
	position: sticky;
	top: 0;
	transition: box-shadow 180ms ease, background 180ms ease;
	z-index: 1000;
}

.site-header.is-scrolled {
	box-shadow: 0 12px 36px rgba(6, 24, 41, 0.09);
}

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

.site-header__inner {
	align-items: center;
	display: flex;
	height: 82px;
	justify-content: space-between;
}

.brand,
.footer-brand {
	align-items: center;
	display: inline-flex;
	gap: 14px;
}

.brand img {
	height: 46px;
	object-fit: contain;
	width: auto;
}

.brand__market {
	border-left: 1px solid var(--line);
	color: var(--navy-800);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.16em;
	line-height: 1.25;
	max-width: 92px;
	padding-left: 14px;
	text-transform: uppercase;
}

.site-nav {
	align-items: center;
	display: flex;
	gap: 24px;
}

.site-nav > a:not(.button) {
	color: #33495b;
	font-size: 13px;
	font-weight: 800;
	position: relative;
}

.site-nav > a:not(.button)::after {
	background: var(--orange-500);
	bottom: -8px;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 180ms ease;
	width: 100%;
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after {
	transform: scaleX(1);
}

.nav-toggle {
	align-items: center;
	background: transparent;
	border: 0;
	color: var(--navy-950);
	cursor: pointer;
	display: none;
	font-size: 12px;
	font-weight: 900;
	gap: 10px;
	letter-spacing: 0.12em;
	padding: 12px 0;
	text-transform: uppercase;
}

.nav-toggle i,
.nav-toggle i::before,
.nav-toggle i::after {
	background: currentColor;
	display: block;
	height: 2px;
	position: relative;
	transition: transform 180ms ease, opacity 180ms ease;
	width: 24px;
}

.nav-toggle i::before,
.nav-toggle i::after {
	content: "";
	left: 0;
	position: absolute;
}

.nav-toggle i::before {
	top: -7px;
}

.nav-toggle i::after {
	top: 7px;
}

.nav-toggle[aria-expanded="true"] i {
	background: transparent;
}

.nav-toggle[aria-expanded="true"] i::before {
	top: 0;
	transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] i::after {
	top: 0;
	transform: rotate(-45deg);
}

.button {
	align-items: center;
	background: var(--orange-500);
	border: 1px solid var(--orange-500);
	border-radius: 3px;
	color: var(--white);
	cursor: pointer;
	display: inline-flex;
	font-size: 12px;
	font-weight: 900;
	gap: 14px;
	justify-content: center;
	letter-spacing: 0.07em;
	min-height: 54px;
	padding: 0 24px;
	text-transform: uppercase;
	transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
	background: var(--red-600);
	border-color: var(--red-600);
	box-shadow: 0 12px 28px rgba(201, 47, 63, 0.24);
	transform: translateY(-2px);
}

.button--compact {
	min-height: 42px;
	padding-inline: 18px;
}

.hero {
	background:
		linear-gradient(90deg, rgba(6, 24, 41, 0.98) 0%, rgba(9, 37, 62, 0.94) 48%, rgba(9, 37, 62, 0.18) 100%),
		linear-gradient(180deg, var(--navy-900), var(--navy-950));
	color: var(--white);
	min-height: 690px;
	overflow: hidden;
	position: relative;
}

.hero::before {
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
	background-size: 48px 48px;
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
}

.hero::after {
	background: var(--orange-500);
	bottom: 0;
	content: "";
	height: 6px;
	left: 0;
	position: absolute;
	width: 29%;
}

.hero__flag {
	background: linear-gradient(180deg, var(--orange-500) 0 58%, var(--red-600) 58% 100%);
	clip-path: polygon(0 0, 100% 0, 62% 100%, 0 100%);
	height: 46px;
	left: 0;
	position: absolute;
	top: 0;
	width: 124px;
	z-index: 2;
}

.hero__shell {
	display: grid;
	grid-template-columns: minmax(0, 1.06fr) minmax(400px, 0.94fr);
	min-height: 690px;
	position: relative;
}

.hero__visual {
	align-self: end;
	aspect-ratio: 16 / 10;
	background: var(--navy-900);
	grid-column: 1 / -1;
	grid-row: 1;
	margin-left: 14%;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.hero__visual::after {
	background: linear-gradient(90deg, var(--navy-900) 0%, rgba(9, 37, 62, 0) 28%);
	content: "";
	inset: 0;
	position: absolute;
}

.hero__visual img {
	filter: saturate(0.94) contrast(1.06);
	height: 100%;
	object-fit: cover;
	object-position: center;
	transform: scale(1.12);
	transform-origin: center;
	width: 100%;
}

.hero__visual-label {
	align-items: center;
	background: rgba(255, 255, 255, 0.96);
	bottom: 26px;
	box-shadow: var(--shadow-lg);
	color: var(--navy-950);
	display: flex;
	gap: 14px;
	left: 32%;
	padding: 13px 20px 13px 14px;
	position: absolute;
	z-index: 2;
}

.hero__visual-label span {
	background: var(--red-600);
	color: var(--white);
	font-size: 9px;
	font-weight: 900;
	letter-spacing: 0.13em;
	padding: 8px 9px;
	text-transform: uppercase;
}

.hero__visual-label strong {
	font-size: 12px;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.hero__panel {
	align-self: center;
	grid-column: 1;
	grid-row: 1;
	max-width: 650px;
	padding: 70px 0 78px;
	position: relative;
	z-index: 3;
}

.eyebrow {
	align-items: center;
	color: var(--orange-500);
	display: flex;
	font-size: 11px;
	font-weight: 900;
	gap: 12px;
	letter-spacing: 0.16em;
	margin: 0 0 18px;
	text-transform: uppercase;
}

.eyebrow::before {
	background: currentColor;
	content: "";
	height: 2px;
	width: 34px;
}

.hero h1,
.section h2,
.standard-page h1 {
	font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
	font-stretch: condensed;
	font-weight: 900;
	letter-spacing: -0.045em;
	line-height: 0.98;
	margin: 0;
	text-transform: uppercase;
}

.hero h1 {
	font-size: clamp(50px, 6vw, 84px);
	max-width: 760px;
	text-shadow: 0 8px 34px rgba(6, 24, 41, 0.25);
}

.hero h1 em {
	color: var(--orange-500);
	font-style: normal;
}

.hero__lead {
	color: rgba(255, 255, 255, 0.82);
	font-size: 18px;
	line-height: 1.65;
	margin: 28px 0 32px;
	max-width: 580px;
}

.hero__actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
}

.text-link {
	border-bottom: 1px solid rgba(255, 255, 255, 0.35);
	color: var(--white);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.08em;
	padding-bottom: 5px;
	text-transform: uppercase;
	transition: border-color 180ms ease, color 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
	border-color: var(--orange-500);
	color: var(--orange-400);
}

.brand-rail {
	background: var(--white);
	border-bottom: 1px solid var(--line);
	box-shadow: var(--shadow-sm);
	position: relative;
	z-index: 4;
}

.brand-rail__grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
}

.brand-rail span {
	align-items: center;
	border-right: 1px solid var(--line);
	color: #496071;
	display: flex;
	flex-direction: column;
	font-size: 11px;
	font-weight: 900;
	gap: 3px;
	justify-content: center;
	letter-spacing: 0.08em;
	min-height: 88px;
	padding: 12px 8px;
	text-align: center;
	text-transform: uppercase;
}

.brand-rail strong {
	color: var(--navy-900);
	font-size: 11px;
}

.brand-rail small {
	color: #71808c;
	font-size: 8px;
	font-weight: 800;
	letter-spacing: 0.06em;
	line-height: 1.3;
}

.brand-rail span:first-child {
	border-left: 1px solid var(--line);
}

.section {
	padding: 120px 0;
	position: relative;
}

.section--story {
	background:
		radial-gradient(circle at 90% 5%, rgba(30, 95, 138, 0.08), transparent 27%),
		var(--white);
}

.story-grid {
	display: grid;
	gap: 9%;
	grid-template-columns: minmax(0, 0.94fr) minmax(0, 0.78fr);
}

.section-heading h2,
.section-intro h2,
.contact-copy h2 {
	color: var(--navy-950);
	font-size: clamp(40px, 5vw, 66px);
	max-width: 780px;
}

.story-copy {
	color: var(--muted);
	padding-top: 36px;
}

.story-copy p {
	margin: 0 0 18px;
}

.story-copy__lead {
	color: var(--ink);
	font-size: 22px;
	font-weight: 700;
	line-height: 1.5;
}

.certification-line {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-top: 30px;
}

.certification-line span {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 100px;
	color: var(--navy-800);
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 0.1em;
	padding: 8px 13px;
	text-transform: uppercase;
}

.metric-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin-top: 82px;
}

.metric-grid article {
	border-left: 1px solid var(--line);
	padding: 8px 7% 6px;
}

.metric-grid article:last-child {
	border-right: 1px solid var(--line);
}

.metric-grid strong {
	color: var(--navy-900);
	display: block;
	font-size: clamp(38px, 4vw, 58px);
	font-weight: 900;
	letter-spacing: -0.06em;
	line-height: 1;
}

.metric-grid span {
	color: var(--muted);
	display: block;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.06em;
	margin-top: 10px;
	text-transform: uppercase;
}

.partner-strip {
	align-items: center;
	background: var(--navy-950);
	box-shadow: var(--shadow-sm);
	color: var(--white);
	display: grid;
	gap: 28px;
	grid-template-columns: auto 1fr;
	margin-top: 74px;
	padding: 22px 28px;
}

.partner-strip p {
	color: var(--orange-400);
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 0.15em;
	margin: 0;
	text-transform: uppercase;
}

.partner-strip ul {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	list-style: none;
	margin: 0;
	padding: 0;
}

.partner-strip li {
	border-left: 1px solid rgba(255, 255, 255, 0.18);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.06em;
	padding: 3px 18px;
	text-transform: uppercase;
}

.section--brands {
	background: var(--paper);
	border-bottom: 1px solid var(--line);
	border-top: 1px solid var(--line);
}

.section-intro {
	align-items: end;
	display: grid;
	gap: 10%;
	grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.65fr);
	margin-bottom: 58px;
}

.section-intro > p {
	color: var(--muted);
	margin: 0;
}

.brand-card-grid {
	display: grid;
	gap: 1px;
	grid-template-columns: repeat(3, 1fr);
}

.brand-card {
	background: var(--white);
	border: 1px solid transparent;
	min-height: 255px;
	padding: 36px;
	position: relative;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.brand-card::after {
	background: var(--orange-500);
	bottom: 0;
	content: "";
	height: 4px;
	left: 36px;
	position: absolute;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 180ms ease;
	width: 62px;
}

.brand-card:hover {
	border-color: rgba(237, 122, 52, 0.28);
	box-shadow: var(--shadow-sm);
	transform: translateY(-4px);
	z-index: 2;
}

.brand-card:hover::after {
	transform: scaleX(1);
}

.brand-card__number,
.capability-grid article > span {
	color: var(--orange-500);
	display: block;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.12em;
	margin-bottom: 48px;
}

.brand-card strong {
	color: var(--navy-950);
	display: block;
	font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
	font-size: 26px;
	font-weight: 900;
	letter-spacing: -0.03em;
	line-height: 1.1;
	text-transform: uppercase;
}

.brand-card p {
	color: var(--muted);
	font-size: 14px;
	margin: 13px 0 0;
}

.trademark-note {
	color: #7b8791;
	font-size: 11px;
	margin: 22px 0 0;
}

.section--systems {
	background:
		linear-gradient(135deg, rgba(30, 95, 138, 0.055) 25%, transparent 25%) 0 0 / 42px 42px,
		var(--white);
}

.systems-grid {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(4, 1fr);
}

.systems-grid article {
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid var(--line);
	min-height: 230px;
	padding: 30px;
	position: relative;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.systems-grid article::after {
	background: linear-gradient(90deg, var(--orange-500), var(--red-600));
	bottom: 0;
	content: "";
	height: 4px;
	left: 0;
	position: absolute;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 180ms ease;
	width: 100%;
}

.systems-grid article:hover {
	border-color: rgba(237, 122, 52, 0.42);
	box-shadow: var(--shadow-sm);
	transform: translateY(-4px);
}

.systems-grid article:hover::after {
	transform: scaleX(1);
}

.systems-grid article > span {
	align-items: center;
	background: var(--navy-900);
	color: var(--white);
	display: inline-flex;
	font-size: 10px;
	font-weight: 900;
	height: 39px;
	justify-content: center;
	letter-spacing: 0.1em;
	margin-bottom: 32px;
	width: 39px;
}

.systems-grid h3 {
	color: var(--navy-950);
	font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
	font-size: 20px;
	letter-spacing: -0.02em;
	margin: 0 0 10px;
	text-transform: uppercase;
}

.systems-grid p {
	color: var(--muted);
	font-size: 13px;
	margin: 0;
}

.section--capabilities {
	background:
		linear-gradient(115deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
		var(--navy-900);
	background-size: 50px 50px, auto;
	color: var(--white);
	overflow: hidden;
}

.section--capabilities::before {
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 50%;
	content: "";
	height: 580px;
	position: absolute;
	right: -250px;
	top: -260px;
	width: 580px;
}

.section-heading--light h2 {
	color: var(--white);
	max-width: 850px;
}

.capability-grid {
	display: grid;
	gap: 0;
	grid-template-columns: repeat(4, 1fr);
	margin-top: 76px;
}

.capability-grid article {
	border-left: 1px solid rgba(255, 255, 255, 0.16);
	min-height: 285px;
	padding: 4px 30px 0;
}

.capability-grid article:last-child {
	border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.capability-grid article > span {
	margin-bottom: 54px;
}

.capability-grid h3 {
	font-size: 19px;
	line-height: 1.25;
	margin: 0 0 14px;
	text-transform: uppercase;
}

.capability-grid p {
	color: rgba(255, 255, 255, 0.68);
	font-size: 14px;
	margin: 0;
}

.service-band {
	background: var(--orange-500);
	color: var(--white);
}

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

.service-band p {
	border-left: 1px solid rgba(255, 255, 255, 0.3);
	margin: 0;
	padding: 29px 30px;
}

.service-band p:last-child {
	border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.service-band strong,
.service-band span {
	display: block;
}

.service-band strong {
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.service-band span {
	font-size: 11px;
	opacity: 0.8;
}

.section--faq {
	background: var(--paper);
	border-bottom: 1px solid var(--line);
}

.faq-layout {
	display: grid;
	gap: 9%;
	grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
}

.faq-intro {
	color: var(--muted);
	margin: 28px 0 0;
	max-width: 520px;
}

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

.faq-list details {
	background: var(--white);
	border-bottom: 1px solid var(--line);
	padding: 0 28px;
}

.faq-list details[open] {
	box-shadow: inset 4px 0 0 var(--orange-500);
}

.faq-list summary {
	color: var(--navy-950);
	cursor: pointer;
	font-size: 15px;
	font-weight: 900;
	list-style: none;
	padding: 24px 34px 24px 0;
	position: relative;
	text-transform: uppercase;
}

.faq-list summary::-webkit-details-marker {
	display: none;
}

.faq-list summary::after {
	color: var(--orange-500);
	content: "+";
	font-size: 23px;
	font-weight: 400;
	position: absolute;
	right: 0;
	top: 17px;
}

.faq-list details[open] summary::after {
	content: "\2212";
}

.faq-list details p {
	color: var(--muted);
	font-size: 14px;
	margin: -4px 0 0;
	padding: 0 34px 25px 0;
}

.section--contact {
	background:
		radial-gradient(circle at 8% 10%, rgba(237, 122, 52, 0.08), transparent 27%),
		var(--white);
}

.contact-grid {
	display: grid;
	gap: 10%;
	grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.78fr);
}

.contact-copy > p:not(.eyebrow) {
	color: var(--muted);
	font-size: 18px;
	max-width: 590px;
}

.sales-contact {
	border-left: 4px solid var(--orange-500);
	margin: 52px 0 38px;
	padding: 4px 0 4px 24px;
}

.sales-contact__label {
	color: var(--orange-500) !important;
	font-size: 10px !important;
	font-weight: 900;
	letter-spacing: 0.15em;
	margin: 0 0 5px;
	text-transform: uppercase;
}

.sales-contact h3 {
	color: var(--navy-950);
	font-size: 26px;
	line-height: 1.2;
	margin: 0;
}

.sales-contact p {
	color: var(--muted);
	font-size: 13px;
	margin: 2px 0 15px;
}

.sales-contact a {
	color: var(--navy-800);
	display: block;
	font-size: 15px;
	font-weight: 800;
	margin-top: 4px;
}

.sales-contact a:hover,
.sales-contact a:focus-visible,
.contact-copy address a:hover,
.contact-copy address a:focus-visible {
	color: var(--orange-500);
}

.sales-contact .whatsapp-link {
	color: #167f4b;
	display: inline-flex;
	font-size: 11px;
	letter-spacing: 0.08em;
	margin-top: 16px;
	text-transform: uppercase;
}

.contact-copy address {
	color: var(--muted);
	font-size: 13px;
	font-style: normal;
}

.contact-copy address strong {
	color: var(--ink);
}

.inquiry-card {
	background: var(--navy-950);
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-lg);
	color: var(--white);
	padding: 48px;
	position: relative;
}

.inquiry-card::before {
	background: linear-gradient(90deg, var(--orange-500), var(--red-600));
	content: "";
	height: 6px;
	left: 0;
	position: absolute;
	top: 0;
	width: 42%;
}

.inquiry-card h3 {
	font-size: 25px;
	line-height: 1.25;
	margin: 0;
	text-transform: uppercase;
}

.inquiry-card > p {
	color: rgba(255, 255, 255, 0.65);
	font-size: 13px;
	margin: 6px 0 30px;
}

.form-notice {
	border: 1px solid;
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 24px;
	padding: 11px 13px;
}

.form-notice--success {
	background: rgba(31, 161, 92, 0.13);
	border-color: #3cb775;
	color: #a9f2ca;
}

.form-notice--error {
	background: rgba(201, 47, 63, 0.13);
	border-color: #df6975;
	color: #ffc4ca;
}

.inquiry-form {
	display: grid;
	gap: 17px;
}

.inquiry-form__trap {
	height: 1px;
	left: -9999px;
	overflow: hidden;
	position: absolute;
	width: 1px;
}

.form-row {
	display: grid;
	gap: 15px;
	grid-template-columns: 1fr 1fr;
}

.inquiry-form label {
	color: rgba(255, 255, 255, 0.72);
	display: grid;
	font-size: 10px;
	font-weight: 900;
	gap: 7px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.inquiry-form label > span {
	color: var(--orange-400);
}

.inquiry-form input,
.inquiry-form textarea {
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 2px;
	color: var(--white);
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0;
	outline: 0;
	padding: 12px 13px;
	text-transform: none;
	transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
	width: 100%;
}

.inquiry-form input {
	height: 48px;
}

.inquiry-form textarea {
	min-height: 130px;
	resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
	background: rgba(255, 255, 255, 0.1);
	border-color: var(--orange-500);
	box-shadow: 0 0 0 3px rgba(237, 122, 52, 0.16);
}

.inquiry-form textarea::placeholder {
	color: rgba(255, 255, 255, 0.36);
}

.button--full {
	margin-top: 4px;
	width: 100%;
}

.form-privacy {
	color: rgba(255, 255, 255, 0.44) !important;
	font-size: 10px !important;
	margin: -4px 0 0 !important;
	text-align: center;
}

.site-footer {
	background: #04131f;
	color: rgba(255, 255, 255, 0.62);
	padding: 78px 0 26px;
}

.site-footer__grid {
	display: grid;
	gap: 7%;
	grid-template-columns: 1.6fr 0.55fr 0.55fr;
}

.footer-brand {
	color: var(--white);
}

.footer-brand img {
	filter: brightness(0) invert(1);
	height: 43px;
	object-fit: contain;
	width: auto;
}

.footer-brand span {
	border-left: 1px solid rgba(255, 255, 255, 0.2);
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 0.14em;
	padding-left: 14px;
	text-transform: uppercase;
}

.site-footer__grid > div:first-child p {
	font-size: 13px;
	max-width: 480px;
}

.site-footer h2 {
	color: var(--white);
	font-size: 11px;
	letter-spacing: 0.12em;
	margin: 0 0 17px;
	text-transform: uppercase;
}

.site-footer__grid > div:not(:first-child) a {
	display: block;
	font-size: 13px;
	margin-bottom: 8px;
	transition: color 180ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
	color: var(--orange-400);
}

.site-footer__bottom {
	align-items: center;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	font-size: 10px;
	justify-content: space-between;
	letter-spacing: 0.06em;
	margin-top: 55px;
	padding-top: 24px;
	text-transform: uppercase;
}

.site-footer__bottom p {
	margin: 0;
}

.standard-page {
	background: var(--paper);
	min-height: 65vh;
	padding: 92px 0 120px;
}

.standard-page__inner {
	background: var(--white);
	box-shadow: var(--shadow-sm);
	margin-inline: auto;
	max-width: 920px;
	padding: 68px;
	width: var(--shell);
}

.standard-page__inner--center {
	text-align: center;
}

.standard-page h1 {
	color: var(--navy-950);
	font-size: clamp(42px, 6vw, 72px);
	margin-bottom: 38px;
}

.entry-content {
	color: var(--muted);
}

.entry-content a {
	color: var(--orange-500);
	text-decoration: underline;
}

[data-reveal] {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 650ms ease, transform 650ms ease;
}

[data-reveal].is-visible {
	opacity: 1;
	transform: none;
}

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

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}

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

@media (max-width: 1100px) {
	.site-nav {
		gap: 14px;
	}

	.hero__shell {
		grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
	}

	.hero__visual {
		margin-left: 16%;
	}

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

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

	.capability-grid article:nth-child(3) {
		border-top: 1px solid rgba(255, 255, 255, 0.16);
		padding-top: 34px;
	}

	.capability-grid article:nth-child(4) {
		border-right: 1px solid rgba(255, 255, 255, 0.16);
		border-top: 1px solid rgba(255, 255, 255, 0.16);
		padding-top: 34px;
	}
}

@media (max-width: 920px) {
	:root {
		--shell: min(100% - 36px, 760px);
	}

	.utility-bar__links a:first-child {
		display: none;
	}

	.nav-toggle {
		display: flex;
	}

	.site-nav {
		align-items: stretch;
		background: var(--white);
		border-top: 1px solid var(--line);
		box-shadow: var(--shadow-lg);
		display: none;
		flex-direction: column;
		gap: 0;
		left: 0;
		padding: 18px;
		position: absolute;
		top: 82px;
		width: 100%;
	}

	.site-nav.is-open {
		display: flex;
	}

	.site-nav > a:not(.button) {
		border-bottom: 1px solid var(--line);
		font-size: 14px;
		padding: 16px 5px;
	}

	.site-nav > a:not(.button)::after {
		display: none;
	}

	.site-nav .button {
		margin-top: 14px;
	}

	.hero,
	.hero__shell {
		min-height: 760px;
	}

	.hero__shell {
		display: block;
		padding-top: 82px;
	}

	.hero__panel {
		max-width: 680px;
		padding: 0;
	}

	.hero__visual {
		bottom: 0;
		margin: 0;
		position: absolute;
		right: 0;
		width: 100%;
	}

	.hero__visual img {
		height: 100%;
		transform: scale(1.04);
	}

	.hero__visual::after {
		background: linear-gradient(180deg, var(--navy-900) 0%, rgba(9, 37, 62, 0.82) 35%, rgba(9, 37, 62, 0.24) 72%, rgba(9, 37, 62, 0.02) 100%);
	}

	.hero__visual-label {
		display: none;
	}

	.hero__lead {
		max-width: 600px;
	}

	.brand-rail__grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.brand-rail span:nth-child(-n + 3) {
		border-bottom: 1px solid var(--line);
	}

	.story-grid,
	.section-intro,
	.contact-grid,
	.faq-layout {
		gap: 46px;
		grid-template-columns: 1fr;
	}

	.story-copy {
		padding-top: 0;
	}

	.metric-grid,
	.service-band__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.metric-grid article:nth-child(3),
	.metric-grid article:nth-child(4) {
		border-top: 1px solid var(--line);
		padding-top: 28px;
	}

	.brand-card-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.partner-strip {
		grid-template-columns: 1fr;
	}

	.partner-strip ul {
		border-top: 1px solid rgba(255, 255, 255, 0.14);
		padding-top: 17px;
	}

	.contact-copy {
		max-width: 680px;
	}
}

@media (max-width: 782px) {
	body.admin-bar .site-header {
		top: 46px;
	}
}

@media (max-width: 640px) {
	:root {
		--shell: calc(100% - 28px);
	}

	html {
		scroll-padding-top: 86px;
	}

	.utility-bar {
		display: none;
	}

	.site-header__inner {
		height: 72px;
	}

	.brand img {
		height: 38px;
	}

	.brand__market {
		font-size: 8px;
		max-width: 70px;
		padding-left: 10px;
	}

	.site-nav {
		top: 72px;
	}

	.hero,
	.hero__shell {
		min-height: 735px;
	}

	.hero__shell {
		padding-top: 68px;
	}

	.hero__flag {
		height: 34px;
		width: 78px;
	}

	.hero h1 {
		font-size: clamp(42px, 14.5vw, 62px);
	}

	.hero__lead {
		font-size: 15px;
		line-height: 1.55;
		margin-block: 22px 25px;
	}

	.hero__actions {
		align-items: stretch;
		flex-direction: column;
		gap: 18px;
	}

	.hero__actions .button {
		align-self: flex-start;
	}

	.hero__actions .text-link {
		align-self: flex-start;
	}

	.hero__visual {
		right: 0;
		width: 100%;
	}

	.hero__visual img {
		height: 100%;
		object-position: center;
		transform: scale(1.02);
	}

	.brand-rail__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.brand-rail span {
		border-bottom: 1px solid var(--line);
		font-size: 9px;
		min-height: 72px;
	}

	.brand-rail small {
		font-size: 7px;
	}

	.section {
		padding: 84px 0;
	}

	.section-heading h2,
	.section-intro h2,
	.contact-copy h2 {
		font-size: clamp(38px, 12vw, 52px);
	}

	.story-copy__lead {
		font-size: 19px;
	}

	.metric-grid {
		margin-top: 54px;
	}

	.partner-strip {
		margin-top: 46px;
		padding: 22px;
	}

	.partner-strip ul {
		grid-template-columns: repeat(2, 1fr);
	}

	.partner-strip li {
		font-size: 9px;
		padding: 8px 10px;
	}

	.partner-strip li:nth-child(odd) {
		border-left: 0;
	}

	.metric-grid article {
		padding: 22px 16px;
	}

	.metric-grid article:nth-child(2) {
		border-right: 1px solid var(--line);
	}

	.metric-grid strong {
		font-size: 39px;
	}

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

	.brand-card {
		min-height: 210px;
		padding: 28px;
	}

	.brand-card__number {
		margin-bottom: 34px;
	}

	.systems-grid {
		grid-template-columns: 1fr;
	}

	.systems-grid article {
		min-height: 0;
		padding: 26px;
	}

	.systems-grid article > span {
		margin-bottom: 22px;
	}

	.capability-grid {
		grid-template-columns: 1fr;
		margin-top: 52px;
	}

	.capability-grid article,
	.capability-grid article:nth-child(3),
	.capability-grid article:nth-child(4) {
		border-left: 0;
		border-right: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.16);
		min-height: 0;
		padding: 28px 0;
	}

	.capability-grid article:first-child {
		border-top: 0;
	}

	.capability-grid article > span {
		margin-bottom: 22px;
	}

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

	.service-band p,
	.service-band p:last-child {
		border-left: 0;
		border-right: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.3);
		padding: 20px 0;
	}

	.service-band p:first-child {
		border-top: 0;
	}

	.faq-list details {
		padding-inline: 20px;
	}

	.faq-list summary {
		font-size: 13px;
	}

	.contact-grid {
		gap: 58px;
	}

	.inquiry-card {
		border-radius: 0;
		margin-inline: -14px;
		padding: 36px 22px;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.site-footer {
		padding-top: 60px;
	}

	.site-footer__grid {
		gap: 36px;
		grid-template-columns: 1fr 1fr;
	}

	.site-footer__grid > div:first-child {
		grid-column: 1 / -1;
	}

	.site-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 12px;
	}

	.standard-page {
		padding-block: 44px 80px;
	}

	.standard-page__inner {
		padding: 34px 22px;
	}
}
