:root {
	--color-navy: #07172f;
	--color-dark-navy: #041020;
	--color-indigo: #27217d;
	--color-primary: var(--color-primary);
	--color-violet: #635bff;
	--color-cyan: #18a8d8;
	--color-white: #ffffff;
	--color-off-white: #f7f8fc;
	--color-light: #eef1f7;
	--color-text: #152039;
	--color-muted: #667085;
	--color-border: #dde3ec;
	--color-success: #169b62;
	--shadow-soft: 0 22px 70px rgba(7, 23, 47, 0.14);
	--shadow-card: 0 14px 40px rgba(7, 23, 47, 0.12);
	--radius-sm: 12px;
	--radius-md: 18px;
	--radius-lg: 22px;
	--container: min(100% - 40px, 1320px);
	--narrow: min(100% - 40px, 780px);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--color-white);
	color: var(--color-text);
	overflow-x: hidden;
	font-family: Inter, Manrope, "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.65;
	text-rendering: optimizeLegibility;
}

body.menu-open {
	overflow: hidden;
}

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

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

a:hover {
	color: var(--color-primary);
}

button,
input,
textarea {
	font: inherit;
}

button {
	cursor: pointer;
}

:focus-visible {
	outline: 3px solid rgba(24, 168, 216, 0.72);
	outline-offset: 3px;
}

.screen-reader-text,
.skip-link:not(:focus),
.honeypot {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
}

.skip-link:focus {
	position: fixed;
	z-index: 9999;
	top: 12px;
	left: 12px;
	padding: 12px 16px;
	background: var(--color-white);
	color: var(--color-dark-navy);
	border-radius: 8px;
}

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

.narrow {
	width: var(--narrow);
	max-width: 100%;
}

.section {
	padding: clamp(72px, 9vw, 128px) 0;
}

.section--light {
	background: var(--color-off-white);
}

.section-heading {
	max-width: 760px;
	margin-bottom: 38px;
}

.section-heading--center {
	margin-inline: auto;
	text-align: center;
}

.eyebrow,
.card-kicker {
	margin: 0 0 12px;
	color: var(--color-cyan);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

h1,
h2,
h3 {
	margin: 0;
	color: var(--color-navy);
	line-height: 1.05;
	letter-spacing: 0;
}

h1 {
	font-size: clamp(3rem, 7vw, 6.75rem);
	max-width: 980px;
}

h2 {
	font-size: clamp(2rem, 4vw, 4.15rem);
}

h3 {
	font-size: clamp(1.15rem, 1.7vw, 1.45rem);
	line-height: 1.2;
}

p {
	margin: 0;
}

p + p,
.content-flow > * + * {
	margin-top: 1.05em;
}

.content-flow h2 {
	margin-top: 1.45em;
	font-size: clamp(1.65rem, 3vw, 2.6rem);
}

.content-flow h3 {
	margin-top: 1.35em;
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
	margin-top: 30px;
}

.button {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border: 1px solid transparent;
	border-radius: 10px;
	padding: 13px 18px;
	font-weight: 800;
	line-height: 1;
	transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
	transition: transform 180ms ease;
}

.button:hover svg {
	transform: translateX(3px);
}

.button--primary {
	background: linear-gradient(135deg, var(--color-primary), var(--color-violet));
	color: var(--color-white);
	box-shadow: 0 12px 28px rgba(67, 56, 202, 0.28);
}

.button--primary:hover {
	color: var(--color-white);
	transform: translateY(-2px);
}

.button--secondary {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.28);
	color: currentColor;
}

.text-link {
	display: inline-flex;
	margin-top: 16px;
	color: var(--color-primary);
	font-weight: 800;
}

.site-header {
	position: fixed;
	z-index: 1000;
	top: 0;
	right: 0;
	left: 0;
	transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header--solid,
.site-header.is-scrolled {
	background: rgba(255, 255, 255, 0.94);
	border-bottom: 1px solid rgba(221, 227, 236, 0.8);
	box-shadow: 0 12px 34px rgba(7, 23, 47, 0.08);
	backdrop-filter: blur(16px);
}

.site-header--overlay:not(.is-scrolled) {
	color: var(--color-white);
}

.header-inner {
	display: grid;
	width: var(--container);
	min-height: 82px;
	margin-inline: auto;
	grid-template-columns: auto 1fr auto;
	gap: 24px;
	align-items: center;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-weight: 900;
}

.custom-logo-link img {
	max-width: 210px;
	height: auto;
}

.brand-mark {
	position: relative;
	width: 42px;
	height: 30px;
	border-radius: 999px;
	border-bottom: 5px solid var(--color-cyan);
	transform: rotate(-10deg);
}

.brand-mark::before,
.brand-mark span {
	position: absolute;
	content: "";
	border-radius: 999px;
}

.brand-mark::before {
	top: 4px;
	left: 8px;
	width: 28px;
	height: 16px;
	border-top: 5px solid #ff3f7f;
}

.brand-mark span {
	right: -2px;
	bottom: 3px;
	width: 30px;
	height: 14px;
	border-bottom: 5px solid #5be1b7;
}

.brand-text {
	font-size: 1.04rem;
	text-transform: uppercase;
}

.menu {
	display: flex;
	gap: 26px;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.menu a {
	font-size: 0.9rem;
	font-weight: 750;
}

.desktop-nav {
	justify-self: center;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.icon-button,
.menu-toggle {
	display: inline-grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border: 1px solid rgba(102, 112, 133, 0.22);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.1);
	color: currentColor;
}

.icon-button svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
}

.menu-toggle {
	display: none;
}

.menu-toggle span:not(.screen-reader-text) {
	width: 18px;
	height: 2px;
	background: currentColor;
}

.header-phone {
	font-weight: 800;
	white-space: nowrap;
}

.mega-menu {
	display: none;
	position: absolute;
	top: 82px;
	left: 50%;
	width: min(980px, calc(100% - 40px));
	transform: translateX(-50%);
	padding: 26px;
	background: var(--color-white);
	color: var(--color-text);
	border: 1px solid var(--color-border);
	border-radius: 18px;
	box-shadow: var(--shadow-soft);
}

.site-header:focus-within .mega-menu,
.site-header:hover .mega-menu {
	display: block;
}

.mega-menu__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 24px;
}

.mega-menu h3 {
	margin-bottom: 12px;
	font-size: 0.95rem;
}

.mega-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.mega-menu li + li {
	margin-top: 8px;
}

.search-panel {
	position: fixed;
	z-index: 1100;
	inset: 0;
	display: grid;
	place-items: center;
	padding: 24px;
	background: rgba(4, 16, 32, 0.78);
	backdrop-filter: blur(10px);
}

.search-panel[hidden],
.mobile-panel[hidden] {
	display: none;
}

.search-panel form {
	display: grid;
	width: min(640px, 100%);
	gap: 14px;
	padding: 24px;
	background: var(--color-white);
	border-radius: 18px;
	box-shadow: var(--shadow-soft);
}

.mobile-panel {
	position: fixed;
	z-index: 1200;
	inset: 0 0 0 auto;
	width: min(420px, 100%);
	padding: 22px;
	background: var(--color-white);
	color: var(--color-text);
	box-shadow: -20px 0 70px rgba(7, 23, 47, 0.18);
	overflow-y: auto;
}

.mobile-panel__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 28px;
	font-weight: 900;
}

.menu--mobile {
	display: grid;
	gap: 0;
}

.menu--mobile a {
	display: block;
	padding: 14px 0;
	border-bottom: 1px solid var(--color-border);
	font-size: 1rem;
}

.hero {
	position: relative;
	display: grid;
	min-height: 760px;
	align-items: center;
	padding: 150px 0 90px;
	background-image: linear-gradient(90deg, rgba(4, 16, 32, 0.9) 0%, rgba(7, 23, 47, 0.7) 42%, rgba(7, 23, 47, 0.22) 100%), var(--hero-image);
	background-position: center;
	background-size: cover;
	color: var(--color-white);
}

.hero::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 22%;
	content: "";
	background: linear-gradient(0deg, rgba(4, 16, 32, 0.96), transparent);
}

.hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 760px) minmax(220px, 360px);
	gap: 48px;
	align-items: end;
}

.hero h1,
.hero h2,
.hero h3,
.hero .eyebrow {
	color: var(--color-white);
}

.hero__content > p:not(.eyebrow) {
	max-width: 650px;
	font-size: clamp(1.05rem, 1.7vw, 1.35rem);
}

.trust-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 30px 0 0;
	padding: 0;
	list-style: none;
}

.trust-list li {
	padding: 9px 12px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	font-size: 0.88rem;
}

.hero-status {
	margin-left: auto;
	padding: 24px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 18px;
	backdrop-filter: blur(14px);
}

.hero-status span {
	display: block;
	color: rgba(255, 255, 255, 0.78);
}

.hero-status strong {
	display: block;
	margin-top: 10px;
	font-size: 2rem;
}

.split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(32px, 6vw, 86px);
	align-items: center;
}

.split--intro {
	grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
}

