:root {
	--cec-navy: #011263;
	--cec-blue: #011263;
	--cec-cyan: #B2BEEA;
	--cec-ink: #000000;
	--cec-gray: #8c8c8c;
	--cec-light-gray: #c9c9c9;
	--cec-text: var(--cec-ink);
	--cec-muted: rgba(0, 0, 0, 0.68);
	--cec-line: rgba(140, 140, 140, 0.35);
	--cec-soft: rgba(181, 190, 234, 0.24);
	--cec-white: #ffffff;
	--cec-radius: 6px;
	--cec-shadow: 0 24px 70px rgba(1, 18, 99, 0.18);
	--cec-shadow-soft: 0 16px 42px rgba(1, 18, 99, 0.12);
	--cec-font-display: "Gotham", "Acumin Variable Concept", Arial, Helvetica, sans-serif;
	--cec-font-body: "Acumin Variable Concept", "Gotham", Arial, Helvetica, sans-serif;
	--cec-content-max: 1200px;
	--cec-page-pad: clamp(20px, 4vw, 72px);
}

* {
	box-sizing: border-box;
}

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

main > section[id] {
	scroll-margin-top: 154px;
}

:focus-visible {
	outline: 3px solid var(--cec-cyan);
	outline-offset: 4px;
}

body.cec-site {
	margin: 0;
	overflow-x: hidden;
	background:
		linear-gradient(180deg, rgba(1, 18, 99, 0.04) 0, rgba(255, 255, 255, 0) 260px),
		var(--cec-white);
	color: var(--cec-text);
	font-family: var(--cec-font-body);
	font-size: 16px;
	line-height: 1.6;
}

body.cec-site a {
	color: inherit;
	text-decoration: none;
}

body.cec-site img {
	display: block;
	max-width: 100%;
	height: auto;
}

.container {
	width: min(var(--cec-content-max), calc(100% - (var(--cec-page-pad) * 2)));
	margin: 0 auto;
}

.skip-link {
	position: fixed;
	left: 16px;
	top: 16px;
	z-index: 1000;
	transform: translateY(-120%);
	background: var(--cec-navy);
	color: var(--cec-white);
	padding: 10px 14px;
}

.skip-link:focus {
	transform: translateY(0);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 80;
	background: rgba(255, 255, 255, 0.94);
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
	box-shadow: 0 14px 34px rgba(1, 18, 99, 0.1);
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
	isolation: isolate;
}

.topbar {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: clamp(14px, 2vw, 24px);
	min-height: 30px;
	padding: 6px max(var(--cec-page-pad), calc((100vw - var(--cec-content-max)) / 2));
	background: var(--cec-navy);
	color: rgba(255, 255, 255, 0.9);
	font-size: 12px;
	line-height: 1.25;
}

.topbar::after {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 2px;
	background: var(--cec-cyan);
	content: "";
}

.topbar__inner,
.language-nav {
	display: flex;
	align-items: center;
	gap: clamp(12px, 1.6vw, 18px);
	flex-wrap: wrap;
}

.topbar a,
.language-nav a {
	white-space: nowrap;
}

.topbar a:hover,
.language-nav a:hover,
.language-nav .is-active {
	color: var(--cec-white);
	text-decoration: underline;
	text-decoration-color: var(--cec-cyan);
	text-underline-offset: 4px;
}

.masthead {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: clamp(18px, 2.2vw, 34px);
	min-height: 106px;
	padding: 16px max(var(--cec-page-pad), calc((100vw - var(--cec-content-max)) / 2));
	background: var(--cec-white);
}

.brand {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	width: clamp(220px, 16vw, 280px);
	max-width: calc(100vw - 112px);
	padding: 4px 0;
}

.brand picture {
	display: block;
	width: 100%;
}

.brand img {
	width: 100%;
	height: auto;
	max-height: 76px;
	object-fit: contain;
}

.primary-nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: clamp(14px, 1.3vw, 24px);
	margin-left: auto;
	font-family: var(--cec-font-display);
	font-size: clamp(12.5px, 0.72vw, 14px);
	font-weight: 700;
	color: var(--cec-ink);
	white-space: nowrap;
}

.primary-nav a {
	position: relative;
	padding: 22px 0;
}

.primary-nav a::after {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 15px;
	height: 3px;
	background: var(--cec-cyan);
	content: "";
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 160ms ease;
}

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

.primary-nav .nav-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 12px 18px;
	background: var(--cec-navy);
	color: var(--cec-white);
	border: 1px solid var(--cec-navy);
	box-shadow: 0 12px 26px rgba(1, 18, 99, 0.2);
	transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.primary-nav .nav-cta::after {
	display: none;
}

.primary-nav .nav-cta:hover {
	background: var(--cec-blue);
	border-color: var(--cec-blue);
	box-shadow: 0 14px 30px rgba(1, 18, 99, 0.22);
	transform: translateY(-1px);
}

