/* ── Reset & base ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
	font-family: "nexa", sans-serif;
	color: var(--color-dark-navy);
	background: var(--color-white);
}

/* ── Footer slide-up reveal ────────────────────────────────────────────── */
#page-wrap {
	position: relative;
	z-index: 200;
	background: var(--color-white);
}

#footer-reveal {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	background-color: var(--color-dark-navy) !important;
}

#footer-reveal::after {
	content: '';
	position: absolute;
	top: -50px;
	left: 0;
	width: 100%;
	height: 50px;
	background: var(--color-dark-navy);
	pointer-events: none;
}

@media ( max-width: 800px ) {
	#footer-reveal {
		position: relative;
		bottom: auto;
		left: auto;
		width: auto;
	}
}

/* ── Typography ────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6, p {
	font-family: "nexa", sans-serif;
	font-style: normal;
}

h1 {
	font-size: 80px;
	font-weight: 500;
	line-height: 100%;
}

h2 {
	font-size: 65px;
	font-weight: 500;
	line-height: 100%;
}

h3 {
	font-size: 40px;
	font-weight: 400;
	line-height: 108%;
}

h4 {
	font-size: 32px;
	font-weight: 500;
	line-height: 100%;
}

h5 {
	font-size: 24px;
	font-weight: 400;
	line-height: normal;
}

p {
	font-size: 18px;
	font-weight: 400;
	line-height: normal;
}

h6 {
	font-size: 16px;
	font-weight: 300;
	line-height: 120%;
}

@media ( max-width: 900px ) {
	h1 {
		font-size: 50px;
		font-weight: 500;
	}

	h2 {
		font-size: 38px;
		line-height: 112%;
	}

	h3 {
		font-size: 26px;
	}

	h4 {
		font-size: 22px;
	}

	h5 {
		font-size: 16px;
	}

	p {
		font-size: 16px;
	}
}

a { color: var(--color-blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Off-canvas ────────────────────────────────────────────────────────── */
.offcanvas {
	position: fixed;
	inset: 0;
	z-index: 999;
	pointer-events: none;
	visibility: hidden;
}

.offcanvas.is-open {
	pointer-events: all;
	visibility: visible;
}

.offcanvas__overlay {
	position: absolute;
	inset: 0;
	background: rgba(36, 204, 207, 0.95);
	opacity: 0;
	transition: opacity 0.35s ease;
	cursor: pointer;
}

.offcanvas.is-open .offcanvas__overlay {
	opacity: 1;
}

.offcanvas__panel {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 42%;
	background: var(--color-dark-navy);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 60px 60px 60px 80px;
	transform: translateX(100%);
	transition: transform 0.35s ease;
}

.offcanvas.is-open .offcanvas__panel {
	transform: translateX(0);
}


.offcanvas__menu {
	list-style: none;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 8px;
}

.offcanvas__menu-wrap--mobile {
	display: none;
}

.offcanvas__menu a {
	font-family: "nexa", sans-serif;
	font-size: 48px;
	font-weight: 400;
	color: var(--color-white);
	text-decoration: none;
	text-transform: none;
	line-height: 1.2;
	transition: color 0.2s;
}

.offcanvas__menu a:hover,
.offcanvas__menu .current-menu-item > a {
	color: var(--color-turquoise);
	text-decoration: underline;
	text-underline-offset: 6px;
}

/* ── Header ────────────────────────────────────────────────────────────── */
#site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 10000;
	background: transparent;
	padding: 32px 32px 16px;
}

.header-inner {
	padding: 0 28px;
	display: flex;
	align-items: center;
	gap: 2rem;
	background: var(--color-white);
	border-radius: 60px;
	box-shadow: 0 4px 24px rgba(1, 33, 61, 0.14);
	height: 72px;
}

/* Logo */
.site-logo { flex-shrink: 0; }
.site-logo img { height: 48px; width: auto; display: block; }
.site-logo__link--mobile { display: none; }
.site-logo__text {
	color: var(--color-dark-navy);
	font-size: 1.5rem;
	font-weight: 500;
	text-decoration: none;
}

/* Primary nav */
#site-nav { flex: 1; }

.nav-menu {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 2rem;
}

.nav-menu a {
	color: var(--color-dark-navy);
	font-family: "nexa", sans-serif;
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
	white-space: nowrap;
}

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

.nav-menu .current-menu-item > a,
.nav-menu .current-menu-ancestor > a {
	color: var(--color-blue);
	text-decoration: underline;
}

/* Dropdown */
.nav-menu .menu-item-has-children {
	position: relative;
}

.nav-menu .menu-item-has-children > a::after {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg) translateY(-2px);
	margin-left: 6px;
	vertical-align: middle;
	transition: transform 0.2s ease;
}

.nav-menu .menu-item-has-children:hover > a::after {
	transform: rotate(225deg) translateY(-2px);
}

.nav-menu .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: transparent;
	list-style: none;
	min-width: 220px;
	z-index: 100;
	padding-top: 16px;
}

.nav-menu .sub-menu::before {
	content: '';
	position: absolute;
	inset: 16px 0 0;
	background: var(--color-white);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
	border-radius: 4px;
	z-index: -1;
}

.nav-menu .menu-item-has-children:hover > .sub-menu {
	display: block;
}

.nav-menu .sub-menu li {
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-menu .sub-menu li:last-child {
	border-bottom: none;
}

.nav-menu .sub-menu a,
.nav-menu .sub-menu a:visited {
	display: block;
	padding: 14px 20px;
	color: var(--color-grey) !important;
	font-size: 15px;
	font-weight: 400;
	white-space: nowrap;
}

.nav-menu .sub-menu a:hover {
	color: var(--color-blue) !important;
}

/* Header action buttons */
.header-actions {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
}

.header-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	border-radius: 60px;
	font-family: "nexa", sans-serif;
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	text-transform: none;
	white-space: nowrap;
	transition: opacity 0.2s;
}

.header-btn:hover { opacity: 0.85; text-decoration: none; }

.header-btn--login {
	background: var(--color-turquoise);
	color: var(--color-dark-navy);
}

.header-btn--store {
	background: var(--color-grey);
	color: var(--color-white);
}

.header-icon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--color-dark-navy);
	color: var(--color-white);
	border: none;
	cursor: pointer;
	text-decoration: none;
	transition: opacity 0.2s;
	flex-shrink: 0;
}

.header-icon-btn:hover { opacity: 0.85; }

.js-offcanvas-toggle .icon-close { display: none; }
.js-offcanvas-toggle .icon-menu  { display: block; }

.offcanvas.is-open ~ * .js-offcanvas-toggle .icon-menu,
body.offcanvas-open .js-offcanvas-toggle .icon-menu  { display: none; }
.offcanvas.is-open ~ * .js-offcanvas-toggle .icon-close,
body.offcanvas-open .js-offcanvas-toggle .icon-close { display: block; }

/* ── Feature Banner ────────────────────────────────────────────────────── */
.feature-banner {
	position: relative;
	height: calc(100vh - 32px);
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
	border-radius: 20px;
	margin: 16px;
}

.feature-banner__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	background-size: cover;
	background-position: center;
}

video.feature-banner__bg {
	object-fit: cover;
}

.feature-banner__bg--video {
	overflow: hidden;
}

.feature-banner__bg--video iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 177.77vh;
	height: 56.25vw;
	min-width: 100%;
	min-height: 100%;
	transform: translate(-50%, -50%);
	pointer-events: none;
	border: 0;
}

.feature-banner__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		160deg,
		rgba(1, 33, 61, 0.55) 0%,
		rgba(17, 114, 186, 0.45) 100%
	);
}

.feature-banner__overlay--dark {
	background: rgba(6, 61, 101, 0.7);
	mix-blend-mode: multiply;
}

@keyframes fb-fade-in {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.feature-banner__content {
	position: relative;
	z-index: 2;
	padding: 0 60px 80px;
}

.feature-banner__heading {
	width: 70%;
}

.feature-banner__heading {
	color: var(--color-white);
	margin-bottom: 40px;
	opacity: 0;
	animation: fb-fade-in 0.8s ease forwards;
	animation-delay: 0.3s;
}

.feature-banner__heading .highlight {
	color: var(--color-turquoise);
}

.feature-banner__ctas {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	opacity: 0;
	animation: fb-fade-in 0.8s ease forwards;
	animation-delay: 0.75s;
}

/* ── Shared button styles ──────────────────────────────────────────────── */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 28px;
	border-radius: 60px;
	font-family: "nexa", sans-serif;
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
	white-space: nowrap;
	transition: opacity 0.2s;
}

.btn:hover { text-decoration: none; }
.btn { transition: background 0.25s ease, color 0.25s ease; }

.btn--turquoise {
	background: var(--color-turquoise);
	color: var(--color-dark-navy);
}
.btn--turquoise:hover {
	background: var(--color-dark-navy);
	color: var(--color-turquoise);
}

.btn--navy {
	background: var(--color-grey);
	color: var(--color-white);
}
.btn--navy:hover {
	opacity: 0.8;
}

/* ── Feature Banner ticker ─────────────────────────────────────────────── */
.feature-banner__ticker {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 2;
	opacity: 0;
	animation: fb-fade-in 0.8s ease forwards;
	animation-delay: 1.2s;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 18px 60px;
	background: rgba(1, 33, 61, 0.5);
	backdrop-filter: blur(8px);
	color: var(--color-white);
	font-size: 15px;
	font-weight: 400;
}

.feature-banner__ticker-icon {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.feature-banner__ticker-icon img {
	height: 24px;
	width: auto;
}

/* ── Flexbox CTAs ──────────────────────────────────────────────────────── */
.flexbox-ctas {
	padding: 0;
}

.flexbox-ctas__box--has-bg {
	position: relative;
	overflow: hidden;
}

.flexbox-ctas__box--has-bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), var(--box-bg);
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 0;
}

.flexbox-ctas__box--has-bg:hover::after {
	opacity: 1;
}

.flexbox-ctas__box--has-bg > * {
	position: relative;
	z-index: 1;
}

.flexbox-ctas__box--has-bg h4 {
	transition: color 0.4s ease;
}

.flexbox-ctas__box--has-bg:hover h4 {
	color: var(--color-white) !important;
}

.flexbox-ctas--has-intro {
	padding-top: 200px;
}

.flexbox-ctas__intro {
	padding: 0 60px 100px;
}

.flexbox-ctas__heading {
	color: var(--color-dark-navy);
	padding-bottom: 20px;
}

.flexbox-ctas__subheading {
	color: var(--color-dark-navy);
	font-weight: 400;
	width: 60%;
}

.flexbox-ctas--pull-up {
	margin-top: -190px;
	position: relative;
	z-index: 10;
}

.flexbox-ctas__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr) 2fr;
}

.flexbox-ctas__grid--boxes-right {
	grid-template-columns: 2fr repeat(3, 1fr);
}

.flexbox-ctas__grid--boxes-right .flexbox-ctas__text {
	padding: 36px 40px 36px 32px;
}

.flexbox-ctas__box {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 36px 32px 32px;
	min-height: 380px;
	text-decoration: none;
	transition: opacity 0.2s;
}

