:root {
	--ag-navy-950: #041126;
	--ag-navy-900: #071a33;
	--ag-navy-800: #0d2849;
	--ag-ink: #12233c;
	--ag-slate: #52657f;
	--ag-blue: #0f6cbd;
	--ag-blue-strong: #075a9c;
	--ag-cyan: #00a4ef;
	--ag-purple: #6b5bd2;
	--ag-teal: #12a594;
	--ag-mist: #f3f7fb;
	--ag-mist-blue: #eaf4fc;
	--ag-white: #fff;
	--ag-border: #dce6f0;
	--ag-border-strong: #c6d6e6;
	--ag-success: #0a7b58;
	--ag-error: #b42318;
	--ag-shadow-sm: 0 8px 24px rgba(7, 26, 51, 0.08);
	--ag-shadow: 0 22px 60px rgba(7, 26, 51, 0.12);
	--ag-radius-sm: 12px;
	--ag-radius: 20px;
	--ag-radius-lg: 30px;
	--ag-container: 1180px;
	--ag-reading: 840px;
	--ag-header-height: 82px;
	--ag-transition: 180ms ease;
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--ag-header-height) + 24px);
}

body {
	margin: 0;
	min-width: 320px;
	overflow-x: hidden;
	background: var(--ag-white);
	color: var(--ag-slate);
	font-family: Inter, Aptos, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 16px;
	line-height: 1.65;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

body.nav-open {
	overflow: hidden;
}

img,
svg {
	display: block;
	max-width: 100%;
}

img {
	height: auto;
}

a {
	color: var(--ag-blue);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
	transition: color var(--ag-transition);
}

a:hover {
	color: var(--ag-blue-strong);
}

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

button {
	cursor: pointer;
}

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

::selection {
	background: #c9ecff;
	color: var(--ag-navy-950);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 0.55em;
	color: var(--ag-ink);
	font-weight: 720;
	letter-spacing: -0.026em;
	line-height: 1.12;
}

h1 {
	font-size: clamp(1.9125rem, 3.9vw, 3.9375rem);
}

h2 {
	font-size: clamp(1.5rem, 2.775vw, 2.6625rem);
}

h3 {
	font-size: clamp(1.2rem, 1.9vw, 1.55rem);
}

p {
	margin: 0 0 1.25rem;
}

ul,
ol {
	margin: 0 0 1.5rem;
	padding-left: 1.25rem;
}

.container {
	width: min(var(--ag-container), calc(100% - 48px));
	margin-inline: auto;
}

.container--narrow {
	width: min(var(--ag-reading), calc(100% - 48px));
}

.section {
	position: relative;
	padding: clamp(72px, 8vw, 120px) 0;
}

.section--compact {
	padding-block: clamp(52px, 6vw, 84px);
}

.section--content {
	padding-block: clamp(42px, 5vw, 68px);
}

.page-layout .section {
	padding-block: clamp(58px, 6vw, 88px);
}

.page-layout .section--compact {
	padding-block: clamp(44px, 5vw, 68px);
}

.page-layout .section--content {
	padding-block: clamp(42px, 5vw, 68px);
}

.section--mist {
	background: var(--ag-mist);
}

.section--navy {
	overflow: hidden;
	background:
		radial-gradient(circle at 8% 8%, rgba(0, 164, 239, 0.18), transparent 28%),
		radial-gradient(circle at 88% 85%, rgba(107, 91, 210, 0.22), transparent 30%),
		var(--ag-navy-950);
	color: #c7d6e8;
}

.section--navy h2,
.section--navy h3,
.section--navy .eyebrow,
.section--navy .text-link {
	color: var(--ag-white);
}

.eyebrow {
	margin-bottom: 1rem;
	color: var(--ag-blue);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.15em;
	line-height: 1.2;
	text-transform: uppercase;
}

.section-heading {
	max-width: 760px;
	margin-bottom: clamp(34px, 5vw, 58px);
}

.section-heading > p:last-child {
	max-width: 690px;
	margin: 0;
	font-size: clamp(1rem, 1.4vw, 1.15rem);
}

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

.section-heading--center > p:last-child {
	margin-inline: auto;
}

.split-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 32px;
	margin-bottom: clamp(34px, 5vw, 58px);
}

.split-heading .section-heading {
	margin: 0;
}

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

.button {
	display: inline-flex;
	min-height: 50px;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 0.75rem 1.35rem;
	border: 1px solid var(--ag-blue);
	border-radius: 999px;
	background: linear-gradient(120deg, var(--ag-blue), #1379cf);
	box-shadow: 0 10px 28px rgba(15, 108, 189, 0.2);
	color: var(--ag-white);
	font-size: 0.95rem;
	font-weight: 750;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: transform var(--ag-transition), box-shadow var(--ag-transition), background var(--ag-transition);
}

.button svg,
.text-link svg {
	width: 20px;
	height: 20px;
	flex: 0 0 auto;
	transition: transform var(--ag-transition);
}

.button:hover {
	background: linear-gradient(120deg, var(--ag-blue-strong), var(--ag-blue));
	box-shadow: 0 14px 34px rgba(15, 108, 189, 0.28);
	color: var(--ag-white);
	transform: translateY(-2px);
}

.button:hover svg,
.text-link:hover svg {
	transform: translateX(3px);
}

.button--ghost {
	border-color: var(--ag-border-strong);
	background: transparent;
	box-shadow: none;
	color: var(--ag-ink);
}

.button--ghost:hover {
	border-color: var(--ag-blue);
	background: var(--ag-mist-blue);
	box-shadow: none;
	color: var(--ag-blue-strong);
}

.button--light {
	border-color: var(--ag-white);
	background: var(--ag-white);
	box-shadow: none;
	color: var(--ag-navy-900);
}

.button--light:hover {
	background: #eaf8ff;
	box-shadow: none;
	color: var(--ag-navy-950);
}

.button--outline-light {
	border-color: rgba(255, 255, 255, 0.4);
	background: transparent;
	box-shadow: none;
	color: var(--ag-white);
}

.button--outline-light:hover {
	border-color: var(--ag-white);
	background: rgba(255, 255, 255, 0.08);
	box-shadow: none;
	color: var(--ag-white);
}

.button--small {
	min-height: 42px;
	padding: 0.6rem 1.05rem;
	font-size: 0.86rem;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--ag-blue);
	font-weight: 750;
	text-decoration: none;
}

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

.screen-reader-text:focus {
	z-index: 100000;
	top: 10px;
	left: 10px;
	width: auto;
	height: auto;
	padding: 12px 16px;
	overflow: visible;
	clip: auto;
	border-radius: 8px;
	background: var(--ag-white);
	box-shadow: var(--ag-shadow);
	color: var(--ag-navy-950);
	font-weight: 700;
	white-space: normal;
}

/* Header and navigation */
.site-header {
	position: sticky;
	z-index: 1000;
	top: 0;
	height: var(--ag-header-height);
	border-bottom: 1px solid rgba(198, 214, 230, 0.78);
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(16px);
}

.site-header__inner {
	display: flex;
	height: 100%;
	align-items: center;
	gap: 22px;
}

.site-branding {
	flex: 0 0 210px;
}

.brand-link,
.custom-logo-link {
	display: inline-flex;
	align-items: center;
}

.brand-link {
	gap: 0.58rem;
	color: var(--ag-navy-950);
	text-decoration: none;
}

.brand-link__icon {
	width: 48px;
	height: 48px;
	flex: 0 0 48px;
	object-fit: contain;
}

.brand-link__wordmark {
	display: grid;
	line-height: 1;
	text-transform: uppercase;
}

.brand-link__wordmark strong {
	color: inherit;
	font-size: 1rem;
	letter-spacing: 0.08em;
}

.brand-link__wordmark small {
	margin-top: 0.28rem;
	color: var(--ag-slate);
	font-size: 0.57rem;
	font-weight: 750;
	letter-spacing: 0.22em;
}

.site-branding .custom-logo-link {
	padding: 0.35rem 0.55rem;
	border-radius: 10px;
	background: var(--ag-navy-950);
}

.custom-logo {
	width: auto;
	max-width: 184px;
	max-height: 55px;
	object-fit: contain;
}

.enterprise-nav {
	display: flex;
	min-width: 0;
	flex: 1;
	align-items: center;
	justify-content: flex-end;
	gap: 18px;
}

.enterprise-nav__list {
	display: flex;
	align-items: center;
	gap: 1px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.enterprise-nav__list > li > a,
.nav-parent > a {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	padding: 0.55rem 0.62rem;
	border-radius: 9px;
	color: var(--ag-ink);
	font-size: 0.82rem;
	font-weight: 720;
	text-decoration: none;
	white-space: nowrap;
}

.enterprise-nav__list > li > a:hover,
.nav-parent > a:hover {
	background: var(--ag-mist);
	color: var(--ag-blue);
}

.nav-parent {
	display: flex;
	align-items: center;
}

.nav-parent > a {
	padding-right: 0.2rem;
}

.nav-parent > button {
	display: inline-grid;
	width: 32px;
	height: 38px;
	place-items: center;
	padding: 0;
	border: 0;
	border-radius: 8px;
	background: transparent;
	color: var(--ag-slate);
}

.nav-parent > button:hover {
	background: var(--ag-mist);
	color: var(--ag-blue);
}

.nav-parent > button svg {
	width: 14px;
	height: 14px;
	transition: transform var(--ag-transition);
}

.nav-has-panel.is-open .nav-parent > button svg {
	transform: rotate(180deg);
}

.nav-panel {
	position: fixed;
	z-index: 1002;
	top: calc(var(--ag-header-height) - 2px);
	left: 50%;
	display: grid;
	width: min(1120px, calc(100vw - 48px));
	padding: 28px;
	border: 1px solid var(--ag-border);
	border-radius: 0 0 24px 24px;
	background: rgba(255, 255, 255, 0.99);
	box-shadow: 0 28px 70px rgba(7, 26, 51, 0.2);
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, -8px);
	transition: opacity var(--ag-transition), transform var(--ag-transition), visibility var(--ag-transition);
	visibility: hidden;
}

.nav-has-panel.is-open .nav-panel {
	opacity: 1;
	pointer-events: auto;
	transform: translate(-50%, 0);
	visibility: visible;
}

.nav-panel--mega {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 34px;
}