.mobile-language-nav {
	display: none;
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 10px;
	background: var(--cec-navy);
	border: 0;
	border-radius: 4px;
	cursor: pointer;
	gap: 5px;
}

.menu-toggle span {
	display: block;
	flex: 0 0 2px;
	width: 22px;
	height: 2px;
	margin: 0;
	background: var(--cec-white);
}

.hero {
	position: relative;
	min-height: 560px;
	overflow: hidden;
	background: var(--cec-navy);
	color: var(--cec-white);
	isolation: isolate;
}

.hero::before,
.hero::after {
	position: absolute;
	z-index: 1;
	pointer-events: none;
	content: "";
}

.hero::before {
	right: -120px;
	top: -1px;
	width: min(45vw, 610px);
	height: calc(100% + 2px);
	background:
		linear-gradient(180deg, rgba(1, 18, 99, 0.28), rgba(1, 18, 99, 0.18)),
		linear-gradient(135deg, rgba(181, 190, 234, 0.18), rgba(255, 255, 255, 0));
	clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
}

.hero::after {
	left: max(var(--cec-page-pad), calc((100vw - var(--cec-content-max)) / 2));
	bottom: 44px;
	width: 180px;
	height: 6px;
	background: linear-gradient(90deg, var(--cec-blue), var(--cec-cyan));
}

.hero__image,
.hero__overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.hero .hero__image {
	max-width: none;
	height: 100%;
	object-fit: cover;
	object-position: center bottom;
	opacity: 0.96;
	transform: scale(1.16) translate3d(0, 0, 0);
	transform-origin: center bottom;
	animation: cec-ken-burns 18s ease-in-out infinite alternate;
	backface-visibility: hidden;
	will-change: transform;
}

.hero__overlay {
	background:
		linear-gradient(90deg, rgba(1, 18, 99, 0.92) 0%, rgba(1, 18, 99, 0.74) 48%, rgba(1, 18, 99, 0.26) 100%),
		linear-gradient(180deg, rgba(1, 18, 99, 0.06) 0%, rgba(1, 18, 99, 0.52) 100%);
}

.hero__content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 560px;
	padding: 76px 0 84px;
}

.eyebrow {
	margin: 0 0 16px;
	color: var(--cec-navy);
	font-family: var(--cec-font-display);
	font-size: 13px;
	font-weight: 700;
}

.hero .eyebrow {
	display: inline-flex;
	align-self: flex-start;
	margin-bottom: 18px;
	padding: 7px 12px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 4px;
	color: var(--cec-white);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
	text-shadow: 0 1px 12px rgba(0, 0, 0, 0.36);
}

.hero h1,
.section h2,
.page-content h1,
.contact-copy h2 {
	margin: 0;
	color: inherit;
	font-family: var(--cec-font-display);
	font-weight: 700;
	line-height: 1.06;
	text-wrap: balance;
}