.flexbox-ctas__box:hover { text-decoration: none; }

.flexbox-ctas__box--turquoise { background: var(--color-turquoise); }
.flexbox-ctas__box--blue      { background: var(--color-blue); }
.flexbox-ctas__box--dark-navy { background: var(--color-dark-navy); }

.flexbox-ctas__box h4 {
	margin: 0;
}

.flexbox-ctas__box--turquoise h4 { color: var(--color-dark-navy); }
.flexbox-ctas__box--blue h4,
.flexbox-ctas__box--dark-navy h4 { color: var(--color-white); }


.flexbox-ctas__box-icon img {
	height: 48px;
	width: auto;
}

/* 4th column — text + CTA */
.flexbox-ctas__text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 32px;
	padding: 36px 60px 36px 40px;
}

.flexbox-ctas__text p {
	color: var(--color-dark-navy);
}

.btn--dark-navy {
	background: var(--color-dark-navy);
	color: var(--color-white);
	align-self: flex-start;
}
.btn--dark-navy:hover {
	background: var(--color-white);
	color: var(--color-dark-navy);
}

/* ── Service Feature Light ─────────────────────────────────────────────── */
.sfl {
	position: relative;
	padding: 100px 60px;
}

.sfl--bg-white      { background: var(--color-white); }
.sfl--bg-light-grey { background: var(--color-light-grey); }
.sfl--dark          { background: var(--color-dark-navy); }

.sfl--dark .sfl__tagline,
.sfl--dark .sfl__subheading,
.sfl--dark .sfl__desc { color: var(--color-white); }

.sfl--dark .sfl__heading { color: var(--color-turquoise); }

.sfl--dark { padding: 200px 60px 80px; }

.sfl--dark .sfl__media,
.sfl--dark .sfl__footer { margin-left: 0; }

.sfl__after-image {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-30%);
	height: 40%;
	z-index: 9999;
	pointer-events: none;
}

.sfl__after-image img {
	height: 100%;
	width: auto;
	display: block;
}

.sfl__container {
	max-width: 100%;
	display: flex;
	flex-direction: column;
	gap: 48px;
}

/* Intro */
.sfl__tagline {
	color: var(--color-dark-navy);
	font-size: 14px;
	font-weight: 400;
	text-transform: none;
	margin-bottom: 16px;
}

.sfl__heading {
	width: 70%;
	color: var(--color-blue);
	font-weight: 600;
	margin-bottom: 24px;
}

.sfl__subheading {
	width: 60%;
	padding: 20px 0 50px 0;
	color: var(--color-dark-navy);
	font-weight: 400;
}

/* Media */
.sfl__media-wrap {
	position: relative;
}

.sfl__media {
	border-radius: 16px;
	overflow: hidden;
	width: calc(80% + 44px);
	margin-left: auto;
	margin-right: -44px;
}

.sfl__image,
.sfl__video {
	width: 100%;
	display: block;
	object-fit: cover;
	aspect-ratio: 21 / 9;
}

/* Callout boxes */
.sfl__callouts {
	display: flex;
	gap: 16px;
	width: 75%;
	margin-left: auto;
	margin-top: -140px;
}

.sfl__callout {
	flex: 1;
	padding: 40px 32px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	border-radius: 20px;
	min-height: 280px;
	gap: 16px;
}

.sfl__callout-desc {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
}

.sfl__callout--dark-navy .sfl__callout-desc { color: rgba(255, 255, 255, 0.8); }
.sfl__callout--turquoise .sfl__callout-desc { color: var(--color-dark-navy); }
.sfl__callout--blue .sfl__callout-desc      { color: rgba(255, 255, 255, 0.8); }

.sfl__callout h2 {
	margin: 0;
	font-size: 48px;
	font-weight: 400;
	line-height: 108%;
}

.sfl__callout--dark-navy { background: var(--color-dark-navy); }
.sfl__callout--dark-navy h2 { color: var(--color-white); }

.sfl__callout--turquoise { background: var(--color-turquoise); }
.sfl__callout--turquoise h2 { color: var(--color-dark-navy); }

.sfl__callout--blue { background: var(--color-blue); }
.sfl__callout--blue h2 { color: var(--color-white); }

/* Footer row */
.sfl__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 48px;
	width: 75%;
	margin-left: auto;
}

.sfl__desc {
	flex: 1;
	color: var(--color-dark-navy);
}

.sfl__ctas {
	display: flex;
	gap: 12px;
	flex-shrink: 0;
}

/* ── SFL animations ────────────────────────────────────────────────────── */
.sfl__tagline,
.sfl__heading,
.sfl__subheading,
.sfl__media,
.sfl__callout,
.sfl__footer {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.85s ease, transform 0.85s ease;
}

.sfl__tagline.is-visible,
.sfl__heading.is-visible,
.sfl__subheading.is-visible,
.sfl__media.is-visible,
.sfl__callout.is-visible,
.sfl__footer.is-visible {
	opacity: 1;
	transform: none;
}

/* ── Logo Banner ───────────────────────────────────────────────────────── */
.logo-banner {
	background: var(--color-white);
	border-top: 1px solid rgba(0, 22, 63, 0.12);
	border-bottom: 1px solid rgba(0, 22, 63, 0.12);
}

.logo-banner__inner {
	display: flex;
	align-items: center;
	min-height: 120px;
}

.logo-banner__text {
	flex-shrink: 0;
	width: 450px;
	padding: 32px 40px 32px 60px;
	border-right: 1px solid rgba(0, 22, 63, 0.12);
}

.logo-banner__text p {
	color: var(--color-dark-navy);
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 135%;
}

.logo-banner__slider-wrap {
	flex: 1;
	overflow: hidden;
}

.logo-banner__slider {
	display: flex;
	align-items: center;
	gap: 60px;
	width: max-content;
	animation: logo-marquee 25s linear infinite;
}

.logo-banner__logo {
	flex-shrink: 0;
}

.logo-banner__logo img {
	height: 40px;
	width: auto;
	display: block;
}

@keyframes logo-marquee {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

/* ── Online Services ───────────────────────────────────────────────────── */
.online-services {
	padding: 100px 16px;
}

.online-services--bg-dark-navy { background: var(--color-dark-navy); }
.online-services--bg-light-grey { background: var(--color-light-grey); }

.online-services--bg-light-grey .online-services__heading,
.online-services--bg-light-grey .online-services__desc,
.online-services--bg-light-grey .online-services__label { color: var(--color-dark-navy); }

.online-services--bg-light-grey .online-services__label { opacity: 1; }

.online-services--full-height {
	min-height: 100vh;
	display: flex;
	align-items: center;
}

.online-services__container {
	max-width: 1300px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 48px;
	text-align: center;
}

.online-services__heading {
	color: var(--color-white);
	font-size: 42px;
}

.online-services--full-height .online-services__heading {
	margin-top: 60px;
}

.online-services__desc {
	color: var(--color-white);
	max-width: 600px;
	padding-bottom: 30px;
}

.online-services__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 48px;
	width: 100%;
}

.online-services__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.online-services__label {
	color: var(--color-white);
	font-size: 14px;
	font-weight: 400;
	opacity: 0.7;
	text-transform: none;
}

.online-services__item img {
	height: 56px;
	width: auto;
	display: block;
	margin-bottom: 20px;
}

.online-services__item:nth-child(5) img {
	height: 80px;
}

.online-services__item-btn {
	margin-top: auto;
}

.online-services__item-btn:hover {
	background: var(--color-turquoise);
	color: var(--color-dark-navy);
	opacity: 0.85;
}

.online-services__cta-heading {
	color: var(--color-white);
	font-size: 22px;
	padding-top: 30px;
}

.online-services--bg-light-grey .online-services__cta-heading {
	color: var(--color-dark-navy);
}

.online-services__ctas {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

/* ── Footer ────────────────────────────────────────────────────────────── */
#site-footer {
	background: var(--color-dark-navy);
}

.footer-main {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
	gap: 48px;
	padding: 80px 60px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-col--logo img {
	height: 60px;
	width: auto;
	display: block;
}

.footer-col__label {
	color: var(--color-turquoise);
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 136%;
	margin-bottom: 20px;
	text-transform: none;
}

.footer-menu {
	list-style: none;
}

.footer-menu li { margin-bottom: 10px; }

.footer-menu a {
	color: var(--color-white);
	font-size: 15px;
	font-weight: 400;
	text-decoration: none;
	text-transform: none;
	opacity: 0.85;
	transition: opacity 0.2s;
}

.footer-menu a:hover { opacity: 1; }

.footer-contact {
	list-style: none;
}

.footer-contact li {
	color: var(--color-white);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.5;
	margin-bottom: 10px;
	opacity: 0.85;
}

.footer-contact a {
	color: var(--color-white);
	text-decoration: none;
	opacity: 1;
}

.footer-contact a:hover { text-decoration: underline; }

.footer-contact__address {
	margin-top: 12px;
	line-height: 1.7;
}

/* Bottom bar */
.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 24px 60px;
}

.footer-bottom__left {
	display: flex;
	align-items: center;
	gap: 0;
	color: rgba(255, 255, 255, 0.6);
	font-size: 14px;
}

.footer-legal-menu {
	display: flex;
	list-style: none;
}

.footer-legal-menu li::before {
	content: '|';
	margin: 0 12px;
	opacity: 0.4;
}

.footer-legal-menu a {
	color: rgba(255, 255, 255, 0.6);
	font-size: 14px;
	text-decoration: none;
}

.footer-legal-menu a:hover { color: var(--color-white); }

.footer-bottom__social {
	display: flex;
	align-items: center;
	gap: 12px;
}

.footer-social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: var(--color-white);
	text-decoration: none;
	transition: border-color 0.2s, color 0.2s;
}

.footer-social-icon:hover {
	border-color: var(--color-turquoise);
	color: var(--color-turquoise);
}

/* ── Split Column ──────────────────────────────────────────────────────── */
.split-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	height: 100vh;
	margin: 0;
	border-radius: 0;
	overflow: hidden;
}

.split-col--bg-white      { background: var(--color-white); }
.split-col--bg-light-grey { background: var(--color-light-grey); }
.split-col--bg-dark-navy  { background: var(--color-dark-navy); }

.split-col--bg-dark-navy .split-col__heading { color: var(--color-turquoise); }

.split-col--bg-dark-navy .split-col__desc,
.split-col--bg-dark-navy .split-col__desc p,
.split-col--bg-dark-navy .split-col__breadcrumb,
.split-col--bg-dark-navy .split-col__breadcrumb a { color: var(--color-white); }

.split-col--bg-dark-navy .split-col__ticker {
	background: var(--color-white);
	color: var(--color-dark-navy);
}

.split-col__left {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 32px;
	padding: 120px 50px 80px 60px;
}

.split-col--padded {
	height: auto;
	padding: 100px 0;
}

.split-col--padded .split-col__right {
	padding: 100px 60px 100px 20px;
}

.split-col--padded .split-col__heading {
	font-size: 50px;
	font-style: normal;
	font-weight: 400;
	line-height: 108%;
}