.stats-band {
	background: linear-gradient(135deg, var(--color-indigo), #1a63d8 58%, var(--color-violet));
	color: var(--color-white);
}

.stats-band h2,
.stats-band .eyebrow {
	color: var(--color-white);
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 18px;
	margin-top: 42px;
}

.stat {
	padding: 26px;
	background: rgba(255, 255, 255, 0.11);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 18px;
	text-align: center;
}

.stat strong {
	display: block;
	font-size: clamp(2rem, 4vw, 3.3rem);
	line-height: 1;
}

.admin-only-note,
.notice-text {
	padding: 16px 18px;
	background: rgba(24, 168, 216, 0.12);
	border: 1px solid rgba(24, 168, 216, 0.25);
	border-radius: 12px;
}

.card-grid,
.post-grid,
.feature-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.image-card,
.post-card,
.industry-card,
.feature-card,
.option-card,
.contact-cards article,
.tracking-result,
.tracking-form,
.quote-aside {
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	box-shadow: 0 8px 26px rgba(7, 23, 47, 0.06);
	overflow: hidden;
}

.image-card,
.post-card,
.industry-card,
.option-card {
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.image-card:hover,
.post-card:hover,
.industry-card:hover,
.option-card:hover {
	transform: translateY(-4px);
	border-color: rgba(67, 56, 202, 0.25);
	box-shadow: var(--shadow-card);
}

.image-card__media,
.post-card__media,
.industry-card__media {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--color-light);
}

.image-card img,
.post-card img,
.industry-card img,
.option-card img,
.rounded-media,
.media-stack img,
.article-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.image-card img,
.post-card img,
.industry-card img,
.option-card img {
	transition: transform 220ms ease;
}

.image-card:hover img,
.post-card:hover img,
.industry-card:hover img,
.option-card:hover img {
	transform: scale(1.03);
}

.image-card__body,
.post-card__body,
.industry-card > div,
.option-card,
.feature-card,
.quote-aside,
.tracking-form,
.tracking-result,
.contact-cards article {
	padding: 24px;
}

.image-card__body p,
.post-card__body p,
.industry-card p,
.feature-card p,
.option-card p {
	color: var(--color-muted);
}

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

.industry-card {
	display: grid;
}

.feature-card {
	position: relative;
}

.feature-card span {
	display: grid;
	width: 36px;
	height: 36px;
	margin-bottom: 18px;
	border-radius: 10px;
	background: linear-gradient(135deg, rgba(99, 91, 255, 0.18), rgba(24, 168, 216, 0.18));
}

.media-stack {
	position: relative;
	min-height: 520px;
}

.media-stack img:first-child {
	height: 470px;
	border-radius: 22px;
	box-shadow: var(--shadow-soft);
}

.media-stack img:last-child {
	position: absolute;
	right: -18px;
	bottom: 0;
	width: min(54%, 390px);
	border: 8px solid var(--color-white);
	border-radius: 18px;
	box-shadow: var(--shadow-card);
}

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

.check-list.columns {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.check-list li {
	position: relative;
	padding-left: 28px;
}

.check-list li::before {
	position: absolute;
	top: 0.7em;
	left: 0;
	width: 12px;
	height: 12px;
	content: "";
	border-radius: 50%;
	background: linear-gradient(135deg, var(--color-cyan), var(--color-violet));
}

.timeline {
	display: grid;
	grid-template-columns: repeat(7, minmax(190px, 1fr));
	gap: 18px;
	overflow-x: auto;
	padding-bottom: 10px;
	scroll-snap-type: x proximity;
}

.timeline--page {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	overflow: visible;
}

.timeline__item {
	position: relative;
	min-height: 260px;
	padding: 24px;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: 18px;
	box-shadow: 0 8px 26px rgba(7, 23, 47, 0.06);
	scroll-snap-align: start;
}

.timeline__item span {
	display: inline-flex;
	margin-bottom: 40px;
	color: var(--color-violet);
	font-size: 0.9rem;
	font-weight: 900;
}

.timeline__item::after {
	position: absolute;
	top: 56px;
	left: 24px;
	width: calc(100% - 48px);
	height: 2px;
	content: "";
	background: linear-gradient(90deg, var(--color-violet), rgba(24, 168, 216, 0.18));
}

.freight-options {
	background: var(--color-off-white);
}

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

.option-card img {
	aspect-ratio: 16 / 10;
	margin: -24px -24px 22px;
	width: calc(100% + 48px);
	max-width: none;
}

.centered {
	display: flex;
	justify-content: center;
	margin-top: 32px;
}

.dark-split {
	background: var(--color-dark-navy);
	color: rgba(255, 255, 255, 0.78);
}

.dark-split h2,
.dark-split h3,
.dark-split .eyebrow {
	color: var(--color-white);
}

.rounded-media {
	aspect-ratio: 16 / 10;
	border-radius: 22px;
	box-shadow: var(--shadow-soft);
}

.network-section {
	background: linear-gradient(180deg, var(--color-white), var(--color-off-white));
}

.insights-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
	gap: 32px;
	align-items: stretch;
}

.post-grid--compact {
	grid-template-columns: 1fr;
}

.post-grid--compact .post-card {
	display: grid;
	grid-template-columns: 190px 1fr;
	align-items: center;
}

.impact-card {
	display: flex;
	min-height: 520px;
	flex-direction: column;
	justify-content: flex-end;
	padding: 34px;
	background-image: linear-gradient(180deg, rgba(4, 16, 32, 0.1), rgba(4, 16, 32, 0.92)), var(--impact-image);
	background-position: center;
	background-size: cover;
	border-radius: 18px;
	color: var(--color-white);
}

.impact-card h3 {
	color: var(--color-white);
	font-size: clamp(1.8rem, 3vw, 3rem);
}

.final-cta {
	padding: clamp(90px, 12vw, 150px) 0;
	background-image: linear-gradient(90deg, rgba(4, 16, 32, 0.92), rgba(7, 23, 47, 0.6)), var(--cta-image);
	background-position: center;
	background-size: cover;
	color: var(--color-white);
}

.final-cta h2,
.final-cta .eyebrow {
	color: var(--color-white);
}

.final-cta__inner {
	max-width: 720px;
}

.page-hero {
	padding: 150px 0 86px;
	background: radial-gradient(circle at 86% 10%, rgba(24, 168, 216, 0.2), transparent 28%), linear-gradient(135deg, var(--color-dark-navy), var(--color-navy) 55%, #111766);
	color: rgba(255, 255, 255, 0.78);
}

.page-hero h1,
.page-hero h2,
.page-hero .breadcrumbs,
.page-hero .eyebrow {
	color: var(--color-white);
}

.page-hero--compact {
	padding-bottom: 72px;
}

.page-hero--article h1,
.page-hero--compact h1 {
	font-size: clamp(2.7rem, 5vw, 5.5rem);
}

.page-hero p {
	max-width: 780px;
	font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.breadcrumbs {
	margin-bottom: 22px;
	font-size: 0.86rem;
}

.breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.breadcrumbs li + li::before {
	margin-right: 8px;
	content: "/";
	opacity: 0.55;
}

.service-hero-media {
	aspect-ratio: 16 / 10;
	overflow: hidden;
	border-radius: 22px;
	box-shadow: var(--shadow-soft);
}

.article-layout {
	display: grid;
	grid-template-columns: 260px minmax(0, 1fr);
	gap: 62px;
	align-items: start;
}

.toc {
	position: sticky;
	top: 110px;
	display: grid;
	gap: 10px;
	padding: 20px;
	background: var(--color-off-white);
	border: 1px solid var(--color-border);
	border-radius: 14px;
}

.toc h2 {
	font-size: 1rem;
}

.toc a {
	color: var(--color-muted);
	font-weight: 800;
}

.article-image {
	margin-top: -44px;
}

.article-image img {
	aspect-ratio: 16 / 7;
	border-radius: 22px;
	box-shadow: var(--shadow-soft);
}

.inline-cta {
	margin-top: 48px;
	padding: 32px;
	background: linear-gradient(135deg, rgba(67, 56, 202, 0.1), rgba(24, 168, 216, 0.08));
	border: 1px solid rgba(67, 56, 202, 0.18);
	border-radius: 18px;
}

.number-list {
	display: grid;
	gap: 12px;
	margin: 22px 0;
	padding-left: 1.4rem;
}

.accordion {
	display: grid;
	gap: 12px;
}

.accordion__item {
	border: 1px solid var(--color-border);
	border-radius: 14px;
	overflow: hidden;
}

.accordion__item h3 {
	font-size: 1rem;
}

.accordion__item button {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px;
	background: var(--color-white);
	border: 0;
	color: var(--color-text);
	font-weight: 900;
	text-align: left;
}

.accordion__item button span {
	width: 16px;
	height: 16px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	transition: transform 180ms ease;
}

.accordion__item button[aria-expanded="true"] span {
	transform: rotate(225deg);
}

.accordion__item div {
	padding: 0 18px 18px;
	color: var(--color-muted);
}

.filter-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 28px;
}

.filter-bar button {
	min-height: 42px;
	padding: 10px 14px;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: 999px;
	color: var(--color-text);
	font-weight: 800;
}

.filter-bar button.is-active {
	background: var(--color-navy);
	color: var(--color-white);
}

.quote-layout,
.contact-grid,
.tracking-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.45fr);
	gap: 34px;
	align-items: start;
}

.quote-form,
.tracking-form {
	display: grid;
	gap: 22px;
}

.quote-form fieldset {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin: 0;
	padding: 24px;
	border: 1px solid var(--color-border);
	border-radius: 18px;
}

.quote-form legend {
	padding: 0 8px;
	color: var(--color-navy);
	font-weight: 900;
}

.quote-form label,
.tracking-form label,
.search-form label {
	display: grid;
	gap: 7px;
	color: var(--color-text);
	font-weight: 800;
}

.quote-form input,
.quote-form textarea,
.tracking-form input,
.search-form input,
.search-panel input {
	width: 100%;
	min-height: 48px;
	padding: 12px 14px;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: 10px;
	color: var(--color-text);
}

.quote-form textarea {
	resize: vertical;
}

.checkbox-grid {
	display: grid;
	grid-column: 1 / -1;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.checkbox-grid label,
.consent {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-weight: 650;
}

.checkbox-grid input,
.consent input {
	width: auto;
	min-height: 0;
	margin-top: 5px;
}

.quote-form fieldset > label:has(textarea),
.quote-form fieldset > .consent {
	grid-column: 1 / -1;
}

.quote-aside {
	position: sticky;
	top: 110px;
}

.quote-aside img {
	aspect-ratio: 16 / 10;
	margin: -24px -24px 24px;
	width: calc(100% + 48px);
	max-width: none;
	object-fit: cover;
}

.contact-cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.contact-cards h2 {
	font-size: 1.1rem;
}

.compact-form {
	padding: 24px;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: 18px;
	box-shadow: var(--shadow-card);
}

.map-link {
	margin-top: 30px;
}

.tracking-result dl {
	display: grid;
	grid-template-columns: 150px 1fr;
	gap: 10px 16px;
}

.tracking-result dt {
	color: var(--color-muted);
	font-weight: 800;
}

.search-form {
	display: flex;
	gap: 10px;
	max-width: 620px;
	margin-top: 24px;
}

.search-form label {
	flex: 1;
}

.form-notice {
	padding: 14px 16px;
	border-radius: 12px;
	background: rgba(22, 155, 98, 0.12);
	border: 1px solid rgba(22, 155, 98, 0.22);
	color: #0d6c43;
}

.not-found {
	min-height: 100vh;
	display: grid;
	align-items: center;
	padding: 130px 0 80px;
	background: var(--color-off-white);
}

.not-found__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
	gap: 48px;
	align-items: center;
}

.not-found img {
	border-radius: 22px;
	box-shadow: var(--shadow-soft);
}

.site-footer {
	padding: 70px 0 24px;
	background: linear-gradient(135deg, var(--color-dark-navy), var(--color-indigo));
	color: rgba(255, 255, 255, 0.76);
}

.site-footer h2 {
	margin-bottom: 16px;
	color: var(--color-white);
	font-size: 0.9rem;
	text-transform: uppercase;
}

.site-footer ul {
	display: grid;
	gap: 9px;
	margin: 0;
	padding: 0;
	list-style: none;
}

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

.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr repeat(4, 1fr);
	gap: 42px;
}

.footer-brand p {
	max-width: 340px;
	margin-top: 18px;
}

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

.social-links {
	display: flex;
	gap: 10px;
	margin-top: 24px;
}

.social-links a {
	display: grid;
	width: 36px;
	height: 36px;
	place-items: center;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 9px;
	color: var(--color-white);
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
}

.footer-bottom {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: space-between;
	margin-top: 56px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	font-size: 0.86rem;
}

.footer-bottom nav {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
}

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

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

@media (max-width: 1180px) {
	.desktop-nav,
	.header-phone,
	.header-quote {
		display: none;
	}

	.header-inner {
		grid-template-columns: auto auto;
		justify-content: space-between;
	}

	.menu-toggle {
		display: inline-grid;
	}

	.mega-menu {
		display: none !important;
	}

	.card-grid,
	.post-grid,
	.feature-grid,
	.option-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.industry-grid,
	.footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hero__inner,
	.split,
	.quote-layout,
	.contact-grid,
	.tracking-layout,
	.insights-layout,
	.not-found__inner {
		grid-template-columns: 1fr;
	}

	.hero-status,
	.quote-aside {
		position: static;
		margin-left: 0;
	}

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

	.toc {
		position: static;
	}
}