.hero h1 {
	max-width: 820px;
	font-size: 64px;
	text-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.hero__text {
	max-width: 640px;
	margin: 24px 0 0;
	color: rgba(255, 255, 255, 0.9);
	font-size: 19px;
	line-height: 1.5;
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 34px;
}

.hero .eyebrow,
.hero h1,
.hero__text,
.hero .button-row {
	animation: cec-fade-up 780ms ease both;
}

.hero h1 {
	animation-delay: 100ms;
}

.hero__text {
	animation-delay: 200ms;
}

.hero .button-row {
	animation-delay: 300ms;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 13px 22px;
	border: 1px solid currentColor;
	border-radius: 4px;
	font-family: var(--cec-font-display);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	box-shadow: 0 12px 26px rgba(1, 18, 99, 0.12);
	transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button:hover {
	transform: translateY(-1px);
	box-shadow: 0 16px 34px rgba(1, 18, 99, 0.18);
}

.button--primary {
	background: linear-gradient(135deg, var(--cec-blue), var(--cec-navy));
	border-color: rgba(1, 18, 99, 0.7);
	color: var(--cec-white);
}

.button--primary:hover {
	background: var(--cec-navy);
	border-color: var(--cec-cyan);
}

.hero .button--primary {
	background: var(--cec-white);
	border-color: var(--cec-white);
	color: var(--cec-navy);
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.hero .button--primary:hover {
	background: var(--cec-cyan);
	border-color: var(--cec-cyan);
	color: var(--cec-navy);
}

.button--light {
	background: rgba(255, 255, 255, 0.11);
	color: var(--cec-white);
	backdrop-filter: blur(10px);
}

.button--light:hover {
	background: var(--cec-white);
	border-color: var(--cec-white);
	color: var(--cec-navy);
}

.story-strip {
	background:
		linear-gradient(180deg, var(--cec-white), rgba(181, 190, 234, 0.12));
	border-bottom: 1px solid var(--cec-line);
	padding: 38px 0 46px;
}

.story-strip__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	margin-top: 0;
	position: relative;
	z-index: 4;
	background: transparent;
	border: 0;
	box-shadow: none;
}

.story-strip__label {
	display: flex;
	align-items: center;
	grid-column: 1 / -1;
	margin: 0 0 4px;
	padding: 0;
	background: transparent;
	color: var(--cec-blue);
	font-family: var(--cec-font-display);
	font-size: clamp(24px, 2.2vw, 32px);
	font-weight: 700;
	line-height: 1.12;
}

.story-card {
	position: relative;
	min-height: 170px;
	padding: 32px;
	border: 1px solid var(--cec-line);
	border-radius: var(--cec-radius);
	background: var(--cec-white);
	transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.story-card::before {
	position: absolute;
	left: 26px;
	top: 0;
	width: 46px;
	height: 4px;
	background: var(--cec-cyan);
	content: "";
}

.story-card:nth-child(3)::before {
	background: var(--cec-cyan);
}

.story-card:nth-child(4)::before {
	background: var(--cec-blue);
}

.story-card:hover {
	z-index: 2;
	background: var(--cec-white);
	box-shadow: 0 20px 48px rgba(1, 18, 99, 0.14);
	transform: translateY(-4px);
}

.story-card h2 {
	margin: 0 0 10px;
	color: var(--cec-navy);
	font-family: var(--cec-font-display);
	font-size: 22px;
	line-height: 1.15;
}

.story-card p {
	margin: 0;
	color: var(--cec-muted);
}

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

.section--split {
	padding: 70px 0 66px;
}

.split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 56px;
	align-items: start;
}

.split--about .split__content {
	position: sticky;
	top: 168px;
}

.split__media,
.approach-copy {
	position: relative;
}

.split__media img,
.approach-copy img {
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--cec-radius);
	box-shadow: var(--cec-shadow);
}

.capability-panel {
	--cec-stack-top: 168px;
	display: block;
	min-height: 500px;
	padding-bottom: 96px;
}

.visual-stack {
	display: grid;
	gap: 18px;
}

.brand-visual-image {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	border-radius: var(--cec-radius);
	border: 1px solid var(--cec-line);
	box-shadow: var(--cec-shadow-soft);
}

.capability-item {
	position: sticky;
	top: var(--cec-stack-top);
	margin-bottom: 14px;
	padding: 24px;
	background: var(--cec-white);
	border: 1px solid var(--cec-line);
	border-radius: var(--cec-radius);
	box-shadow: 0 12px 30px rgba(1, 18, 99, 0.08);
}

.capability-item:nth-child(1) {
	z-index: 1;
}

.capability-item:nth-child(2) {
	top: calc(var(--cec-stack-top) + 16px);
	z-index: 2;
}

.capability-item:nth-child(3) {
	top: calc(var(--cec-stack-top) + 32px);
	z-index: 3;
}

.capability-item::before {
	position: absolute;
	inset: 0 auto 0 0;
	width: 4px;
	background: var(--cec-blue);
	content: "";
}

.capability-item:nth-child(2)::before {
	background: var(--cec-cyan);
}

.capability-item:nth-child(3)::before {
	background: var(--cec-cyan);
}

.capability-item span {
	display: inline-flex;
	margin-bottom: 14px;
	color: var(--cec-blue);
	font-family: var(--cec-font-display);
	font-weight: 700;
}

.capability-item h3 {
	margin: 0 0 8px;
	color: var(--cec-navy);
	font-family: var(--cec-font-display);
	font-size: 22px;
	line-height: 1.2;
}

.capability-item p {
	margin: 0;
	color: var(--cec-muted);
}

.split__content h2,
.section-heading h2,
.contact-copy h2,
.approach-copy h2,
.page-content h1 {
	color: var(--cec-navy);
	font-size: clamp(44px, 4vw, 54px);
}

.split__content p,
.section-heading p,
.contact-copy p {
	margin: 20px 0 0;
	font-size: 18px;
}

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

.check-list li {
	position: relative;
	padding-left: 26px;
	color: var(--cec-ink);
	font-weight: 700;
}

.check-list li::before {
	position: absolute;
	left: 0;
	top: 10px;
	width: 12px;
	height: 3px;
	background: var(--cec-cyan);
	content: "";
}

.stats-band {
	position: relative;
	padding: 32px 0;
	background:
		linear-gradient(90deg, rgba(1, 18, 99, 0.2), rgba(1, 18, 99, 0.14), rgba(181, 190, 234, 0.14)),
		var(--cec-navy);
	color: var(--cec-white);
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: rgba(255, 255, 255, 0.18);
}

.stat {
	display: grid;
	gap: 4px;
	padding: 34px 30px;
	background: rgba(1, 18, 99, 0.86);
	backdrop-filter: blur(10px);
}

.stat strong {
	font-family: var(--cec-font-display);
	font-size: 46px;
	line-height: 1;
}

.stat span {
	color: rgba(255, 255, 255, 0.82);
	font-weight: 700;
}

.section-heading {
	max-width: 820px;
	margin-bottom: 30px;
}

#industries {
	padding-top: clamp(52px, 5vw, 66px);
}