.split-col--reversed {
	direction: rtl;
}

.split-col--reversed .split-col__left,
.split-col--reversed .split-col__right {
	direction: ltr;
}

.split-col--reversed .split-col__media {
	inset: 16px 0 16px 16px;
}

.split-col__breadcrumb {
	font-size: 14px;
	color: var(--color-dark-navy);
	opacity: 0.5;
	text-transform: none;
}

.split-col__breadcrumb a {
	color: var(--color-dark-navy);
	text-decoration: none;
}

.split-col__breadcrumb a:hover { text-decoration: underline; }

.split-col__heading {
	font-size: 55px;
	font-weight: 600;
	color: var(--color-dark-navy);
}

.split-col__desc {
	color: var(--color-dark-navy);
	max-width: 540px;
}

.split-col__desc p { color: var(--color-dark-navy); }
.split-col__desc p + p { margin-top: 1em; }
.split-col__desc br { display: block; content: ''; margin-top: 0.5em; }

.split-col__ctas {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

/* Right — image */
.split-col__right {
	position: relative;
	padding: 0;
	height: 100%;
	overflow: hidden;
}

.split-col__media {
	position: absolute;
	inset: 16px 16px 16px 0;
	border-radius: 20px;
	overflow: hidden;
}

.split-col__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.split-col__ticker {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 18px 28px;
	background: rgba(1, 33, 61, 0.85);
	backdrop-filter: blur(8px);
	color: var(--color-white);
	font-size: 15px;
	font-weight: 400;
}

.split-col__ticker-icon {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.split-col__ticker-icon img {
	height: 24px;
	width: auto;
	border-radius: 0;
}

/* ── Circle Image + Text ───────────────────────────────────────────────── */
.cit {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	background: var(--color-white);
	padding: 100px 0;
	overflow: hidden;
}

.cit--bg-dark-navy { background: var(--color-dark-navy); }

.cit--bg-dark-navy h3,
.cit--bg-dark-navy .cit__body,
.cit--bg-dark-navy .cit__body p,
.cit--bg-dark-navy .cit__text-col p { color: var(--color-white); }

.cit__image-col {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-left: 0;
}

.cit__image-wrap {
	position: relative;
	width: 520px;
	height: 520px;
	margin-left: -60px;
}

.cit__image-wrap::before {
	content: '';
	position: absolute;
	width: 260px;
	height: 260px;
	background: var(--color-blue);
	border-radius: 50%;
	top: -40px;
	right: -20px;
	z-index: 0;
}

.cit__image {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
	display: block;
}

.cit__text-col {
	padding: 0 80px 0 60px;
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.cit__text-col p {
	color: var(--color-dark-navy);
}

.cit__body p + p {
	margin-top: 1em;
}

.cit__ctas {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	padding-top: 12px;
}

/* ── Callout Big Text ──────────────────────────────────────────────────── */
.callout-big-text {
	position: relative;
	padding: 100px 60px;
	overflow: hidden;
}

.callout-big-text--bg-white      { background: var(--color-white); }
.callout-big-text--bg-light-grey  { background: var(--color-light-grey); }
.callout-big-text--no-pb          { padding-bottom: 0; }

.callout-big-text__content {
	position: relative;
	z-index: 2;
	max-width: 65%;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.callout-big-text__heading {
	color: var(--color-dark-navy);
}

.callout-big-text__ctas {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.callout-big-text__after-image {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	z-index: 1;
	pointer-events: none;
}

.callout-big-text__after-image img {
	height: 80%;
	max-height: 500px;
	width: auto;
	display: block;
}

/* ── Three Fancy Boxes ─────────────────────────────────────────────────── */
.three-fancy-boxes {
	padding: 100px 60px;
}

.three-fancy-boxes--bg-white      { background: var(--color-white); }
.three-fancy-boxes--bg-light-grey  { background: var(--color-light-grey); }

.three-fancy-boxes__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.three-fancy-boxes__card {
	display: flex;
	flex-direction: column;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid var(--color-light-grey);
}

.three-fancy-boxes__image {
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.three-fancy-boxes__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.three-fancy-boxes__body {
	flex: 1;
	background: var(--color-dark-navy);
	padding: 36px 32px 40px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.three-fancy-boxes__heading {
	color: var(--color-white);
	font-size: 24px;
	font-weight: 400;
}

.three-fancy-boxes__desc,
.three-fancy-boxes__desc p {
	color: var(--color-white);
	font-size: 15px;
	line-height: 1.7;
	opacity: 0.85;
}

.three-fancy-boxes__desc p + p {
	margin-top: 1em;
}

/* ── Board of Directors ────────────────────────────────────────────────── */
.board {
	background: var(--color-light-grey);
	padding: 100px 60px;
}

.board__container {
	max-width: 1300px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}

.board__heading {
	color: var(--color-dark-navy);
	text-align: center;
}

.board__intro {
	color: var(--color-dark-navy);
	text-align: center;
	max-width: 640px;
}

.board__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 48px;
	width: 100%;
	margin-top: 48px;
}

.board__card {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding-bottom: 50px;
}

.board__image {
	width: 80%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 16px;
	margin-bottom: 8px;
}

.board__card:nth-child(3n+1) .board__image { background: var(--color-turquoise); }
.board__card:nth-child(3n+2) .board__image { background: var(--color-dark-navy); }
.board__card:nth-child(3n+3) .board__image { background: var(--color-grey); }

.board__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.board__name {
	color: var(--color-dark-navy);
}

.board__position {
	color: var(--color-blue);
	font-size: 16px;
	font-weight: 500;
}

.board__desc,
.board__desc p {
	color: var(--color-dark-navy);
	font-size: 15px;
	line-height: 1.7;
}

.board__desc p + p {
	margin-top: 1em;
}

/* ── Testimonials Feed ─────────────────────────────────────────────────── */
.t-feed {
	padding: 80px 60px;
	overflow: hidden;
}

.t-feed--bg-light-grey { background: var(--color-light-grey); }
.t-feed--bg-white      { background: var(--color-white); }

.t-feed__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 48px;
}

.t-feed__heading {
	color: var(--color-dark-navy);
}

.t-feed__nav {
	display: flex;
	gap: 12px;
}

.t-feed__prev,
.t-feed__next {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: none;
	background: transparent;
	color: var(--color-dark-navy);
	cursor: pointer;
	transition: color 0.2s;
}

.t-feed__prev:hover,
.t-feed__next:hover {
	color: var(--color-turquoise);
}

.t-feed__track {
	display: flex;
	gap: 32px;
}

.t-feed__card {
	flex: 0 0 calc(33.333% - 22px);
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.t-feed__image {
	width: 150px;
	height: 150px;
	flex-shrink: 0;
	align-self: flex-start;
	overflow: hidden;
	border-radius: 50%;
	background: var(--color-white);
}

.t-feed__image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	padding: 16px;
}

.t-feed__stars {
	display: flex;
	gap: 4px;
	color: var(--color-blue);
}

.t-feed__name {
	color: var(--color-dark-navy);
	font-size: 18px;
	font-weight: 500;
}

.t-feed__quote {
	color: var(--color-dark-navy);
	font-size: 15px;
	line-height: 1.7;
}

/* ── Coloured Stat Boxes ───────────────────────────────────────────────── */
.csb {
	background: linear-gradient(to bottom, var(--color-dark-navy) 50%, var(--color-white) 50%);
	padding: 80px 60px;
}

.csb__row {
	display: flex;
	gap: 24px;
	max-width: 1100px;
	margin: 0 auto;
}

.csb__box {
	flex: 1;
	padding: 40px 32px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	border-radius: 20px;
	min-height: 280px;
	gap: 16px;
}

.csb__heading {
	font-size: 48px;
	font-weight: 400;
	line-height: 108%;
	text-transform: none;
	margin: 0;
}

.csb__desc {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
}

.csb__box--grey      { background: var(--color-grey); }
.csb__box--turquoise { background: var(--color-turquoise); }
.csb__box--blue      { background: var(--color-blue); }
.csb__box--dark-navy { background: rgba(255,255,255,0.08); }

.csb__box--grey .csb__heading,
.csb__box--turquoise .csb__heading { color: var(--color-dark-navy); }

.csb__box--blue .csb__heading,
.csb__box--dark-navy .csb__heading { color: var(--color-white); }

.csb__box--grey .csb__desc,
.csb__box--turquoise .csb__desc { color: var(--color-dark-navy); }

.csb__box--blue .csb__desc,
.csb__box--dark-navy .csb__desc { color: rgba(255,255,255,0.8); }

/* ── Enquiry Form ──────────────────────────────────────────────────────── */
.enquiry-form {
	background: var(--color-dark-navy);
	padding: 100px 80px;
}

.enquiry-form--bg-white {
	background: var(--color-white);
}

.enquiry-form--bg-white .enquiry-form__heading,
.enquiry-form--bg-white .enquiry-form__desc {
	color: var(--color-dark-navy);
}

.enquiry-form--two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
}

.enquiry-form--one-col {
	display: flex;
	justify-content: center;
}

.enquiry-form__center {
	width: 80%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
	text-align: center;
}

.enquiry-form__center .enquiry-form__desc {
	max-width: 640px;
}

.enquiry-form__shortcode {
	width: 100%;
	text-align: left;
}

.enquiry-form__left {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 32px;
}

.enquiry-form__heading {
	color: var(--color-white);
	font-size: 40px;
	font-weight: 400;
	line-height: 108%;
}

.enquiry-form__heading .highlight {
	color: var(--color-turquoise);
}

.enquiry-form__desc {
	color: var(--color-white);
	opacity: 0.85;
	font-size: 17px;
	line-height: 1.7;
	max-width: 480px;
}

.enquiry-form__right {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* Ninja Forms — enquiry (#nf-form-2-cont) */
#nf-form-2-cont .nf-form-content {
	padding: 0;
}

#nf-form-2-cont .nf-form-fields-required,
#nf-form-2-cont .nf-error-msg,
#nf-form-2-cont .ninja-forms-req-symbol {
	display: none !important;
}


#nf-form-2-cont .nf-field-label label {
	color: var(--color-white);
	font-size: 15px;
	font-weight: 500;
	margin-bottom: 6px;
	display: block;
}

#nf-form-2-cont input[type="text"],
#nf-form-2-cont input[type="email"],
#nf-form-2-cont input[type="tel"],
#nf-form-2-cont select {
	width: 100%;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 100px;
	padding: 14px 20px;
	color: var(--color-white);
	font-family: "nexa", sans-serif;
	font-size: 15px;
	outline: none;
	appearance: none;
	-webkit-appearance: none;
}

#nf-form-2-cont select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 20px center;
	padding-right: 48px;
}

#nf-form-2-cont input::placeholder,
#nf-form-2-cont select option[value=""] {
	color: rgba(255, 255, 255, 0.45);
}

#nf-form-2-cont select option {
	background: var(--color-dark-navy);
	color: var(--color-white);
}