@media (max-width: 760px) {
	:root {
		--container: min(100% - 28px, 1320px);
		--narrow: min(100% - 28px, 780px);
	}

	.section {
		padding: 64px 0;
	}

	.header-inner {
		min-height: 70px;
	}

	.brand-text {
		font-size: 0.94rem;
	}

	.hero {
		min-height: 720px;
		padding-top: 118px;
	}

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

	.card-grid,
	.post-grid,
	.feature-grid,
	.option-grid,
	.industry-grid,
	.stats-grid,
	.timeline--page,
	.footer-grid,
	.contact-cards,
	.checkbox-grid,
	.quote-form fieldset,
	.check-list.columns {
		grid-template-columns: 1fr;
	}

	.media-stack {
		min-height: auto;
	}

	.media-stack img:first-child {
		height: auto;
		aspect-ratio: 16 / 11;
	}

	.media-stack img:last-child {
		position: static;
		width: 100%;
		margin-top: 14px;
		border-width: 0;
	}

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

	.page-hero {
		padding-top: 112px;
	}

	.quote-form fieldset > label,
	.quote-form fieldset > label:has(textarea),
	.quote-form fieldset > .consent {
		grid-column: auto;
	}

	.search-form,
	.footer-bottom {
		display: grid;
	}

	.tracking-result dl {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 420px) {
	h1 {
		font-size: clamp(2.45rem, 16vw, 3.2rem);
	}

	.button-row,
	.trust-list {
		display: grid;
	}

	.button {
		width: 100%;
	}

	.image-card__body,
	.post-card__body,
	.industry-card > div,
	.option-card,
	.feature-card,
	.quote-aside,
	.tracking-form,
	.tracking-result,
	.contact-cards article {
		padding: 20px;
	}
}

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

	*,
	*::before,
	*::after {
		animation-duration: 0.001ms;
		animation-iteration-count: 1;
		scroll-behavior: auto;
		transition-duration: 0.001ms;
	}

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

/* Emara 2.0 interface system. */
:root {
	--color-navy: #071b2f;
	--color-dark-navy: #041321;
	--color-indigo: #173b67;
	--color-primary: var(--color-primary);
	--color-violet: #4546b8;
	--color-cyan: #008fa3;
	--color-accent: #d63c70;
	--color-off-white: #f6f8fb;
	--color-light: #edf2f7;
	--color-text: #12253d;
	--color-muted: #5d6b7c;
	--color-border: #dbe2ea;
	--shadow-soft: 0 24px 60px rgba(7, 27, 47, 0.12);
	--shadow-card: 0 16px 34px rgba(7, 27, 47, 0.1);
	--radius-sm: 6px;
	--radius-md: 8px;
	--radius-lg: 8px;
	--container: min(100% - 48px, 1280px);
	--narrow: min(100% - 48px, 820px);
}

body {
	font-size: 16px;
	line-height: 1.6;
}

body.panel-open,
body.menu-open {
	overflow: hidden;
}

button,
input,
select,
textarea {
	font: inherit;
}

h1 {
	max-width: 900px;
	font-size: clamp(3.1rem, 6.2vw, 5.8rem);
}

h2 {
	font-size: clamp(2rem, 3.7vw, 3.65rem);
}

h3 {
	font-size: clamp(1.1rem, 1.45vw, 1.35rem);
}

.section {
	padding: clamp(68px, 7vw, 100px) 0;
}

.section-heading {
	max-width: 720px;
	margin-bottom: 34px;
}

.section-heading > p:not(.eyebrow) {
	max-width: 640px;
	margin-top: 15px;
	color: var(--color-muted);
}

.section-action {
	margin-top: -68px;
	margin-bottom: 34px;
	text-align: right;
}

.section-action .text-link,
.centered .text-link {
	margin-top: 0;
}

.eyebrow,
.card-kicker {
	margin-bottom: 10px;
	color: var(--color-cyan);
	font-size: 0.74rem;
	letter-spacing: 0;
}

.button {
	min-height: 46px;
	border-radius: 6px;
	padding: 13px 18px;
}

.button--primary {
	background: var(--color-primary);
	box-shadow: 0 10px 22px rgba(23, 105, 210, 0.22);
}

.button--primary:hover {
	background: #105bb9;
}

.button--secondary,
.button--outline,
.button--ghost {
	background: transparent;
	border-color: currentColor;
	box-shadow: none;
}

.button--outline,
.button--ghost {
	color: var(--color-navy);
}

.button--outline:hover,
.button--ghost:hover {
	background: var(--color-light);
	color: var(--color-navy);
}

.text-link {
	align-items: center;
	gap: 8px;
	color: var(--color-primary);
}

.text-link::after {
	content: "\2192";
}

.site-header {
	min-height: 76px;
}

.site-header--solid,
.site-header.is-scrolled,
.site-header.mega-open {
	background: rgba(255, 255, 255, 0.97);
	color: var(--color-text);
	border-bottom-color: rgba(219, 226, 234, 0.9);
	box-shadow: 0 8px 30px rgba(7, 27, 47, 0.07);
}

.header-inner {
	min-height: 76px;
	gap: 20px;
}

.brand {
	min-width: 168px;
	gap: 10px;
}

.brand .custom-logo {
	display: block;
	width: auto;
	max-width: 200px;
	height: 44px;
	object-fit: contain;
}

.brand-mark {
	width: 38px;
	height: 28px;
}

.brand-text {
	font-size: 0.98rem;
}

.menu {
	gap: 22px;
}

.menu a,
.nav-menu-button {
	font-size: 0.87rem;
	font-weight: 750;
}

.nav-menu-button {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 8px 0;
	background: none;
	border: 0;
	color: inherit;
}

.nav-menu-button span {
	display: inline-block;
	font-size: 1.05rem;
	font-weight: 400;
	transition: transform 180ms ease;
}

.nav-menu-button[aria-expanded="true"] span {
	transform: rotate(45deg);
}

.icon-button,
.menu-toggle {
	width: 40px;
	height: 40px;
	border-radius: 6px;
}

.menu-toggle {
	grid-template-rows: repeat(3, 2px);
	align-content: center;
	gap: 4px;
}

.menu-toggle span:not(.screen-reader-text) {
	display: block;
}

.mega-menu,
.site-header:focus-within .mega-menu,
.site-header:hover .mega-menu {
	display: none;
}

.mega-menu:not([hidden]) {
	display: block;
}

.mega-menu[hidden],
.site-header:focus-within .mega-menu[hidden],
.site-header:hover .mega-menu[hidden] {
	display: none !important;
}

.mega-menu {
	top: 76px;
	width: min(1120px, calc(100% - 48px));
	padding: 28px;
	border-radius: 8px;
}

.mega-menu__grid {
	grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(210px, 1.25fr);
	gap: 26px;
}

.mega-menu h3 {
	font-size: 0.8rem;
	text-transform: uppercase;
}

.mega-menu a {
	color: var(--color-muted);
	font-size: 0.9rem;
}

.mega-menu a:hover {
	color: var(--color-primary);
}

.mega-menu__cta {
	padding: 20px;
	background: var(--color-off-white);
	border-left: 3px solid var(--color-cyan);
	border-radius: 4px;
}

.mega-menu__cta p {
	font-size: 0.9rem;
}

.search-panel form {
	position: relative;
	grid-template-columns: 1fr auto auto;
	align-items: end;
	border-radius: 8px;
}

.search-panel form label {
	grid-column: 1 / -1;
	font-size: 1.05rem;
}

.search-panel form button,
.mobile-panel__header button {
	min-height: 46px;
	padding: 10px 16px;
	background: var(--color-navy);
	border: 1px solid var(--color-navy);
	border-radius: 6px;
	color: var(--color-white);
	font-weight: 800;
}

.search-panel form [data-search-close],
.mobile-panel__header button {
	background: transparent;
	border-color: var(--color-border);
	color: var(--color-text);
}

.mobile-panel {
	padding: 24px 28px;
}

.mobile-panel__header {
	padding-bottom: 18px;
	border-bottom: 1px solid var(--color-border);
}

.mobile-panel > .button {
	width: 100%;
	margin-top: 28px;
}

.hero {
	min-height: min(820px, 100svh);
	padding: 140px 0 72px;
	background-image: linear-gradient(90deg, rgba(4, 19, 33, 0.93) 0%, rgba(4, 19, 33, 0.74) 44%, rgba(4, 19, 33, 0.18) 100%), var(--hero-image);
	background-position: 60% center;
}

.hero::after {
	height: 17%;
	background: linear-gradient(0deg, rgba(4, 19, 33, 0.84), transparent);
}

.hero__inner {
	grid-template-columns: minmax(0, 760px) minmax(210px, 300px);
	gap: clamp(30px, 5vw, 72px);
}

.hero h1 {
	max-width: 790px;
	font-size: clamp(3.25rem, 5.8vw, 5.65rem);
}

.hero__content > p:not(.eyebrow) {
	max-width: 680px;
	margin-top: 22px;
	font-size: clamp(1.02rem, 1.45vw, 1.22rem);
	line-height: 1.65;
}

.trust-list {
	gap: 22px;
	margin-top: 34px;
}

.trust-list li {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	color: rgba(255, 255, 255, 0.86);
	font-size: 0.84rem;
}

.trust-list svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: var(--color-cyan);
	stroke-width: 2;
}

.hero-status {
	padding: 22px;
	border-radius: 8px;
	background: rgba(4, 19, 33, 0.56);
	backdrop-filter: blur(10px);
}

.hero-status strong {
	margin-top: 8px;
	font-size: clamp(1.5rem, 2.4vw, 2rem);
}

.hero-status small {
	display: block;
	margin-top: 5px;
	color: rgba(255, 255, 255, 0.7);
}

.stats-band {
	background: var(--color-indigo);
}

.stat {
	border-radius: 6px;
}

.card-grid,
.post-grid,
.option-grid {
	gap: 22px;
}

.image-card,
.post-card,
.industry-card,
.feature-card,
.option-card,
.contact-cards article,
.tracking-result,
.tracking-form,
.quote-aside {
	border-radius: 8px;
	box-shadow: 0 7px 22px rgba(7, 27, 47, 0.055);
}

.image-card:hover,
.post-card:hover,
.industry-card:hover,
.option-card:hover {
	transform: translateY(-3px);
}

.image-card__media,
.post-card__media,
.industry-card__media {
	aspect-ratio: 16 / 9;
}

.image-card__body,
.post-card__body,
.industry-card > div,
.feature-card,
.contact-cards article,
.tracking-form,
.tracking-result,
.quote-aside {
	padding: 22px;
}

.image-card__body h3 + p,
.post-card__body h3 + p,
.industry-card h3 + p,
.feature-card h3 + p,
.option-card h3 + p {
	margin-top: 10px;
}

.industry-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.feature-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.feature-card__icon,
.contact-card__icon,
.tracking-result__icon {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	margin-bottom: 18px;
	background: rgba(0, 143, 163, 0.1);
	border-radius: 6px;
	color: var(--color-cyan);
}

.feature-card__icon svg,
.contact-card__icon svg,
.tracking-result__icon svg,
.contact-intro-panel > svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.media-stack {
	min-height: 470px;
}

.media-stack img:first-child {
	height: 430px;
	border-radius: 8px;
}

.media-stack img:last-child {
	right: -10px;
	width: min(48%, 330px);
	height: auto;
	aspect-ratio: 4 / 3;
	border: 6px solid var(--color-white);
	border-radius: 6px;
}

.check-list li::before {
	width: 9px;
	height: 9px;
	background: var(--color-cyan);
}

.timeline {
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 14px;
	overflow: visible;
	padding-bottom: 0;
}

.timeline--page {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.timeline__item {
	min-height: 250px;
	padding: 22px;
	border-radius: 8px;
}

.timeline__item span {
	margin-bottom: 34px;
	color: var(--color-primary);
}

.timeline__item::after {
	top: 53px;
	left: 22px;
	width: calc(100% - 44px);
	background: linear-gradient(90deg, var(--color-primary), rgba(0, 143, 163, 0.18));
}

.timeline__item p {
	margin-top: 12px;
	color: var(--color-muted);
	font-size: 0.92rem;
}

.timeline__item h2 {
	font-size: clamp(1.15rem, 1.7vw, 1.45rem);
	line-height: 1.2;
}

.feature-grid--compact {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.option-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	padding: 0;
}

.option-card__media {
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: var(--color-light);
}

.option-card img,
.option-card__media img {
	width: 100%;
	max-width: 100%;
	height: 100%;
	margin: 0;
	aspect-ratio: auto;
	object-fit: cover;
}

.option-card__body {
	padding: 22px;
}

.dark-split {
	background: #061827;
}

.rounded-media {
	border-radius: 8px;
}

.insights-layout {
	grid-template-columns: minmax(0, 1.35fr) minmax(310px, 0.65fr);
	gap: 26px;
}

.post-grid--compact .post-card {
	grid-template-columns: 210px 1fr;
}

.post-grid--compact .post-card__media {
	height: 100%;
	min-height: 176px;
	aspect-ratio: auto;
}

.post-card__body h2 {
	font-size: clamp(1.16rem, 1.65vw, 1.45rem);
	line-height: 1.2;
}

.post-card__body h2 + p {
	margin-top: 10px;
}

.impact-card {
	min-height: 100%;
	padding: 30px;
	border-radius: 8px;
}

.impact-card h3 {
	font-size: clamp(1.7rem, 2.6vw, 2.5rem);
}

.impact-card > p:not(.eyebrow) {
	margin-top: 16px;
}

.final-cta {
	padding: clamp(78px, 9vw, 116px) 0;
}

.page-hero {
	padding: 136px 0 72px;
	background: var(--color-navy);
}

.page-hero--compact {
	padding-bottom: 64px;
}

.page-hero--article h1,
.page-hero--compact h1 {
	font-size: clamp(2.7rem, 4.8vw, 4.8rem);
}

.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-bottom: 22px;
	font-size: 0.83rem;
}