#industries .section-heading {
	max-width: var(--cec-content-max);
}

#industries .section-heading h2 {
	max-width: 1020px;
}

#industries .section-heading p:not(.eyebrow) {
	max-width: 960px;
}

.section-heading p,
.split__content p,
.contact-copy p,
.hero__text {
	text-wrap: pretty;
}

.section-heading--dark {
	margin-bottom: 0;
}

.section-heading--dark h2,
.section-heading--dark p {
	color: var(--cec-white);
}

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

.sector-carousel {
	--sector-gap: 18px;
	--sector-card: clamp(260px, 27vw, 340px);
	position: relative;
	display: grid;
	gap: 14px;
	overflow: visible;
	margin-top: 6px;
}

.sector-carousel__viewport {
	overflow: hidden;
	padding: 4px 0 16px;
}

.sector-track {
	display: flex;
	gap: var(--sector-gap);
	transform: translate3d(var(--sector-offset, 0px), 0, 0);
	transition: transform 420ms cubic-bezier(0.22, 0.61, 0.36, 1);
	will-change: transform;
}

.sector-controls {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
}

.sector-button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	background: var(--cec-navy);
	border: 1px solid var(--cec-navy);
	border-radius: 4px;
	box-shadow: 0 12px 26px rgba(1, 18, 99, 0.16);
	cursor: pointer;
	transition: background 160ms ease, border-color 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.sector-button::before {
	width: 11px;
	height: 11px;
	border-color: var(--cec-white);
	border-style: solid;
	border-width: 2px 2px 0 0;
	content: "";
}

.sector-button--prev::before {
	transform: translateX(2px) rotate(-135deg);
}

.sector-button--next::before {
	transform: translateX(-2px) rotate(45deg);
}

.sector-button:hover:not(:disabled) {
	background: var(--cec-blue);
	border-color: var(--cec-blue);
	transform: translateY(-1px);
}

.sector-button:disabled {
	opacity: 0.34;
	cursor: default;
}

.sector-button:focus-visible {
	outline: 3px solid var(--cec-cyan);
	outline-offset: 3px;
}

.image-card {
	position: relative;
	display: grid;
	min-height: 100%;
	background: var(--cec-white);
	border: 1px solid var(--cec-line);
	border-radius: var(--cec-radius);
	overflow: hidden;
	box-shadow: 0 10px 26px rgba(1, 18, 99, 0.08);
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.image-card:hover {
	border-color: rgba(1, 18, 99, 0.44);
	box-shadow: var(--cec-shadow-soft);
	transform: translateY(-5px);
}

.image-card img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	transition: transform 220ms ease;
}

.image-card:hover img {
	transform: scale(1.05);
}

.image-card div {
	padding: 28px;
}

.sector-card {
	flex: 0 0 var(--sector-card);
	overflow: hidden;
	padding: 0;
}

.sector-card div {
	padding: 22px;
}

.sector-card > .sector-image {
	width: 78px;
	height: 78px;
	margin: 22px 22px 0;
	padding: 12px;
	aspect-ratio: auto;
	object-fit: contain;
	background: var(--cec-soft);
	border: 1px solid rgba(1, 18, 99, 0.14);
	border-radius: var(--cec-radius);
}

.sector-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin-bottom: 14px;
	background: rgba(1, 18, 99, 0.08);
	border: 1px solid rgba(1, 18, 99, 0.18);
	border-radius: 4px;
	color: var(--cec-blue);
	font-family: var(--cec-font-display);
	font-size: 13px;
	font-weight: 700;
}

.sector-card:nth-child(2) .sector-mark,
.sector-card:nth-child(4) .sector-mark {
	background: rgba(181, 190, 234, 0.16);
	border-color: rgba(1, 18, 99, 0.18);
	color: var(--cec-navy);
}

.sector-card h3 {
	font-size: 18px;
}

.sector-card p {
	font-size: 14px;
	line-height: 1.55;
}

.image-card h3,
.service-item h3,
.solution-card h3,
.approach-step h3 {
	margin: 0 0 10px;
	color: var(--cec-navy);
	font-family: var(--cec-font-display);
	font-size: 22px;
	line-height: 1.2;
}

.image-card p,
.service-item p,
.solution-card p,
.approach-step p {
	margin: 0;
	color: var(--cec-muted);
}

.section--navy {
	overflow: visible;
	background:
		linear-gradient(135deg, rgba(1, 18, 99, 0.18), rgba(1, 18, 99, 0) 38%),
		repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 18px),
		var(--cec-navy);
	color: var(--cec-white);
}

.services-layout {
	display: grid;
	grid-template-columns: 0.78fr 1.22fr;
	gap: 64px;
	align-items: start;
}