#nf-form-2-cont input[type="button"],
#nf-form-2-cont input[type="submit"],
#nf-form-2-cont button[type="submit"] {
	background: var(--color-turquoise);
	color: var(--color-dark-navy);
	border: none;
	border-radius: 100px;
	padding: 14px 32px;
	font-family: "nexa", sans-serif;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s;
}

#nf-form-2-cont input[type="button"]:hover,
#nf-form-2-cont input[type="submit"]:hover,
#nf-form-2-cont button[type="submit"]:hover {
	background: var(--color-white);
}

/* Ninja Forms — online services enquiry (#nf-form-3-cont) */
#nf-form-3-cont .nf-form-content {
	padding: 0;
}

#nf-form-3-cont .nf-form-fields-required,
#nf-form-3-cont .nf-error-msg,
#nf-form-3-cont .ninja-forms-req-symbol {
	display: none !important;
}

#nf-form-3-cont .nf-field-label label {
	color: var(--color-white);
	font-size: 15px;
	font-weight: 500;
	margin-bottom: 6px;
	display: block;
}

#nf-form-3-cont input[type="text"],
#nf-form-3-cont input[type="email"],
#nf-form-3-cont input[type="tel"],
#nf-form-3-cont select,
#nf-form-3-cont textarea {
	width: 100%;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 100px;
	padding: 14px 20px;
	color: var(--color-white);
	font-family: "nexa", sans-serif;
	font-size: 15px;
	outline: none;
	appearance: none;
	-webkit-appearance: none;
}

#nf-form-3-cont textarea {
	border-radius: 20px;
	resize: vertical;
	min-height: 120px;
}

#nf-form-3-cont select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 20px center;
	padding-right: 48px;
}

#nf-form-3-cont input::placeholder,
#nf-form-3-cont textarea::placeholder {
	color: rgba(255, 255, 255, 0.45);
}

#nf-form-3-cont select option {
	background: var(--color-dark-navy);
	color: var(--color-white);
}

#nf-form-3-cont .nf-field-container {
	margin-bottom: 16px !important;
}

#nf-form-3-cont .submit-container {
	margin-bottom: 0 !important;
	padding-top: 8px;
}

#nf-form-3-cont input[type="button"],
#nf-form-3-cont input[type="submit"],
#nf-form-3-cont button[type="submit"] {
	background: var(--color-white);
	color: var(--color-dark-navy);
	border: none;
	border-radius: 100px;
	padding: 14px 32px;
	font-family: "nexa", sans-serif;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}

#nf-form-3-cont input[type="button"]:hover,
#nf-form-3-cont input[type="submit"]:hover,
#nf-form-3-cont button[type="submit"]:hover {
	background: var(--color-turquoise);
}

/* ── Service Tiles ─────────────────────────────────────────────────────── */
.service-tiles {
	background: var(--color-dark-navy);
	padding: 100px 60px;
}

.service-tiles__container {
	max-width: 1300px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 48px;
}

.service-tiles__heading {
	color: var(--color-white);
	text-align: center;
}

.service-tiles__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	width: 80%;
}

.service-tile {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	background-size: cover;
	background-position: center;
	text-decoration: none;
	display: block;
	aspect-ratio: 4 / 3;
}

.service-tile::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 7px;
	background: linear-gradient(90deg, #24CCCF 0%, #1273BA 100%);
	z-index: 4;
	border-radius: 16px 16px 0 0;
}

.service-tile__white {
	position: absolute;
	inset: 0;
	background: var(--color-white);
	transition: opacity 0.4s ease;
	z-index: 1;
	border-radius: 16px;
}

.service-tile__dark {
	position: absolute;
	inset: 0;
	background: rgba(5, 20, 50, 0.65);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 2;
	border-radius: 16px;
}

.service-tile:hover .service-tile__white { opacity: 0; }
.service-tile:hover .service-tile__dark  { opacity: 1; }

.service-tile__content {
	position: absolute;
	inset: 0;
	z-index: 3;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 32px;
}

.service-tile__icon img {
	height: 56px;
	width: auto;
	display: block;
}

.service-tile__title {
	color: var(--color-dark-navy);
	font-size: 22px;
	font-weight: 400;
	transition: color 0.4s ease;
}

.service-tile:hover .service-tile__title {
	color: var(--color-white);
}

/* ── Intro Banner Secondary ────────────────────────────────────────────── */
.intro-banner-secondary {
	background: var(--color-white);
	padding-top: 16px;
	position: relative;
	overflow: hidden;
}

.intro-banner-secondary__image-wrap {
	margin: 0 16px;
	height: 50vh;
	overflow: hidden;
	border-radius: 20px;
}

.intro-banner-secondary__image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.intro-banner-secondary__content {
	padding: 48px 60px 80px;
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: 70%;
}

.intro-banner-secondary__breadcrumb {
	font-size: 14px;
	color: var(--color-dark-navy);
	opacity: 0.5;
	text-transform: none;
}

.intro-banner-secondary__heading {
	color: var(--color-dark-navy);
	font-size: 65px;
	font-weight: 600;
	line-height: 100%;
	margin-top: 50px;
}

.intro-banner-secondary__desc {
	color: var(--color-dark-navy);
}

.intro-banner-secondary__after-image {
	position: absolute;
	right: -1px;
	top: calc(16px + 50vh - 15vh);
	height: 30vh;
	pointer-events: none;
}

.intro-banner-secondary__after-image img {
	height: 100%;
	width: auto;
	display: block;
}

/* ── Simple Text Columns ───────────────────────────────────────────────── */
.simple-text-cols {
	background: var(--color-white);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	padding: 80px 60px;
}

.simple-text-cols--no-pt { padding-top: 0; }

.simple-text-cols__col {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.simple-text-cols__body p {
	color: var(--color-dark-navy);
	font-size: 16px;
	line-height: 1.75;
}

.simple-text-cols__body p + p {
	margin-top: 1.2em;
}

.simple-text-cols__ctas {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

/* ── Resources Feed ────────────────────────────────────────────────────── */
.resources-feed {
	background: var(--color-white);
	padding: 0 60px 200px;
}

.resources-feed__filter-bar {
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 28px 60px;
	margin: 0 -60px 60px;
	background: var(--color-light-grey);
	border-bottom: 0;
}

.resources-feed__filter-label {
	color: var(--color-dark-navy);
	font-size: 15px;
	font-weight: 600;
	white-space: nowrap;
}

.resources-feed__filters {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-left: auto;
}

.resources-feed__filter {
	background: transparent;
	border: 2px solid var(--color-dark-navy);
	border-radius: 100px;
	padding: 8px 20px;
	color: var(--color-dark-navy);
	font-family: "nexa", sans-serif;
	font-size: 14px;
	font-weight: 500;
	text-transform: none;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}

.resources-feed__filter.is-active,
.resources-feed__filter:hover {
	background: var(--color-dark-navy);
	color: var(--color-white);
}

.resources-feed__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 40px 32px;
}

.resources-feed__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	text-align: center;
}

.resources-feed__card.is-hidden {
	display: none;
}