.nav-panel--compact {
	max-width: 900px;
	grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.5fr);
	gap: 36px;
}

.nav-panel--industries {
	max-width: 980px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.nav-panel__intro {
	padding: 20px;
	border-radius: 18px;
	background:
		radial-gradient(circle at 90% 10%, rgba(0, 164, 239, 0.18), transparent 34%),
		var(--ag-navy-950);
	color: #c7d6e8;
}

.nav-panel__intro h2 {
	color: var(--ag-white);
	font-size: 1.275rem;
}

.nav-panel__intro .eyebrow,
.nav-panel__intro .text-link {
	color: #77d8ff;
}

.nav-panel__intro p {
	font-size: 0.92rem;
}

.nav-panel__label {
	margin: 0 0 0.8rem;
	color: var(--ag-blue);
	font-size: 0.7rem;
	font-weight: 850;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.nav-panel__label--spaced {
	margin-top: 1.25rem;
}

.nav-mega-column > a,
.nav-panel__links > a {
	display: block;
	padding: 0.52rem 0.62rem;
	border-radius: 8px;
	color: var(--ag-ink);
	font-size: 0.88rem;
	font-weight: 620;
	text-decoration: none;
}

.nav-mega-column > a:hover,
.nav-panel__links > a:hover {
	background: var(--ag-mist);
	color: var(--ag-blue);
}

.nav-panel__links--two {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-content: start;
	gap: 8px;
}

.nav-feature-link {
	margin-top: 0.7rem;
	border: 1px solid var(--ag-border);
	background: var(--ag-mist);
}

.nav-feature-link strong,
.nav-feature-link span {
	display: block;
}

.nav-feature-link span {
	margin-top: 0.2rem;
	color: var(--ag-slate);
	font-size: 0.76rem;
	font-weight: 500;
}

.nav-panel--industries > a {
	display: block;
	min-height: 112px;
	padding: 1rem;
	border: 1px solid var(--ag-border);
	border-radius: 14px;
	color: var(--ag-ink);
	text-decoration: none;
}

.nav-panel--industries > a:hover {
	border-color: #a7d5f3;
	background: var(--ag-mist-blue);
}

.nav-panel--industries strong,
.nav-panel--industries span {
	display: block;
}

.nav-panel--industries span {
	margin-top: 0.35rem;
	color: var(--ag-slate);
	font-size: 0.8rem;
}

.nav-cta {
	flex: 0 0 auto;
	white-space: nowrap;
}

.nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	place-items: center;
	padding: 0;
	border: 1px solid var(--ag-border);
	border-radius: 12px;
	background: var(--ag-white);
	color: var(--ag-ink);
}

.nav-toggle svg {
	width: 24px;
	height: 24px;
}

.nav-toggle__close {
	display: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__open {
	display: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__close {
	display: block;
}

.nav-overlay {
	position: fixed;
	z-index: 999;
	inset: var(--ag-header-height) 0 0;
	background: rgba(4, 17, 38, 0.48);
	backdrop-filter: blur(2px);
}

/* Homepage hero */
.home-hero {
    position: relative;
    display: flex;
    min-height: calc(100svh - var(--ag-header-height));
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    /* Let the PHP handle the image, handle the rest here */
    background-color: #e2e8f0; 
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    color: #0f1419;
}

.home-hero__grid {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: Center;
	padding-block: 35px;
}

.home-hero__copy {
	max-width: 490px;
}

.home-hero__copy > * {
	animation: home-hero-rise 680ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.home-hero__copy > :nth-child(2) {
	animation-delay: 80ms;
}

.home-hero__copy > :nth-child(3) {
	animation-delay: 160ms;
}

.home-hero__copy > :nth-child(4),
.home-hero__copy > :nth-child(5) {
	animation-delay: 240ms;
}

.home-hero__copy h1 {
	max-width: 790px;
	font-size: clamp(2.25rem, min(4.05vw, 7.5vh), 4.35rem);
	letter-spacing: -0.055em;
	line-height: 0.99;
	color: #0f1419;
}

.home-hero__lead {
	max-width: 630px;
	margin-top: 1.5rem;
	color: #3f5674;
	font-size: clamp(1.08rem, 1.55vw, 1.3rem);
	line-height: 1.65;
}

.hero-trust-line {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
	margin-top: 2.15rem;
	color: #54708c;
	font-size: 0.78rem;
	font-weight: 720;
}

.hero-trust-line span {
	position: relative;
	padding-left: 14px;
}

.hero-trust-line span::before {
	position: absolute;
	width: 6px;
	height: 6px;
	top: 0.56em;
	left: 0;
	border-radius: 50%;
	background: var(--ag-cyan);
	content: "";
}

.ecosystem-visual {
	position: relative;
	width: 100%;
	max-width: 720px;
	aspect-ratio: 1.2;
	margin-inline: auto;
	animation: home-ecosystem-enter 880ms 180ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes home-hero-rise {
	from {
		opacity: 0;
		transform: translateY(22px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

@keyframes home-ecosystem-enter {
	from {
		opacity: 0;
		transform: translateX(28px) scale(0.96);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

.ecosystem-lines {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	overflow: visible;
}

.ecosystem-lines path {
	fill: none;
	stroke: url("#line-gradient");
	stroke-dasharray: 7 8;
	stroke-linecap: round;
	stroke-width: 1.5;
	opacity: 0.54;
}

.ecosystem-lines .pulse {
	fill: var(--ag-cyan);
	filter: drop-shadow(0 0 7px rgba(0, 164, 239, 0.95));
}

.ecosystem-node,
.industry-node {
	position: absolute;
	z-index: 2;
	color: var(--ag-ink);
	text-decoration: none;
	transition: transform var(--ag-transition), border-color var(--ag-transition), box-shadow var(--ag-transition);
}

.ecosystem-node {
	width: 132px;
	padding: 0.78rem;
	border: 1px solid rgba(15, 108, 189, 0.2);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: var(--ag-shadow-sm);
	text-align: center;
}

.ecosystem-node > img,
.ecosystem-node span.ecosystem-node__icons {
	display: flex;
	height: 34px;
	align-items: center;
	justify-content: center;
	margin: 0 auto 0.42rem;
	animation: tech-icon-float 4.6s ease-in-out infinite;
}

.ecosystem-node > img {
	width: 34px;
	object-fit: contain;
}

.ecosystem-node__icons {
	gap: 0.28rem;
}

.ecosystem-node__icons img {
	width: 28px;
	height: 28px;
	object-fit: contain;
}

.ecosystem-node--power .ecosystem-node__icons {
	animation-delay: -0.8s;
}

.ecosystem-node--data > img {
	animation-delay: -1.6s;
}

.ecosystem-node--azure > img {
	animation-delay: -2.4s;
}

@keyframes tech-icon-float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-4px);
	}
}

.ecosystem-node:hover,
.industry-node:hover {
	border-color: var(--ag-cyan);
	box-shadow: 0 16px 34px rgba(7, 26, 51, 0.15);
	color: var(--ag-blue);
	transform: translateY(-3px);
}

.ecosystem-node strong,
.ecosystem-node span {
	display: block;
}

.ecosystem-node strong {
	font-size: 0.87rem;
}

.ecosystem-node span {
	margin-top: 0.2rem;
	color: var(--ag-slate);
	font-size: 0.68rem;
}

.ecosystem-node--dynamics {
	top: 11%;
	left: 2%;
}

.ecosystem-node--power {
	top: 1%;
	left: 32%;
}

.ecosystem-node--data {
	top: 3%;
	left: 55%;
}

.ecosystem-node--azure {
	top: 14%;
	right: 0;
}

.ecosystem-core {
	position: absolute;
	z-index: 3;
	top: 47%;
	left: 50%;
	display: flex;
	width: 210px;
	height: 140px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	border: 1px solid rgba(0, 164, 239, 0.38);
	border-radius: 32px;
	background:
		radial-gradient(circle at 80% 0%, rgba(0, 164, 239, 0.3), transparent 44%),
		linear-gradient(145deg, var(--ag-navy-800), var(--ag-navy-950));
	box-shadow: 0 30px 70px rgba(4, 17, 38, 0.28);
	color: var(--ag-white);
	text-align: center;
	transform: translate(-50%, -50%);
}

.ecosystem-core::before,
.ecosystem-core::after {
	position: absolute;
	border: 1px solid rgba(0, 164, 239, 0.18);
	border-radius: 40px;
	content: "";
	inset: -14px;
}

.ecosystem-core::after {
	border-color: rgba(107, 91, 210, 0.12);
	inset: -28px;
}

.ecosystem-core span {
	color: #75d9ff;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.ecosystem-core strong {
	margin: 0.25rem 0;
	font-size: 1.12rem;
}

.ecosystem-core small {
	color: #afc3da;
	font-size: 0.68rem;
}

.ecosystem-core > img {
	width: 42px;
	height: 42px;
	margin-bottom: 0.32rem;
	border: 2px solid rgba(255, 255, 255, 0.84);
	border-radius: 50%;
	background: var(--ag-white);
}

.industry-node {
	padding: 0.55rem 0.72rem;
	border: 1px solid var(--ag-border);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 7px 22px rgba(7, 26, 51, 0.08);
	font-size: 0.7rem;
	font-weight: 750;
}

.industry-node--automotive {
	bottom: 12%;
	left: 0;
}

.industry-node--ecommerce {
	bottom: 1%;
	left: 22%;
}

.industry-node--fintech {
	bottom: 0;
	left: 48%;
}

.industry-node--retail {
	right: 17%;
	bottom: 5%;
}

.industry-node--supply {
	right: 0;
	bottom: 20%;
}

/* Homepage sections */
.platform-band {
	display: grid;
	overflow: hidden;
	border: 1px solid var(--ag-border);
	border-radius: var(--ag-radius);
	background: var(--ag-white);
	box-shadow: var(--ag-shadow-sm);
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.platform-band > a {
	position: relative;
	display: flex;
	min-height: 190px;
	padding: 2rem 1.6rem 1.6rem 1.6rem;
	justify-content: flex-end;
	flex-direction: column;
	border-right: 1px solid var(--ag-border);
	color: var(--ag-ink);
	text-decoration: none;
	transition: background var(--ag-transition), color var(--ag-transition);
	gap: 1rem;
}

.platform-band > a img {
	position: absolute;
	top: 18px;
	right: 130px;
	width: 60px;
	height: 60px;
}

.platform-band > a:last-child {
	border-right: 0;
}

.platform-band > a:hover {
	background: var(--ag-mist-blue);
	color: var(--ag-blue);
}

.platform-band span {
	display: none;
}

.platform-band strong,
.platform-band small {
	display: block;
}

.platform-band strong {
	margin-bottom: 0.5rem;
	font-size: 1.3rem;
}

.platform-band small {
	color: var(--ag-slate);
	line-height: 1.5;
}

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

.route-card {
	position: relative;
	display: flex;
	min-height: 200px;
	padding: 1.6rem;
	flex-direction: column;
	border: 1px solid var(--ag-border);
	border-radius: var(--ag-radius);
	background: var(--ag-white);
	box-shadow: 0 10px 28px rgba(7, 26, 51, 0.05);
	transition: transform var(--ag-transition), border-color var(--ag-transition), box-shadow var(--ag-transition);
}

.route-card:hover {
	border-color: #a7d5f3;
	box-shadow: var(--ag-shadow);
	transform: translateY(-5px);
}

.route-card__marker {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: 1rem;
	border: 1px solid rgba(15, 108, 189, 0.18);
	border-radius: 14px;
	background: var(--ag-mist-blue);
	padding: 6px;
}

.route-card__marker img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.route-card h3 {
	font-size: 1.3rem;
}

.route-card h3 a {
	color: inherit;
	text-decoration: none;
}

.route-card h3 a::after {
	position: absolute;
	content: "";
	inset: 0;
}

.route-card p {
	margin-bottom: 1.7rem;
	font-size: 0.94rem;
}

.route-grid--related {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.route-grid--related .route-card {
	min-height: 265px;
}

.industry-ribbon {
	display: grid;
	gap: 1px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--ag-radius);
	background: rgba(255, 255, 255, 0.12);
	grid-template-columns: repeat(4, minmax(0, 1fr));
	overflow: hidden;
}

.industry-ribbon > a {
	display: flex;
	padding: 1.15rem;
	flex-direction: column;
	background: rgba(7, 26, 51, 0.74);
	color: var(--ag-white);
	text-decoration: none;
	transition: background var(--ag-transition);
}

.industry-ribbon > a:hover {
	background: rgba(15, 108, 189, 0.34);
	color: var(--ag-white);
}

.industry-ribbon span {
	color: #75d9ff;
	font-size: 0.72rem;
	font-weight: 800;
}

.industry-ribbon strong {
	margin-top: 0;
	margin-bottom: 0.45rem;
	font-size: 1.2rem;
	color: var(--ag-white);
}

.industry-ribbon small {
	display: -webkit-box;
	margin-top: 0;
	overflow: hidden;
	color: #b7c9dc;
	font-size: 0.78rem;
	line-height: 1.55;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
}

.industry-ribbon svg {
	width: 22px;
	margin-top: auto;
	padding-top: 1.25rem;
}

.delivery-grid,
.why-grid {
	display: grid;
	align-items: start;
	gap: clamp(48px, 8vw, 110px);
	grid-template-columns: 0.75fr 1.25fr;
}

.delivery-copy {
	position: sticky;
	top: calc(var(--ag-header-height) + 40px);
}

.delivery-timeline {
	position: relative;
	padding: 0;
	margin: 0;
	list-style: none;
}

.delivery-timeline::before {
	position: absolute;
	width: 1px;
	top: 20px;
	bottom: 20px;
	left: 30px;
	background: linear-gradient(var(--ag-cyan), var(--ag-purple));
	content: "";
}

.delivery-timeline li {
	position: relative;
	display: grid;
	min-height: 150px;
	gap: 24px;
	grid-template-columns: 62px 1fr;
}

.delivery-timeline li > span {
	z-index: 1;
	display: grid;
	width: 60px;
	height: 60px;
	place-items: center;
	border: 1px solid var(--ag-border);
	border-radius: 50%;
	background: var(--ag-white);
	box-shadow: var(--ag-shadow-sm);
	color: var(--ag-blue);
	font-size: 0.74rem;
	font-weight: 850;
}

.delivery-timeline h3 {
	margin-top: 0.4rem;
	font-size: 1.5rem;
}

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

.principle-grid article {
	min-height: auto;
	padding: 1.35rem 1.5rem;
	border: 1px solid var(--ag-border);
	border-radius: var(--ag-radius);
	background: var(--ag-white);
	transition: all 0.2s ease;
}

.principle-grid article:hover {
	border-color: var(--ag-blue);
	box-shadow: 0 8px 24px -6px rgba(0, 102, 255, 0.12);
	transform: translateY(-2px);
}

.principle-grid h3 {
	margin-top: 0;
	margin-bottom: 0.45rem;
	font-size: 1.1rem;
	color: var(--ag-text-title);
}

.principle-grid p {
	margin: 0;
	font-size: 0.88rem;
	line-height: 1.55;
	color: var(--ag-text-muted);
}

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

/* The homepage uses the post grid as a fallback wrapper for route cards. */
.home-insights .post-grid > .route-grid {
	grid-column: 1 / -1;
}

.post-card {
	position: relative;
	min-height: 280px;
	padding: 1.6rem;
	border: 1px solid var(--ag-border);
	border-radius: var(--ag-radius);
	background: var(--ag-white);
	transition: transform var(--ag-transition), box-shadow var(--ag-transition);
}

.post-card:hover {
	box-shadow: var(--ag-shadow);
	transform: translateY(-4px);
}

.post-card__meta,
.article-meta {
	color: #70839a;
	font-size: 0.78rem;
	font-weight: 700;
}

.post-card h2,
.post-card h3 {
	font-size: 1.35rem;
}

.post-card h2 a,
.post-card h3 a {
	color: inherit;
	text-decoration: none;
}

.post-card h2 a::after,
.post-card h3 a::after {
	position: absolute;
	content: "";
	inset: 0;
}

.post-card .text-link {
	position: relative;
	z-index: 1;
}

/* Inner pages */
.page-hero {
	position: relative;
	min-height: 520px;
	overflow: hidden;
	background: linear-gradient(135deg, #f7fbfe 0%, #edf5fa 54%, #e7f1f8 100%);
	color: var(--ag-navy-800);
}

.page-hero::after {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(18, 68, 102, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(18, 68, 102, 0.035) 1px, transparent 1px);
	background-size: 72px 72px;
	content: "";
	mask-image: linear-gradient(to bottom, black, transparent 78%);
	pointer-events: none;
}

.page-hero > .container {
	position: relative;
	z-index: 1;
	padding-block: 16px 32px;
}

.page-hero__grid {
	display: grid;
	min-height: 380px;
	align-items: center;
	gap: clamp(28px, 4vw, 56px);
	grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.strategic-page--erp-modernization .page-hero__grid {
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.page-hero__copy {
	position: relative;
	z-index: 2;
	max-width: 680px;
}

.page-hero h1 {
	max-width: 100%;
	margin-block: 14px 16px;
	color: var(--ag-navy-950);
	font-size: clamp(1.8rem, 3vw, 3.15rem);
	line-height: 0.98;
	letter-spacing: -0.06em;
}

.page-hero__lead {
	max-width: 620px;
	margin-bottom: 20px;
	color: #45657c;
	font-size: clamp(0.95rem, 1.2vw, 1.1rem);
	line-height: 1.55;
}

.page-hero .button--ghost {
	border-color: rgba(18, 68, 102, 0.25);
	color: var(--ag-navy-800);
}

.page-hero .button--ghost:hover {
	border-color: var(--ag-navy-800);
	background: rgba(255, 255, 255, 0.72);
	color: var(--ag-navy-950);
}

.page-hero__glow {
	position: absolute;
	width: 540px;
	height: 540px;
	border-radius: 50%;
	background: rgba(115, 202, 238, 0.23);
	filter: blur(8px);
	pointer-events: none;
}

.page-hero__glow--one {
	top: -230px;
	right: 2%;
}

.page-hero__glow--two {
	right: 36%;
	bottom: -430px;
	width: 460px;
	height: 460px;
	background: rgba(142, 126, 231, 0.13);
}

.page-hero__visual {
	position: relative;
	min-height: 320px;
	display: grid;
	place-items: center;
	margin-right: -5%;
}

.strategic-page--erp-modernization .page-hero__copy {
	max-width: 590px;
}

.strategic-page--erp-modernization .page-hero__visual {
	margin-right: 0;
}

.strategic-page--customer-vendor-portals .page-hero__grid {
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.strategic-page--customer-vendor-portals .page-hero__copy {
	max-width: 620px;
}

.strategic-page--customer-vendor-portals .page-hero__visual {
	margin-right: 0;
}

.strategic-page--customer-vendor-portals > .section {
	padding-block: clamp(34px, 4vw, 58px);
}

.strategic-page--crm-customer-experience .page-hero__grid {
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.strategic-page--crm-customer-experience .page-hero__copy {
	max-width: 620px;
}

.strategic-page--crm-customer-experience .page-hero__visual {
	margin-right: 0;
}

.strategic-page--crm-customer-experience > .section {
	padding-block: clamp(34px, 4vw, 58px);
}

.strategic-page--crm-customer-experience .workflow-section strong {
	display: block;
	margin-bottom: 12px;
	color: var(--ag-navy-950);
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.strategic-page--business-central .content-grid--aside:not(:has(> .content-card)) {
	grid-template-columns: minmax(0, 1fr);
}

.strategic-page--business-central .section {
	padding-block: clamp(12px, 1.5vw, 24px);
}

.strategic-page--business-central .workflow-section strong {
	display: block;
	margin-bottom: 10px;
	color: var(--ag-navy-950);
	font-size: 0.78rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.strategic-page--finance .content-grid--aside:not(:has(> .content-card)) {
	grid-template-columns: minmax(0, 1fr);
}

.strategic-page--finance .section {
	padding-block: clamp(28px, 3vw, 44px);
}

.strategic-page--finance .page-hero__grid {
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.strategic-page--finance .page-hero__copy {
	max-width: 620px;
}

.strategic-page--finance .page-hero__visual {
	width: 100%;
	margin-right: 0;
}

.strategic-page--finance .page-hero__visual > img,
.strategic-page--finance .page-hero__visual > .image-placeholder {
	max-width: 100%;
}

.strategic-page--supply-chain .content-grid--aside:not(:has(> .content-card)) {
	grid-template-columns: minmax(0, 1fr);
}

.strategic-page--supply-chain .section {
	padding-block: clamp(28px, 3vw, 44px);
}

.strategic-page--supply-chain .page-hero__grid {
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.strategic-page--supply-chain .page-hero__copy {
	max-width: 620px;
}

.strategic-page--supply-chain .page-hero__visual {
	width: 100%;
	margin-right: 0;
}

.strategic-page--supply-chain .page-hero__visual > img,
.strategic-page--supply-chain .page-hero__visual > .image-placeholder {
	max-width: 100%;
}

.strategic-page--customer-service .content-grid--aside:not(:has(> .content-card)) {
	grid-template-columns: minmax(0, 1fr);
}

.strategic-page--customer-service .section {
	padding-block: clamp(28px, 3vw, 44px);
}

.strategic-page--customer-service .page-hero__grid {
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.strategic-page--customer-service .page-hero__copy {
	max-width: 620px;
}

.strategic-page--customer-service .page-hero__visual {
	width: 100%;
	margin-right: 0;
}

.strategic-page--customer-service .page-hero__visual > img,
.strategic-page--customer-service .page-hero__visual > .image-placeholder {
	max-width: 100%;
}

.strategic-page--sales .content-grid--aside:not(:has(> .content-card)) {
	grid-template-columns: minmax(0, 1fr);
}

.strategic-page--sales .section {
	padding-block: clamp(28px, 3vw, 44px);
}

.strategic-page--sales .page-hero__grid {
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.strategic-page--sales .page-hero__copy {
	max-width: 620px;
}

.strategic-page--sales .page-hero__visual {
	width: 100%;
	margin-right: 0;
}

.strategic-page--sales .page-hero__visual > img,
.strategic-page--sales .page-hero__visual > .image-placeholder {
	max-width: 100%;
}

.strategic-page--power-platform .content-grid--aside:not(:has(> .content-card)) {
	grid-template-columns: minmax(0, 1fr);
}

.strategic-page--power-platform .section {
	padding-block: clamp(28px, 3vw, 44px);
}

.strategic-page--power-platform .page-hero__grid {
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.strategic-page--power-platform .page-hero__copy {
	max-width: 620px;
}

.strategic-page--power-platform .page-hero__visual {
	width: 100%;
	margin-right: 0;
}

.strategic-page--power-platform .page-hero__visual > img,
.strategic-page--power-platform .page-hero__visual > .image-placeholder {
	max-width: 100%;
}

.strategic-page--data-analytics-modernization .page-hero__grid,
.strategic-page--supply-chain-visibility .page-hero__grid {
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.strategic-page--data-analytics-modernization .page-hero__copy,
.strategic-page--supply-chain-visibility .page-hero__copy {
	max-width: 620px;
}

.strategic-page--data-analytics-modernization .page-hero__visual,
.strategic-page--supply-chain-visibility .page-hero__visual {
	margin-right: 0;
}

.strategic-page--data-analytics-modernization > .section,
.strategic-page--supply-chain-visibility > .section {
	padding-block: clamp(34px, 4vw, 58px);
}

.strategic-page--erp-modernization > .section {
	padding-block: clamp(48px, 5vw, 76px);
}

.strategic-page--erp-modernization .section-heading {
	margin-bottom: clamp(24px, 3vw, 40px);
}

.strategic-page--erp-modernization .erp-intelligent-section {
	padding-block: clamp(38px, 4vw, 58px);
}

.erp-intelligent-section .section-heading {
	margin-bottom: clamp(16px, 2vw, 28px);
}

.erp-intelligent-section .content-card-grid {
	margin-block: 1rem;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.erp-intelligent-section .lead-text {
	margin-bottom: 0;
}

.page-hero__visual-halo {
	position: absolute;
	width: min(86%, 590px);
	aspect-ratio: 1;
	border: 1px solid rgba(255, 255, 255, 0.82);
	border-radius: 50%;
	box-shadow: 0 0 0 34px rgba(255, 255, 255, 0.3), 0 24px 70px rgba(32, 93, 125, 0.14);
}

.page-hero__image {
	position: relative;
	z-index: 1;
	width: min(92%, 540px);
	height: auto;
	max-height: 320px;
	object-fit: contain;
	filter: drop-shadow(0 28px 30px rgba(24, 68, 94, 0.18));
}

.page-hero__image--icon {
	width: 180px;
	padding: 36px;
	border-radius: 42px;
	background: rgba(255, 255, 255, 0.8);
}

.page-hero__capability {
	position: absolute;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 10px;
	max-width: 190px;
	padding: 13px 16px;
	border: 1px solid rgba(255, 255, 255, 0.88);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.68);
	box-shadow: 0 18px 42px rgba(30, 77, 104, 0.14);
	backdrop-filter: blur(14px);
	color: var(--ag-navy-900);
	font-size: 0.83rem;
	font-weight: 750;
}

.page-hero__capability span {
	color: var(--ag-blue);
	font-size: 0.7rem;
	font-weight: 850;
	letter-spacing: 0.08em;
}

.page-hero__capability--one { top: 15%; left: 1%; }
.page-hero__capability--two { top: 5%; right: 4%; }
.page-hero__capability--three { right: 0; bottom: 18%; }
.page-hero__capability--four { bottom: 6%; left: 8%; }

.page-hero__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	padding: 0;
	margin: 26px 0 0;
	list-style: none;
	color: #41667d;
	font-size: 0.78rem;
	font-weight: 750;
}

.page-hero__chips li {
	padding: 8px 11px;
	border: 1px solid rgba(44, 105, 137, 0.16);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.56);
}

.image-placeholder {
	min-height: 260px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 2rem;
	text-align: center;
	border: 1px dashed rgba(36, 71, 91, 0.35);
	border-radius: 1rem;
	background: linear-gradient(145deg, rgba(235, 244, 246, 0.9), rgba(248, 251, 251, 0.95));
	color: #24475b;
}

.image-placeholder--hero { min-height: 360px; width: 100%; }
.image-placeholder h3 { margin: 0.75rem 0 0.35rem; }
.image-placeholder p { max-width: 28rem; margin: 0; }
.placeholder-icon { width: 3.5rem; height: 3.5rem; border: 2px solid currentColor; border-radius: 0.75rem; position: relative; opacity: 0.65; }
.placeholder-icon::before { content: ''; position: absolute; width: 0.65rem; height: 0.65rem; top: 0.65rem; left: 0.65rem; border: 2px solid currentColor; border-radius: 50%; }
.placeholder-icon::after { content: ''; position: absolute; width: 1.8rem; height: 1rem; bottom: 0.55rem; left: 0.7rem; border-left: 2px solid currentColor; border-top: 2px solid currentColor; transform: skewY(-35deg) rotate(12deg); }

.image-placeholder--microsoft-icon {
	gap: 18px;
	border-style: solid;
	border-color: rgba(44, 105, 137, 0.12);
	background: radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.96), rgba(230, 242, 248, 0.9));
	box-shadow: 0 22px 44px rgba(30, 77, 104, 0.12);
}

.image-placeholder--microsoft-icon img {
	width: 144px;
	height: 144px;
	object-fit: contain;
}

.image-placeholder--microsoft-icon p {
	color: var(--ag-navy-800);
	font-weight: 750;
}

.breadcrumbs {
	padding: 0 0 12px;
	font-size: 0.78rem;
}

.breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	align-items: center;
	padding: 0;
	margin: 0;
	list-style: none;
}

.breadcrumbs li {
	display: inline-flex;
	gap: 7px;
	align-items: center;
	color: #a9bdd3;
}

.breadcrumbs li:not(:last-child)::after {
	color: #6f88a2;
	content: "›";
}

.breadcrumbs a {
	color: #cce9f8;
	text-decoration: none;
}

.breadcrumbs a:hover {
	color: var(--ag-white);
	text-decoration: underline;
}

.prose-content {
	max-width: var(--ag-reading);
	margin-inline: auto;
	color: #344b68;
	font-size: 1rem;
	line-height: 1.72;
}

.prose-content > *:first-child {
	margin-top: 0;
}

.prose-content h2 {
	padding-top: clamp(28px, 3.5vw, 42px);
	margin-top: clamp(28px, 3.5vw, 42px);
	border-top: 1px solid var(--ag-border);
	font-size: clamp(1.3125rem, 1.8375vw, 1.725rem);
	line-height: 1.16;
}

.prose-content h3 {
	margin-top: 1.65rem;
	font-size: 1.22rem;
}

.prose-content h4 {
	margin-top: 1.45rem;
	font-size: 1.02rem;
}

.prose-content p,
.prose-content li {
	max-width: 78ch;
}

.prose-content p {
	margin-bottom: 1rem;
}

.prose-content ul,
.prose-content ol {
	padding-left: 1.35rem;
}

.prose-content li {
	margin: 0.34rem 0;
}

.prose-content li::marker {
	color: var(--ag-blue);
}

.prose-content blockquote {
	padding: 1.25rem 1.5rem;
	margin: 2rem 0;
	border-left: 4px solid var(--ag-cyan);
	border-radius: 0 var(--ag-radius-sm) var(--ag-radius-sm) 0;
	background: var(--ag-mist);
	color: var(--ag-ink);
}

.prose-content blockquote p:last-child {
	margin-bottom: 0;
}

.document-section {
	padding-top: clamp(28px, 3.5vw, 42px);
	margin-top: clamp(28px, 3.5vw, 42px);
	border-top: 1px solid var(--ag-border);
}

.prose-content > .document-section:first-child {
	padding-top: 0;
	margin-top: 0;
	border-top: 0;
}

.document-section > h2 {
	padding-top: 0;
	margin-top: 0;
	border: 0;
}

.document-section > h2 + p {
	color: #405875;
	font-size: 1.04rem;
}

.content-card-grid,
.use-case-grid {
	display: grid;
	gap: 16px;
	margin: 1.5rem 0;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.content-card,
.use-case-grid article {
	position: relative;
	padding: 1.3rem 1.35rem;
	overflow: hidden;
	border: 1px solid var(--ag-border);
	border-radius: 16px;
	background: var(--ag-white);
	box-shadow: 0 8px 24px rgba(7, 26, 51, 0.055);
	transition: border-color var(--ag-transition), box-shadow var(--ag-transition), transform var(--ag-transition);
}

.content-card::before,
.use-case-grid article::before {
	position: absolute;
	width: 4px;
	top: 18px;
	bottom: 18px;
	left: 0;
	border-radius: 0 4px 4px 0;
	background: linear-gradient(var(--ag-cyan), var(--ag-blue));
	content: "";
}

.content-card:hover,
.use-case-grid article:hover {
	border-color: #b7d8ef;
	box-shadow: 0 14px 34px rgba(7, 26, 51, 0.09);
	transform: translateY(-2px);
}

.content-card h3,
.use-case-grid h3 {
	margin-top: 0;
	font-size: 1.06rem;
	line-height: 1.3;
}

.content-card p:last-child,
.use-case-grid p:last-child {
	margin-bottom: 0;
	font-size: 0.93rem;
}

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

.erp-foundation-layout {
	display: grid;
	gap: clamp(28px, 5vw, 64px);
	align-items: start;
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
}

.erp-foundation-links {
	display: grid;
	gap: 14px;
	align-self: stretch;
	grid-template-rows: repeat(3, minmax(0, 1fr));
}

.erp-foundation-links .erp-link-card {
	height: 100%;
}

.erp-foundation-layout > .prose-content > .section-heading h2 {
	padding-top: 0;
	margin-top: 0;
	border-top: 0;
}

.erp-link-card {
	display: flex;
	flex-direction: column;
	color: var(--ag-ink);
	text-decoration: none;
}

.erp-link-card:hover {
	color: var(--ag-ink);
}

.erp-link-card__action {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	color: var(--ag-blue);
	font-size: 0.86rem;
	font-weight: 800;
}

.erp-link-card__action svg {
	width: 18px;
	height: 18px;
	transition: transform var(--ag-transition);
}

.erp-link-card:hover .erp-link-card__action svg {
	transform: translateX(4px);
}

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

.erp-transition-card {
	display: block;
	overflow: hidden;
	border: 1px solid var(--ag-border);
	border-radius: var(--ag-radius);
	background: var(--ag-white);
	box-shadow: 0 10px 28px rgba(7, 26, 51, 0.06);
	color: var(--ag-ink);
	text-decoration: none;
	transition: border-color var(--ag-transition), box-shadow var(--ag-transition), transform var(--ag-transition);
}

.erp-transition-card:hover {
	border-color: #a7d5f3;
	box-shadow: var(--ag-shadow);
	color: var(--ag-ink);
	transform: translateY(-4px);
}

.erp-transition-card > img {
	display: block;
	width: 100%;
	height: 220px;
	object-fit: cover;
	border-bottom: 1px solid var(--ag-border);
}

.erp-transition-card__body {
	display: flex;
	height: 100%;
	flex-direction: column;
	padding: 1.4rem 1.5rem 1.55rem;
}

.erp-transition-card__body h3 {
	margin-top: 0;
	font-size: clamp(1.2rem, 1.9vw, 1.55rem);
}

.erp-transition-card__body p:last-of-type {
	margin-bottom: 0;
	font-size: 0.94rem;
}

/*
 * Section illustration container (Business Challenge, Solution, Architecture,
 * Workflow, Supporting Visual, etc.). These sections reuse .content-card as
 * the image wrapper inside .content-grid--aside; this variant strips the
 * text-card padding/accent bar and lets the 1200x900 illustration fill the
 * card at its native aspect ratio, while keeping the card's border/radius/
 * shadow so the enterprise visual style is unchanged.
 */
.content-grid--aside .content-card {
	display: block;
	padding: 0;
}

.content-grid--aside .content-card::before {
	content: none;
}

.content-grid--aside .content-card img {
	display: block;
	width: 100%;
	height: auto;
	max-width: none;
	border-radius: inherit;
}

.feature-grid,
.check-list {
	display: grid;
	gap: 10px;
	padding: 0;
	margin: 1.35rem 0;
	list-style: none;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-grid li,
.check-list li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	padding: 0.82rem 0.92rem;
	border: 1px solid #e4edf5;
	border-radius: 11px;
	background: linear-gradient(135deg, #f8fbfe, var(--ag-mist));
	font-size: 0.94rem;
}

.feature-grid svg,
.check-list svg {
	width: 18px;
	flex: 0 0 18px;
	margin-top: 0.2em;
	color: var(--ag-blue);
}

.responsive-table {
	width: 100%;
	margin: 1.55rem 0;
	overflow-x: auto;
	border: 1px solid var(--ag-border);
	border-radius: 14px;
	box-shadow: 0 8px 24px rgba(7, 26, 51, 0.045);
	-webkit-overflow-scrolling: touch;
}

.responsive-table table {
	width: 100%;
	min-width: 620px;
	border-collapse: collapse;
}

.responsive-table th,
.responsive-table td {
	padding: 0.85rem 1rem;
	border-bottom: 1px solid var(--ag-border);
	text-align: left;
	vertical-align: top;
}

.responsive-table th {
	background: var(--ag-navy-900);
	color: var(--ag-white);
	font-size: 0.78rem;
	letter-spacing: 0.025em;
}

.responsive-table tbody tr:nth-child(even) {
	background: #f7fafc;
}

.responsive-table tr:last-child td {
	border-bottom: 0;
}

.responsive-table td {
	color: var(--ag-ink);
	font-size: 0.9rem;
}

.faq-list {
	display: grid;
	gap: 10px;
	margin-top: 1.5rem;
}

.faq-item {
	overflow: hidden;
	border: 1px solid var(--ag-border);
	border-radius: 13px;
	background: var(--ag-white);
	transition: border-color var(--ag-transition), box-shadow var(--ag-transition);
}

.faq-item[open] {
	border-color: #b7d8ef;
	box-shadow: 0 10px 26px rgba(7, 26, 51, 0.07);
}

.faq-item summary {
	position: relative;
	padding: 1rem 3rem 1rem 1.1rem;
	color: var(--ag-ink);
	font-size: 0.98rem;
	font-weight: 700;
	cursor: pointer;
	list-style: none;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary::before,
.faq-item summary::after {
	position: absolute;
	top: 50%;
	right: 18px;
	width: 14px;
	height: 2px;
	background: var(--ag-blue);
	content: "";
	transform: translateY(-50%);
}

.faq-item summary::after {
	transform: translateY(-50%) rotate(90deg);
	transition: transform var(--ag-transition);
}

.faq-item[open] summary::after {
	transform: translateY(-50%) rotate(0);
}

.faq-item > div {
	padding: 0 3rem 1rem 1.1rem;
	color: #435a75;
}

.faq-item > div p:last-child {
	margin-bottom: 0;
}

.child-directory .route-grid:empty::after {
	padding: 1.25rem;
	border: 1px dashed var(--ag-border-strong);
	border-radius: var(--ag-radius-sm);
	content: "Related capabilities will appear here.";
}

.microsoft-logo-grid {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.microsoft-logo-grid > div {
	display: flex;
	min-height: 150px;
	padding: 1.1rem;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 14px;
	border: 1px solid var(--ag-border);
	border-radius: var(--ag-radius-sm);
	background: var(--ag-white);
	text-align: center;
}

.microsoft-logo-grid img {
	width: 54px;
	height: 54px;
	object-fit: contain;
}

.microsoft-logo-grid span {
	color: var(--ag-ink);
	font-size: 0.83rem;
	font-weight: 720;
}

.architecture-layout {
	display: grid;
	gap: 60px;
	align-items: center;
	grid-template-columns: 0.85fr 1.15fr;
}

.architecture-layout .section-heading {
	margin: 0;
}

.architecture-stack {
	position: relative;
	display: grid;
	gap: 10px;
	padding: 34px;
	border: 1px solid var(--ag-border);
	border-radius: var(--ag-radius-lg);
	background:
		radial-gradient(circle at 90% 0%, rgba(0, 164, 239, 0.13), transparent 38%),
		var(--ag-mist);
}

.architecture-stack::before {
	position: absolute;
	width: 2px;
	top: 65px;
	bottom: 65px;
	left: 62px;
	background: linear-gradient(var(--ag-cyan), var(--ag-purple));
	content: "";
}

.architecture-layer {
	position: relative;
	display: flex;
	min-height: 74px;
	align-items: center;
	gap: 18px;
	padding: 1rem 1.2rem;
	border: 1px solid var(--ag-border);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 7px 20px rgba(7, 26, 51, 0.05);
	color: var(--ag-ink);
}

.architecture-layer span {
	z-index: 1;
	display: grid;
	width: 34px;
	height: 34px;
	flex: 0 0 34px;
	place-items: center;
	border-radius: 50%;
	background: var(--ag-navy-900);
	color: var(--ag-white);
	font-size: 0.7rem;
	font-weight: 800;
}

.process-section .section-heading {
	max-width: 860px;
}

.process-flow {
	display: grid;
	padding: 0;
	margin: 0;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--ag-radius);
	list-style: none;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	overflow: hidden;
}

.process-flow li {
	min-height: 260px;
	padding: 1.35rem;
	border-right: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.025);
}

.process-flow li:last-child {
	border-right: 0;
}

.process-flow li > span {
	color: #75d9ff;
	font-size: 0.75rem;
	font-weight: 850;
}

.process-flow h3 {
	margin-top: 4.2rem;
}

.process-flow p {
	color: #b9cadd;
	font-size: 0.86rem;
}

.relationship-sections > .relationship-section:nth-child(even) {
	background: var(--ag-mist);
}

.consultation-cta {
	overflow: hidden;
	background:
		radial-gradient(circle at 85% 10%, rgba(0, 164, 239, 0.28), transparent 34%),
		radial-gradient(circle at 5% 100%, rgba(107, 91, 210, 0.3), transparent 38%),
		var(--ag-navy-950);
	color: #bfd0e2;
}

.consultation-cta__inner {
	display: grid;
	align-items: center;
	gap: 50px;
	grid-template-columns: minmax(0, 1fr) auto;
}

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

.consultation-cta h2 {
	max-width: 760px;
}

.consultation-cta p {
	max-width: 700px;
}

.consultation-cta .button-row {
	flex-direction: column;
	margin: 0;
}

/* Forms and contact */
.content-grid--aside,
.contact-layout {
	display: grid;
	align-items: start;
	gap: clamp(40px, 7vw, 90px);
	grid-template-columns: minmax(0, 1fr) 360px;
}

.contact-layout {
	gap: clamp(36px, 5vw, 64px);
	grid-template-columns: minmax(250px, 0.58fr) minmax(0, 1.42fr);
}

.content-grid--aside .prose-content,
.contact-layout .prose-content {
	max-width: none;
	margin: 0;
}

.context-card {
	padding: 1.5rem;
	border: 1px solid var(--ag-border);
	border-radius: var(--ag-radius);
	background: var(--ag-mist);
}

.page-layout--contact .section--compact {
	background:
		radial-gradient(circle at 94% 10%, rgba(0, 164, 239, 0.08), transparent 28%),
		linear-gradient(180deg, #f8fbfe, var(--ag-white));
}

.contact-layout > .prose-content {
	position: sticky;
	top: calc(var(--ag-header-height) + 28px);
	padding: 1.65rem;
	border: 1px solid rgba(126, 207, 247, 0.18);
	border-radius: 22px;
	background:
		radial-gradient(circle at 92% 4%, rgba(0, 164, 239, 0.22), transparent 34%),
		linear-gradient(145deg, var(--ag-navy-950), #0a284a);
	box-shadow: 0 22px 50px rgba(7, 26, 51, 0.14);
	color: #c7d6e8;
}

.contact-layout > .prose-content .document-section {
	padding-top: 1.4rem;
	margin-top: 1.4rem;
	border-color: rgba(255, 255, 255, 0.14);
}

.contact-layout > .prose-content .document-section:first-child {
	padding-top: 0;
	margin-top: 0;
	border: 0;
}

.contact-layout > .prose-content h2 {
	color: var(--ag-white);
	font-size: 1.0125rem;
}

.contact-layout > .prose-content p {
	margin-bottom: 0;
	color: #c7d6e8;
	font-size: 0.92rem;
}

.contact-layout > .prose-content a {
	color: #7cddff;
}

.contact-form-panel {
	padding: 0;
	border: 0;
	border-radius: 28px;
	background: transparent;
}

.context-card h2 {
	font-size: 1.1625rem;
}

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

.form-section-wrap .section-heading {
	max-width: 850px;
}

.consultation-form {
	position: relative;
	max-width: 1040px;
	padding: clamp(24px, 5vw, 50px);
	border: 1px solid var(--ag-border);
	border-radius: var(--ag-radius-lg);
	background: var(--ag-white);
	box-shadow: var(--ag-shadow-sm);
}

.consultation-form--contact {
	max-width: none;
	padding: 0;
	overflow: hidden;
	border-color: #d4e2ee;
	border-radius: 26px;
	box-shadow: 0 24px 64px rgba(7, 26, 51, 0.13);
}

.form-intro {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 30px;
	padding: clamp(26px, 4vw, 38px);
	background:
		radial-gradient(circle at 90% 10%, rgba(0, 164, 239, 0.25), transparent 36%),
		linear-gradient(135deg, var(--ag-navy-950), #0b3158);
	color: #c8d9e9;
}

.form-intro .eyebrow {
	margin-bottom: 0.65rem;
	color: #77dfff;
}

.form-intro h2 {
	max-width: 580px;
	margin-bottom: 0.55rem;
	color: var(--ag-white);
	font-size: clamp(1.3125rem, 2.25vw, 1.875rem);
}

.form-intro p:not(.eyebrow, .form-required-note) {
	max-width: 610px;
	margin: 0;
	font-size: 0.94rem;
}

.form-required-note {
	flex: 0 0 auto;
	padding: 0.5rem 0.7rem;
	margin: 0;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.07);
	color: #dce9f5;
	font-size: 0.72rem;
	font-weight: 700;
	white-space: nowrap;
}

.form-required-note span {
	color: #75d9ff;
}

.consultation-form--contact .form-section {
	padding-inline: clamp(24px, 4vw, 38px);
}

.consultation-form--contact .form-intro + .form-section {
	padding-top: clamp(28px, 4vw, 38px);
}

.consultation-form .form-section + .form-section {
	padding-top: 2.4rem;
	margin-top: 2.4rem;
	border-top: 1px solid var(--ag-border);
}

.consultation-form--contact .form-section + .form-section {
	padding-top: clamp(28px, 4vw, 38px);
	padding-bottom: clamp(28px, 4vw, 38px);
	margin-top: clamp(28px, 4vw, 38px);
}

.form-section__heading {
	display: flex;
	align-items: center;
	gap: 13px;
	margin-bottom: 1.35rem;
}

.form-section__heading > span {
	display: grid;
	width: 38px;
	height: 38px;
	flex: 0 0 38px;
	place-items: center;
	border-radius: 12px;
	background: linear-gradient(145deg, var(--ag-blue), #1784dc);
	box-shadow: 0 8px 18px rgba(15, 108, 189, 0.2);
	color: var(--ag-white);
	font-size: 0.68rem;
	font-weight: 850;
	letter-spacing: 0.08em;
}

.consultation-form .form-section__heading h2 {
	margin: 0;
	font-size: 1.0125rem;
}

.form-section__heading p {
	margin: 0.18rem 0 0;
	color: #647891;
	font-size: 0.82rem;
}

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

.field {
	margin: 0;
}

.field--full {
	grid-column: 1 / -1;
}

.field label {
	display: block;
	margin-bottom: 0.42rem;
	color: var(--ag-ink);
	font-size: 0.8rem;
	font-weight: 730;
	letter-spacing: 0.005em;
	transition: color var(--ag-transition);
}

.field label > span[aria-hidden="true"] {
	color: var(--ag-blue);
}

.field:focus-within > label {
	color: var(--ag-blue);
}

.field input,
.field select,
.field textarea,
.search-field {
	width: 100%;
	min-height: 48px;
	padding: 0.68rem 0.85rem;
	border: 1px solid var(--ag-border-strong);
	border-radius: 11px;
	background: var(--ag-white);
	color: var(--ag-ink);
	font-size: 0.92rem;
	transition: border-color var(--ag-transition), box-shadow var(--ag-transition), background var(--ag-transition);
}

.field input:hover,
.field select:hover,
.field textarea:hover {
	border-color: #9fc4df;
}

.field input::placeholder,
.field textarea::placeholder {
	color: #8292a7;
	opacity: 1;
}

.field select {
	padding-right: 2.4rem;
	appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, #54708c 50%), linear-gradient(135deg, #54708c 50%, transparent 50%);
	background-position: calc(100% - 17px) 50%, calc(100% - 12px) 50%;
	background-repeat: no-repeat;
	background-size: 5px 5px, 5px 5px;
}

.field textarea {
	min-height: 142px;
	line-height: 1.55;
	resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.search-field:focus {
	border-color: var(--ag-blue);
	box-shadow: 0 0 0 3px rgba(0, 164, 239, 0.15);
	outline: 0;
}

.field-hint {
	display: block;
	margin-top: 0.38rem;
	color: #77899f;
	font-size: 0.7rem;
	text-align: right;
}

.form-details-toggle {
	display: flex;
	min-height: 66px;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	grid-column: 1 / -1;
	padding: 0.8rem 1rem;
	border: 1px solid #cfe0ed;
	border-radius: 13px;
	background: linear-gradient(135deg, #f6faff, #eef6fc);
	color: var(--ag-ink);
	text-align: left;
	transition: border-color var(--ag-transition), background var(--ag-transition), transform var(--ag-transition);
}

.form-details-toggle:hover {
	border-color: #93c7e8;
	background: var(--ag-mist-blue);
	transform: translateY(-1px);
}

.form-details-toggle > span,
.form-details-toggle strong,
.form-details-toggle small {
	display: block;
}

.form-details-toggle strong {
	font-size: 0.9rem;
}

.form-details-toggle small {
	margin-top: 0.18rem;
	color: #647891;
	font-size: 0.74rem;
}

.form-details-toggle svg {
	width: 18px;
	height: 18px;
	flex: 0 0 18px;
	color: var(--ag-blue);
	transition: transform var(--ag-transition);
}

.form-details-toggle[aria-expanded="true"] svg {
	transform: rotate(180deg);
}

.form-details-fields {
	display: grid;
	gap: 1rem 1.1rem;
	grid-column: 1 / -1;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	padding-top: 0.25rem;
}

.form-details-fields[hidden] {
	display: none;
}

.form-details-fields.is-revealing {
	animation: allgrow-form-details-in 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes allgrow-form-details-in {
	from {
		opacity: 0;
		transform: translateY(-8px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

.field [aria-invalid="true"] {
	border-color: var(--ag-error);
	background: #fffafa;
}

.field-error {
	display: block;
	margin-top: 0.35rem;
	color: var(--ag-error);
	font-size: 0.78rem;
	font-weight: 650;
}

.field--consent {
	margin: 0 0 0.65rem;
}

.field--consent label {
	display: flex;
	gap: 10px;
	align-items: flex-start;
}

.field--consent input {
	width: 18px;
	height: 18px;
	flex: 0 0 18px;
	margin-top: 0.2rem;
	accent-color: var(--ag-blue);
}

.form-privacy {
	max-width: 700px;
	margin: 0;
	color: #647891;
	font-size: 0.8rem;
}

.form-actions {
	padding-top: 1.5rem;
	margin-top: 2rem;
	border-top: 1px solid var(--ag-border);
}

.consultation-form--contact .form-actions {
	display: grid;
	padding: clamp(24px, 4vw, 34px) clamp(24px, 4vw, 38px);
	margin: 0;
	background: #f6f9fc;
	grid-template-columns: minmax(0, 1fr) auto;
}

.consultation-form--contact .field--consent,
.consultation-form--contact .form-privacy {
	grid-column: 1;
}

.consultation-form--contact .form-actions > .button {
	min-width: 180px;
	align-self: center;
	grid-column: 2;
	grid-row: 1 / span 2;
	border-radius: 12px;
}

.form-honeypot {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
}

.form-notice {
	max-width: 1040px;
	padding: 1rem 1.2rem;
	margin-bottom: 1.2rem;
	border-radius: var(--ag-radius-sm);
	font-weight: 680;
}

.form-notice--success {
	border: 1px solid #a7dec9;
	background: #ecfaf4;
	color: var(--ag-success);
}

.form-notice--error {
	border: 1px solid #f0b9b5;
	background: #fff3f2;
	color: var(--ag-error);
}

.contact-form-panel .consultation-form {
	width: 100%;
}

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

.contact-form-panel .form-section h2 {
	font-size: 1.0125rem;
}

.contact-form-panel .consultation-form .form-section + .form-section {
	margin-top: 2rem;
}

/* Blog, search, 404 */
.page-hero--article,
.page-hero--archive,
.page-hero--search,
.page-hero--insights {
	display: flex;
	min-height: 420px;
	align-items: center;
}

.page-hero--article h1 {
	font-size: clamp(1.95rem, 3.75vw, 3.6rem);
}

.search-form {
	position: relative;
	max-width: 620px;
	margin-top: 1.5rem;
}

.search-form label {
	display: block;
}

.search-form input {
	padding-right: 54px;
}

.search-form button {
	position: absolute;
	width: 42px;
	height: 42px;
	top: 4px;
	right: 4px;
	display: grid;
	place-items: center;
	border: 0;
	border-radius: 8px;
	background: var(--ag-blue);
	color: var(--ag-white);
}

.search-form button svg {
	width: 20px;
}

.page-hero .search-field {
	border-color: rgba(255, 255, 255, 0.3);
	background: rgba(255, 255, 255, 0.96);
}

.search-results-list {
	display: grid;
	gap: 18px;
}

.search-result {
	padding: 1.5rem;
	border: 1px solid var(--ag-border);
	border-radius: var(--ag-radius-sm);
}

.search-result h2 {
	font-size: 1.0875rem;
}

.not-found-section {
	display: flex;
	min-height: calc(100svh - var(--ag-header-height));
	align-items: center;
	background: var(--ag-mist);
}

.not-found-grid {
	display: grid;
	align-items: center;
	gap: 40px;
	grid-template-columns: 1fr 0.8fr;
}

.not-found-grid h1 {
	font-size: clamp(2.25rem, 5.25vw, 4.5rem);
}

.not-found-code {
	color: transparent;
	font-size: clamp(8rem, 20vw, 18rem);
	font-weight: 850;
	letter-spacing: -0.1em;
	line-height: 1;
	-webkit-text-stroke: 2px rgba(15, 108, 189, 0.25);
}

.comments-area {
	border-top: 1px solid var(--ag-border);
}

.comment-list {
	padding: 0;
	list-style: none;
}

.comment-list .comment {
	padding: 1rem 0;
	border-bottom: 1px solid var(--ag-border);
}

.nav-links {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-top: 2rem;
}

.page-numbers {
	display: grid;
	min-width: 42px;
	height: 42px;
	place-items: center;
	border: 1px solid var(--ag-border);
	border-radius: 9px;
	text-decoration: none;
}

.page-numbers.current {
	border-color: var(--ag-blue);
	background: var(--ag-blue);
	color: var(--ag-white);
}

/* Footer */
.site-footer {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 92% 8%, rgba(0, 164, 239, 0.12), transparent 28%),
		linear-gradient(145deg, #030d1e, #06172d 62%, #071c35);
	color: #a9bdd2;
}

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

.site-footer__cta-wrap {
	padding-top: 52px;
}

.footer-cta {
	position: relative;
	display: grid;
	align-items: center;
	gap: 36px;
	padding: clamp(26px, 4vw, 42px);
	overflow: hidden;
	border: 1px solid rgba(126, 207, 247, 0.22);
	border-radius: 24px;
	background:
		radial-gradient(circle at 85% 0%, rgba(0, 164, 239, 0.25), transparent 35%),
		linear-gradient(125deg, rgba(15, 108, 189, 0.22), rgba(107, 91, 210, 0.12));
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
	grid-template-columns: minmax(0, 1fr) auto;
}

.footer-cta .eyebrow {
	margin-bottom: 0.7rem;
	color: #79dcff;
}

.footer-cta h2 {
	max-width: 720px;
	margin-bottom: 0.45rem;
	color: var(--ag-white);
	font-size: clamp(1.3125rem, 2.25vw, 2.0625rem);
}

.footer-cta p:last-child {
	max-width: 720px;
	margin: 0;
	color: #c2d3e5;
	font-size: 0.96rem;
}

.footer-cta .button {
	white-space: nowrap;
}

.site-footer__top {
	display: grid;
	gap: clamp(30px, 4vw, 52px);
	padding-block: 58px 50px;
	grid-template-columns: 1.35fr repeat(3, minmax(0, 0.75fr));
}

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

.footer-brand .brand-link__wordmark small {
	color: #b7c9dc;
}

.footer-brand .custom-logo-link {
	padding: 8px 12px;
	border-radius: 12px;
	background: var(--ag-navy-950);
}

.footer-brand > p {
	max-width: 390px;
	margin: 1.25rem 0 1.35rem;
	color: #b9c9da;
	font-size: 0.93rem;
	line-height: 1.72;
}

.footer-social {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 1.35rem;
}

.footer-social__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: #b9cadd;
	transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
	text-decoration: none;
}

.footer-social__link svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
	transition: transform 0.2s ease;
}

.footer-social__link:hover {
	background: var(--ag-blue);
	border-color: var(--ag-blue);
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 102, 255, 0.35);
}

.footer-social__link:hover svg {
	transform: scale(1.1);
}

.footer-column h2 {
	position: relative;
	padding-bottom: 0.75rem;
	margin-bottom: 0.8rem;
	color: var(--ag-white);
	font-size: 0.6rem;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.footer-column h2::after {
	position: absolute;
	width: 28px;
	height: 2px;
	bottom: 0;
	left: 0;
	border-radius: 2px;
	background: linear-gradient(90deg, var(--ag-cyan), var(--ag-blue));
	content: "";
}

.footer-column ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-column li {
	margin: 0.38rem 0;
}

.footer-column a {
	display: inline-flex;
	color: #b9cadd;
	font-size: 0.88rem;
	text-decoration: none;
	transition: color var(--ag-transition), transform var(--ag-transition);
}

.footer-column a:hover {
	color: var(--ag-white);
	transform: translateX(3px);
}

.footer-contact .footer-contact__email {
	display: inline-block;
	color: #75d9ff;
	font-weight: 600;
	font-size: 0.92rem;
	margin-bottom: 0.85rem;
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer-contact .footer-contact__email:hover {
	color: #ffffff;
}

.footer-address {
	margin-bottom: 0.85rem;
	font-size: 0.82rem;
	line-height: 1.45;
}

.footer-address__label {
	color: #ffffff !important;
	font-size: 0.8rem;
	margin: 0 0 0.15rem !important;
}

.footer-address__text {
	color: #b9cadd !important;
	margin: 0 0 0.15rem !important;
}

.footer-address__phone a {
	color: #93c5fd;
	font-family: var(--e-mono, monospace);
	font-size: 0.8rem;
	text-decoration: none;
}

.footer-address__phone a:hover {
	color: #ffffff;
}

.footer-contact .text-link {
	color: #75d9ff;
	margin-top: 0.4rem;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}

.site-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-block: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.76rem;
}

.site-footer__bottom p {
	margin: 0;
}

.site-footer__bottom nav {
	display: flex;
	gap: 20px;
}

.site-footer__bottom a {
	color: #9eb2c9;
	text-decoration: none;
}

/* Reveal animation */
[data-reveal] {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 520ms ease, transform 520ms ease;
}

[data-reveal].is-visible {
	opacity: 1;
	transform: none;
}

.home-scroll-reveal {
	opacity: 0;
	transform: translateY(26px);
	transition:
		opacity 620ms ease var(--home-reveal-delay, 0ms),
		transform 620ms cubic-bezier(0.22, 1, 0.36, 1) var(--home-reveal-delay, 0ms);
}

.home-scroll-reveal.is-visible {
	opacity: 1;
	transform: none;
}

@media (min-width: 1261px) and (max-height: 850px) {
	.home-hero__grid {
		gap: clamp(24px, 3vw, 48px);
		padding-block: 20px;
		grid-template-columns: minmax(0, 0.95fr) minmax(500px, 1.05fr);
	}

	.home-hero__copy h1 {
		font-size: clamp(2.25rem, min(3.15vw, 6.375vh), 3.375rem);
		line-height: 0.92;
	}

	.home-hero__lead {
		margin-top: 1rem;
		font-size: 1.05rem;
		line-height: 1.48;
	}

	.home-hero .button-row {
		margin-top: 1.1rem;
	}

	.hero-trust-line {
		margin-top: 1.15rem;
	}

	.ecosystem-visual {
		width: min(100%, 640px);
	}
}

@media (min-width: 1261px) {
	.nav-has-panel:hover > .nav-panel,
	.nav-has-panel:focus-within > .nav-panel {
		opacity: 1;
		pointer-events: auto;
		transform: translate(-50%, 0);
		visibility: visible;
	}

	.nav-has-panel:hover .nav-parent > button svg,
	.nav-has-panel:focus-within .nav-parent > button svg {
		transform: rotate(180deg);
	}
}

@media (max-width: 1260px) {
	:root {
		--ag-header-height: 76px;
	}

	.site-branding {
		flex-basis: 190px;
	}

	.custom-logo {
		max-width: 170px;
	}

	.nav-toggle {
		display: grid;
		margin-left: auto;
	}

	.enterprise-nav {
		position: fixed;
		z-index: 1001;
		top: var(--ag-header-height);
		right: 0;
		bottom: 0;
		display: none;
		width: min(480px, 100vw);
		padding: 18px 22px 34px;
		overflow-y: auto;
		border-left: 1px solid var(--ag-border);
		background: var(--ag-white);
		opacity: 0;
		pointer-events: none;
		transform: translateX(100%);
		transition: opacity var(--ag-transition), transform 260ms ease;
	}

	.enterprise-nav.is-open {
		display: block;
		opacity: 1;
		pointer-events: auto;
		transform: translateX(0);
	}

	.enterprise-nav__list {
		display: block;
	}

	.enterprise-nav__list > li {
		border-bottom: 1px solid var(--ag-border);
	}

	.enterprise-nav__list > li > a,
	.nav-parent > a {
		min-height: 54px;
		flex: 1;
		padding-inline: 0;
		font-size: 0.95rem;
	}

	.nav-parent > button {
		width: 44px;
		height: 44px;
	}

	.nav-panel {
		position: static;
		display: none;
		width: auto;
		max-width: none;
		padding: 0 0 18px;
		border: 0;
		border-radius: 0;
		box-shadow: none;
		opacity: 1;
		transform: none;
		visibility: visible;
	}

	.nav-has-panel.is-open .nav-panel {
		display: grid;
		transform: none;
	}

	.nav-panel--mega,
	.nav-panel--compact,
	.nav-panel--industries {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.nav-panel__intro {
		display: none;
	}

	.nav-panel__links--two {
		grid-template-columns: 1fr;
	}

	.nav-panel__label {
		margin-top: 0.8rem;
	}

	.nav-mega-column > a,
	.nav-panel__links > a {
		padding: 0.62rem 0.75rem;
		background: var(--ag-mist);
	}

	.nav-panel--industries > a {
		min-height: 0;
	}

	.nav-cta {
		width: 100%;
		margin-top: 20px;
	}

	.home-hero__grid {
		grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
	}

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

@media (max-width: 1050px) {
	.contact-layout {
		grid-template-columns: 1fr;
	}

	.contact-layout > .prose-content {
		position: static;
	}

	.contact-form-panel {
		order: -1;
	}

	.home-hero {
		min-height: auto;
	}

	.home-hero__grid {
		grid-template-columns: 1fr;
		padding-block: 80px 60px;
	}

	.home-hero__copy {
		max-width: 820px;
	}

	.ecosystem-visual {
		max-width: 680px;
	}

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

	.platform-band > a:nth-child(2) {
		border-right: 0;
	}

	.platform-band > a:nth-child(-n + 2) {
		border-bottom: 1px solid var(--ag-border);
	}

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

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

	.industry-ribbon > a:last-child {
		grid-column: 1 / -1;
	}

	.page-hero__grid {
		gap: 32px;
		grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
	}

	.page-hero__visual {
		min-height: 340px;
		margin-right: 0;
	}

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

	.process-flow li {
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	}

	.process-flow li:nth-child(3) {
		border-right: 0;
	}

	.process-flow li:nth-child(n + 4) {
		border-bottom: 0;
	}

	.process-flow li:last-child {
		border-right: 1px solid rgba(255, 255, 255, 0.12);
	}

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

@media (max-width: 800px) {
	.container,
	.container--narrow {
		width: min(100% - 34px, var(--ag-container));
	}

	.section {
		padding-block: 72px;
	}

	.page-layout .section {
		padding-block: 56px;
	}

	.split-heading {
		align-items: flex-start;
		flex-direction: column;
	}

	.delivery-grid,
	.why-grid,
	.architecture-layout,
	.content-grid--aside,
	.contact-layout {
		grid-template-columns: 1fr;
	}

	.delivery-copy {
		position: static;
	}

	.page-hero {
		min-height: auto;
	}

	.page-hero > .container {
		padding-bottom: 46px;
	}

	.page-hero__grid {
		min-height: 0;
		padding-top: 16px;
		grid-template-columns: 1fr;
	}

	.erp-transition-grid {
		grid-template-columns: 1fr;
	}

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

	.erp-foundation-links {
		grid-template-rows: none;
	}

	.page-hero__visual {
		min-height: 300px;
		margin-top: 6px;
	}

	.page-hero__image {
		width: min(88%, 480px);
		max-height: 300px;
	}

	.page-hero__capability--one { left: 3%; }
	.page-hero__capability--two { right: 3%; }
	.page-hero__capability--three { right: 1%; }
	.page-hero__capability--four { left: 5%; }

	.page-hero__visual-halo {
		width: min(82%, 480px);
	}

	.page-hero h1 {
		font-size: clamp(1.7625rem, 6.75vw, 2.85rem);
	}

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

	.consultation-cta__inner {
		grid-template-columns: 1fr;
	}

	.consultation-cta .button-row {
		align-items: flex-start;
	}

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

	.post-card {
		min-height: 230px;
	}

	.site-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.footer-cta {
		align-items: flex-start;
		grid-template-columns: 1fr;
	}
}

@media (max-width: 620px) {
	.erp-intelligent-section .content-card-grid {
		grid-template-columns: 1fr;
	}

	:root {
		--ag-header-height: 70px;
	}

	.container,
	.container--narrow {
		width: min(100% - 28px, var(--ag-container));
	}

	.site-header__inner {
		gap: 12px;
	}

	.site-branding,
	.custom-logo {
		max-width: 150px;
		flex-basis: 150px;
	}

	.brand-link {
		gap: 0.42rem;
	}

	.brand-link__icon {
		width: 42px;
		height: 42px;
		flex-basis: 42px;
	}

	.brand-link__wordmark strong {
		font-size: 0.86rem;
	}

	.brand-link__wordmark small {
		font-size: 0.49rem;
		letter-spacing: 0.16em;
	}

	.enterprise-nav {
		width: 100vw;
		padding-inline: 18px;
	}

	.home-hero__grid {
		padding-block: 58px 44px;
	}

	.home-hero__copy h1 {
		font-size: clamp(2.025rem, 9.75vw, 3.15rem);
	}

	.home-hero__lead {
		font-size: 1.03rem;
	}

	.home-hero .button-row .button {
		width: 100%;
	}

	.hero-trust-line {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ecosystem-visual {
		aspect-ratio: 0.95;
	}

	.ecosystem-lines {
		opacity: 0.55;
	}

	.ecosystem-node {
		width: 112px;
		padding: 0.58rem;
	}

	.ecosystem-node > img,
	.ecosystem-node__icons {
		height: 28px;
		margin-bottom: 0.3rem;
	}

	.ecosystem-node > img {
		width: 28px;
	}

	.ecosystem-node__icons img {
		width: 24px;
		height: 24px;
	}

	.ecosystem-node strong {
		font-size: 0.74rem;
	}

	.ecosystem-node span {
		font-size: 0.6rem;
	}

	.ecosystem-node--dynamics {
		top: 7%;
		left: 0;
	}

	.ecosystem-node--power {
		top: 0;
		left: 37%;
	}

	.ecosystem-node--data {
		top: 16%;
		left: auto;
		right: 0;
	}

	.ecosystem-node--azure {
		top: 33%;
		right: 1%;
	}

	.ecosystem-core {
		top: 50%;
		width: 170px;
		height: 120px;
	}

	.industry-node {
		font-size: 0.62rem;
	}

	.industry-node--automotive {
		bottom: 15%;
	}

	.industry-node--ecommerce {
		bottom: 0;
		left: 12%;
	}

	.industry-node--fintech {
		display: none;
	}

	.industry-node--retail {
		right: 4%;
		bottom: 1%;
	}

	.industry-node--supply {
		right: 0;
		bottom: 17%;
	}

	.platform-band,
	.route-grid,
	.route-grid--related,
	.industry-ribbon,
	.principle-grid,
	.content-card-grid,
	.use-case-grid,
	.feature-grid,
	.form-grid,
	.contact-form-panel .form-grid {
		grid-template-columns: 1fr;
	}

	.platform-band > a {
		min-height: 175px;
		border-right: 0;
		border-bottom: 1px solid var(--ag-border);
	}

	.platform-band > a:last-child {
		border-bottom: 0;
	}

	.route-card {
		min-height: 260px;
	}

	.industry-ribbon > a:last-child,
	.field--full {
		grid-column: auto;
	}


	.delivery-timeline li {
		min-height: 165px;
		grid-template-columns: 52px 1fr;
	}

	.delivery-timeline::before {
		left: 25px;
	}

	.delivery-timeline li > span {
		width: 50px;
		height: 50px;
	}

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

	.architecture-stack {
		padding: 20px;
	}

	.architecture-stack::before {
		left: 47px;
	}

	.process-flow {
		grid-template-columns: 1fr;
	}

	.process-flow li,
	.process-flow li:nth-child(3),
	.process-flow li:nth-child(n + 4),
	.process-flow li:last-child {
		min-height: 210px;
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	}

	.process-flow li:last-child {
		border-bottom: 0;
	}

	.process-flow h3 {
		margin-top: 2.5rem;
	}

	.consultation-form {
		padding: 22px 16px;
		border-radius: var(--ag-radius);
	}

	.consultation-form--contact {
		padding: 0;
		border-radius: 20px;
	}

	.form-intro {
		align-items: flex-start;
		flex-direction: column;
		gap: 18px;
	}

	.form-details-fields {
		grid-template-columns: 1fr;
	}

	.consultation-form--contact .form-actions {
		display: block;
	}

	.consultation-form--contact .form-actions > .button {
		width: 100%;
		margin-top: 1.15rem;
	}

	.site-footer__top {
		gap: 34px;
		padding-block: 46px 38px;
		grid-template-columns: 1fr;
	}

	.site-footer__cta-wrap {
		padding-top: 38px;
	}

	.footer-cta {
		gap: 24px;
		border-radius: 18px;
	}

	.site-footer__bottom nav {
		flex-wrap: wrap;
		gap: 10px 18px;
	}

	.not-found-grid {
		grid-template-columns: 1fr;
	}

	.not-found-code {
		display: none;
	}
}

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

	.site-branding,
	.custom-logo {
		max-width: 136px;
		flex-basis: 136px;
	}

	.brand-link__wordmark small {
		display: none;
	}

	.nav-toggle {
		width: 42px;
		height: 42px;
	}

	.home-hero__copy h1 {
		font-size: 1.95rem;
	}

	.hero-trust-line {
		grid-template-columns: 1fr;
	}

	.ecosystem-visual {
		margin-top: 12px;
	}

	.ecosystem-node--power {
		left: 34%;
	}

	.industry-node--ecommerce {
		left: 5%;
	}

	.page-hero .button-row .button,
	.consultation-cta .button {
		width: 100%;
	}

	.microsoft-logo-grid {
		grid-template-columns: 1fr 1fr;
	}

	.microsoft-logo-grid > div {
		min-height: 130px;
		padding: 0.8rem;
	}
}

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

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

	[data-reveal] {
		opacity: 1;
		transform: none;
	}

	.ecosystem-lines .pulse {
		display: none;
	}
}

@media print {
	.site-header,
	.site-footer,
	.consultation-cta,
	.button-row,
	.nav-overlay,
	.page-hero__visual {
		display: none !important;
	}

	.page-hero {
		min-height: 0;
		background: none;
		color: #000;
	}

	.page-hero h1,
	h1,
	h2,
	h3 {
		color: #000;
	}

	.section,
	.page-hero > .container {
		padding-block: 20px;
	}
}