.services-layout > .section-heading--dark {
	position: sticky;
	top: 168px;
	align-self: start;
	max-width: 430px;
}

.service-grid {
	--cec-stack-top: 168px;
	display: block;
	padding-bottom: 80px;
	background: transparent;
}

.service-row {
	position: sticky;
	top: var(--cec-stack-top);
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	margin-bottom: 42px;
}

.service-row:nth-child(2) {
	top: calc(var(--cec-stack-top) + 24px);
	z-index: 2;
}

.service-row:nth-child(3) {
	top: calc(var(--cec-stack-top) + 48px);
	z-index: 3;
	margin-bottom: 0;
}

.service-item {
	position: relative;
	min-height: 178px;
	margin-bottom: 0;
	padding: 30px;
	background:
		linear-gradient(135deg, rgba(1, 18, 99, 0.96), rgba(1, 18, 99, 0.9)),
		var(--cec-navy);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--cec-radius);
	box-shadow: 0 18px 46px rgba(0, 0, 0, 0.14);
	overflow: hidden;
	transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-item::before {
	position: absolute;
	left: 0;
	top: 0;
	width: 4px;
	height: 100%;
	background: var(--cec-blue);
	content: "";
}

.service-item:nth-child(2)::before,
.service-item:nth-child(5)::before {
	background: var(--cec-cyan);
}

.service-item:nth-child(3)::before,
.service-item:nth-child(6)::before {
	background: var(--cec-cyan);
}

.service-item:hover {
	background:
		linear-gradient(135deg, rgba(1, 18, 99, 1), rgba(1, 18, 99, 0.94)),
		var(--cec-navy);
	border-color: rgba(255, 255, 255, 0.26);
	transform: translateY(-4px);
}

.service-item h3 {
	color: var(--cec-white);
}

.service-item p {
	color: rgba(255, 255, 255, 0.78);
}

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

.solution-card {
	position: relative;
	min-height: 235px;
	padding: 30px;
	border: 1px solid var(--cec-line);
	border-top: 5px solid var(--cec-blue);
	border-radius: var(--cec-radius);
	background: var(--cec-white);
	box-shadow: 0 10px 26px rgba(1, 18, 99, 0.08);
	overflow: hidden;
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.solution-card::before {
	position: absolute;
	right: -26px;
	bottom: -26px;
	width: 112px;
	height: 112px;
	border: 18px solid rgba(1, 18, 99, 0.05);
	content: "";
	transform: rotate(18deg);
}

.solution-card:hover {
	box-shadow: var(--cec-shadow-soft);
	transform: translateY(-5px);
}

.solution-card:nth-child(2) {
	border-top-color: var(--cec-cyan);
}

.solution-card:nth-child(3) {
	border-top-color: var(--cec-cyan);
}

.section--soft {
	background:
		linear-gradient(180deg, rgba(1, 18, 99, 0.06), rgba(181, 190, 234, 0.04)),
		var(--cec-soft);
}

.approach-layout {
	display: grid;
	grid-template-columns: 0.92fr 1.08fr;
	gap: 56px;
	align-items: start;
}

.approach-copy {
	position: sticky;
	top: 168px;
}

.approach-copy h2 {
	margin: 0 0 18px;
	color: var(--cec-navy);
}

.approach-copy p:not(.eyebrow) {
	margin: 0 0 28px;
	font-size: 18px;
}

.route-visual {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
	max-width: 360px;
	padding: 10px;
	background: var(--cec-white);
	border: 1px solid var(--cec-line);
	border-radius: var(--cec-radius);
	box-shadow: 0 12px 30px rgba(1, 18, 99, 0.08);
}

.route-visual span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 70px;
	background: rgba(1, 18, 99, 0.08);
	border-radius: 4px;
	color: var(--cec-blue);
	font-family: var(--cec-font-display);
	font-weight: 700;
}

.route-visual span:nth-child(2) {
	background: rgba(181, 190, 234, 0.18);
	color: var(--cec-navy);
}

.route-visual span:nth-child(3) {
	background: rgba(1, 18, 99, 0.1);
	color: var(--cec-navy);
}

.approach-steps {
	--cec-stack-top: 168px;
	display: block;
	min-height: 720px;
	padding-bottom: 150px;
}

.approach-step {
	position: sticky;
	top: var(--cec-stack-top);
	display: grid;
	grid-template-columns: 74px 1fr;
	gap: 22px;
	margin-bottom: 18px;
	padding: 28px;
	background: var(--cec-white);
	border: 1px solid var(--cec-line);
	border-radius: var(--cec-radius);
	box-shadow: 0 12px 30px rgba(1, 18, 99, 0.08);
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.approach-step:nth-child(1) {
	z-index: 1;
}

.approach-step:nth-child(2) {
	top: calc(var(--cec-stack-top) + 18px);
	z-index: 2;
}

.approach-step:nth-child(3) {
	top: calc(var(--cec-stack-top) + 36px);
	z-index: 3;
}

.approach-step:hover {
	box-shadow: var(--cec-shadow-soft);
	transform: translateY(-3px);
}

.approach-step span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	background: linear-gradient(135deg, var(--cec-navy), var(--cec-blue));
	color: var(--cec-white);
	font-family: var(--cec-font-display);
	font-weight: 700;
}