.breadcrumbs a {
	color: rgba(255, 255, 255, 0.72);
}

.quote-layout,
.contact-grid,
.tracking-layout {
	grid-template-columns: minmax(0, 1fr) minmax(300px, 0.4fr);
	gap: 30px;
}

.quote-form,
.tracking-form {
	gap: 20px;
}

.quote-form fieldset {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	padding: 28px;
	border-radius: 8px;
}

.quote-form legend {
	padding: 0 10px;
	font-size: 1.2rem;
}

.fieldset-intro,
.form-privacy,
.quote-step-actions {
	grid-column: 1 / -1;
}

.fieldset-intro,
.form-privacy,
.tracking-form__intro {
	color: var(--color-muted);
	font-size: 0.91rem;
}

.quote-form input,
.quote-form select,
.quote-form textarea,
.tracking-form input,
.search-form input,
.search-panel input {
	width: 100%;
	min-height: 48px;
	padding: 11px 13px;
	background: var(--color-white);
	border: 1px solid #cbd5e1;
	border-radius: 6px;
	color: var(--color-text);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus,
.tracking-form input:focus,
.search-form input:focus,
.search-panel input:focus {
	border-color: var(--color-primary);
	box-shadow: 0 0 0 3px rgba(23, 105, 210, 0.12);
	outline: 0;
}

.quote-form input[type="checkbox"] {
	width: 18px;
	height: 18px;
	min-height: 0;
	padding: 0;
}

.quote-progress {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.quote-progress li {
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
	padding: 11px 12px;
	background: var(--color-off-white);
	border-bottom: 3px solid var(--color-border);
	color: var(--color-muted);
	font-size: 0.83rem;
	font-weight: 800;
}

.quote-progress li span {
	display: grid;
	width: 24px;
	height: 24px;
	flex: 0 0 24px;
	place-items: center;
	background: var(--color-light);
	border-radius: 50%;
}

.quote-progress li.is-active,
.quote-progress li.is-complete {
	border-bottom-color: var(--color-primary);
	color: var(--color-navy);
}

.quote-progress li.is-active span,
.quote-progress li.is-complete span {
	background: var(--color-primary);
	color: var(--color-white);
}

.quote-step-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 10px;
	margin-top: 4px;
}

.has-js .quote-step:not(.is-active) {
	display: none;
}

.quote-aside {
	top: 98px;
}

.quote-aside img {
	margin: -22px -22px 22px;
	width: calc(100% + 44px);
}

.quote-aside h2 {
	font-size: 1.45rem;
}

.quote-aside ol {
	margin: 18px 0 0;
	padding-left: 20px;
}

.quote-aside li + li {
	margin-top: 10px;
}

.compact-form {
	padding: 28px;
	border-radius: 8px;
}

.contact-side {
	min-width: 0;
}

.contact-cards {
	grid-template-columns: 1fr;
}

.contact-cards article {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 16px;
	align-items: start;
}

.contact-card__icon {
	margin-bottom: 0;
}

.contact-intro-panel {
	padding: clamp(26px, 4vw, 42px);
	background: var(--color-navy);
	border-radius: 8px;
	color: rgba(255, 255, 255, 0.76);
}

.contact-intro-panel > svg {
	width: 36px;
	height: 36px;
	margin-bottom: 22px;
	color: var(--color-cyan);
}

.contact-intro-panel h2 {
	color: var(--color-white);
}

.contact-intro-panel .check-list li::before {
	background: var(--color-cyan);
}

.tracking-result,
.tracking-form {
	min-height: 100%;
}

.tracking-status-label {
	color: var(--color-cyan);
	font-size: 0.76rem;
	font-weight: 900;
	text-transform: uppercase;
}

.tracking-result h2 {
	margin-bottom: 18px;
	font-size: clamp(1.55rem, 2.4vw, 2.15rem);
}

.tracking-preview {
	display: grid;
	gap: 0;
	margin: 22px 0 0;
	padding: 0;
	list-style: none;
}

.tracking-preview li {
	position: relative;
	padding: 10px 0 10px 26px;
	border-top: 1px solid var(--color-border);
}

.tracking-preview li::before {
	position: absolute;
	top: 17px;
	left: 2px;
	width: 9px;
	height: 9px;
	content: "";
	background: var(--color-cyan);
	border-radius: 50%;
}

.not-found img {
	border-radius: 8px;
}

.site-footer {
	padding: 64px 0 24px;
	background: var(--color-dark-navy);
}

.footer-grid {
	grid-template-columns: minmax(240px, 1.45fr) repeat(4, minmax(120px, 1fr));
	gap: 34px;
}

.footer-brand .brand {
	min-width: 0;
}

.footer-brand .custom-logo {
	max-width: 190px;
}

.footer-brand p,
.footer-contact-column p {
	font-size: 0.9rem;
}

.footer-cta {
	display: inline-block;
	margin-top: 16px;
	padding-bottom: 3px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.48);
	color: var(--color-white);
	font-weight: 800;
}

.social-links {
	flex-wrap: wrap;
}

.social-links a {
	width: auto;
	height: 34px;
	padding: 0 10px;
	border-radius: 4px;
	text-transform: none;
}

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

.has-js .reveal:not(.is-visible) {
	opacity: 0;
	transform: translateY(16px);
}