.resources-feed__image {
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.resources-feed__card:nth-child(3n+1) .resources-feed__image { background: var(--color-turquoise); }
.resources-feed__card:nth-child(3n+2) .resources-feed__image { background: var(--color-dark-navy); }
.resources-feed__card:nth-child(3n+3) .resources-feed__image { background: var(--color-grey); }

.resources-feed__image img {
	width: 50%;
	height: auto;
	object-fit: contain;
	margin: 0 auto;
	display: block;
}

.resources-feed__title {
	color: var(--color-dark-navy);
	font-size: 16px;
	font-weight: 500;
}

.resources-feed__download {
	color: var(--color-blue);
	font-size: 15px;
	font-weight: 500;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.resources-feed__download:hover {
	color: var(--color-blue);
}

/* ── Category Feed ─────────────────────────────────────────────────────── */
.category-feed {
	background: var(--color-white);
	padding: 0 60px 200px;
}

.category-feed__filter-bar {
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 28px 60px;
	margin: 0 -60px 60px;
	background: var(--color-light-grey);
	border-bottom: 0;
}

.category-feed__filter-label {
	color: var(--color-dark-navy);
	font-size: 15px;
	font-weight: 600;
	white-space: nowrap;
}

.category-feed__filters {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-left: auto;
}

.category-feed__filter {
	background: transparent;
	border: 2px solid var(--color-dark-navy);
	border-radius: 100px;
	padding: 8px 20px;
	color: var(--color-dark-navy);
	font-family: "nexa", sans-serif;
	font-size: 14px;
	font-weight: 500;
	text-transform: none;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}

.category-feed__filter.is-active,
.category-feed__filter:hover {
	background: var(--color-dark-navy);
	color: var(--color-white);
}

.category-feed__list {
	display: flex;
	flex-direction: column;
}

.category-feed__card {
	display: flex;
	align-items: flex-start;
	gap: 48px;
	padding: 40px 0;
	border-bottom: 1px solid var(--color-light-grey);
}

.category-feed__list .category-feed__card:last-child {
	border-bottom: 0;
}

.category-feed__card.is-hidden {
	display: none;
}

.category-feed__card:nth-child(3n+1) .category-feed__image { background: var(--color-turquoise); }
.category-feed__card:nth-child(3n+2) .category-feed__image { background: var(--color-dark-navy); }
.category-feed__card:nth-child(3n+3) .category-feed__image { background: var(--color-grey); }

.category-feed__image {
	flex: 0 0 340px;
	aspect-ratio: 1 / 1;
	border-radius: 24px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px;
}

.category-feed__image img {
	width: 100%;
	height: auto;
	object-fit: contain;
}

.category-feed__content {
	flex: 0 1 700px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 14px;
}

.category-feed__cta {
	flex: 0 0 auto;
	display: flex;
	justify-content: flex-start;
}

.category-feed h3 {
	color: var(--color-dark-navy);
	font-size: 28px;
	font-weight: 600;
}

.category-feed__description {
	color: var(--color-dark-navy);
	font-size: 16px;
	line-height: 1.6;
	max-width: 640px;
}

.category-feed p {
	margin-bottom: 10px;
}

/* ── Single Post ───────────────────────────────────────────────────────── */
.single-post {
	background: var(--color-white);
}

.single-post__inner {
	max-width: 1300px;
	margin: 0 auto;
	padding: 124px 60px 100px;
}

.single-post__header {
	display: flex;
	gap: 40px;
	align-items: flex-start;
	margin-bottom: 100px;
}

.single-post__header-left {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.single-post__breadcrumb {
	font-size: 14px;
	color: var(--color-dark-navy);
	opacity: 0.5;
	text-transform: none;
	margin-top: 40px;
}

.single-post__breadcrumb a {
	color: var(--color-dark-navy);
	text-decoration: none;
}

.single-post__breadcrumb a:hover { text-decoration: underline; }

.single-post__title {
	color: var(--color-dark-navy);
	font-size: 65px;
	font-weight: 600;
	line-height: 100%;
}

.single-post__excerpt {
	color: var(--color-dark-navy);
	font-size: 17px;
	line-height: 1.7;
	max-width: 560px;
}

.single-post__categories {
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex-shrink: 0;
	padding-top: 48px;
}

.single-post__cat-tag {
	display: inline-block;
	color: var(--color-dark-navy);
	font-size: 14px;
	font-weight: 500;
	padding: 6px 16px;
	border-radius: 100px;
	text-transform: none;
	text-align: center;
	cursor: default;
}

.single-post__cat-tag:nth-child(3n+1) { background: var(--color-turquoise); }
.single-post__cat-tag:nth-child(3n+2) { background: var(--color-blue); color: var(--color-white); }
.single-post__cat-tag:nth-child(3n+3) { background: var(--color-grey); color: var(--color-white); }

.single-post__media {
	width: 100vw;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 0;
	overflow: hidden;
	margin-bottom: 60px;
}

.single-post__image {
	width: 100%;
	height: 60vh;
	object-fit: cover;
	display: block;
}

.single-post__embed {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
}

.single-post__embed iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

.single-post__description {
	display: grid;
	grid-template-columns: 3fr 2fr;
	gap: 60px;
	margin-bottom: 40px;
}

.single-post__desc-left,
.single-post__desc-right {
	display: flex;
	flex-direction: column;
}

.single-post__description p {
	color: var(--color-dark-navy);
	font-size: 16px;
	line-height: 1.75;
}

.single-post__description p + p { margin-top: 1.2em; }

.single-post__ctas {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 80px;
}

.single-post__gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.single-post__gallery-item {
	border-radius: 16px;
	overflow: hidden;
	aspect-ratio: 4 / 3;
}

.single-post__gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* ── Related Posts ─────────────────────────────────────────────────────── */
.related-posts {
	background: var(--color-light-grey);
	padding: 80px 60px;
	overflow: hidden;
}

.related-posts__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 48px;
}

.related-posts__heading {
	color: var(--color-dark-navy);
}

.related-posts__nav {
	display: flex;
	gap: 12px;
}

.related-posts__prev,
.related-posts__next {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: none;
	background: transparent;
	color: var(--color-dark-navy);
	cursor: pointer;
	transition: color 0.2s;
}

.related-posts__prev:hover,
.related-posts__next:hover {
	color: var(--color-turquoise);
}

.related-posts__track {
	display: flex;
	gap: 32px;
}

.related-posts__card {
	flex: 0 0 calc(33.333% - 22px);
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.related-posts__image {
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: 12px;
}

.related-posts__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.related-posts__image:hover img {
	transform: scale(1.03);
}

.related-posts__title {
	font-size: 24px;
	font-weight: 500;
	line-height: 1.2;
}

.related-posts__title a {
	color: var(--color-dark-navy);
	text-decoration: none;
}

.related-posts__title a:hover {
	color: var(--color-blue);
}

.related-posts__excerpt {
	color: var(--color-dark-navy);
	font-size: 15px;
	line-height: 1.7;
}

.related-posts__read-more {
	color: var(--color-blue);
	font-size: 15px;
	font-weight: 500;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.related-posts__read-more:hover {
	color: var(--color-blue);
}

/* ── Clients & Partners Feed ───────────────────────────────────────────── */
.cp-feed {
	padding: 80px 60px;
	overflow: hidden;
}

.cp-feed--extra-pb { padding-bottom: 200px; }

.cp-feed--bg-light-grey { background: var(--color-light-grey); }
.cp-feed--bg-white      { background: var(--color-white); }

.cp-feed__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 48px;
}

.cp-feed__heading {
	color: var(--color-dark-navy);
}

.cp-feed__nav {
	display: flex;
	gap: 12px;
}

.cp-feed__prev,
.cp-feed__next {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: none;
	background: transparent;
	color: var(--color-dark-navy);
	cursor: pointer;
	transition: color 0.2s;
}

.cp-feed__prev:hover,
.cp-feed__next:hover {
	color: var(--color-turquoise);
}

.cp-feed__track {
	display: flex;
	gap: 32px;
}

.cp-feed__card {
	flex: 0 0 calc(33.333% - 22px);
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.cp-feed__image {
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: 12px;
	background: var(--color-light-grey);
}

.cp-feed__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.cp-feed__title {
	font-size: 22px;
	font-weight: 500;
	color: var(--color-dark-navy);
}

.cp-feed__description {
	font-size: 15px;
	line-height: 1.7;
	color: var(--color-dark-navy);
}

.cp-feed__description p { margin-bottom: 1em; }
.cp-feed__description p:last-child { margin-bottom: 0; }

.cp-feed__read-more {
	color: var(--color-blue);
	font-size: 15px;
	font-weight: 500;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.cp-feed__read-more:hover { color: var(--color-turquoise); }

/* ── Benefits Tabs ─────────────────────────────────────────────────────── */
.benefits-tabs {
	padding: 80px 60px 100px;
	background: var(--color-white);
}

.benefits-tabs__heading {
	font-size: 40px;
	font-weight: 500;
	line-height: 108%;
	color: var(--color-dark-navy);
	max-width: 70%;
	margin-bottom: 64px;
}

.benefits-tabs__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px 32px;
	align-items: start;
}

.benefits-tabs__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 24px;
}

.benefits-tabs__image-wrap {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
}

.benefits-tabs__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.benefits-tabs__item-heading {
	font-size: 22px;
	font-weight: 500;
	color: var(--color-dark-navy);
}

.benefits-tabs__description {
	font-size: 15px;
	line-height: 1.7;
	color: var(--color-dark-navy);
}

.benefits-tabs__description p { margin-bottom: 1em; }
.benefits-tabs__description p:last-child { margin-bottom: 0; }

/* ── Projects Feed ─────────────────────────────────────────────────────── */
.projects-feed {
	padding: 0 60px 100px;
}

.projects-feed--bg-white      { background: var(--color-white); }
.projects-feed--bg-light-grey { background: var(--color-light-grey); }

.projects-feed--slider {
	overflow: hidden;
}

.projects-feed--has-heading {
	padding-top: 100px;
}

.projects-feed__heading--grid {
	margin-bottom: 40px;
}

.projects-feed__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 48px;
}

.projects-feed__heading {
	color: var(--color-dark-navy);
}

.projects-feed__nav {
	display: flex;
	gap: 12px;
}

.projects-feed__prev,
.projects-feed__next {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: none;
	background: transparent;
	color: var(--color-dark-navy);
	cursor: pointer;
	transition: color 0.2s;
}

.projects-feed__prev:hover,
.projects-feed__next:hover {
	color: var(--color-turquoise);
}

.projects-feed__track {
	display: flex;
	gap: 32px;
}

.projects-feed--slider .projects-feed__card {
	flex: 0 0 calc(33.333% - 22px);
}

.projects-feed__filter-bar {
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 28px 60px;
	margin: 0 -60px 60px;
	background: var(--color-light-grey);
	border-bottom: 0;
}

.projects-feed__filter-label {
	color: var(--color-dark-navy);
	font-size: 15px;
	font-weight: 600;
	white-space: nowrap;
}

.projects-feed__filters {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-left: auto;
}

.projects-feed__filter {
	background: transparent;
	border: 2px solid var(--color-dark-navy);
	border-radius: 100px;
	padding: 8px 20px;
	color: var(--color-dark-navy);
	font-family: "nexa", sans-serif;
	font-size: 14px;
	font-weight: 500;
	text-transform: none;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}

.projects-feed__filter.is-active,
.projects-feed__filter:hover {
	background: var(--color-dark-navy);
	color: var(--color-white);
}

.projects-feed__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.projects-feed__card {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.projects-feed__card.is-hidden { display: none; }

.projects-feed__image {
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: 16px;
}

.projects-feed__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.projects-feed__image:hover img { transform: scale(1.03); }

/* Regular cards */
.projects-feed__title {
	font-size: 22px;
	font-weight: 500;
	line-height: 1.2;
}

.projects-feed__title a {
	color: var(--color-dark-navy);
	text-decoration: none;
}

.projects-feed__title a:hover { color: var(--color-blue); }

.projects-feed__excerpt {
	color: var(--color-dark-navy);
	font-size: 15px;
	line-height: 1.7;
}

.projects-feed__read-more {
	color: var(--color-blue);
	font-size: 15px;
	font-weight: 500;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.projects-feed__read-more:hover { color: var(--color-turquoise); }

/* ── Main ──────────────────────────────────────────────────────────────── */
.home #main,
.archive #main,
.search #main,
.blog #main {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem;
}

body.single .footer-cta,
body.single .footer-newsletter,
body.single #site-footer {
	width: 100%;
	max-width: none;
	margin-left: 0;
	margin-right: 0;
}

/* ── Footer Contact CTA ────────────────────────────────────────────────── */
.footer-cta {
	background-color: var(--color-light-grey);
	background-size: cover;
	background-position: center;
	padding: 60px;
}

.footer-cta__content {
	width: 60%;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.footer-cta__heading {
	color: var(--color-dark-navy);
}

.footer-cta__heading-inner {
	background: var(--color-white);
	display: inline;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
	padding: 0 8px;
	line-height: 1.4;
	font-weight: 600;
}

.footer-cta__highlight {
	color: var(--color-blue);
}

.footer-cta__buttons {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

/* ── Footer Newsletter ─────────────────────────────────────────────────── */
.footer-newsletter {
	background: var(--color-turquoise);
	padding: 48px 60px;
}

.footer-newsletter__inner {
	max-width: 1300px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 3fr;
	gap: 80px;
	align-items: center;
}

.footer-newsletter__heading {
	color: var(--color-dark-navy);
	text-transform: none;
}

.footer-newsletter__form { width: 100%; }

/* Ninja Forms — mailing list (#nf-form-1-cont) */
#nf-form-1-cont .nf-form-content {
	padding: 0;
}

#nf-form-1-cont .nf-form-fields-required,
#nf-form-1-cont .nf-field-description,
#nf-form-1-cont .nf-error-msg,
#nf-form-1-cont .ninja-forms-req-symbol {
	display: none !important;
}

#nf-form-1-cont .nf-form-layout {
	display: flex;
	align-items: flex-end;
	gap: 16px;
	flex-wrap: nowrap;
}

#nf-form-1-cont .nf-field-container {
	flex: 1;
	margin-bottom: 0 !important;
}

#nf-form-1-cont .submit-container {
	flex: 0 0 auto;
	margin-bottom: 0 !important;
	padding-top: 34px;
}

#nf-form-1-cont label.nf-label-field-wrap,
#nf-form-1-cont .nf-field-label label {
	color: var(--color-dark-navy);
	font-size: 15px;
	font-weight: 500;
	margin-bottom: 6px;
	display: block;
}

#nf-form-1-cont input[type="text"],
#nf-form-1-cont input[type="email"] {
	width: 100%;
	background: transparent;
	border: 1px solid var(--color-dark-navy);
	border-radius: 100px;
	padding: 12px 20px;
	color: var(--color-dark-navy);
	font-family: "nexa", sans-serif;
	font-size: 15px;
	outline: none;
}

#nf-form-1-cont input[type="text"]::placeholder,
#nf-form-1-cont input[type="email"]::placeholder {
	color: var(--color-dark-navy);
	opacity: 0.5;
}