.contact-section {
	background:
		linear-gradient(135deg, rgba(1, 18, 99, 0.96), rgba(1, 18, 99, 0.9)),
		linear-gradient(90deg, rgba(181, 190, 234, 0.14), rgba(1, 18, 99, 0));
	color: var(--cec-white);
}

.contact-layout {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 56px;
	align-items: start;
}

.contact-copy h2,
.contact-copy p {
	color: var(--cec-white);
}

.contact-details {
	display: grid;
	gap: 10px;
	margin-top: 28px;
	color: rgba(255, 255, 255, 0.86);
}

.contact-details a:hover {
	color: var(--cec-white);
	text-decoration: underline;
	text-decoration-color: var(--cec-cyan);
	text-underline-offset: 4px;
}

.contact-form {
	display: grid;
	gap: 18px;
	padding: 30px;
	background: rgba(255, 255, 255, 0.96);
	color: var(--cec-ink);
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: var(--cec-radius);
	box-shadow: var(--cec-shadow);
	backdrop-filter: blur(14px);
}

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

.contact-form label {
	display: grid;
	gap: 7px;
	font-weight: 700;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	border: 1px solid var(--cec-line);
	border-radius: 4px;
	background: var(--cec-white);
	padding: 12px 13px;
	color: var(--cec-ink);
	font: inherit;
}

.contact-form textarea {
	resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
	outline: 2px solid rgba(1, 18, 99, 0.3);
	border-color: var(--cec-cyan);
}

.consent {
	display: grid;
	grid-template-columns: 20px 1fr;
	gap: 10px;
	align-items: start;
	font-weight: 400;
}

.consent input {
	width: 18px;
	height: 18px;
	margin-top: 4px;
}

.honeypot {
	position: absolute;
	left: -9999px;
}

.form-alert {
	padding: 12px 14px;
	border-radius: 4px;
	font-weight: 700;
}

.form-alert--success {
	background: rgba(181, 190, 234, 0.12);
	color: var(--cec-blue);
}

.form-alert--error {
	background: rgba(201, 201, 201, 0.35);
	color: var(--cec-ink);
}

.page-content {
	min-height: 50vh;
}

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

.policy-page {
	background:
		linear-gradient(180deg, rgba(1, 18, 99, 0.06), rgba(255, 255, 255, 0) 260px),
		var(--cec-white);
}

.policy-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr);
	gap: clamp(32px, 5vw, 72px);
	align-items: start;
}

.policy-heading {
	position: sticky;
	top: 168px;
}

.policy-heading h1 {
	margin: 0;
	color: var(--cec-navy);
	font-family: var(--cec-font-display);
	font-size: clamp(34px, 5vw, 56px);
	line-height: 1.04;
}

.policy-heading p:not(.eyebrow) {
	margin: 20px 0 0;
	font-size: 18px;
}

.policy-heading span {
	display: block;
	margin-top: 22px;
	color: var(--cec-muted);
	font-weight: 700;
}

.policy-card {
	display: grid;
	gap: 14px;
}

.policy-card section {
	padding: 26px;
	background: var(--cec-white);
	border: 1px solid var(--cec-line);
	border-radius: var(--cec-radius);
	box-shadow: 0 10px 26px rgba(1, 18, 99, 0.08);
}

.policy-card h2 {
	margin: 0 0 8px;
	color: var(--cec-navy);
	font-family: var(--cec-font-display);
	font-size: 21px;
	line-height: 1.2;
}

.policy-card p {
	margin: 0;
	color: var(--cec-muted);
}

.site-footer {
	position: relative;
	background:
		linear-gradient(135deg, var(--cec-blue), var(--cec-navy));
	color: rgba(255, 255, 255, 0.82);
}

.site-footer::before {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--cec-blue), var(--cec-cyan));
	content: "";
}

.footer-grid {
	display: grid;
	grid-template-columns: 0.72fr 1.08fr 0.72fr;
	gap: 44px;
	padding: 38px 0;
}

.footer-logo {
	width: min(84px, 100%);
	margin: 0;
}

.footer-logo-link {
	display: inline-block;
	width: min(84px, 100%);
	border-radius: var(--cec-radius);
	transition: transform 160ms ease, opacity 160ms ease;
}

.footer-logo-link:hover {
	opacity: 0.9;
	transform: translateY(-1px);
}

.site-footer h2 {
	margin: 0 0 16px;
	color: var(--cec-white);
	font-family: var(--cec-font-display);
	font-size: 16px;
}