@media (max-width: 1180px) {
	.mega-menu,
	.mega-menu:not([hidden]) {
		display: none;
	}

	.menu-toggle {
		display: grid;
	}

	.hero__inner {
		grid-template-columns: minmax(0, 720px) minmax(190px, 260px);
	}

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

	.timeline {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

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

@media (max-width: 920px) {
	:root {
		--container: min(100% - 40px, 1280px);
		--narrow: min(100% - 40px, 820px);
	}

	.hero {
		min-height: 760px;
		background-position: 66% center;
	}

	.hero__inner {
		grid-template-columns: 1fr;
		align-items: end;
	}

	.hero-status {
		width: min(100%, 430px);
		margin: 0;
	}

	.card-grid,
	.option-grid,
	.industry-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.split,
	.quote-layout,
	.contact-grid,
	.tracking-layout,
	.insights-layout,
	.not-found__inner {
		grid-template-columns: 1fr;
	}

	.quote-aside {
		position: static;
		display: grid;
		grid-template-columns: minmax(220px, 0.7fr) 1fr;
		column-gap: 26px;
	}

	.quote-aside img {
		grid-row: 1 / 4;
		margin: -22px 0 -22px -22px;
		width: calc(100% + 22px);
		height: calc(100% + 44px);
		aspect-ratio: auto;
	}

	.insights-layout .impact-card {
		min-height: 460px;
	}

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

	.footer-brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 700px) {
	:root {
		--container: min(100% - 32px, 1280px);
		--narrow: min(100% - 32px, 820px);
	}

	.section {
		padding: 56px 0;
	}

	h1,
	.hero h1 {
		font-size: clamp(2.65rem, 13vw, 4rem);
	}

	h2 {
		font-size: clamp(1.85rem, 9vw, 2.65rem);
	}

	.header-inner {
		min-height: 70px;
	}

	.brand {
		min-width: 0;
	}

	.brand .custom-logo {
		max-width: 164px;
		height: 38px;
	}

	.brand-mark {
		width: 34px;
	}

	.brand-text {
		font-size: 0.84rem;
	}

	.icon-button,
	.menu-toggle {
		width: 38px;
		height: 38px;
	}

	.hero {
		min-height: auto;
		padding: 122px 0 58px;
		background-image: linear-gradient(90deg, rgba(4, 19, 33, 0.94), rgba(4, 19, 33, 0.68)), var(--hero-image);
		background-position: 62% center;
	}

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

	.hero-status {
		display: none;
	}

	.trust-list {
		display: grid;
		gap: 10px;
	}

	.section-action {
		margin: -14px 0 28px;
		text-align: left;
	}

	.card-grid,
	.option-grid,
	.industry-grid,
	.feature-grid,
	.timeline,
	.timeline--page,
	.stats-grid,
	.checkbox-grid {
		grid-template-columns: 1fr;
	}

	.timeline__item {
		min-height: auto;
	}

	.media-stack {
		min-height: 0;
	}

	.media-stack img:first-child {
		height: auto;
		aspect-ratio: 16 / 10;
	}

	.media-stack img:last-child {
		position: static;
		width: 100%;
		margin-top: 12px;
		border: 0;
	}

	.check-list.columns {
		grid-template-columns: 1fr;
	}

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

	.post-grid--compact .post-card__media {
		min-height: 0;
		aspect-ratio: 16 / 9;
	}

	.quote-progress {
		grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	}

	.quote-progress li {
		justify-content: center;
		padding: 9px 4px;
		font-size: 0;
	}

	.quote-progress li span {
		font-size: 0.78rem;
	}

	.quote-form fieldset {
		grid-template-columns: 1fr;
		padding: 22px;
	}

	.quote-form fieldset > label,
	.quote-form fieldset > label:has(textarea),
	.quote-form fieldset > .consent,
	.fieldset-intro,
	.form-privacy,
	.quote-step-actions {
		grid-column: auto;
	}

	.quote-step-actions {
		justify-content: stretch;
	}

	.quote-step-actions .button {
		flex: 1 1 auto;
	}

	.quote-aside {
		display: block;
	}

	.quote-aside img {
		width: calc(100% + 44px);
		height: auto;
		margin: -22px -22px 22px;
	}

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

	.search-panel form input {
		grid-column: 1 / -1;
	}

	.page-hero {
		padding: 118px 0 56px;
	}

	.footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 34px 22px;
	}

	.footer-brand,
	.footer-contact-column {
		grid-column: 1 / -1;
	}
}

@media (max-width: 440px) {
	.header-inner {
		gap: 10px;
	}

	.brand-mark {
		width: 30px;
		height: 24px;
	}

	.brand-text {
		max-width: 90px;
		font-size: 0.76rem;
		line-height: 1.1;
	}

	.button-row {
		display: grid;
	}

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

	.image-card__body,
	.post-card__body,
	.industry-card > div,
	.option-card__body,
	.feature-card,
	.quote-aside,
	.tracking-form,
	.tracking-result,
	.contact-cards article,
	.compact-form {
		padding: 20px;
	}

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

	.footer-brand,
	.footer-contact-column {
		grid-column: auto;
	}

	.footer-bottom,
	.footer-bottom nav {
		display: grid;
	}
}

/* Type sizes change at deliberate layout breakpoints, not continuously. */
h1 {
	font-size: 5.5rem;
}

h2 {
	font-size: 3.4rem;
}

h3 {
	font-size: 1.3rem;
}

.content-flow h2 {
	font-size: 2.4rem;
}

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

.hero__content > p:not(.eyebrow),
.page-hero p {
	font-size: 1.15rem;
}

.stat strong {
	font-size: 3rem;
}

.impact-card h3 {
	font-size: 2.35rem;
}

.page-hero--article h1,
.page-hero--compact h1 {
	font-size: 4.5rem;
}

.timeline__item h2,
.post-card__body h2 {
	font-size: 1.35rem;
}

.tracking-result h2 {
	font-size: 2rem;
}

@media (max-width: 1180px) {
	h1,
	.hero h1 {
		font-size: 4.5rem;
	}

	h2 {
		font-size: 3rem;
	}
}

@media (max-width: 920px) {
	h1,
	.hero h1 {
		font-size: 4rem;
	}

	h2 {
		font-size: 2.75rem;
	}

	.page-hero--article h1,
	.page-hero--compact h1 {
		font-size: 3.75rem;
	}
}

@media (max-width: 700px) {
	h1,
	.hero h1 {
		font-size: 3.15rem;
	}

	h2 {
		font-size: 2.45rem;
	}

	.content-flow h2 {
		font-size: 2rem;
	}

	.page-hero--article h1,
	.page-hero--compact h1 {
		font-size: 3rem;
	}

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

	.impact-card h3 {
		font-size: 2rem;
	}
}

@media (max-width: 440px) {
	h1,
	.hero h1,
	.page-hero--article h1,
	.page-hero--compact h1 {
		font-size: 2.65rem;
	}

	h2 {
		font-size: 2.15rem;
	}
}

@media (max-width: 700px) and (max-height: 760px) {
	.hero {
		padding: 92px 0 24px;
	}

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

	.hero__content > p:not(.eyebrow) {
		margin-top: 16px;
		font-size: 0.86rem;
		line-height: 1.35;
	}

	.hero .button-row {
		gap: 8px;
		margin-top: 18px;
	}

	.hero .button {
		min-height: 42px;
		padding-block: 10px;
	}

	.hero .trust-list {
		gap: 6px;
		margin-top: 16px;
	}

	.hero .trust-list li {
		font-size: 0.75rem;
	}
}

/* New IA Classes */
.service-card {
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	box-shadow: 0 8px 26px rgba(7, 23, 47, 0.06);
	overflow: hidden;
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.service-card:hover {
	transform: translateY(-4px);
	border-color: rgba(67, 56, 202, 0.25);
	box-shadow: var(--shadow-card);
}
.service-card__body {
	padding: 24px;
}
.service-card__body p {
	color: var(--color-muted);
}
.trust-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
}
.trust-item {
	padding: 32px 24px;
	background: var(--color-white);
	border-radius: var(--radius-md);
	box-shadow: 0 8px 26px rgba(7, 23, 47, 0.06);
	border: 1px solid var(--color-border);
}
.section--dark {
	background: var(--color-navy);
	color: var(--color-white);
}
.section--dark .trust-item {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.1);
	box-shadow: none;
}
.section--dark h2, .section--dark h3 {
	color: var(--color-white);
}
.step-list {
	counter-reset: steps;
	list-style: none;
	padding: 0;
	margin: 24px 0;
}
.step-list li {
	position: relative;
	padding-left: 54px;
	margin-bottom: 24px;
}
.step-list li::before {
	counter-increment: steps;
	content: counter(steps);
	position: absolute;
	left: 0;
	top: -4px;
	width: 36px;
	height: 36px;
	background: linear-gradient(135deg, var(--color-primary), var(--color-violet));
	color: var(--color-white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 1.1rem;
}

/* ==========================================================================
   PREMIUM MODERN CORPORATE OVERRIDES
   ========================================================================== */

:root {
	/* Premium Colors */
	--color-navy: var(--color-navy); /* Deeper, richer ink black/navy */
	--color-dark-navy: var(--color-dark-navy);
	--color-indigo: var(--color-indigo);
	--color-primary: var(--color-primary);
	--color-violet: #1D4ED8;
	
	/* Refined Neutrals */
	--color-white: #ffffff;
	--color-off-white: #F8FAFC;
	--color-light: #F1F5F9;
	--color-text: #334155;
	--color-muted: #64748B;
	--color-border: rgba(15, 23, 42, 0.06); /* Ultra-subtle micro-borders */
	
	/* Multi-layered, luxurious shadows */
	--shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 20px 40px -10px rgba(0, 0, 0, 0.06);
	--shadow-card: 0 10px 15px -3px rgba(0, 0, 0, 0.04), 0 30px 60px -15px rgba(0, 0, 0, 0.1);
	
	/* Premium structural curves */
	--radius-sm: 8px;
	--radius-md: 16px;
	--radius-lg: 24px;
}

/* 1. Spatial Rhythm & Whitespace */
.section {
    padding: clamp(96px, 12vw, 160px) 0; /* Generous breathing room */
}

/* 2. Refined Typography */
body {
    font-family: Inter, "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
    color: var(--color-text);
    line-height: 1.75;
}
h1, h2, h3, h4, h5, h6 {
    text-transform: none;
    letter-spacing: -0.03em; /* Editorial tightness */
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1.15;
}
p {
    color: var(--color-muted); /* Softer readable slate */
}
.eyebrow, .card-kicker {
    letter-spacing: 0.08em;
    color: var(--color-primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
}

/* 3. Glassmorphism & Header */
.site-header--solid,
.site-header.is-scrolled,
.site-header.mega-open {
    background: rgba(255, 255, 255, 0.85); /* Translucent */
    backdrop-filter: blur(24px) saturate(1.5); /* Glass effect */
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}
.mega-menu {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
    border-radius: var(--radius-md);
}

/* 4. Hero Section Perfection */
.hero {
    background-image: linear-gradient(90deg, rgba(7, 34, 141, 0.95) 0%, rgba(10, 48, 181, 0.7) 60%, rgba(0, 248, 125, 0.2) 100%), var(--hero-image);
}
.hero h1, .hero h2, .hero h3, .hero .eyebrow,
.page-hero h1, .page-hero h2, .page-hero h3, .page-hero .eyebrow {
    color: var(--color-white);
    text-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.hero p:not(.eyebrow), .page-hero p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}
.hero::after {
    background: linear-gradient(0deg, var(--color-white), transparent);
    height: 25%; /* Smoother fade into content */
}
.hero-status {
    background: rgba(7, 34, 141, 0.6);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* 5. Buttons - Polished Micro-interactions */
.button {
    border-radius: 999px; /* Pill shape for premium feel */
    border: 1px solid transparent;
    box-shadow: 0 4px 12px -2px rgba(0, 248, 125, 0.3);
    text-transform: none;
    letter-spacing: 0.01em;
    font-weight: 600;
    background: var(--color-accent);
    color: var(--color-white);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.button:hover, .button:focus-visible {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 20px -4px rgba(0, 248, 125, 0.4);
    background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 100%);
}
.button--secondary {
    background: var(--color-white);
    color: var(--color-navy);
    border: 1px solid var(--color-border);
    box-shadow: 0 2px 8px -1px rgba(0,0,0, 0.03);
}
.button--secondary:hover {
    background: var(--color-off-white);
    box-shadow: 0 8px 16px -2px rgba(0,0,0, 0.05);
    color: var(--color-primary);
}

/* 6. Premium Cards */
.image-card, .impact-card, .stat-card, .process-card, .insight-card, .service-card {
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
    background: var(--color-white);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden; /* Ensure image rounding */
}
.image-card:hover, .service-card:hover, .insight-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-6px);
}
.image-card__media img, .service-card img, .insight-card img {
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.image-card:hover .image-card__media img, 
.service-card:hover img, 
.insight-card:hover img {
    transform: scale(1.05);
}
.trust-item {
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
    background: var(--color-white);
    padding: 32px;
}

/* 7. Structural UI Components */
.tracking-widget {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 48px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
    margin-top: -80px;
    position: relative;
    z-index: 10;
}
.tracking-form input {
    border-radius: 999px;
    border: 1px solid var(--color-border);
    background: var(--color-off-white);
    padding: 16px 28px;
    transition: all 0.3s ease;
}
.tracking-form input:focus {
    background: var(--color-white);
    box-shadow: 0 0 0 4px rgba(0, 248, 125, 0.1);
}

.process-step {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-soft);
    background: var(--color-white);
    transition: transform 0.3s ease;
}
.process-step:hover {
    transform: translateX(6px);
}
.process-step::before {
    box-shadow: 0 0 0 6px var(--color-white), 0 0 0 7px var(--color-border);
    border: 4px solid var(--color-primary);
    background: var(--color-white);
}

/* Fixes */
.site-header .mega-menu:not([hidden]) {
    display: block;
}
.menu {
    gap: 20px;
}
.menu a, .nav-menu-button {
    font-size: 0.95rem;
    font-weight: 500;
}
.desktop-nav {
    overflow: hidden;
}
@media (max-width: 1280px) {
    .header-inner {
        gap: 16px;
    }
    .menu {
        gap: 12px;
    }
}


/* Subpage Heroes Refinement */
.page-hero {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-indigo) 100%);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(0, 248, 125, 0.25), transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(56, 189, 248, 0.15), transparent 50%);
    pointer-events: none;
}

/* Timeline Upgrade */
.timeline {
    position: relative;
    padding-left: 32px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 24px;
    bottom: 24px;
    width: 2px;
    background: var(--color-border);
}
.timeline__item {
    position: relative;
    padding: 32px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    margin-bottom: 24px;
    transition: all 0.3s ease;
}
.timeline__item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-card);
}
.timeline__item span {
    position: absolute;
    left: -42px;
    top: 28px;
    width: 24px;
    height: 24px;
    background: var(--color-primary);
    color: transparent; /* hide the numbers for a cleaner look */
    border-radius: 50%;
    border: 4px solid var(--color-off-white);
    box-shadow: 0 0 0 1px var(--color-border);
    z-index: 2;
}
.timeline__item h2 {
    color: var(--color-navy);
    font-size: 1.2rem;
    margin-bottom: 8px;
}
.timeline__item p {
    margin: 0;
}


/* Global Premium Inputs */
input[type="text"], input[type="email"], input[type="tel"], select, textarea {
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    background: var(--color-off-white);
    padding: 16px 20px;
    transition: all 0.3s ease;
    font-family: inherit;
}
input:focus, select:focus, textarea:focus {
    background: var(--color-white);
    box-shadow: 0 0 0 4px rgba(0, 248, 125, 0.1);
    border-color: var(--color-primary);
    outline: none;
}