#nf-form-1-cont input[type="button"],
#nf-form-1-cont input[type="submit"],
#nf-form-1-cont button[type="submit"] {
	background: var(--color-dark-navy);
	color: var(--color-white);
	border: none;
	border-radius: 100px;
	padding: 12px 28px;
	font-family: "nexa", sans-serif;
	font-size: 15px;
	font-weight: 500;
	cursor: pointer;
	white-space: nowrap;
	transition: background 0.2s;
}

#nf-form-1-cont input[type="button"]:hover,
#nf-form-1-cont input[type="submit"]:hover,
#nf-form-1-cont button[type="submit"]:hover {
	background: var(--color-blue);
}

/* ── Single Product ────────────────────────────────────────────────────── */
.single-product {
	background: var(--color-white);
}

.single-product__cols {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: start;
}

.single-product__left {
	display: flex;
	flex-direction: column;
	gap: 24px;
	padding: 160px 60px 100px 60px;
}

.single-product__breadcrumb {
	font-size: 14px;
	color: var(--color-dark-navy);
	opacity: 0.5;
	text-transform: none;
}

.single-product__breadcrumb a {
	color: var(--color-dark-navy);
	text-decoration: none;
}

.single-product__breadcrumb a:hover { text-decoration: underline; }

.single-product__title {
	font-family: "nexa", sans-serif;
	font-size: 55px;
	font-style: normal;
	font-weight: 600;
	line-height: 100%;
	color: var(--color-dark-navy);
	text-transform: none;
}

.single-product__subheading {
	font-family: "nexa", sans-serif;
	font-size: 24px;
	font-weight: 500;
	line-height: normal;
	color: var(--color-dark-navy);
}

.single-product__description {
	margin-top: 16px;
}

.single-product__description {
	font-size: 18px;
	line-height: 1.5;
	color: var(--color-dark-navy);
}

.single-product__description p {
	margin-bottom: 16px;
}

.single-product__toggle {
	border-bottom: 1px solid rgba(0,0,0,0.15);
}

.single-product__toggle-btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	background: none;
	border: none;
	padding: 16px 0;
	font-family: "nexa", sans-serif;
	font-size: 18px;
	font-weight: 500;
	color: var(--color-dark-navy);
	cursor: pointer;
	text-align: left;
}

.single-product__chevron {
	flex-shrink: 0;
	transition: transform 0.25s ease;
}

.single-product__toggle-btn[aria-expanded="true"] .single-product__chevron {
	transform: rotate(180deg);
}

.single-product__toggle-content {
	display: none;
	padding-bottom: 20px;
}

.single-product__toggle-content p,
.single-product__toggle-content li {
	font-size: 16px;
	margin-bottom: 10px;
}

.single-product__toggle-content.is-open {
	display: block;
}

.single-product__cta {
	align-self: flex-start;
	margin-top: 8px;
}

.single-product__right {
	padding: 160px 60px 100px 40px;
}

.single-product__image-wrap {
	background: var(--color-turquoise);
	border-radius: 24px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px;
	min-height: 400px;
}

.single-product__image {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 8px;
}

.single-product__gallery-track {
	display: grid;
	width: 100%;
}

.single-product__gallery-slide {
	grid-area: 1 / 1;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.4s ease;
}

.single-product__gallery-slide--active {
	opacity: 1;
	pointer-events: auto;
}

.single-product__gallery-nav {
	display: flex;
	justify-content: flex-end;
	gap: 12px;
	margin-top: 20px;
}

.single-product__gallery-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 2px solid var(--color-dark-navy);
	background: transparent;
	color: var(--color-dark-navy);
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}

.single-product__gallery-btn:hover {
	background: var(--color-dark-navy);
	color: var(--color-white);
}

/* ── Product Highlights ─────────────────────────────────────────────────── */
.product-highlights {
	background: var(--color-dark-navy);
	padding: 100px 60px;
}

.product-highlights__inner {
	max-width: 1300px;
	margin: 0 auto;
}

.product-highlights__heading {
	font-family: "nexa", sans-serif;
	font-size: 40px;
	font-weight: 400;
	line-height: 108%;
	color: var(--color-white);
	text-align: center;
	margin-bottom: 80px;
	text-transform: none;
}

.product-highlights__highlight {
	color: var(--color-turquoise);
	font-size: 40px;
	font-weight: 400;
	line-height: 108%;
}

.product-highlights__grid {
	display: grid;
	gap: 40px;
	max-width: 1100px;
	margin: 0 auto;
}

.product-highlights__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	text-align: center;
}

.product-highlights__image-wrap {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
}

.product-highlights__image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.product-highlights__title {
	font-family: "nexa", sans-serif;
	font-size: 20px;
	font-weight: 500;
	line-height: normal;
	color: var(--color-white);
	text-transform: none;
}

.product-highlights__desc {
	font-size: 15px;
	font-weight: 400;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.65);
}

@media ( max-width: 900px ) {
	.product-highlights {
		padding: 80px 24px;
	}

	.product-highlights__heading {
		font-size: 36px;
		margin-bottom: 48px;
	}

	.product-highlights__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px;
	}
}

/* ── Product Category Hero ──────────────────────────────────────────────── */
.product-cat-hero {
	background: var(--color-white);
}

.product-cat-hero__inner {
	padding: 160px 60px 80px;
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.product-cat-hero__breadcrumb {
	font-size: 14px;
	color: var(--color-dark-navy);
	opacity: 0.5;
}

.product-cat-hero__breadcrumb a {
	color: var(--color-dark-navy);
	text-decoration: none;
}

.product-cat-hero__breadcrumb a:hover { text-decoration: underline; }

.product-cat-hero__title {
	font-family: "nexa", sans-serif;
	font-size: 55px;
	font-weight: 600;
	line-height: 100%;
	color: var(--color-dark-navy);
}

.product-cat-hero__text-cols {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}

.product-cat-hero__subheading {
	font-family: "nexa", sans-serif;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.6;
	color: var(--color-dark-navy);
}

.product-cat-hero__description {
	font-size: 16px;
	line-height: 1.7;
	color: var(--color-dark-navy);
}

.product-cat-hero__description p + p {
	margin-top: 1em;
}

@media ( max-width: 900px ) {
	.product-cat-hero__inner {
		padding: 150px 24px 60px;
	}

	.product-cat-hero__title {
		font-size: 36px;
	}

	.product-cat-hero__text-cols {
		grid-template-columns: 1fr;
		gap: 24px;
	}
}

/* ── Product Grid ───────────────────────────────────────────────────────── */
.product-grid {
	background: var(--color-white);
	padding: 80px 60px 100px;
}

.product-grid__inner {
	max-width: 1300px;
	margin: 0 auto;
}

.product-grid__items {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
}

.product-grid__card {
	display: flex;
	flex-direction: column;
	gap: 12px;
	text-decoration: none;
}

.product-grid__image {
	border-radius: 16px;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	padding: 20px;
}

.product-grid__item:nth-child(4n+1) .product-grid__image { background: var(--color-turquoise); }
.product-grid__item:nth-child(4n+2) .product-grid__image { background: var(--color-blue); }
.product-grid__item:nth-child(4n+3) .product-grid__image { background: var(--color-grey); }
.product-grid__item:nth-child(4n+4) .product-grid__image { background: var(--color-dark-navy); }

.product-grid__image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.product-grid__title {
	font-family: "nexa", sans-serif;
	font-size: 18px;
	font-weight: 500;
	color: var(--color-dark-navy);
	line-height: 1.3;
}

.product-grid__link {
	font-size: 15px;
	font-weight: 500;
	color: var(--color-blue);
}

.product-grid__card:hover .product-grid__link {
	text-decoration: underline;
}

@media ( max-width: 900px ) {
	.product-grid {
		padding: 60px 24px 80px;
	}

	.product-grid__items {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

/* ── Related Products ───────────────────────────────────────────────────── */
.related-products {
	background: var(--color-white);
	padding: 80px 60px;
	overflow: hidden;
}

.related-products__inner {
	max-width: 1300px;
	margin: 0 auto;
}

.related-products__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 48px;
}

.related-products__tagline {
	font-size: 14px;
	font-weight: 400;
	color: var(--color-dark-navy);
	opacity: 0.5;
	text-transform: none;
	margin-bottom: 8px;
}

.related-products__heading {
	font-family: "nexa", sans-serif;
	font-size: 40px;
	font-weight: 400;
	line-height: 108%;
	color: var(--color-dark-navy);
	text-transform: none;
}

.related-products__highlight {
	color: var(--color-blue);
}

.related-products__nav {
	display: flex;
	gap: 12px;
	flex-shrink: 0;
}

.related-products__prev,
.related-products__next {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: none;
	background: transparent;
	color: var(--color-dark-navy);
	cursor: pointer;
	transition: color 0.2s;
}

.related-products__prev:hover,
.related-products__next:hover {
	color: var(--color-turquoise);
}

.related-products__prev:disabled,
.related-products__next:disabled {
	opacity: 0.3;
	cursor: default;
}

.related-products__track {
	display: flex;
	gap: 24px;
}

.related-products__card {
	flex: 0 0 calc(25% - 18px);
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.related-products__image {
	border-radius: 16px;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	padding: 20px;
}

.related-products__image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.related-products__card:nth-child(4n+1) .related-products__image { background: var(--color-turquoise); }
.related-products__card:nth-child(4n+2) .related-products__image { background: var(--color-blue); }
.related-products__card:nth-child(4n+3) .related-products__image { background: var(--color-grey); }
.related-products__card:nth-child(4n+4) .related-products__image { background: var(--color-dark-navy); }

.related-products__title {
	font-family: "nexa", sans-serif;
	font-size: 18px;
	font-weight: 500;
	color: var(--color-dark-navy);
	line-height: 1.3;
}

.related-products__link {
	font-size: 15px;
	font-weight: 500;
	color: var(--color-blue);
	text-decoration: none;
}

.related-products__link:hover {
	text-decoration: underline;
}

@media ( max-width: 900px ) {
	.related-products {
		padding: 60px 24px;
	}

	.related-products__card {
		flex: 0 0 calc(50% - 12px);
	}
}

/* Ninja Forms — product enquiry (#nf-form-4-cont) */
#nf-form-4-cont .nf-form-content {
	padding: 0;
}

#nf-form-4-cont .nf-form-fields-required,
#nf-form-4-cont .nf-error-msg,
#nf-form-4-cont .ninja-forms-req-symbol {
	display: none !important;
}

#nf-form-4-cont .nf-field-label label {
	color: var(--color-dark-navy);
	font-size: 15px;
	font-weight: 500;
	margin-bottom: 6px;
	display: block;
}

#nf-form-4-cont input[type="text"],
#nf-form-4-cont input[type="email"],
#nf-form-4-cont input[type="tel"],
#nf-form-4-cont select,
#nf-form-4-cont textarea {
	width: 100%;
	background: transparent;
	border: 1px solid rgba(0, 22, 63, 0.3);
	border-radius: 100px;
	padding: 14px 20px;
	color: var(--color-dark-navy);
	font-family: "nexa", sans-serif;
	font-size: 15px;
	outline: none;
	appearance: none;
	-webkit-appearance: none;
}