.site-footer a,
.site-footer p {
	display: block;
	margin: 0 0 10px;
}

.site-footer a:hover {
	color: var(--cec-white);
	text-decoration: underline;
	text-decoration-color: var(--cec-cyan);
	text-underline-offset: 4px;
}

.site-footer .social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin: 0;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.26);
	border-radius: 4px;
	color: var(--cec-white);
	transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.site-footer .social-link:hover {
	background: var(--cec-white);
	border-color: var(--cec-white);
	color: var(--cec-navy);
	text-decoration: none;
	transform: translateY(-1px);
}

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

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

.footer-langs {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 18px;
}

.footer-legal {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 10px;
	font-size: 13px;
}

.cec-cookie-banner {
	position: fixed;
	left: max(16px, calc((100vw - var(--cec-content-max)) / 2));
	right: max(16px, calc((100vw - var(--cec-content-max)) / 2));
	bottom: 18px;
	z-index: 120;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 18px;
	background: rgba(255, 255, 255, 0.98);
	border: 1px solid rgba(1, 18, 99, 0.18);
	border-radius: var(--cec-radius);
	box-shadow: 0 18px 58px rgba(1, 18, 99, 0.24);
	color: var(--cec-ink);
}

.cec-cookie-banner[hidden] {
	display: none !important;
}

.cec-cookie-banner p {
	margin: 0;
	max-width: 840px;
	font-size: 14px;
	line-height: 1.45;
}

.cec-cookie-banner a {
	color: var(--cec-navy);
	font-weight: 700;
	text-decoration: underline;
	text-decoration-color: var(--cec-cyan);
	text-underline-offset: 3px;
}

.cec-cookie-actions {
	display: flex;
	flex: 0 0 auto;
	gap: 10px;
}

.cec-cookie-button {
	min-height: 42px;
	padding: 10px 16px;
	background: var(--cec-navy);
	border: 1px solid var(--cec-navy);
	border-radius: 4px;
	color: var(--cec-white);
	font-family: var(--cec-font-display);
	font-weight: 700;
	cursor: pointer;
}

.cec-cookie-button--ghost {
	background: var(--cec-white);
	color: var(--cec-navy);
}

body.cec-site .e-contact-buttons,
body.cec-site .cookieadmin_re_consent,
body.cec-site #siteseo-universal-metabox-icon {
	display: none !important;
	visibility: hidden !important;
	pointer-events: none !important;
}

.footer-bottom {
	padding: 18px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.68);
	font-size: 13px;
}

@keyframes cec-ken-burns {
	0% {
		transform: scale(1.16) translate3d(0, 0, 0);
	}

	100% {
		transform: scale(1.24) translate3d(-1.4%, -0.8%, 0);
	}
}