/* --- HOMEPAGE REBUILD CSS --- */
.hero--split {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding-top: 100px;
	overflow: hidden;
}
.hero-bg-image {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background-size: cover;
	background-position: center;
	z-index: 1;
}
.hero-overlay {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: linear-gradient(90deg, rgba(11,17,32,0.95) 0%, rgba(11,17,32,0.8) 50%, rgba(11,17,32,0.4) 100%);
	z-index: 2;
}
.hero--split .hero__inner {
	position: relative;
	z-index: 3;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
	width: 100%;
}
.glass-card {
	background: rgba(255,255,255,0.05);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: var(--radius-lg);
	padding: 40px;
	box-shadow: 0 24px 48px rgba(0,0,0,0.2);
}
@media (max-width: 991px) {
	.hero--split .hero__inner {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.hero--split .trust-list {
		justify-content: center;
		flex-wrap: wrap;
	}
	.process-timeline-horizontal {
		flex-direction: column;
		align-items: center;
		gap: 32px;
	}
	.process-step {
		width: 100%;
	}
	.insights-layout {
		grid-template-columns: 1fr;
	}
	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 767px) {
	.footer-grid {
		grid-template-columns: 1fr;
	}
	.hero--split h1 {
		font-size: 2.5rem;
	}
}
.site-header {
	background: transparent;
	position: absolute;
	width: 100%;
	top: 0;
	z-index: 100;
}
.site-header.is-scrolled {
	position: fixed;
	background: rgba(11,17,32,0.95);
	backdrop-filter: blur(10px);
}
.site-header a, .site-header .nav-menu-button {
	color: #fff;
}


/* --- BUTTON FIXES --- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 28px;
	font-size: 1rem;
	font-weight: 600;
	border-radius: var(--radius-sm);
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
	border: 1px solid transparent;
}
.btn--pill {
	border-radius: 999px;
}
.btn--primary {
	background: var(--color-primary);
	color: #fff;
}
.btn--primary:hover {
	background: var(--color-navy);
}
.btn--outline {
	background: transparent;
	border-color: rgba(255,255,255,0.4);
	color: #fff;
}
.btn--outline:hover {
	border-color: #fff;
	background: rgba(255,255,255,0.1);
}


/* --- CLEANED HEADER FIXES --- */
.site-main {
	margin-top: 0;
	padding-top: 0;
}
body {
	padding-top: 0;
}

@media (max-width: 1150px) {
	.hero--split .hero__inner {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.hero--split .trust-list {
		justify-content: center;
	}
	.hero-widget-right {
		display: flex;
		justify-content: center;
		width: 100%;
	}
}



/* --- FORCE FULL WIDTH HERO --- */
/* 100vw removed for mobile horizontal scroll fix */


/* Custom Styles added by Assistant */
.service-card-clean:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 24px rgba(0,0,0,0.06);
	border-color: rgba(37,99,235,0.3);
}
.service-card-clean .icon-wrapper {
	transition: all 0.3s ease;
}
.service-card-clean:hover .icon-wrapper {
	background: var(--color-primary);
	color: #fff;
}


/* Process Step Animations added by Assistant */
.process-step {
	transition: all 0.3s ease;
}
.process-step:hover {
	transform: translateY(-8px);
}
.process-step .step-icon {
	transition: all 0.3s ease;
}
.process-step:hover .step-icon {
	box-shadow: 0 12px 24px rgba(37,99,235,0.15);
	border-color: rgba(37,99,235,0.2);
}


/* Route Link Animations added by Assistant */
.route-links a {
	transition: all 0.2s ease;
	padding: 8px 0;
}
.route-links a:hover {
	transform: translateX(8px);
	color: var(--color-navy);
}
.route-links a:hover span {
	background: var(--color-primary);
	color: #fff;
}
.route-links a span {
	transition: all 0.2s ease;
}


/* Glass Card Animations added by Assistant */
.glass-card {
	transition: all 0.4s ease;
}
.glass-card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.route-node {
	transition: all 0.5s ease;
}
.glass-card:hover .route-node {
	background: #fff;
}
.glass-card:hover .route-node.active {
	background: var(--color-primary);
}


/* Insights Card Animations added by Assistant */
.featured-insight, .small-insight-card {
	transition: all 0.3s ease;
}
.featured-insight:hover, .small-insight-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}
.featured-insight img, .small-insight-card img {
	transition: transform 0.6s ease;
}
.featured-insight:hover img, .small-insight-card:hover img {
	transform: scale(1.05);
}


/* CTA Button Animations added by Assistant */
.cta-box .btn {
	transition: all 0.3s ease;
}
.cta-box .btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* --- DYNAMIC HERO SLIDER --- */

/* Mobile Safe Full Width Hero */
.hero--split {
    width: 100%;
    position: relative;
    margin-top: 0;
    padding-top: 0;
}


/* --- UNIFIED HEADER & HERO STYLES --- */
/* Base Header (Inner Pages / Scrolled State) */
.site-header {
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

/* Scrolled Header (Sticky Glassmorphism) */
.site-header.is-scrolled {
    position: fixed;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

/* Base text color (Dark for inner pages/scrolled) */
.site-header a, .site-header .nav-menu-button {
    color: var(--color-navy);
    font-weight: 500;
    text-shadow: none;
    transition: color 0.3s ease;
}
.site-header a:hover, .site-header .nav-menu-button:hover {
    color: var(--color-primary);
}

/* Transparent Overlay for Home Hero ONLY */
.site-header--overlay:not(.is-scrolled) {
    background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
    border-bottom: none;
}
.site-header--overlay:not(.is-scrolled) a, 
.site-header--overlay:not(.is-scrolled) .nav-menu-button {
    color: #fff;
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.site-header--overlay:not(.is-scrolled) a:hover, 
.site-header--overlay:not(.is-scrolled) .nav-menu-button:hover {
    color: rgba(255,255,255,0.8);
}

/* Header CTA Button Styles */
.site-header .header-actions .btn {
    box-shadow: none;
}
.site-header--overlay:not(.is-scrolled) .header-actions .btn {
    background: #fff;
    color: var(--color-navy);
}
.site-header--overlay:not(.is-scrolled) .header-actions .btn:hover {
    background: var(--color-light);
    color: var(--color-navy);
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, rgba(11,17,32,0.95) 0%, rgba(11,17,32,0.7) 50%, rgba(11,17,32,0.4) 100%);
    z-index: 1;
}
        justify-content: center;
    }
    .hero--split h1 {
        font-size: 3rem;
    }
}
.hero-slider {
    width: 100% !important;
    position: relative !important;
    overflow: hidden !important;
    background-color: var(--color-navy) !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}


.hero-slide {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s;
    z-index: 1;
}
.hero-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    z-index: 2;
}
.hero-bg-image {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    transition: transform 8s ease-out;
    z-index: 0;
}
.hero-slide.active .hero-bg-image {
    transform: scale(1);
}
.hero__inner {
    position: relative;
    z-index: 5;
    padding-top: 180px;
    padding-bottom: 80px;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}
.hero-slide .hero__content, .hero-slide .hero-widget-right {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-slide.active .hero__content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}
.hero-slide.active .hero-widget-right {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}
.hero-slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}
.hero-slider-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}
.hero-slider-dot.active {
    background: #fff;
    transform: scale(1.3);
}

/* --- DYNAMIC SERVICES SECTION --- */
.section--services {
    background: #fff;
    padding-top: 40px;
    padding-bottom: 60px;
}
.services-heading {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
}
.services-heading h2 {
    font-size: 2.2rem;
    color: var(--color-navy);
    margin: 0;
}
.services-heading .eyebrow {
    color: var(--color-primary);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 12px;
    font-size: 0.8rem;
}
.services-heading-right {
    display: flex;
    align-items: center;
    gap: 24px;
}
.services-heading-right p {
    color: var(--color-text-light);
    margin: 0;
    font-size: 1rem;
}
.services-heading-right .text-link {
    color: var(--color-primary);
    font-weight: 500;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.service-card-premium {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    top: 0;
}
.service-card-premium:hover {
    box-shadow: 0 20px 40px rgba(7, 34, 141, 0.08);
    border-color: rgba(0, 248, 125, 0.2);
    top: -8px;
}
.service-card-image {
    width: 100%;
    height: 220px;
    position: relative;
    overflow: hidden;
}
.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(11,17,32,0.1) 0%, rgba(11,17,32,0.4) 100%);
    opacity: 0.6;
    transition: opacity 0.4s ease;
}
.service-card-premium:hover .service-card-image img {
    transform: scale(1.08);
}
.service-card-premium:hover .service-card-overlay {
    opacity: 0.2;
}
.service-card-body {
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: #fff;
}
.service-card-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
}
.service-card-premium:hover .service-card-body h3 {
    color: var(--color-primary);
}
.service-card-body p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}
.service-card-footer {
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
    margin-top: auto;
}
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}
.service-link svg {
    transition: transform 0.3s ease;
}
.service-link:hover {
    gap: 12px;
}

/* --- DYNAMIC PROCESS DIAGRAM SECTION --- */
.section--process {
    padding-top: 100px;
    padding-bottom: 120px;
    background-color: #f8fafc;
}
.process-container {
    text-align: center;
}
.process-eyebrow {
    color: var(--color-primary);
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    font-size: 0.85rem;
    text-transform: uppercase;
}
.process-title {
    font-size: 2.5rem;
    color: var(--color-navy);
    margin-bottom: 20px;
    font-weight: 800;
}
.process-desc {
    color: var(--color-text);
    font-size: 1.1rem;
    margin-bottom: 72px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
.process-timeline-horizontal {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}
.process-timeline-line {
    position: absolute;
    top: 40px; /* Center of the 80px icons */
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e2e8f0;
    z-index: 1;
}
.process-step-standard {
    position: relative;
    z-index: 2;
    width: 18%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.process-step-standard .step-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
}
.process-step-standard:hover .step-icon {
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(37,99,235,0.15);
}
.process-step-standard .step-icon svg {
    width: 28px;
    height: 28px;
}
.process-step-standard .step-num {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--color-primary);
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}
.process-step-standard h3 {
    font-size: 1.15rem;
    color: var(--color-navy);
    margin-bottom: 12px;
    font-weight: 700;
}
.process-step-standard p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 991px) {
    .process-timeline-horizontal {
        flex-direction: column;
        gap: 48px;
        align-items: center;
    }
    .process-step-standard {
        width: 100%;
        max-width: 300px;
    }
    .process-timeline-line {
        display: none;
    }
}

/* --- DYNAMIC BOTTOM CTA SECTION --- */
.section--bottom-cta {
    background: #fff;
    padding-bottom: 80px;
}
.cta-box {
    border-radius: var(--radius-md);
    padding: 64px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    color: #fff;
}
.cta-box-content {
    flex: 1;
    min-width: 300px;
}
.cta-box-content h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
    color: #fff;
}
.cta-box-content p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
}
.cta-btn {
    background: #fff;
    color: var(--color-navy);
    font-weight: 600;
}
.cta-btn:hover {
    background: var(--color-light);
}
.cta-features {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}
.cta-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}
.cta-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.cta-feature span {
    font-size: 0.85rem;
    font-weight: 600;
}