#nf-form-4-cont textarea {
	border-radius: 20px;
	resize: vertical;
	min-height: 120px;
}

#nf-form-4-cont select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2300163F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 20px center;
	padding-right: 48px;
}

#nf-form-4-cont input::placeholder,
#nf-form-4-cont textarea::placeholder {
	color: rgba(0, 22, 63, 0.4);
}

#nf-form-4-cont select option {
	background: var(--color-white);
	color: var(--color-dark-navy);
}

#nf-form-4-cont .nf-field-container {
	margin-bottom: 16px !important;
}

#nf-form-4-cont .submit-container {
	margin-bottom: 0 !important;
	padding-top: 8px;
}

#nf-form-4-cont input[type="button"],
#nf-form-4-cont input[type="submit"],
#nf-form-4-cont button[type="submit"] {
	background: var(--color-dark-navy);
	color: var(--color-white);
	border: none;
	border-radius: 100px;
	padding: 14px 32px;
	font-family: "nexa", sans-serif;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}

#nf-form-4-cont input[type="button"]:hover,
#nf-form-4-cont input[type="submit"]:hover,
#nf-form-4-cont button[type="submit"]:hover {
	background: var(--color-blue);
}

/* Ninja Forms — enquiry, white bg (#nf-form-5-cont) */
#nf-form-5-cont .nf-form-content {
	padding: 0;
}

#nf-form-5-cont .nf-form-fields-required,
#nf-form-5-cont .nf-error-msg,
#nf-form-5-cont .ninja-forms-req-symbol {
	display: none !important;
}

#nf-form-5-cont .nf-field-label label {
	color: var(--color-dark-navy);
	font-size: 15px;
	font-weight: 500;
	margin-bottom: 6px;
	display: block;
}

#nf-form-5-cont input[type="text"],
#nf-form-5-cont input[type="email"],
#nf-form-5-cont input[type="tel"],
#nf-form-5-cont select,
#nf-form-5-cont textarea {
	width: 100%;
	background: transparent;
	border: 1px solid rgba(0, 22, 63, 0.3);
	border-radius: 100px;
	padding: 14px 20px;
	color: var(--color-dark-navy);
	font-family: "nexa", sans-serif;
	font-size: 15px;
	outline: none;
	appearance: none;
	-webkit-appearance: none;
}

#nf-form-5-cont textarea {
	border-radius: 20px;
	resize: vertical;
	min-height: 120px;
}

#nf-form-5-cont select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2300163F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 20px center;
	padding-right: 48px;
}

#nf-form-5-cont input::placeholder,
#nf-form-5-cont textarea::placeholder {
	color: rgba(0, 22, 63, 0.4);
}

#nf-form-5-cont select option {
	background: var(--color-white);
	color: var(--color-dark-navy);
}

#nf-form-5-cont .nf-field-container {
	margin-bottom: 16px !important;
}

#nf-form-5-cont .submit-container {
	margin-bottom: 0 !important;
	padding-top: 8px;
}

#nf-form-5-cont input[type="button"],
#nf-form-5-cont input[type="submit"],
#nf-form-5-cont button[type="submit"] {
	background: var(--color-dark-navy);
	color: var(--color-white);
	border: none;
	border-radius: 100px;
	padding: 14px 32px;
	font-family: "nexa", sans-serif;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}

#nf-form-5-cont input[type="button"]:hover,
#nf-form-5-cont input[type="submit"]:hover,
#nf-form-5-cont button[type="submit"]:hover {
	background: var(--color-blue);
}

/* ── Product Enquiry ────────────────────────────────────────────────────── */
.product-enquiry {
	background: var(--color-light-grey);
}

.product-enquiry__inner {
	max-width: 1300px;
	margin: 0 auto;
	padding: 100px 60px;
}

.product-enquiry__image-wrap {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
	background: var(--color-white);
	margin-bottom: 40px;
}

.product-enquiry__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.product-enquiry__cols {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: start;
	gap: 80px;
}

.product-enquiry__left {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.product-enquiry__heading {
	font-family: "nexa", sans-serif;
	font-size: 40px;
	font-weight: 400;
	line-height: 108%;
	color: var(--color-dark-navy);
}

.product-enquiry__desc {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	color: var(--color-dark-navy);
	max-width: 420px;
}

@media ( max-width: 900px ) {
	.product-enquiry__inner {
		padding: 60px 24px;
	}

	.product-enquiry__cols {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

@media ( max-width: 900px ) {
	.single-product__cols {
		grid-template-columns: 1fr;
	}

	.single-product__right {
		order: -1;
		padding: 150px 24px 0;
	}

	.single-product__gallery-nav {
		justify-content: flex-start;
	}

	.single-product__left {
		padding: 40px 24px 80px;
	}
}

/* ── Footer ────────────────────────────────────────────────────────────── */
#site-footer {
	background: var(--color-dark-navy);
	color: var(--color-light-grey);
}

.footer-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1.5rem 2rem;
	text-align: center;
}

/* ── Product Slider ─────────────────────────────────────────────────────── */
.prod-slider {
	background: var(--color-white);
	padding: 150px 0;
	overflow: hidden;
}

.prod-slider__header {
	max-width: none;
	margin: 0 auto;
	padding: 0 60px;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 48px;
}

.prod-slider__tagline {
	font-size: 14px;
	font-weight: 400;
	color: var(--color-dark-navy);
	opacity: 0.5;
	text-transform: none;
	margin-bottom: 8px;
}

.prod-slider__heading {
	font-size: 40px;
	font-weight: 400;
	line-height: 108%;
	color: var(--color-dark-navy);
	text-transform: none;
}

.prod-slider__nav {
	display: flex;
	gap: 12px;
	flex-shrink: 0;
}

.prod-slider__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: none;
	background: transparent;
	color: var(--color-dark-navy);
	cursor: pointer;
	transition: color 0.2s;
}

.prod-slider__btn:hover {
	color: var(--color-turquoise);
}

.prod-slider__btn:disabled {
	opacity: 0.3;
	cursor: default;
}

/* Rail: left padding aligns cards with the global container */
.prod-slider__rail {
	padding-left: 60px;
}

.prod-slider__track {
	display: flex;
	gap: 24px;
	transition: transform 0.45s ease;
}

/* Card width is fixed so JS can hardcode the step — no measurement ambiguity */
.prod-slider__card {
	flex: 0 0 280px;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.prod-slider__image {
	border-radius: 16px;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	padding: 20px;
}

.prod-slider__image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.prod-slider__card:nth-child(4n+1) .prod-slider__image { background: var(--color-turquoise); }
.prod-slider__card:nth-child(4n+2) .prod-slider__image { background: var(--color-blue); }
.prod-slider__card:nth-child(4n+3) .prod-slider__image { background: var(--color-grey); }
.prod-slider__card:nth-child(4n+4) .prod-slider__image { background: var(--color-dark-navy); }

.prod-slider__title {
	font-size: 18px;
	font-weight: 500;
	color: var(--color-dark-navy);
	line-height: 1.3;
}

.prod-slider__link {
	font-size: 15px;
	font-weight: 500;
	color: var(--color-blue);
	text-decoration: none;
}

.prod-slider__link:hover {
	text-decoration: underline;
}

@media ( max-width: 900px ) {
	.prod-slider {
		padding: 60px 0;
	}

	.prod-slider__header {
		padding: 0 24px;
	}

	.prod-slider__rail {
		padding-left: 24px;
	}

	.prod-slider__card {
		flex: 0 0 180px;
	}
}

/* ── Horizontal Slideshow ───────────────────────────────────────────────── */
.h-slideshow {
	position: relative;
	overflow: hidden;
}

.h-slideshow__track {
	display: grid;
}

.h-slideshow__slide {
	grid-area: 1 / 1;
	display: grid;
	grid-template-columns: 2fr 1fr;
	height: 70vh;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.5s ease;
}

.h-slideshow__slide--active {
	opacity: 1;
	pointer-events: auto;
}

.h-slideshow__image {
	position: relative;
	overflow: hidden;
}

.h-slideshow__image img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.h-slideshow__content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 4rem 3.5rem 8rem;
	background: var(--color-white);
}

.h-slideshow__heading {
	font-size: 48px;
	font-weight: 500;
	line-height: 105%;
	color: var(--color-dark-navy);
	padding-top: 0;
}

.h-slideshow__desc {
	font-size: 18px;
	line-height: 1.6;
	color: var(--color-dark-navy);
}

.h-slideshow__desc p { margin: 0; }
.h-slideshow__desc p + p { margin-top: 1em; }

.h-slideshow__bottom {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.h-slideshow__nav {
	position: absolute;
	bottom: 4rem;
	left: calc(66.666% + 3.5rem);
	display: flex;
	gap: 12px;
	z-index: 2;
}

.h-slideshow__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: none;
	background: transparent;
	color: var(--color-dark-navy);
	cursor: pointer;
	transition: color 0.2s;
}

.h-slideshow__btn:hover {
	color: var(--color-turquoise);
}

.h-slideshow__btn:disabled {
	opacity: 0.3;
	cursor: default;
}

@media ( max-width: 900px ) {
	.h-slideshow__slide {
		grid-template-columns: 1fr;
		height: auto;
	}

	.h-slideshow__image {
		aspect-ratio: 16 / 9;
		position: relative;
	}

	.h-slideshow__image img {
		position: absolute;
	}

	.h-slideshow__content {
		padding: 2.5rem 1.5rem;
		min-height: 50vh;
	}

	.h-slideshow__nav {
		position: static;
		left: auto;
		bottom: auto;
		justify-content: flex-start;
		padding: 0 1.5rem 2rem;
	}
}

/* ── Map ────────────────────────────────────────────────────────────────── */
.map-embed {
	width: 100%;
	height: 50vh;
}

.map-embed iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

/* ── Large Image ────────────────────────────────────────────────────────── */
.large-image {
	background: var(--color-blue);
	padding: 100px 0;
}

.large-image__inner {
	max-width: 1800px;
	margin: 0 auto;
	padding-left: 60px;
	padding-right: 60px;
}

.large-image a {
	display: block;
}

.large-image img {
	display: block;
	width: 100%;
	height: auto;
}

@media ( max-width: 900px ) {
	.large-image {
		padding: 60px 0;
	}

	.large-image__inner {
		padding: 0 24px;
	}
}

/* ── Video Embed ────────────────────────────────────────────────────────── */
.video-embed {
	width: 100%;
}

.video-embed__player {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	background: var(--color-dark-navy);
	overflow: hidden;
}