@keyframes cec-fade-up {
	0% {
		opacity: 0;
		transform: translateY(18px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@supports (animation-timeline: view()) {
	.story-card,
	.brand-visual-image,
	.image-card,
	.solution-card,
	.stat {
		animation: cec-fade-up both;
		animation-range: entry 0% cover 28%;
		animation-timeline: view();
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		animation-duration: 1ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 1ms !important;
	}

	.hero__image {
		transform: scale(1.14);
	}

	.sector-track {
		transition: none !important;
	}
}

@media (max-width: 1180px) {
	.primary-nav {
		gap: 12px;
		font-size: 12px;
	}

	.hero h1 {
		font-size: 50px;
	}

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

	.sector-carousel {
		--sector-card: clamp(270px, 46vw, 330px);
	}
}

@media (max-width: 1024px) {
	html {
		scroll-padding-top: 94px;
	}

	main > section[id] {
		scroll-margin-top: 94px;
	}

	.topbar {
		display: none;
	}

	.masthead {
		min-height: 94px;
		padding: 14px max(var(--cec-page-pad), calc((100vw - var(--cec-content-max)) / 2));
	}

	.brand,
	.brand img {
		width: min(214px, calc(100vw - 108px));
	}

	.brand picture {
		width: 100%;
	}

	@media (orientation: portrait) {
		.site-header {
			background: var(--cec-navy);
			border-bottom: 1px solid rgba(178, 190, 234, 0.35);
			box-shadow: 0 18px 44px rgba(1, 18, 99, 0.22);
			-webkit-backdrop-filter: none;
			backdrop-filter: none;
		}

			.masthead {
				min-height: 132px;
				background: transparent;
			}

		.brand {
			width: auto;
			max-width: calc(100vw - 110px);
			padding: 0;
		}

		.brand picture {
			width: auto;
		}

			.brand img {
				width: 86px;
				height: auto;
				max-height: none;
			}

		.menu-toggle {
			background: rgba(255, 255, 255, 0.12);
			border: 1px solid rgba(255, 255, 255, 0.34);
			box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
		}
	}

	.menu-toggle {
		display: flex;
		align-items: center;
		justify-content: center;
		flex: 0 0 44px;
		flex-direction: column;
	}

	.primary-nav {
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		margin-left: 0;
		max-height: calc(100dvh - 94px);
		overflow-y: auto;
		background: var(--cec-white);
		border-top: 1px solid var(--cec-line);
		box-shadow: 0 24px 34px rgba(1, 18, 99, 0.14);
		color: var(--cec-navy);
		font-size: 15px;
		opacity: 0;
		pointer-events: none;
		transform: translateY(-8px);
		transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
		visibility: hidden;
		white-space: normal;
	}

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

	.primary-nav a,
	.primary-nav .nav-cta {
		justify-content: flex-start;
		min-height: auto;
		padding: 17px clamp(18px, 5vw, 32px);
		border-bottom: 1px solid var(--cec-line);
	}

	.primary-nav a::after {
		display: none;
	}

	.primary-nav .nav-cta {
		justify-content: center;
		margin: 10px clamp(18px, 5vw, 32px) 14px;
		border-bottom: 0;
		color: var(--cec-white);
	}

	.mobile-language-nav {
		display: flex;
		flex-wrap: wrap;
		gap: 10px;
		padding: 14px clamp(18px, 5vw, 32px);
		border-bottom: 1px solid var(--cec-line);
	}

	.mobile-language-nav a {
		padding: 7px 10px;
		border: 1px solid var(--cec-line);
		border-radius: 4px;
		color: var(--cec-navy);
	}

	.mobile-language-nav a.is-active {
		background: var(--cec-navy);
		color: var(--cec-white);
	}

	.hero,
	.hero__content {
		min-height: 600px;
	}

	.hero h1 {
		font-size: 40px;
	}

	.hero__text {
		font-size: 18px;
	}

	.story-strip__grid,
	.split,
	.services-layout,
	.approach-layout,
	.contact-layout,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.story-strip__label {
		min-height: auto;
	}

	.story-card {
		border-left: 1px solid var(--cec-line);
		border-bottom: 1px solid var(--cec-line);
	}

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

	.approach-copy,
	.split--about .split__content,
	.services-layout > .section-heading--dark,
	.policy-heading,
	.capability-item,
	.service-row,
	.service-item,
	.approach-step {
		position: static;
	}

	.capability-panel,
	.service-grid,
	.approach-steps {
		display: grid;
		gap: 16px;
		min-height: auto;
		padding-bottom: 0;
	}

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

	.service-row {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
		margin-bottom: 0;
	}

	.capability-item,
	.service-item,
	.approach-step {
		margin-bottom: 0;
	}

	.sector-card > .sector-image {
		width: 76px;
		height: 76px;
	}

	.footer-logo {
		width: 86px;
	}

	.footer-logo-link {
		width: 86px;
	}

	.policy-layout {
		grid-template-columns: 1fr;
	}

	.cec-cookie-banner {
		left: 16px;
		right: 16px;
		flex-direction: column;
		align-items: stretch;
	}

	.cec-cookie-actions {
		justify-content: flex-end;
	}
}

@media (max-width: 640px) {
	:root {
		--cec-page-pad: 20px;
	}

	.container {
		width: min(100% - 40px, var(--cec-content-max));
	}

	.masthead {
		min-height: 132px;
		gap: 10px;
		padding: 12px var(--cec-page-pad);
	}

	.brand {
		width: auto;
		max-width: calc(100vw - 92px);
	}

	.brand img {
		width: 86px;
		height: auto;
		max-height: none;
	}

	.menu-toggle {
		width: 42px;
		height: 42px;
		flex-basis: 42px;
	}

	.primary-nav {
		max-height: calc(100dvh - 96px);
		font-size: 14px;
	}

	.section,
	.section--split {
		padding: 58px 0;
	}

	.hero,
	.hero__content {
		min-height: 620px;
	}

	.hero__content {
		padding: 70px 0;
	}

	.hero h1 {
		font-size: 34px;
		line-height: 1.12;
	}

	.button-row,
	.button {
		width: 100%;
	}

	.story-card {
		min-height: auto;
		padding: 22px;
	}

	.story-strip__grid {
		margin-top: 0;
	}

	.story-strip__label {
		font-size: 25px;
	}

	.split__content h2,
	.section-heading h2,
	.contact-copy h2,
	.approach-copy h2,
	.page-content h1 {
		font-size: 36px;
	}

	.split--about .split__content {
		padding-inline: 0;
	}

	.image-card-grid,
	.service-grid,
	.form-grid {
		grid-template-columns: 1fr;
	}

	.sector-carousel {
		--sector-gap: 14px;
		--sector-card: min(286px, calc(100vw - 58px));
	}

	.sector-card {
		flex-basis: var(--sector-card);
	}

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

	.contact-form {
		padding: 22px;
	}

	.approach-step {
		grid-template-columns: 1fr;
	}

	.cec-cookie-actions {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	.cec-cookie-button {
		width: 100%;
	}
}
