:root {
	--fci-navy: #071b33;
	--fci-navy-2: #0d2a49;
	--fci-cyan: #08a8d8;
	--fci-cyan-soft: #e8f8fc;
	--fci-steel: #b8c5d3;
	--fci-red: #c8262d;
	--fci-text: #152033;
	--fci-muted: #627086;
	--fci-line: #dfe6ee;
	--fci-surface: #f4f7fa;
	--fci-white: #ffffff;
	--fci-shadow: 0 24px 60px rgba(7, 27, 51, 0.14);
	--fci-shadow-soft: 0 12px 32px rgba(7, 27, 51, 0.08);
	--fci-sidebar: 304px;
	--fci-header: 86px;
	--fci-radius: 8px;
	--fci-font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--fci-font-heading: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--fci-text);
	background:
		radial-gradient(circle at 85% 10%, rgba(8, 168, 216, .05), transparent 28rem),
		linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
	font-family: var(--fci-font-body);
	font-size: 16px;
	line-height: 1.65;
	text-rendering: optimizeLegibility;
}

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

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

p {
	margin: 0 0 1rem;
	color: var(--fci-muted);
}

h1,
h2,
h3 {
	margin: 0 0 1rem;
	color: var(--fci-navy);
	font-family: var(--fci-font-heading);
	line-height: 1.08;
	letter-spacing: 0;
}

h1 {
	font-size: clamp(2.45rem, 6vw, 5.35rem);
	max-width: 980px;
}

h2 {
	font-size: clamp(1.85rem, 3.2vw, 3rem);
}

h3 {
	font-size: 1.18rem;
}

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

.site-sidebar {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 50;
	width: 100%;
	min-height: var(--fci-header);
	background:
		linear-gradient(90deg, rgba(255,255,255,.07) 0%, rgba(255,255,255,0) 42%),
		var(--fci-navy);
	border-bottom: 1px solid rgba(255, 255, 255, .08);
	box-shadow: 0 18px 48px rgba(7, 27, 51, 0.18);
}

.site-sidebar__inner {
	display: flex;
	min-height: var(--fci-header);
	width: min(1320px, calc(100% - 2rem));
	margin-inline: auto;
	align-items: center;
	gap: 1rem;
	padding: .32rem 0;
}

