: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: 96px;
	--fci-radius: 8px;
}

* {
	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: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	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);
	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: 1.25rem;
	padding: .75rem 0;
}

.brand {
	display: flex;
	justify-content: center;
	padding: .45rem .65rem;
	border: 1px solid rgba(255, 255, 255, .09);
	border-radius: calc(var(--fci-radius) + 6px);
	background: rgba(255, 255, 255, .96);
	box-shadow: 0 16px 42px rgba(0, 0, 0, .16);
}

.brand img {
	width: 78px;
	filter: drop-shadow(0 10px 22px rgba(7, 27, 51, .12));
	transition: transform .3s ease;
}

.brand:hover img {
	transform: scale(1.04);
}

.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: 42px;
	padding: .68rem .78rem;
	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: .72rem .95rem;
	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: .88rem;
	font-weight: 800;
	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-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 {
	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;
	line-height: 1.2;
	cursor: pointer;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.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);
}

.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, 1.05fr) minmax(360px, .95fr);
	min-height: 760px;
	align-items: stretch;
	background: #05162a;
	isolation: isolate;
}

.hero__media {
	position: relative;
	min-height: 100%;
	order: 2;
	overflow: hidden;
}

.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: cover;
	object-position: center;
	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);
}

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

.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 {
	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 {
	color: #fff;
	font-size: 1.25rem;
	line-height: 1.1;
}

.hero__metrics span {
	margin-top: .2rem;
	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;
}

.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(-4px);
}

.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;
}

.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(4, 1fr);
}

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

.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.04);
}

.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;
}

.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;
}

.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;
}

.whatsapp-float {
	position: fixed;
	right: 1.2rem;
	bottom: 1.2rem;
	z-index: 95;
	display: flex;
	flex-direction: column;
	gap: .05rem;
	padding: .72rem .9rem;
	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: .72rem;
	font-weight: 800;
	text-transform: uppercase;
}

.whatsapp-float strong {
	font-size: .92rem;
}

.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;
}

.corporate-cta__inner {
	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 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;
}

.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: 78px;
	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;
}

.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity .65s ease, transform .65s ease;
}

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

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

@keyframes fciSlideDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	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;
	}

	.brand img {
		width: min(158px, 76%);
	}

	.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,
	.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 center;
	}

	.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;
	}

	.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;
		padding: .68rem .78rem;
	}

	.whatsapp-float strong {
		font-size: .82rem;
	}
}

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

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