/* --- DYNAMIC INSIGHTS SECTION --- */
.insights-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.small-insight-card {
    display: flex;
    gap: 24px;
    background: var(--color-off-white);
    border-radius: var(--radius-sm);
    padding: 20px;
    align-items: center;
    transition: all 0.3s ease;
}
.small-insight-card:hover {
    box-shadow: 0 10px 24px rgba(0,0,0,0.05);
    transform: translateY(-2px);
}
.small-insight-card .small-image {
    width: 140px;
    height: 100px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
}
@media (max-width: 991px) {
    .insights-layout {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 575px) {
    .small-insight-card {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    .small-insight-card .small-image {
        width: 100%;
        height: 160px;
    }
}



/* --- UTILITY CLASSES FOR SERVICE PAGES --- */
.text-center { text-align: center !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }
.max-w-3xl { max-width: 48rem !important; } /* 768px */
.mt-4 { margin-top: 1rem !important; }
.justify-center { justify-content: center !important; display: flex; }
@media (max-width: 991px) {
    .order-last-mobile { order: 2 !important; }
}

/* Fix Mega Menu Text Visibility in Overlay Headers */
.site-header--overlay:not(.is-scrolled) .mega-menu h3 { color: var(--color-text) !important; }
.site-header--overlay:not(.is-scrolled) .mega-menu a { color: var(--color-muted) !important; }
.site-header--overlay:not(.is-scrolled) .mega-menu a:hover { color: var(--color-primary) !important; }
.site-header--overlay:not(.is-scrolled) .mega-menu p { color: var(--color-text) !important; }

/* --- ADDITIONAL MISSING UTILITIES & STRUCTURES --- */
.mt-8 { margin-top: 2rem !important; }
.max-w-2xl { max-width: 42rem !important; margin-left: auto; margin-right: auto; }
.text-left { text-align: left !important; }
.inline-block { display: inline-block !important; }

.bottom-cta-bar { padding: 80px 0; background: var(--color-off-white); border-top: 1px solid var(--color-border); }
.hero-subhead { font-size: 1.125rem; line-height: 1.6; color: rgba(255, 255, 255, 0.9); margin-top: 16px; }
.text-content { font-size: 1.05rem; }
.text-content h2 { margin-top: 2rem; margin-bottom: 1rem; }
.text-content p { margin-bottom: 1.25rem; }
.text-content ul { margin-bottom: 1.5rem; padding-left: 1.5rem; list-style-type: disc; }
.text-content li { margin-bottom: 0.5rem; }
.image-container img { border-radius: var(--radius-md); box-shadow: var(--shadow-card); width: 100%; height: auto; display: block; }

html, body { overflow-x: hidden !important; width: 100%; max-width: 100vw; }

/* Fix for header intrinsic width overflow */
@media (max-width: 1400px) {
    .header-inner {
        gap: 12px !important;
    }
    .menu {
        gap: 12px !important;
    }
    .desktop-nav a {
        font-size: 14px !important;
        max-width: none !important;
        padding: 4px !important;
    }
    .header-quote {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    .language-selector button {
        font-size: 14px !important;
        max-width: none !important;
    }
}

/* BRUTAL OVERFLOW FIX */
@media (max-width: 1350px) {
    .desktop-nav { display: none !important; }
    .menu-toggle { display: inline-grid !important; }
    .header-inner { 
        grid-template-columns: auto auto !important; 
        justify-content: space-between !important; 
    }
}
html, body {
    min-width: 100vw !important;
    overflow-x: hidden !important;
}
.site-header {
    width: 100% !important;
    min-width: 100vw !important;
}
.hero--split {
    width: 100% !important;
    min-width: 100vw !important;
}
.hero-slider {
    width: 100% !important;
    min-width: 100vw !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    margin: 0 !important;
    transform: none !important;
}
.hero-slide {
    width: 100% !important;
    min-width: 100vw !important;
}
.hero-bg-image, .hero-overlay {
    width: 100% !important;
    min-width: 100vw !important;
}

/* FOOTER AND DARK SECTION TEXT COLOR FIX */
.site-footer p,
.site-footer span,
.footer-bottom p {
    color: rgba(255, 255, 255, 0.76) !important;
}

/* MEGA MENU TEXT SHADOW FIX */
.site-header--overlay .mega-menu,
.site-header--overlay .mega-menu * {
    text-shadow: none !important;
}

/* REMOVE ALL SHADOWS FROM HEADER DESIGN */
.site-header,
.site-header.is-scrolled,
.mega-menu {
    box-shadow: none !important;
}
.site-header.is-scrolled {
    border-bottom: 1px solid rgba(0,0,0,0.08) !important;
}

/* HEADER VERTICAL ALIGNMENT FIX & TYPOGRAPHY BALANCE */
.brand {
    align-items: center;
}

h1, h2, h3, .page-hero h1 {
    text-wrap: balance;
}

.hero-subhead, .page-hero p {
    text-wrap: pretty;
}

/* ==========================================================================
   OFFICIAL BRAND IDENTITY OVERRIDES
   ========================================================================== */
:root {
	/* Official Core Brand Colors */
	--color-navy: #07228D !important; /* Primary Navy */
	--color-dark-navy: #041145 !important; /* Deep Navy */
	--color-indigo: #041145 !important; /* Mapped to Deep Navy for clean gradients */
	
	--color-primary: #07228D !important; /* Primary Navy for text/icons */
	--color-violet: #07228D !important;
	--color-cyan: #00F87D !important; /* Accent Green */
	--color-accent: #00F87D !important; /* Accent Green */
	
	/* Neutrals */
	--color-white: #FFFFFF !important;
	--color-off-white: #F5F6F8 !important; /* Light Gray */
	--color-light: #F5F6F8 !important; /* Light Gray */
	--color-text: #1A1A1A !important; /* Dark Gray */
	--color-muted: #555555 !important; /* Muted Dark Gray */
	
	/* System Colors */
	--color-success: #1F9D64 !important;
	--color-warning: #C97B2E !important;
	--color-error: #C33A3A !important;
	--color-info: #2E5C9E !important;
}

/* Update Primary Buttons to use the Neon Green Accent */
.btn--primary,
button[type="submit"],
.wpcf7-submit {
	background: var(--color-accent) !important;
	color: var(--color-navy) !important;
	border-color: var(--color-accent) !important;
	font-weight: 700 !important;
    text-shadow: none !important;
}

.btn--primary:hover,
button[type="submit"]:hover,
.wpcf7-submit:hover {
	background: #00d96d !important; /* Slightly darker green on hover */
	border-color: #00d96d !important;
	color: var(--color-dark-navy) !important;
}

/* Ensure secondary buttons or outlines look good */
.btn--outline {
	border-color: var(--color-accent) !important;
	color: var(--color-accent) !important;
}
.btn--outline:hover {
	background: var(--color-accent) !important;
	color: var(--color-navy) !important;
}

/* Update any hardcoded navy colors in the CSS */
.page-hero {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-indigo) 100%) !important;
}
.site-footer {
    background: var(--color-navy) !important;
}



/* ==========================================================================
   OFFICIAL BRAND TYPE SYSTEM OVERRIDES
   ========================================================================== */
body {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif !important;
}

/* 1. Headings (Prosto One) */
h1, .page-hero h1, .hero h1, h2, h3, .brand-text {
    font-family: 'Prosto One', system-ui, -apple-system, sans-serif !important;
    font-weight: 400 !important; /* Prosto One is only available in 400 weight */
}

/* Match the exact scales provided in the design system */
h1, .page-hero h1, .hero h1 {
    font-size: clamp(3rem, 5vw, 64px) !important; /* 64px */
    line-height: 1.125 !important; /* 72px / 64px = 1.125 */
    letter-spacing: 0 !important; 
    margin-bottom: 24px !important;
}

h2, .section h2, .text-content h2, .section-heading h2 {
    font-size: clamp(2.25rem, 4vw, 48px) !important; /* 48px */
    line-height: 1.166 !important; /* 56px / 48px = 1.166 */
    margin-bottom: 24px !important;
}

h3, .text-content h3 {
    font-size: 32px !important; /* 32px */
    line-height: 1.25 !important; /* 40px / 32px = 1.25 */
    margin-bottom: 16px !important;
}
.service-card__body h3, .service-card-body h3, .service-card-premium h3, .feature-card h3 {
    font-size: 20px !important;
    line-height: 1.3 !important;
    margin-bottom: 8px !important;
}

/* 2. Sub-headings & Body (DM Sans) */
h4, h5, h6 {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif !important;
    font-weight: 500 !important; /* Medium */
    font-size: 20px !important;
    line-height: 1.4 !important; /* 28px / 20px = 1.4 */
}

.text-content p, .service-card__body p, p {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif !important;
    font-size: 16px !important;
    line-height: 1.625 !important; /* 26px / 16px = 1.625 */
    font-weight: 400 !important;
}

.eyebrow, .card-kicker, small, .footer-bottom p, .stats-banner p {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif !important;
    font-size: 14px !important;
        max-width: none !important;
    line-height: 1.57 !important; /* 22px / 14px = 1.57 */
    font-weight: 400 !important;
}

/* 3. Buttons (Prosto One per design system) */
.btn, .btn--primary, .btn--outline, button[type="submit"], .wpcf7-submit, .text-link, .menu a, .nav-menu-button {
    font-family: 'Prosto One', system-ui, -apple-system, sans-serif !important;
    font-weight: 400 !important;
}

/* Specifically target the hero subhead to use DM Sans Medium 20px */
.hero-subhead {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif !important;
    font-weight: 500 !important;
    font-size: 20px !important;
    line-height: 1.4 !important;
}

/* Footer Headers Fix (Override global H2) */
.site-footer h2 {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    margin-bottom: 20px !important;
    color: var(--color-white) !important;
    line-height: 1.4 !important;
}

/* Guarantee immaculate footer links and text */
.site-footer ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.site-footer ul li {
    margin-bottom: 12px !important;
}
.site-footer ul li a, .site-footer p {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif !important;
    font-size: 14px !important;
        max-width: none !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none !important;
}
.site-footer ul li a:hover {
    color: var(--color-accent) !important;
}

/* Guarantee Page Heroes are completely Left-Aligned */
.page-hero .text-center, .page-hero.text-center {
    text-align: left !important;
}
.page-hero .mx-auto, .page-hero.mx-auto {
    margin-left: 0 !important;
}

/* ==========================================================================
   OFFICIAL UI KIT OVERRIDES (BUTTONS, CARDS, INPUTS, BADGES)
   ========================================================================== */

/* 1. Buttons (100px border radius capsule style) */
.btn, .btn--primary, .btn--secondary, .btn--ghost, button[type="submit"], .wpcf7-submit {
    border-radius: 100px !important;
    padding: 14px 28px !important;
    font-family: 'Prosto One', system-ui, -apple-system, sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    text-transform: none !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    box-shadow: none !important; /* Flat design */
}

/* Primary Button (Deep Navy bg, White text) */
.btn--primary, button[type="submit"], .wpcf7-submit {
    background: var(--color-navy) !important;
    color: var(--color-white) !important;
    border: 1px solid var(--color-navy) !important;
}
.btn--primary:hover, button[type="submit"]:hover, .wpcf7-submit:hover {
    background: var(--color-dark-navy) !important;
    border-color: var(--color-dark-navy) !important;
    color: var(--color-white) !important;
}

/* Secondary Button (Accent Green bg, Navy text) */
.btn--secondary {
    background: var(--color-accent) !important;
    color: var(--color-navy) !important;
    border: 1px solid var(--color-accent) !important;
}
.btn--secondary:hover {
    background: #00d96d !important;
    border-color: #00d96d !important;
    color: var(--color-dark-navy) !important;
}

/* Ghost Button (White bg, Navy text, Navy border) */
.btn--ghost, .btn--outline {
    background: var(--color-white) !important;
    color: var(--color-navy) !important;
    border: 1px solid var(--color-navy) !important;
}
.btn--ghost:hover, .btn--outline:hover {
    background: var(--color-off-white) !important;
}

/* Text Button (No bg, Navy text) */
.text-link, .btn--text {
    background: transparent !important;
    color: var(--color-navy) !important;
    border: none !important;
    padding: 0 !important;
    font-family: 'Prosto One', system-ui, -apple-system, sans-serif !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
}
.text-link:hover, .btn--text:hover {
    color: var(--color-primary) !important;
    text-decoration: underline !important;
}

/* 2. Cards */
.service-card, .glass-card, .card-grid > * {
    background: var(--color-white) !important;
    border: 1px solid #E2E8F0 !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05) !important;
}

/* 3. Input Fields */
label, .wpcf7-form label {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 12px !important;
    text-transform: uppercase !important;
    color: var(--color-muted) !important;
    letter-spacing: 0.05em !important;
    font-weight: 600 !important;
    display: block !important;
    margin-bottom: 8px !important;
}

input[type="text"], input[type="email"], input[type="tel"], select, textarea, .wpcf7-form-control {
    background: var(--color-white) !important;
    border: 1px solid #E2E8F0 !important;
    border-radius: 8px !important;
    padding: 14px 16px !important;
    font-family: 'DM Sans', sans-serif !important;
    font-size: 16px !important;
    color: var(--color-text) !important;
    width: 100% !important;
    box-sizing: border-box !important;
}
input:focus, select:focus, textarea:focus {
    border-color: var(--color-navy) !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(7, 34, 141, 0.1) !important;
}
input::placeholder, textarea::placeholder {
    color: #94a3b8 !important;
}

/* Error States */
input.error, .wpcf7-not-valid {
    border-color: var(--color-error) !important;
}
.wpcf7-not-valid-tip {
    color: var(--color-error) !important;
    font-size: 12px !important;
    margin-top: 4px !important;
    font-family: 'DM Sans', sans-serif !important;
}

/* 4. Status Badges */
.status-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 6px 12px !important;
    border-radius: 100px !important;
    font-family: 'DM Sans', sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
}
.status-badge::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}
/* In Transit (Info) */
.status-badge--transit { background: #EBF3FC !important; color: var(--color-info) !important; }
.status-badge--transit::before { background: var(--color-info); }
/* Delivered (Success) */
.status-badge--delivered { background: #E6F6EF !important; color: var(--color-success) !important; }
.status-badge--delivered::before { background: var(--color-success); }
/* Delayed (Warning) */
.status-badge--delayed { background: #FDF2E7 !important; color: var(--color-warning) !important; }
.status-badge--delayed::before { background: var(--color-warning); }
/* Cancelled (Error) */
.status-badge--cancelled { background: #FCEBEB !important; color: var(--color-error) !important; }
.status-badge--cancelled::before { background: var(--color-error); }
/* Pending (Gray) */
.status-badge--pending { background: #F1F5F9 !important; color: var(--color-muted) !important; }
.status-badge--pending::before { background: var(--color-muted); }

/* Header Get a Quote Button transparent header override removal (let the Secondary button handle it) */
.site-header--overlay:not(.is-scrolled) .header-actions .btn {
    /* Prevent the transparent header from un-styling our beautiful secondary button */
    background: var(--color-accent) !important;
    color: var(--color-navy) !important;
    border: none !important;
}

/* 5. UI Kit Card Icons */
.service-card__icon, .stat-icon, .icon-box {
    background: var(--color-navy) !important;
    color: var(--color-accent) !important;
    width: 64px !important;
    height: 64px !important;
    border-radius: 16px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 24px !important;
}
.service-card__icon svg, .stat-icon svg, .icon-box svg {
    width: 32px !important;
    height: 32px !important;
}

/* ==========================================================================
   COMPLETE MOBILE RESPONSIVE OPTIMIZATIONS
   ========================================================================== */
@media (max-width: 768px) {
    /* 1. Typography Scaling */
    h1, .page-hero h1, .hero h1 {
        font-size: clamp(2.25rem, 8vw, 3rem) !important;
        line-height: 1.15 !important;
        margin-bottom: 16px !important;
    }
    h2, .section h2, .text-content h2, .section-heading h2 {
        font-size: clamp(1.75rem, 6vw, 2.25rem) !important;
        line-height: 1.25 !important;
        margin-bottom: 16px !important;
    }
    h3, .text-content h3, .service-card__body h3 {
        font-size: 1.35rem !important; 
        line-height: 1.3 !important;
        margin-bottom: 12px !important;
    }
    p, .hero-subhead {
        font-size: 15px !important;
        line-height: 1.6 !important;
    }

    /* 2. Full-width Buttons on Mobile */
    .button-row, .hero-actions {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 16px !important;
    }
    .button-row .btn, .hero-actions .btn, .button-row a, .hero-actions a {
        width: 100% !important;
        justify-content: center !important;
    }

    /* 3. Spacing & Container Constraints */
    .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    .section {
        padding-top: 48px !important;
        padding-bottom: 48px !important;
    }
    .hero, .page-hero {
        padding-top: 120px !important;
        padding-bottom: 64px !important;
    }

    /* 4. Stats Banner Mobile Layout */
    .stats-banner {
        margin: 0 !important;
        border-radius: 0 !important;
        padding: 32px 20px !important;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr !important; 
        gap: 24px 16px !important;
    }
    .stat-item {
        flex-direction: column !important;
        text-align: center !important;
        gap: 8px !important;
    }
    .stat-item .stat-icon {
        margin: 0 auto 8px auto !important;
        width: 40px !important;
        height: 40px !important;
    }
    
    /* 5. Grids Flattening */
    .card-grid, .services-grid, .trust-list, .split, .article-layout {
        grid-template-columns: 1fr !important;
        display: grid !important;
        gap: 24px !important;
    }
    .hero-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 32px !important;
    }
    .hero-grid > * {
        width: 100% !important;
    }
    
    /* 6. Footer Layout */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    
    /* 9. Header & Nav Mobile Fixes */
    .header-inner {
        gap: 8px !important;
    }
    .brand {
        gap: 8px !important;
    }
    .brand .custom-logo {
        height: 28px !important;
        margin-right: 0 !important;
    }
    .brand-text {
        font-size: 14px !important;
        max-width: none !important;
    }
    .header-actions {
        gap: 8px !important;
    }
    .language-selector .nav-menu-button {
        font-size: 14px !important;
        max-width: none !important;
        padding: 4px !important;
    }
    .menu-toggle {
        width: 36px !important;
        height: 36px !important;
    }

    /* 8. Bottom CTA Mobile Fixes */
    .cta-box {
        padding: 40px 20px !important;
        gap: 32px !important;
        flex-direction: column !important;
    }
    .cta-features {
        flex-direction: column !important;
        gap: 24px !important;
        width: 100% !important;
        align-items: flex-start !important;
    }
    .cta-feature {
        flex-direction: row !important;
        align-items: center !important;
        text-align: left !important;
        gap: 16px !important;
    }
    .cta-feature .cta-icon {
        margin: 0 !important;
        flex-shrink: 0 !important;
    }

    /* 7. Tracking Widget Mobile Fix */
    .tracking-card {
        padding: 24px 16px !important;
        gap: 24px !important;
    }
    .tracking-info {
        flex-direction: column !important;
        text-align: center !important;
        min-width: 100% !important;
        gap: 16px !important;
    }
    .tracking-form {
        flex-direction: column !important;
        min-width: 100% !important;
        gap: 12px !important;
    }
    .tracking-form input, .tracking-form button {
        width: 100% !important;
    }
}
    .footer-bottom {
        flex-direction: column !important;
        text-align: center !important;
        gap: 16px !important;
    
    /* 9. Header & Nav Mobile Fixes */
    .header-inner {
        gap: 8px !important;
    }
    .brand {
        gap: 8px !important;
    }
    .brand .custom-logo {
        height: 28px !important;
        margin-right: 0 !important;
    }
    .brand-text {
        font-size: 14px !important;
        max-width: none !important;
    }
    .header-actions {
        gap: 8px !important;
    }
    .language-selector .nav-menu-button {
        font-size: 14px !important;
        max-width: none !important;
        padding: 4px !important;
    }
    .menu-toggle {
        width: 36px !important;
        height: 36px !important;
    }

    /* 8. Bottom CTA Mobile Fixes */
    .cta-box {
        padding: 40px 20px !important;
        gap: 32px !important;
        flex-direction: column !important;
    }
    .cta-features {
        flex-direction: column !important;
        gap: 24px !important;
        width: 100% !important;
        align-items: flex-start !important;
    }
    .cta-feature {
        flex-direction: row !important;
        align-items: center !important;
        text-align: left !important;
        gap: 16px !important;
    }
    .cta-feature .cta-icon {
        margin: 0 !important;
        flex-shrink: 0 !important;
    }

    /* 7. Tracking Widget Mobile Fix */
    .tracking-card {
        padding: 24px 16px !important;
        gap: 24px !important;
    }
    .tracking-info {
        flex-direction: column !important;
        text-align: center !important;
        min-width: 100% !important;
        gap: 16px !important;
    }
    .tracking-form {
        flex-direction: column !important;
        min-width: 100% !important;
        gap: 12px !important;
    }
    .tracking-form input, .tracking-form button {
        width: 100% !important;
    }
}
    .footer-bottom nav {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 12px 24px !important;
    
    /* 9. Header & Nav Mobile Fixes */
    .header-inner {
        gap: 8px !important;
    }
    .brand {
        gap: 8px !important;
    }
    .brand .custom-logo {
        height: 28px !important;
        margin-right: 0 !important;
    }
    .brand-text {
        font-size: 14px !important;
        max-width: none !important;
    }
    .header-actions {
        gap: 8px !important;
    }
    .language-selector .nav-menu-button {
        font-size: 14px !important;
        max-width: none !important;
        padding: 4px !important;
    }
    .menu-toggle {
        width: 36px !important;
        height: 36px !important;
    }

    /* 8. Bottom CTA Mobile Fixes */
    .cta-box {
        padding: 40px 20px !important;
        gap: 32px !important;
        flex-direction: column !important;
    }
    .cta-features {
        flex-direction: column !important;
        gap: 24px !important;
        width: 100% !important;
        align-items: flex-start !important;
    }
    .cta-feature {
        flex-direction: row !important;
        align-items: center !important;
        text-align: left !important;
        gap: 16px !important;
    }
    .cta-feature .cta-icon {
        margin: 0 !important;
        flex-shrink: 0 !important;
    }

    /* 7. Tracking Widget Mobile Fix */
    .tracking-card {
        padding: 24px 16px !important;
        gap: 24px !important;
    }
    .tracking-info {
        flex-direction: column !important;
        text-align: center !important;
        min-width: 100% !important;
        gap: 16px !important;
    }
    .tracking-form {
        flex-direction: column !important;
        min-width: 100% !important;
        gap: 12px !important;
    }
    .tracking-form input, .tracking-form button {
        width: 100% !important;
    }
}

    /* 9. Header & Nav Mobile Fixes */
    .header-inner {
        gap: 8px !important;
    }
    .brand {
        gap: 8px !important;
    }
    .brand .custom-logo {
        height: 28px !important;
        margin-right: 0 !important;
    }
    .brand-text {
        font-size: 14px !important;
        max-width: none !important;
    }
    .header-actions {
        gap: 8px !important;
    }
    .language-selector .nav-menu-button {
        font-size: 14px !important;
        max-width: none !important;
        padding: 4px !important;
    }
    .menu-toggle {
        width: 36px !important;
        height: 36px !important;
    }

    /* 8. Bottom CTA Mobile Fixes */
    .cta-box {
        padding: 40px 20px !important;
        gap: 32px !important;
        flex-direction: column !important;
    }
    .cta-features {
        flex-direction: column !important;
        gap: 24px !important;
        width: 100% !important;
        align-items: flex-start !important;
    }
    .cta-feature {
        flex-direction: row !important;
        align-items: center !important;
        text-align: left !important;
        gap: 16px !important;
    }
    .cta-feature .cta-icon {
        margin: 0 !important;
        flex-shrink: 0 !important;
    }

    /* 7. Tracking Widget Mobile Fix */
    .tracking-card {
        padding: 24px 16px !important;
        gap: 24px !important;
    }
    .tracking-info {
        flex-direction: column !important;
        text-align: center !important;
        min-width: 100% !important;
        gap: 16px !important;
    }
    .tracking-form {
        flex-direction: column !important;
        min-width: 100% !important;
        gap: 12px !important;
    }
    .tracking-form input, .tracking-form button {
        width: 100% !important;
    }
}

/* ==========================================================================
   PROCESS DIAGRAM FIX
   ========================================================================== */
.process-step-standard h3 {
    font-size: 20px !important;
    line-height: 1.2 !important;
    margin-bottom: 8px !important;
    letter-spacing: -0.01em !important;
}
.process-step-standard p {
    font-size: 14px !important;
    line-height: 1.5 !important;
    color: var(--color-muted) !important;
    padding: 0 8px !important;
}

/* Fix White Logo visibility on Scrolled/White headers */
.site-header.is-scrolled .custom-logo,
.site-header:not(.site-header--overlay) .custom-logo {
    filter: brightness(0) invert(13%) sepia(85%) saturate(3015%) hue-rotate(227deg) brightness(85%) contrast(108%) !important;
}

/* Ensure hamburger icon is always visible */
.site-header.is-scrolled .menu-toggle,
.site-header:not(.site-header--overlay) .menu-toggle {
    color: var(--color-navy) !important;
}
.site-header--overlay:not(.is-scrolled) .menu-toggle {
    color: var(--color-white) !important;
}