.brand {
	display: flex;
	justify-content: center;
	width: 238px;
	min-height: 74px;
	padding: .2rem;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.brand img {
	width: 238px;
	height: auto;
	aspect-ratio: 760 / 337;
	max-height: 74px;
	object-fit: contain;
	filter: drop-shadow(0 14px 28px rgba(0, 0, 0, .26));
	transition: transform .3s ease, filter .3s ease;
}

.brand:hover img {
	filter: drop-shadow(0 18px 34px rgba(8, 168, 216, .28));
}

.sidebar-kicker {
	display: none;
	gap: .15rem;
	padding: 0 .25rem .55rem;
	border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.sidebar-kicker span {
	color: var(--fci-steel);
	font-size: .72rem;
	font-weight: 800;
	text-transform: uppercase;
}

.sidebar-kicker strong {
	color: #fff;
	font-size: 1rem;
	letter-spacing: 0;
}

.main-nav {
	display: flex;
	flex: 1;
	justify-content: center;
	flex-wrap: wrap;
	gap: .35rem;
}

.main-nav a {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 38px;
	padding: .56rem .68rem;
	border: 1px solid transparent;
	border-radius: calc(var(--fci-radius) + 4px);
	color: rgba(255, 255, 255, .86);
	font-weight: 700;
	transition: background .24s ease, color .24s ease, transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.main-nav a::before {
	width: 7px;
	height: 7px;
	margin-right: .75rem;
	border-radius: 999px;
	background: rgba(8, 168, 216, .55);
	content: "";
	transition: transform .2s ease, background .2s ease;
}

.main-nav a:hover,
.main-nav a:focus {
	border-color: rgba(8, 168, 216, .28);
	background: rgba(255, 255, 255, .08);
	color: #fff;
	box-shadow: inset 0 0 0 1px rgba(8, 168, 216, .12);
	transform: translateX(4px);
}

.main-nav a:hover::before,
.main-nav a:focus::before {
	background: var(--fci-cyan);
	transform: scale(1.35);
}

.sidebar-cta {
	margin-left: auto;
	padding: .58rem .78rem;
	border: 1px solid rgba(8, 168, 216, .24);
	border-radius: 999px;
	background: linear-gradient(145deg, #ff8a2a, #d94a1f);
	box-shadow: 0 14px 28px rgba(217, 74, 31, .22);
	transition: transform .24s ease, box-shadow .24s ease;
}

.sidebar-cta:hover {
	box-shadow: 0 18px 36px rgba(217, 74, 31, .32);
	transform: translateY(-2px);
}

.sidebar-cta span {
	display: none;
}

.sidebar-cta a {
	display: inline-flex;
	color: #fff;
	font-size: .78rem;
	font-weight: 800;
	line-height: 1.15;
	text-align: center;
	white-space: nowrap;
}

.site-shell {
	min-height: 100vh;
	margin-left: 0;
	padding-top: var(--fci-header);
}

.site-main {
	overflow: hidden;
}

.container {
	width: min(1180px, calc(100% - 2rem));
	margin-inline: auto;
}

.container.narrow {
	width: min(850px, calc(100% - 2rem));
}

.section {
	padding: clamp(4.5rem, 8vw, 7.5rem) 0;
}

.page-hero {
	background:
		linear-gradient(135deg, rgba(8, 168, 216, .1), transparent 38%),
		linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
	border-bottom: 1px solid var(--fci-line);
}

.eyebrow {
	margin-bottom: .8rem;
	color: var(--fci-cyan);
	font-family: var(--fci-font-heading);
	font-size: .78rem;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
	gap: .5rem;
}

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

.button,
.fci-form button,
.wpforms-submit {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: .85rem 1.2rem;
	border: 1px solid transparent;
	border-radius: 999px;
	font-weight: 800;
	font-family: var(--fci-font-heading);
	line-height: 1.2;
	overflow: hidden;
	cursor: pointer;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button::after,
.fci-form button::after,
.wpforms-submit::after {
	position: absolute;
	inset: 0 auto 0 -45%;
	width: 38%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .34), transparent);
	content: "";
	transform: skewX(-18deg);
	transition: left .62s ease;
	pointer-events: none;
}

.button:hover,
.fci-form button:hover,
.wpforms-submit:hover {
	transform: translateY(-2px);
}

.button:hover::after,
.fci-form button:hover::after,
.wpforms-submit:hover::after {
	left: 118%;
}

.button-primary,
.fci-form button,
.wpforms-submit {
	background: linear-gradient(135deg, #06b7e8, #087fae);
	color: var(--fci-white);
	box-shadow: 0 16px 34px rgba(8, 168, 216, .22);
	animation: fciButtonGlow 3.8s ease-in-out infinite;
}

.button-inline {
	margin-top: 1rem;
}

.button-secondary {
	border-color: rgba(255, 255, 255, .5);
	background: rgba(255, 255, 255, .1);
	color: var(--fci-white);
	backdrop-filter: blur(10px);
}

.hero {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, .92fr) minmax(460px, 1.08fr);
	min-height: 760px;
	align-items: stretch;
	background: #05162a;
	isolation: isolate;
}

.hero__media {
	position: relative;
	min-height: 100%;
	order: 2;
	overflow: hidden;
	display: flex;
	align-items: flex-start;
}

.hero__media::after {
	position: absolute;
	inset: 0;
	content: "";
	background:
		linear-gradient(90deg, rgba(5, 18, 34, .24), rgba(5, 18, 34, 0)),
		linear-gradient(0deg, rgba(5, 18, 34, .16), rgba(5, 18, 34, 0));
}

.hero__media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center top;
	animation: fciHeroDrift 14s ease-in-out infinite alternate;
}

.hero__content {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 760px;
	margin-left: auto;
	padding: clamp(5rem, 8vw, 8rem) clamp(2rem, 5vw, 4.8rem);
	align-self: center;
}

.hero h1,
.hero p {
	color: var(--fci-white);
}

.hero p:not(.eyebrow) {
	max-width: 700px;
	color: rgba(255, 255, 255, .84);
	font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.division-badge {
	display: inline-flex;
	align-items: center;
	width: min(620px, 100%);
	margin: 0 0 1rem;
	padding: .62rem .9rem;
	border: 1px solid rgba(255, 255, 255, .24);
	border-radius: 10px;
	background: rgba(255, 255, 255, .14);
	color: #fff;
	font-size: clamp(.82rem, 1.1vw, .92rem);
	font-weight: 800;
	line-height: 1.3;
	backdrop-filter: blur(10px);
	box-shadow: 0 0 0 rgba(8, 168, 216, 0);
	animation: fciBadgePulse 4.2s ease-in-out infinite;
}

.hero-motto {
	max-width: 720px;
	margin: 0 0 1rem;
	color: #fff;
	font-size: clamp(1.08rem, 2vw, 1.32rem);
	font-weight: 800;
	line-height: 1.35;
	text-wrap: balance;
	text-shadow: 0 0 22px rgba(8, 168, 216, .28);
}

.hero h1 {
	max-width: 760px;
	font-size: clamp(2.5rem, 4.6vw, 4.8rem);
	text-wrap: balance;
	overflow-wrap: anywhere;
}

.hero-value {
	max-width: 720px;
	margin-top: 1rem;
}

.hero-value__headline {
	margin: 0;
	color: #fff !important;
	font-size: clamp(1.12rem, 2vw, 1.34rem) !important;
	font-weight: 800;
	line-height: 1.4;
	text-wrap: balance;
}

.hero-value__lead {
	margin: .75rem 0 0;
	color: rgba(255, 255, 255, .86) !important;
	font-size: clamp(1rem, 1.75vw, 1.16rem) !important;
	line-height: 1.6;
}

.hero-value__list {
	display: grid;
	gap: .62rem;
	margin: 1rem 0 0;
	padding: 0;
	list-style: none;
}

.hero-value__list li {
	display: flex;
	align-items: flex-start;
	gap: .7rem;
	padding: .72rem .85rem;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 12px;
	background: rgba(255, 255, 255, .1);
	box-shadow: 0 18px 40px rgba(0, 25, 48, .16);
	backdrop-filter: blur(12px);
	color: #fff;
	font-weight: 800;
	line-height: 1.35;
	opacity: 0;
	transform: translateY(12px);
	animation: fciHeroBulletIn .6s ease forwards;
	transition: transform .24s ease, border-color .24s ease, background .24s ease;
}

.hero-value__list li:nth-child(2) {
	animation-delay: .12s;
}

.hero-value__list li:nth-child(3) {
	animation-delay: .24s;
}

.hero-value__list svg {
	flex: 0 0 1.15rem;
	width: 1.15rem;
	height: 1.15rem;
	margin-top: .08rem;
	color: var(--fci-cyan);
	filter: drop-shadow(0 0 10px rgba(8, 168, 216, .34));
}

.hero-value__list li:hover {
	border-color: rgba(8, 168, 216, .46);
	background: rgba(255, 255, 255, .15);
	transform: translateX(6px);
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: .8rem;
	margin-top: 1.6rem;
}

.hero__metrics {
	display: grid;
	grid-template-columns: repeat(4, minmax(120px, 1fr));
	gap: .75rem;
	max-width: 680px;
	margin-top: 2.1rem;
}

.hero__metrics div {
	display: flex;
	flex-direction: column;
	gap: .18rem;
	padding: 1rem;
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: calc(var(--fci-radius) + 4px);
	background: rgba(255, 255, 255, .08);
	backdrop-filter: blur(12px);
	transition: transform .24s ease, background .24s ease, border-color .24s ease;
}

.hero__metrics div:hover {
	border-color: rgba(8, 168, 216, .42);
	background: rgba(255, 255, 255, .12);
	transform: translateY(-4px);
}

.hero__metrics strong,
.hero__metrics span {
	display: block;
}

.hero__metrics strong {
	margin-bottom: .08rem;
	color: #fff;
	font-size: 1.25rem;
	line-height: 1.1;
}

.hero__metrics span {
	margin-top: 0;
	color: rgba(255,255,255,.72);
	font-size: .82rem;
	font-weight: 700;
}

.trust-strip {
	background:
		linear-gradient(135deg, rgba(8, 168, 216, .16), transparent 35%),
		var(--fci-navy);
	color: var(--fci-white);
}

.trust-strip h2 {
	color: var(--fci-white);
	font-size: clamp(1.55rem, 2.6vw, 2.35rem);
}

.trust-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	margin-top: 1.5rem;
}

.trust-grid div,
.service-card,
.contact-panel,
.form-panel,
.legal-card,
.capability-card {
	border: 1px solid var(--fci-line);
	border-radius: var(--fci-radius);
	background: var(--fci-white);
	box-shadow: 0 10px 26px rgba(7, 27, 51, .06);
}

.trust-grid div {
	display: flex;
	align-items: center;
	gap: .8rem;
	padding: 1.15rem;
	border-color: rgba(255, 255, 255, .15);
	background: rgba(255, 255, 255, .075);
	color: var(--fci-white);
	box-shadow: none;
	transition: transform .24s ease, background .24s ease, border-color .24s ease;
}

.trust-grid div:hover {
	border-color: rgba(8, 168, 216, .42);
	background: rgba(255, 255, 255, .13);
	transform: translateY(-5px);
}

.trust-grid div:hover .fci-icon {
	animation: fciIconPop .52s ease both;
}

.fci-icon {
	width: 26px;
	height: 26px;
	flex: 0 0 26px;
	color: var(--fci-cyan);
}

.section-heading {
	max-width: 780px;
	margin-bottom: 2rem;
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.15rem;
}

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

.service-card {
	position: relative;
	overflow: hidden;
	padding: 1.55rem;
	background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
	transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.service-card:nth-child(2) {
	transition-delay: .05s;
}

.service-card:nth-child(3) {
	transition-delay: .1s;
}

.service-card:nth-child(4) {
	transition-delay: .15s;
}

.service-card::after {
	position: absolute;
	inset: 0 0 auto;
	height: 3px;
	background: linear-gradient(90deg, var(--fci-cyan), transparent);
	content: "";
	opacity: .75;
}

.service-card:hover {
	border-color: rgba(8, 168, 216, .45);
	box-shadow: var(--fci-shadow);
	transform: translateY(-7px);
}

.service-card .fci-icon {
	width: 34px;
	height: 34px;
	margin-bottom: 1rem;
	padding: .38rem;
	border-radius: 8px;
	background: var(--fci-cyan-soft);
	box-sizing: content-box;
	transition: transform .28s ease, background .28s ease, color .28s ease;
}

.service-card:hover .fci-icon {
	background: var(--fci-cyan);
	color: #fff;
	transform: translateY(-2px) rotate(-4deg) scale(1.08);
}

.service-card h2,
.service-card h3 {
	font-size: 1.18rem;
}

.split-section,
.site-footer {
	background:
		linear-gradient(180deg, #f8fbfd 0%, var(--fci-surface) 100%);
}

.split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, .85fr);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}

.split__image {
	width: 100%;
	aspect-ratio: 4 / 3;
	border-radius: calc(var(--fci-radius) + 6px);
	object-fit: cover;
	box-shadow: var(--fci-shadow);
}

.check-list {
	display: grid;
	gap: .75rem;
	padding: 0;
	margin: 1.5rem 0 0;
	list-style: none;
}

.check-list li {
	display: flex;
	align-items: center;
	gap: .7rem;
	color: var(--fci-navy);
	font-weight: 700;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: .85rem;
}

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

.gallery-item {
	margin: 0;
	overflow: hidden;
	border-radius: calc(var(--fci-radius) + 6px);
	background: var(--fci-surface);
	box-shadow: var(--fci-shadow-soft);
	transition: transform .28s ease, box-shadow .28s ease;
}

.gallery-item a {
	display: block;
	cursor: zoom-in;
}

.gallery-item img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	transition: transform .35s ease;
}

.gallery-item:hover img {
	transform: scale(1.065);
}

.gallery-item:hover {
	box-shadow: var(--fci-shadow);
	transform: translateY(-5px);
}

.corporate-cta {
	background:
		linear-gradient(135deg, rgba(8, 168, 216, .18), transparent 42%),
		linear-gradient(180deg, #071b33, #041225);
}

.capability-section {
	background: #fff;
}

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

.capability-card {
	padding: clamp(1.5rem, 4vw, 2.4rem);
	border-radius: calc(var(--fci-radius) + 8px);
	background:
		linear-gradient(135deg, rgba(8, 168, 216, .08), rgba(255,255,255,0) 42%),
		#fff;
	transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.capability-card:hover {
	border-color: rgba(8, 168, 216, .38);
	box-shadow: var(--fci-shadow);
	transform: translateY(-5px);
}

.capability-card--dark {
	border-color: rgba(255, 255, 255, .12);
	background:
		linear-gradient(135deg, rgba(8, 168, 216, .2), rgba(255,255,255,.04)),
		var(--fci-navy);
}

.capability-card--dark h2,
.capability-card--dark p {
	color: #fff;
}

.capability-card p:last-child {
	margin-bottom: 0;
}

.process-section {
	background: #f8fbfd;
}

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

.process-card {
	position: relative;
	min-height: 230px;
	padding: 1.35rem;
	border: 1px solid var(--fci-line);
	border-radius: var(--fci-radius);
	background: #fff;
	box-shadow: var(--fci-shadow-soft);
	overflow: hidden;
	transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.process-card::after {
	position: absolute;
	inset: auto -20% 0;
	height: 4px;
	background: linear-gradient(90deg, transparent, var(--fci-cyan), transparent);
	content: "";
	transform: translateX(-65%);
	transition: transform .48s ease;
}

.process-card:hover {
	border-color: rgba(8, 168, 216, .42);
	box-shadow: var(--fci-shadow);
	transform: translateY(-6px);
}

.process-card:hover::after {
	transform: translateX(65%);
}

.process-card strong {
	display: block;
	margin-bottom: 1.4rem;
	color: var(--fci-cyan);
	font-size: 2.2rem;
	line-height: 1;
	font-weight: 900;
}

.process-card h2,
.process-card h3 {
	font-size: 1.08rem;
}

.process-card p {
	margin-bottom: 0;
}

.experience-hero {
	background:
		linear-gradient(135deg, rgba(8, 168, 216, .12), rgba(255, 255, 255, 0) 44%),
		#fff;
}

.experience-visual {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 360px;
	padding: clamp(2rem, 5vw, 4rem);
	border-radius: calc(var(--fci-radius) + 10px);
	background:
		radial-gradient(circle at 50% 42%, rgba(255, 255, 255, .16), transparent 34%),
		linear-gradient(145deg, #071b33, #0f3658);
	box-shadow: var(--fci-shadow);
	overflow: hidden;
}

.experience-visual__logo {
	position: relative;
	z-index: 1;
	width: min(58%, 280px);
	height: auto;
	padding: 1.4rem;
	border-radius: 24px;
	background: rgba(255, 255, 255, .94);
	filter: drop-shadow(0 22px 48px rgba(0, 0, 0, .28));
}

.lead-text {
	font-size: clamp(1.12rem, 2vw, 1.36rem);
	line-height: 1.75;
	color: var(--fci-navy);
}

.experience-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 2rem;
}

.legal-badges {
	display: flex;
	flex-wrap: wrap;
	gap: .6rem;
	margin: 0 0 2rem;
}

.legal-badges span {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: .4rem .75rem;
	border: 1px solid rgba(8, 168, 216, .28);
	border-radius: 999px;
	background: var(--fci-cyan-soft);
	color: var(--fci-navy);
	font-size: .82rem;
	font-weight: 800;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.safety-logo-strip {
	display: flex;
	flex-wrap: wrap;
	gap: .62rem;
	margin-top: 1.4rem;
}

.safety-logo-strip--hero {
	justify-content: center;
	margin-top: 1.8rem;
}

.safety-logo-strip--footer {
	max-width: 520px;
}

.safety-logo {
	position: relative;
	display: inline-flex;
	grid-template-columns: auto 1fr;
	align-items: center;
	justify-content: center;
	gap: .48rem;
	min-height: 54px;
	padding: .34rem .56rem;
	border: 1px solid rgba(8, 168, 216, .25);
	border-radius: 14px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(244, 250, 253, .92));
	box-shadow: 0 10px 24px rgba(7, 27, 51, .08);
	color: var(--fci-navy);
	overflow: hidden;
	transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.safety-logo::after {
	position: absolute;
	inset: 0 auto 0 -45%;
	width: 34%;
	background: linear-gradient(90deg, transparent, rgba(8, 168, 216, .16), transparent);
	content: "";
	transform: skewX(-18deg);
	transition: left .62s ease;
}

.safety-logo strong {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 30px;
	padding: 0 .34rem;
	border-radius: 999px;
	background: var(--fci-navy);
	color: #fff;
	font-size: .72rem;
	font-weight: 900;
	letter-spacing: .02em;
}

.safety-logo img {
	position: relative;
	z-index: 1;
	display: block;
	width: 112px;
	max-width: 100%;
	height: 46px;
	object-fit: contain;
}

.safety-logo small {
	font-size: .74rem;
	font-weight: 900;
	letter-spacing: .02em;
	line-height: 1.1;
	text-transform: uppercase;
}

.safety-logo:hover {
	border-color: rgba(8, 168, 216, .52);
	box-shadow: 0 16px 34px rgba(8, 168, 216, .16);
	transform: translateY(-4px);
}

.safety-logo:hover::after {
	left: 120%;
}

.whatsapp-float {
	position: fixed;
	right: 1.2rem;
	bottom: 1.2rem;
	z-index: 95;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	padding: 0;
	border-radius: 999px;
	background: #1f9d55;
	color: #fff;
	box-shadow: 0 18px 44px rgba(20, 114, 63, .32);
	text-decoration: none;
	transform: translateY(0);
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.whatsapp-float span {
	font-size: 0;
	font-weight: 800;
	text-transform: uppercase;
}

.whatsapp-float span::before {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border: 2px solid rgba(255, 255, 255, .9);
	border-radius: 999px;
	content: "WA";
	font-size: .82rem;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1;
}

.whatsapp-float:hover {
	background: #167a42;
	color: #fff;
	transform: translateY(-3px);
	box-shadow: 0 22px 54px rgba(20, 114, 63, .42);
}

.fci-lightbox {
	position: fixed;
	inset: 0;
	z-index: 120;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 1.25rem;
	background: rgba(3, 12, 22, .84);
	backdrop-filter: blur(8px);
}

.fci-lightbox.is-open {
	display: flex;
}

.fci-lightbox img {
	max-width: min(1100px, 94vw);
	max-height: 86vh;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 30px 90px rgba(0, 0, 0, .45);
}

.fci-lightbox__close {
	position: fixed;
	top: 1rem;
	right: 1rem;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 999px;
	background: #fff;
	color: var(--fci-navy);
	font-size: 1.6rem;
	line-height: 1;
	cursor: pointer;
}

.section-compact {
	padding-top: 3rem;
	padding-bottom: 0;
}

.compliance-statement {
	position: relative;
	max-width: 980px;
	padding: clamp(1.6rem, 4vw, 2.4rem);
	border: 1px solid rgba(8, 168, 216, .22);
	border-radius: calc(var(--fci-radius) + 10px);
	background:
		linear-gradient(135deg, rgba(8, 168, 216, .12), rgba(255, 255, 255, 0) 44%),
		#fff;
	box-shadow: var(--fci-shadow-soft);
	overflow: hidden;
}

.compliance-statement::after {
	position: absolute;
	inset: 0 0 0 auto;
	width: 5px;
	background: linear-gradient(180deg, var(--fci-cyan), var(--fci-navy));
	content: "";
}

.compliance-statement h2 {
	max-width: 820px;
	font-size: clamp(1.7rem, 3vw, 2.55rem);
}

.compliance-statement p:last-child {
	max-width: 850px;
	margin-bottom: 0;
	font-size: 1.06rem;
}

.corporate-cta__inner {
	position: relative;
	overflow: hidden;
	padding: clamp(2rem, 5vw, 4rem);
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: calc(var(--fci-radius) + 8px);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04));
	box-shadow: 0 24px 80px rgba(0, 0, 0, .18);
}

.corporate-cta__inner::before {
	position: absolute;
	inset: -60% auto auto -20%;
	width: 42%;
	aspect-ratio: 1;
	border-radius: 999px;
	background: radial-gradient(circle, rgba(8, 168, 216, .24), transparent 68%);
	content: "";
	animation: fciCtaSweep 8s ease-in-out infinite alternate;
	pointer-events: none;
}

.corporate-cta__inner > * {
	position: relative;
	z-index: 1;
}

.corporate-cta h2,
.corporate-cta p {
	color: var(--fci-white);
}

.corporate-cta p {
	max-width: 760px;
	color: rgba(255, 255, 255, .78);
}

.contact-layout {
	display: grid;
	grid-template-columns: .8fr 1.2fr;
	gap: 1rem;
	align-items: start;
}

.contact-panel,
.form-panel,
.legal-card {
	padding: 1.65rem;
}

.contact-map-button {
	margin: .35rem 0 1.05rem;
	min-height: 42px;
	padding: .72rem 1rem;
}

.fci-form,
.wpforms-form {
	display: grid;
	gap: 1rem;
}

.fci-form label,
.wpforms-field-label {
	display: grid;
	gap: .4rem;
	color: var(--fci-navy);
	font-weight: 800;
}

.fci-form input,
.fci-form textarea,
.fci-form select,
.wpforms-field input,
.wpforms-field textarea {
	width: 100%;
	border: 1px solid var(--fci-line);
	border-radius: var(--fci-radius);
	padding: .85rem 1rem;
	color: var(--fci-text);
	background: #fff;
	font: inherit;
	transition: border-color .2s ease, box-shadow .2s ease;
}

.fci-form input:focus,
.fci-form textarea:focus,
.fci-form select:focus,
.wpforms-field input:focus,
.wpforms-field textarea:focus {
	outline: none;
	border-color: var(--fci-cyan);
	box-shadow: 0 0 0 4px rgba(8, 168, 216, .12);
}

.fci-notice {
	margin: 0 0 1rem;
	padding: .9rem 1rem;
	border-radius: var(--fci-radius);
	font-weight: 800;
}

.fci-notice--success {
	border: 1px solid rgba(31, 157, 85, .28);
	background: rgba(31, 157, 85, .1);
	color: #146c3c;
}

.fci-notice--error {
	border: 1px solid rgba(198, 54, 54, .28);
	background: rgba(198, 54, 54, .1);
	color: #9f2f2f;
}

.metric-grid,
.legal-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

.metric-grid div {
	padding: 1rem;
	border-left: 3px solid var(--fci-cyan);
	background: #fff;
}

.metric-grid strong {
	display: block;
	color: var(--fci-navy);
	font-size: 1.6rem;
}

.metric-grid span {
	color: var(--fci-muted);
	font-size: .92rem;
}

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

.legal-card {
	display: block;
	transition: transform .2s ease, box-shadow .2s ease;
}

.legal-card:hover {
	box-shadow: var(--fci-shadow);
	transform: translateY(-3px);
}

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

.content-body h2 {
	margin-top: 2rem;
	font-size: 1.5rem;
}

.language-dock {
	position: fixed;
	top: calc(var(--fci-header) + .8rem);
	right: 1rem;
	z-index: 90;
	display: flex;
	gap: .35rem;
	padding: .35rem;
	border: 1px solid var(--fci-line);
	border-radius: 999px;
	background: rgba(255, 255, 255, .92);
	box-shadow: 0 12px 28px rgba(7, 27, 51, .1);
	backdrop-filter: blur(10px);
	animation: fciSlideDown .48s ease both;
}

.language-dock ul {
	display: flex;
	gap: .35rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.language-dock a,
.language-dock li {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	min-height: 32px;
	border-radius: 999px;
	color: var(--fci-navy);
	font-size: .8rem;
	font-weight: 900;
	text-transform: uppercase;
}

.language-dock .current-lang a,
.language-dock a.is-current,
.language-dock a:hover {
	background: var(--fci-cyan-soft);
	color: var(--fci-cyan);
}

.site-footer {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 1.5rem;
	padding: 3.5rem clamp(1rem, 4vw, 3rem);
	border-top: 1px solid var(--fci-line);
}

.site-footer__brand img {
	width: 148px;
	margin-bottom: 1rem;
}

.site-footer__links {
	display: grid;
	gap: .45rem;
}

.site-footer__links a:hover {
	color: var(--fci-cyan);
}

.socials {
	display: flex;
	gap: .5rem;
	margin-top: .75rem;
}

.socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--fci-navy);
	color: #fff;
	font-weight: 900;
}

.mobile-toggle,
.site-overlay {
	display: none;
}

@media (min-width: 1181px) {
	.site-main {
		overflow: visible;
	}

	.site-sidebar__inner {
		display: grid;
		grid-template-columns: auto minmax(0, 1fr) auto;
		column-gap: clamp(.75rem, 1.3vw, 1.2rem);
	}

	.brand {
		justify-self: start;
	}

	.main-nav {
		justify-self: center;
		flex: 0 1 auto;
		flex-wrap: nowrap;
		gap: .16rem;
		min-width: 0;
	}

	.main-nav a {
		min-height: 36px;
		padding: .5rem .48rem;
		font-size: clamp(.72rem, .78vw, .84rem);
		white-space: nowrap;
	}

	.main-nav a::before {
		width: 6px;
		height: 6px;
		margin-right: .42rem;
	}

	.sidebar-cta {
		justify-self: end;
		margin-left: 0;
		padding: .54rem .68rem;
	}

	.sidebar-cta a {
		font-size: clamp(.68rem, .72vw, .78rem);
	}

	.main-nav a:hover,
	.main-nav a:focus {
		transform: translateY(-2px);
	}

	.hero {
		align-items: start;
	}

	.hero__media {
		position: sticky;
		top: var(--fci-header);
		align-self: start;
		height: calc(100vh - var(--fci-header));
		min-height: 680px;
	}

	.hero__media img {
		height: 100%;
	}
}

.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity .72s ease, transform .72s cubic-bezier(.2, .8, .2, 1);
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.service-card.reveal:nth-child(2),
.gallery-item.reveal:nth-child(2),
.process-card.reveal:nth-child(2) {
	transition-delay: .08s;
}

.service-card.reveal:nth-child(3),
.gallery-item.reveal:nth-child(3),
.process-card.reveal:nth-child(3) {
	transition-delay: .16s;
}

.service-card.reveal:nth-child(4),
.gallery-item.reveal:nth-child(4),
.process-card.reveal:nth-child(4) {
	transition-delay: .24s;
}

@keyframes fciHeroDrift {
	from {
		transform: scale(1);
	}
	to {
		transform: scale(1.045);
	}
}

@keyframes fciLogoFloat {
	0%,
	100% {
		transform: translateY(0) scale(1);
	}
	50% {
		transform: translateY(-5px) scale(1.025);
	}
}

@keyframes fciButtonGlow {
	0%,
	100% {
		box-shadow: 0 16px 34px rgba(8, 168, 216, .22);
	}
	50% {
		box-shadow: 0 18px 42px rgba(8, 168, 216, .38);
	}
}

@keyframes fciBadgePulse {
	0%,
	100% {
		box-shadow: 0 0 0 rgba(8, 168, 216, 0);
	}
	50% {
		box-shadow: 0 0 28px rgba(8, 168, 216, .22);
	}
}

@keyframes fciIconPop {
	0% {
		transform: scale(1) rotate(0deg);
	}
	55% {
		transform: scale(1.18) rotate(-6deg);
	}
	100% {
		transform: scale(1) rotate(0deg);
	}
}

@keyframes fciCtaSweep {
	from {
		transform: translate(0, 0) scale(1);
	}
	to {
		transform: translate(190%, 130%) scale(1.45);
	}
}

@keyframes fciSlideDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fciHeroBulletIn {
	from {
		opacity: 0;
		transform: translateY(12px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 1180px) {
	:root {
		--fci-sidebar: 272px;
	}

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

@media (max-width: 900px) {
	body {
		font-size: 15px;
	}

	.site-shell {
		margin-left: 0;
		padding-top: 0;
	}

	.mobile-toggle {
		position: fixed;
		top: .85rem;
		left: .85rem;
		z-index: 70;
		display: inline-grid;
		width: 46px;
		height: 46px;
		place-items: center;
		border: 1px solid var(--fci-line);
		border-radius: var(--fci-radius);
		background: rgba(255, 255, 255, .95);
		box-shadow: 0 10px 28px rgba(7, 27, 51, .14);
	}

	.mobile-toggle span {
		display: block;
		width: 20px;
		height: 2px;
		margin: 2px 0;
		background: var(--fci-navy);
	}

	.site-sidebar {
		inset: 0 auto 0 0;
		width: min(84vw, 320px);
		height: 100vh;
		height: 100dvh;
		overflow-y: auto;
		overscroll-behavior: contain;
		border-right: 1px solid rgba(255, 255, 255, .08);
		border-bottom: 0;
		transform: translateX(-105%);
		transition: transform .25s ease;
	}

	.site-sidebar__inner {
		width: auto;
		min-height: 100%;
		flex-direction: column;
		align-items: stretch;
		gap: 1.6rem;
		margin: 0;
		padding-inline: 1.45rem;
		padding-top: 4.6rem;
		padding-bottom: calc(7rem + env(safe-area-inset-bottom));
	}

	.brand {
		align-self: center;
		width: auto;
		min-height: 0;
	}

	.brand img {
		width: min(260px, 90%);
		max-height: none;
	}

	.sidebar-kicker {
		display: grid;
	}

	.main-nav {
		display: grid;
		justify-content: stretch;
	}

	.sidebar-cta {
		margin-top: auto;
		margin-left: 0;
		border-radius: calc(var(--fci-radius) + 4px);
		background: linear-gradient(145deg, rgba(8, 168, 216, .18), rgba(255, 255, 255, .06));
	}

	.sidebar-cta span {
		display: block;
	}

	.menu-open .site-sidebar {
		transform: translateX(0);
	}

	.site-overlay {
		position: fixed;
		inset: 0;
		z-index: 40;
		background: rgba(7, 27, 51, .42);
	}

	.menu-open .site-overlay {
		display: block;
	}

	.language-dock {
		top: .85rem;
		right: .85rem;
		z-index: 90;
	}

	.hero {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.hero__media::after {
		background:
			linear-gradient(0deg, rgba(5, 18, 34, .18), rgba(5, 18, 34, 0));
	}

	.hero__media {
		order: 2;
		min-height: 0;
		aspect-ratio: 16 / 9;
		margin: 0 1rem 2rem;
		border-radius: calc(var(--fci-radius) + 8px);
		box-shadow: var(--fci-shadow);
	}

	.hero__content {
		order: 1;
		max-width: none;
		margin: 0;
		padding: 6rem 1rem 2rem;
	}

	.hero h1 {
		font-size: clamp(2.3rem, 5.4vw, 3.4rem);
	}

	.hero__metrics {
		grid-template-columns: 1fr;
		max-width: 360px;
	}

	.trust-grid,
	.split,
	.contact-layout,
	.site-footer,
	.metric-grid,
	.legal-grid,
	.experience-grid,
	.process-grid,
	.capability-grid {
		grid-template-columns: 1fr;
	}

	.split .split__image {
		order: -1;
	}
}

@media (max-width: 620px) {
	h1 {
		font-size: 2.36rem;
	}

	.section {
		padding: 3.5rem 0;
	}

	.hero {
		min-height: 0;
	}

	.hero__content {
		padding-top: 7rem;
		padding-bottom: 3.5rem;
	}

	.hero__media {
		aspect-ratio: 4 / 3;
		margin-bottom: 1.4rem;
	}

	.hero__media img {
		object-position: center top;
	}

	.reveal,
	.reveal.is-visible {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.hero__media img,
	.button-primary,
	.fci-form button,
	.wpforms-submit,
	.division-badge,
	.corporate-cta__inner::before {
		animation: none;
	}

	.hero-value__list li {
		opacity: 1;
		transform: none;
		animation: none;
		backdrop-filter: none;
	}

	.hero-value__list li:hover,
	.hero__metrics div:hover,
	.service-card:hover,
	.gallery-item:hover,
	.capability-card:hover,
	.process-card:hover {
		transform: none;
	}

	.hero p:not(.eyebrow) {
		font-size: 1rem;
	}

	.hero h1 {
		font-size: 2.12rem;
	}

	.hero__actions,
	.button {
		width: 100%;
	}

	.hero__metrics {
		margin-top: 1.4rem;
	}

	.hero__metrics div {
		padding: .82rem .9rem;
	}

	.safety-logo-strip {
		gap: .46rem;
	}

	.safety-logo {
		flex: 1 1 calc(50% - .46rem);
		min-height: 48px;
		padding: .28rem .42rem;
	}

	.safety-logo img {
		width: 100px;
		height: 40px;
	}

	.safety-logo strong {
		min-width: 34px;
		height: 28px;
		font-size: .66rem;
	}

	.safety-logo small {
		font-size: .66rem;
	}

	.service-grid,
	.service-grid--wide,
	.gallery-grid,
	.gallery-grid--preview {
		grid-template-columns: 1fr;
	}

	.trust-grid div,
	.service-card,
	.contact-panel,
	.form-panel,
	.legal-card {
		padding: 1rem;
	}

	.site-footer {
		padding-bottom: 5rem;
	}

	.experience-visual {
		min-height: 280px;
	}

	.experience-visual__logo {
		width: min(68%, 210px);
	}

	.whatsapp-float {
		right: .85rem;
		bottom: .85rem;
		width: 54px;
		height: 54px;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		scroll-behavior: auto !important;
		transition: none !important;
		animation: none !important;
	}

	.reveal {
		opacity: 1;
		transform: none;
	}
}