.video-embed__thumb {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.video-embed__play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 88px;
	height: 88px;
	border-radius: 50%;
	border: none;
	background: var(--color-turquoise);
	color: var(--color-dark-navy);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

.video-embed__play svg { margin-left: 4px; }

.video-embed__play:hover {
	background: var(--color-white);
	transform: translate(-50%, -50%) scale(1.08);
}

.video-embed__iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

@media ( max-width: 600px ) {
	.video-embed__play {
		width: 64px;
		height: 64px;
	}
}

/* ── Feature Banner (mobile) ───────────────────────────────────────────── */
@media ( max-width: 900px ) {
	.feature-banner {
		height: auto;
		min-height: 90vh;
		margin: 8px;
	}

	.feature-banner__content {
		padding: 0 24px 140px;
	}

	.feature-banner__heading {
		width: 100%;
	}

	.feature-banner__ticker {
		padding: 16px 24px;
		flex-wrap: wrap;
	}
}

/* ── Flexbox CTAs (mobile) ─────────────────────────────────────────────── */
@media ( max-width: 900px ) {
	.flexbox-ctas--has-intro {
		padding-top: 100px;
	}

	.flexbox-ctas__intro {
		padding: 0 24px 48px;
	}

	.flexbox-ctas__subheading {
		width: 100%;
	}

	.flexbox-ctas--pull-up {
		margin-top: 0;
	}

	.flexbox-ctas__grid,
	.flexbox-ctas__grid--boxes-right {
		grid-template-columns: 1fr;
	}

	.flexbox-ctas__grid--boxes-right .flexbox-ctas__text {
		padding: 32px 24px;
	}

	.flexbox-ctas__box {
		min-height: 0;
		padding: 32px 24px;
	}

	.flexbox-ctas__text {
		padding: 32px 24px;
	}
}

/* ── Service Feature Light / Dark (mobile) ─────────────────────────────── */
@media ( max-width: 900px ) {
	.sfl,
	.sfl--dark {
		padding: 80px 24px;
	}

	.sfl__heading,
	.sfl__subheading {
		width: 100%;
	}

	.sfl__callout h2 {
		font-size: 32px;
	}

	.sfl__media {
		width: 100%;
		margin-right: 0;
	}

	.sfl__callouts {
		flex-direction: column;
		width: 100%;
		margin-top: 20px;
	}

	.sfl__callout {
		min-height: 0;
		padding: 32px 24px;
	}

	.sfl__footer {
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
		gap: 24px;
	}

	.sfl__after-image {
		display: none;
	}
}

/* ── Logo Banner (mobile) ──────────────────────────────────────────────── */
@media ( max-width: 900px ) {
	.logo-banner__inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.logo-banner__text {
		width: 100%;
		padding: 24px;
		border-right: 0;
		border-bottom: 1px solid rgba(0, 22, 63, 0.12);
	}

	.logo-banner__slider-wrap {
		width: 100%;
		padding: 16px 0;
	}
}

/* ── Online Services (mobile) ──────────────────────────────────────────── */
@media ( max-width: 900px ) {
	.online-services {
		padding: 60px 24px;
	}

	.online-services__heading {
		font-size: 28px;
	}

	.online-services__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px;
	}

	.online-services__item:nth-child(5) {
		grid-column: 1 / -1;
		justify-self: center;
	}

	.online-services__item img {
		height: 45px;
	}

	.online-services__item:nth-child(5) img {
		height: 68px;
	}
}

/* ── Split Column (mobile) ─────────────────────────────────────────────── */
@media ( max-width: 900px ) {
	.split-col {
		grid-template-columns: 1fr;
		height: auto;
	}

	.split-col__left {
		padding: 60px 24px 48px;
		order: 2;
	}

	.split-col__right {
		height: 60vh;
		order: 1;
	}

	.split-col__media,
	.split-col--reversed .split-col__media {
		inset: 16px 24px;
	}

	.split-col--padded {
		padding: 0;
	}

	.split-col--padded .split-col__right {
		padding: 0;
	}

	.split-col--padded .split-col__heading,
	.split-col__heading {
		font-size: 32px;
	}

	.split-col--reversed {
		direction: ltr;
	}

	.split-col__desc {
		max-width: 100%;
	}

	.split-col__ticker {
		padding: 16px 20px;
	}
}

/* ── Circle Image + Text (mobile) ──────────────────────────────────────── */
@media ( max-width: 900px ) {
	.cit {
		grid-template-columns: 1fr;
		padding: 60px 24px;
	}

	.cit__image-col {
		padding: 0 0 40px;
		justify-content: flex-start;
	}

	.cit__image-wrap {
		width: 280px;
		height: 280px;
		margin-left: 0;
	}

	.cit__image-wrap::before {
		width: 140px;
		height: 140px;
	}

	.cit__text-col {
		padding: 0;
	}
}

/* ── Callout Big Text (mobile) ─────────────────────────────────────────── */
@media ( max-width: 900px ) {
	.callout-big-text {
		padding: 60px 24px;
	}

	.callout-big-text__content {
		max-width: 100%;
	}

	.callout-big-text__after-image {
		display: none;
	}
}

/* ── Three Fancy Boxes (mobile) ────────────────────────────────────────── */
@media ( max-width: 900px ) {
	.three-fancy-boxes {
		padding: 60px 24px;
	}

	.three-fancy-boxes__grid {
		grid-template-columns: 1fr;
	}
}

/* ── Board of Directors (mobile) ───────────────────────────────────────── */
@media ( max-width: 900px ) {
	.board {
		padding: 60px 24px;
	}

	.board__grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.board__image {
		width: 100%;
	}
}

/* ── Testimonials Feed (mobile) ────────────────────────────────────────── */
@media ( max-width: 900px ) {
	.t-feed {
		padding: 60px 24px;
	}

	.t-feed__card {
		flex: 0 0 100%;
	}
}

/* ── Coloured Stat Boxes (mobile) ──────────────────────────────────────── */
@media ( max-width: 900px ) {
	.csb {
		padding: 60px 24px;
	}

	.csb__row {
		flex-direction: column;
	}

	.csb__box {
		min-height: 0;
		padding: 32px 24px;
	}

	.csb__heading {
		font-size: 36px;
	}
}

/* ── Enquiry Form (mobile) ─────────────────────────────────────────────── */
@media ( max-width: 900px ) {
	.enquiry-form {
		padding: 60px 24px;
	}

	.enquiry-form--two-col {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.enquiry-form__center {
		width: 100%;
	}

	.enquiry-form__heading {
		font-size: 28px;
	}
}

/* ── Service Tiles (mobile) ────────────────────────────────────────────── */
@media ( max-width: 900px ) {
	.service-tiles {
		padding: 60px 24px;
	}

	.service-tiles__grid {
		grid-template-columns: 1fr;
		width: 100%;
	}
}

/* ── Intro Banner Secondary (mobile) ───────────────────────────────────── */
@media ( max-width: 900px ) {
	.intro-banner-secondary__content {
		padding: 40px 24px 60px;
		width: 100%;
	}

	.intro-banner-secondary__heading {
		font-size: 36px;
	}

	.intro-banner-secondary__after-image {
		display: none;
	}
}

/* ── Simple Text Columns (mobile) ──────────────────────────────────────── */
@media ( max-width: 900px ) {
	.simple-text-cols {
		grid-template-columns: 1fr;
		gap: 40px;
		padding: 0 24px 60px;
	}
}

/* ── Resources Feed (mobile) ───────────────────────────────────────────── */
@media ( max-width: 900px ) {
	.resources-feed {
		padding: 0 24px 80px;
	}

	.resources-feed__filter-bar {
		flex-wrap: wrap;
		padding: 24px;
		margin: 0 -24px 40px;
	}

	.resources-feed__filters {
		margin-left: 0;
	}

	.resources-feed__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px 20px;
	}
}

/* ── Projects Feed (mobile) ────────────────────────────────────────────── */
@media ( max-width: 900px ) {
	.projects-feed {
		padding: 0 24px 60px;
	}

	.projects-feed--has-heading {
		padding-top: 60px;
	}

	.projects-feed__filter-bar {
		flex-wrap: wrap;
		padding: 24px;
		margin: 0 -24px 40px;
	}

	.projects-feed__filters {
		margin-left: 0;
	}

	.projects-feed__grid {
		grid-template-columns: 1fr;
	}

	.projects-feed--slider .projects-feed__card {
		flex: 0 0 100%;
	}
}

/* ── Clients & Partners Feed (mobile) ──────────────────────────────────── */
@media ( max-width: 900px ) {
	.cp-feed {
		padding: 60px 24px;
	}

	.cp-feed--extra-pb {
		padding-bottom: 100px;
	}

	.cp-feed__card {
		flex: 0 0 100%;
	}
}

/* ── Benefits Tabs (mobile) ────────────────────────────────────────────── */
@media ( max-width: 900px ) {
	.benefits-tabs {
		padding: 60px 24px;
	}

	.benefits-tabs__heading {
		font-size: 28px;
		max-width: 100%;
	}

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

	.benefits-tabs__image-wrap {
		width: 140px;
		height: 140px;
	}
}

/* ── Category Feed (mobile) ────────────────────────────────────────────── */
@media ( max-width: 900px ) {
	.category-feed {
		padding: 0 24px 80px;
	}

	.category-feed__filter-bar {
		flex-wrap: wrap;
		padding: 24px;
		margin: 0 -24px 40px;
	}

	.category-feed__filters {
		margin-left: 0;
	}

	.category-feed__card {
		flex-direction: column;
		gap: 24px;
	}

	.category-feed__image {
		flex: 0 0 auto;
		width: 100%;
	}

	.category-feed__content {
		flex: 1 1 auto;
		width: 100%;
	}

	.category-feed__cta {
		width: 100%;
	}
}

/* ── Map (mobile) ──────────────────────────────────────────────────────── */
@media ( max-width: 900px ) {
	.map-embed {
		height: 35vh;
	}
}

/* ── Footer CTA (mobile) ───────────────────────────────────────────────── */
@media ( max-width: 900px ) {
	.footer-cta {
		padding: 60px 24px;
	}

	.footer-cta__content {
		width: 100%;
	}
}

/* ── Footer Newsletter (mobile) ────────────────────────────────────────── */
@media ( max-width: 900px ) {
	.footer-newsletter {
		padding: 48px 24px;
	}

	.footer-newsletter__inner {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.footer-newsletter__heading,
	.footer-newsletter__form {
		width: 100%;
	}
}

/* ── Footer Main (mobile) ──────────────────────────────────────────────── */
@media ( max-width: 900px ) {
	.footer-main {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px;
		padding: 60px 24px;
	}

	.footer-col--logo {
		grid-column: 1 / -1;
	}
}

/* ── Header / Off-canvas menu (mobile) ─────────────────────────────────── */
@media ( max-width: 900px ) {
	.nav-menu,
	.header-btn--login,
	.header-btn--store {
		display: none;
	}

	.site-logo__link--desktop { display: none; }
	.site-logo__link--mobile { display: block; }

	#site-nav {
		flex: 0;
	}

	.header-actions {
		margin-left: auto;
	}

	.header-inner {
		padding: 0 20px;
	}

	.offcanvas__panel {
		width: 85%;
		padding: 60px 32px;
	}

	.offcanvas__menu a {
		font-size: 22px;
		line-height: 2;
	}

	.offcanvas__menu-wrap--desktop {
		display: none;
	}

	.offcanvas__menu-wrap--mobile {
		display: block;
	}
}
